1
0
mirror of synced 2024-11-24 06:20:10 +01:00

Merge branch 'develop' into finale

This commit is contained in:
Kevin Trocolli 2023-06-25 18:35:12 -04:00
commit b1968fe320
72 changed files with 6224 additions and 347 deletions

View File

@ -112,6 +112,8 @@ class AllnetServlet:
) )
resp.uri = f"http://{self.config.title.hostname}:{self.config.title.port}/{req.game_id}/{req.ver.replace('.', '')}/" resp.uri = f"http://{self.config.title.hostname}:{self.config.title.port}/{req.game_id}/{req.ver.replace('.', '')}/"
resp.host = f"{self.config.title.hostname}:{self.config.title.port}" resp.host = f"{self.config.title.hostname}:{self.config.title.port}"
self.logger.debug(f"Allnet response: {vars(resp)}")
return self.dict_to_http_form_string([vars(resp)]) return self.dict_to_http_form_string([vars(resp)])
resp.uri, resp.host = self.uri_registry[req.game_id] resp.uri, resp.host = self.uri_registry[req.game_id]
@ -204,16 +206,17 @@ class AllnetServlet:
else: # TODO: Keychip check else: # TODO: Keychip check
if path.exists( if path.exists(
f"{self.config.allnet.update_cfg_folder}/{req.game_id}-{req.ver}-app.ini" f"{self.config.allnet.update_cfg_folder}/{req.game_id}-{req.ver.replace('.', '')}-app.ini"
): ):
resp.uri = f"http://{self.config.title.hostname}:{self.config.title.port}/dl/ini/{req.game_id}-{req.ver.replace('.', '')}-app.ini" resp.uri = f"http://{self.config.title.hostname}:{self.config.title.port}/dl/ini/{req.game_id}-{req.ver.replace('.', '')}-app.ini"
if path.exists( if path.exists(
f"{self.config.allnet.update_cfg_folder}/{req.game_id}-{req.ver}-opt.ini" f"{self.config.allnet.update_cfg_folder}/{req.game_id}-{req.ver.replace('.', '')}-opt.ini"
): ):
resp.uri += f"|http://{self.config.title.hostname}:{self.config.title.port}/dl/ini/{req.game_id}-{req.ver.replace('.', '')}-opt.ini" resp.uri += f"|http://{self.config.title.hostname}:{self.config.title.port}/dl/ini/{req.game_id}-{req.ver.replace('.', '')}-opt.ini"
self.logger.debug(f"Sending download uri {resp.uri}") self.logger.debug(f"Sending download uri {resp.uri}")
self.data.base.log_event("allnet", "DLORDER_REQ_SUCCESS", logging.INFO, f"{Utils.get_ip_addr(request)} requested DL Order for {req.serial} {req.game_id} v{req.ver}")
return self.dict_to_http_form_string([vars(resp)]) return self.dict_to_http_form_string([vars(resp)])
def handle_dlorder_ini(self, request: Request, match: Dict) -> bytes: def handle_dlorder_ini(self, request: Request, match: Dict) -> bytes:
@ -223,6 +226,8 @@ class AllnetServlet:
req_file = match["file"].replace("%0A", "") req_file = match["file"].replace("%0A", "")
if path.exists(f"{self.config.allnet.update_cfg_folder}/{req_file}"): if path.exists(f"{self.config.allnet.update_cfg_folder}/{req_file}"):
self.logger.info(f"Request for DL INI file {req_file} from {Utils.get_ip_addr(request)} successful")
self.data.base.log_event("allnet", "DLORDER_INI_SENT", logging.INFO, f"{Utils.get_ip_addr(request)} successfully recieved {req_file}")
return open( return open(
f"{self.config.allnet.update_cfg_folder}/{req_file}", "rb" f"{self.config.allnet.update_cfg_folder}/{req_file}", "rb"
).read() ).read()
@ -410,8 +415,8 @@ class AllnetPowerOnResponse3:
self.uri = "" self.uri = ""
self.host = "" self.host = ""
self.place_id = "123" self.place_id = "123"
self.name = "" self.name = "ARTEMiS"
self.nickname = "" self.nickname = "ARTEMiS"
self.region0 = "1" self.region0 = "1"
self.region_name0 = "W" self.region_name0 = "W"
self.region_name1 = "" self.region_name1 = ""
@ -435,8 +440,8 @@ class AllnetPowerOnResponse2:
self.uri = "" self.uri = ""
self.host = "" self.host = ""
self.place_id = "123" self.place_id = "123"
self.name = "Test" self.name = "ARTEMiS"
self.nickname = "Test123" self.nickname = "ARTEMiS"
self.region0 = "1" self.region0 = "1"
self.region_name0 = "W" self.region_name0 = "W"
self.region_name1 = "X" self.region_name1 = "X"

View File

@ -333,3 +333,8 @@ class Data:
if not failed: if not failed:
self.base.set_schema_ver(latest_ver, game) self.base.set_schema_ver(latest_ver, game)
def show_versions(self) -> None:
all_game_versions = self.base.get_all_schema_vers()
for ver in all_game_versions:
self.logger.info(f"{ver['game']} -> v{ver['version']}")

View File

@ -80,6 +80,9 @@ class UserData(BaseData):
if usr["password"] is None: if usr["password"] is None:
return False return False
if passwd is None or not passwd:
return False
return bcrypt.checkpw(passwd, usr["password"].encode()) return bcrypt.checkpw(passwd, usr["password"].encode())
def reset_autoincrement(self, ai_value: int) -> None: def reset_autoincrement(self, ai_value: int) -> None:

View File

@ -0,0 +1,30 @@
SET FOREIGN_KEY_CHECKS = 0;
ALTER TABLE chuni_score_playlog
DROP COLUMN regionId,
DROP COLUMN machineType;
ALTER TABLE chuni_static_events
DROP COLUMN startDate;
ALTER TABLE chuni_profile_data
DROP COLUMN rankUpChallengeResults;
ALTER TABLE chuni_static_login_bonus
DROP FOREIGN KEY chuni_static_login_bonus_ibfk_1;
ALTER TABLE chuni_static_login_bonus_preset
DROP PRIMARY KEY;
ALTER TABLE chuni_static_login_bonus_preset
CHANGE COLUMN presetId id INT NOT NULL;
ALTER TABLE chuni_static_login_bonus_preset
ADD PRIMARY KEY(id);
ALTER TABLE chuni_static_login_bonus_preset
ADD CONSTRAINT chuni_static_login_bonus_preset_uk UNIQUE(id, version);
ALTER TABLE chuni_static_login_bonus
ADD CONSTRAINT chuni_static_login_bonus_ibfk_1 FOREIGN KEY(presetId)
REFERENCES chuni_static_login_bonus_preset(id) ON UPDATE CASCADE ON DELETE CASCADE;
SET FOREIGN_KEY_CHECKS = 1;

View File

@ -0,0 +1,29 @@
SET FOREIGN_KEY_CHECKS = 0;
ALTER TABLE chuni_score_playlog
ADD COLUMN regionId INT,
ADD COLUMN machineType INT;
ALTER TABLE chuni_static_events
ADD COLUMN startDate TIMESTAMP NOT NULL DEFAULT current_timestamp();
ALTER TABLE chuni_profile_data
ADD COLUMN rankUpChallengeResults JSON;
ALTER TABLE chuni_static_login_bonus
DROP FOREIGN KEY chuni_static_login_bonus_ibfk_1;
ALTER TABLE chuni_static_login_bonus_preset
CHANGE COLUMN id presetId INT NOT NULL;
ALTER TABLE chuni_static_login_bonus_preset
DROP PRIMARY KEY;
ALTER TABLE chuni_static_login_bonus_preset
DROP INDEX chuni_static_login_bonus_preset_uk;
ALTER TABLE chuni_static_login_bonus_preset
ADD CONSTRAINT chuni_static_login_bonus_preset_pk PRIMARY KEY (presetId, version);
ALTER TABLE chuni_static_login_bonus
ADD CONSTRAINT chuni_static_login_bonus_ibfk_1 FOREIGN KEY (presetId, version)
REFERENCES chuni_static_login_bonus_preset(presetId, version) ON UPDATE CASCADE ON DELETE CASCADE;
SET FOREIGN_KEY_CHECKS = 1;

View File

@ -1,26 +1,3 @@
DELETE FROM mai2_static_event WHERE version < 13; ALTER TABLE mai2_item_card
UPDATE mai2_static_event SET version = version - 13 WHERE version >= 13; CHANGE COLUMN startDate startDate TIMESTAMP DEFAULT "2018-01-01 00:00:00.0",
CHANGE COLUMN endDate endDate TIMESTAMP DEFAULT "2038-01-01 00:00:00.0";
DELETE FROM mai2_static_music WHERE version < 13;
UPDATE mai2_static_music SET version = version - 13 WHERE version >= 13;
DELETE FROM mai2_static_ticket WHERE version < 13;
UPDATE mai2_static_ticket SET version = version - 13 WHERE version >= 13;
DELETE FROM mai2_static_cards WHERE version < 13;
UPDATE mai2_static_cards SET version = version - 13 WHERE version >= 13;
DELETE FROM mai2_profile_detail WHERE version < 13;
UPDATE mai2_profile_detail SET version = version - 13 WHERE version >= 13;
DELETE FROM mai2_profile_extend WHERE version < 13;
UPDATE mai2_profile_extend SET version = version - 13 WHERE version >= 13;
DELETE FROM mai2_profile_option WHERE version < 13;
UPDATE mai2_profile_option SET version = version - 13 WHERE version >= 13;
DELETE FROM mai2_profile_ghost WHERE version < 13;
UPDATE mai2_profile_ghost SET version = version - 13 WHERE version >= 13;
DELETE FROM mai2_profile_rating WHERE version < 13;
UPDATE mai2_profile_rating SET version = version - 13 WHERE version >= 13;

View File

@ -1,17 +1,3 @@
UPDATE mai2_static_event SET version = version + 13 WHERE version < 1000; ALTER TABLE mai2_item_card
CHANGE COLUMN startDate startDate TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
UPDATE mai2_static_music SET version = version + 13 WHERE version < 1000; CHANGE COLUMN endDate endDate TIMESTAMP NOT NULL;
UPDATE mai2_static_ticket SET version = version + 13 WHERE version < 1000;
UPDATE mai2_static_cards SET version = version + 13 WHERE version < 1000;
UPDATE mai2_profile_detail SET version = version + 13 WHERE version < 1000;
UPDATE mai2_profile_extend SET version = version + 13 WHERE version < 1000;
UPDATE mai2_profile_option SET version = version + 13 WHERE version < 1000;
UPDATE mai2_profile_ghost SET version = version + 13 WHERE version < 1000;
UPDATE mai2_profile_rating SET version = version + 13 WHERE version < 1000;

View File

@ -182,7 +182,7 @@ class FE_Gate(FE_Base):
access_code: str = request.args[b"access_code"][0].decode() access_code: str = request.args[b"access_code"][0].decode()
username: str = request.args[b"username"][0] username: str = request.args[b"username"][0]
email: str = request.args[b"email"][0].decode() email: str = request.args[b"email"][0].decode()
passwd: str = request.args[b"passwd"][0] passwd: bytes = request.args[b"passwd"][0]
uid = self.data.card.get_user_id_from_card(access_code) uid = self.data.card.get_user_id_from_card(access_code)
if uid is None: if uid is None:
@ -197,7 +197,7 @@ class FE_Gate(FE_Base):
if result is None: if result is None:
return redirectTo(b"/gate?e=3", request) return redirectTo(b"/gate?e=3", request)
if not self.data.user.check_password(uid, passwd.encode()): if not self.data.user.check_password(uid, passwd):
return redirectTo(b"/gate", request) return redirectTo(b"/gate", request)
return redirectTo(b"/user", request) return redirectTo(b"/user", request)
@ -228,8 +228,21 @@ class FE_User(FE_Base):
if usr_sesh.userId == 0: if usr_sesh.userId == 0:
return redirectTo(b"/gate", request) return redirectTo(b"/gate", request)
cards = self.data.card.get_user_cards(usr_sesh.userId)
user = self.data.user.get_user(usr_sesh.userId)
card_data = []
for c in cards:
if c['is_locked']:
status = 'Locked'
elif c['is_banned']:
status = 'Banned'
else:
status = 'Active'
card_data.append({'access_code': c['access_code'], 'status': status})
return template.render( return template.render(
title=f"{self.core_config.server.name} | Account", sesh=vars(usr_sesh) title=f"{self.core_config.server.name} | Account", sesh=vars(usr_sesh), cards=card_data, username=user['username']
).encode("utf-16") ).encode("utf-16")

View File

@ -1,4 +1,31 @@
{% extends "core/frontend/index.jinja" %} {% extends "core/frontend/index.jinja" %}
{% block content %} {% block content %}
<h1>testing</h1> <h1>Management for {{ username }}</h1>
<h2>Cards <button class="btn btn-success" data-bs-toggle="modal" data-bs-target="#card_add">Add</button></h2>
<ul>
{% for c in cards %}
<li>{{ c.access_code }}: {{ c.status }} <button class="btn-danger btn">Delete</button></li>
{% endfor %}
</ul>
<div class="modal fade" id="card_add" tabindex="-1" aria-labelledby="card_add_label" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="card_add_label">Add Card</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
HOW TO:<br>
Scan your card on any networked game and press the "View Access Code" button (varies by game) and enter the 20 digit code below.<br>
!!FOR AMUSEIC CARDS: DO NOT ENTER THE CODE SHOWN ON THE BACK OF THE CARD ITSELF OR IT WILL NOT WORK!!
<p /><label for="card_add_frm_access_code">Access Code:&nbsp;</label><input id="card_add_frm_access_code" maxlength="20" type="text" required>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary">Add</button>
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
{% endblock content %} {% endblock content %}

View File

@ -4,7 +4,7 @@
<div style="background: #333; color: #f9f9f9; width: 80%; height: 50px; line-height: 50px; padding-left: 10px; float: left;"> <div style="background: #333; color: #f9f9f9; width: 80%; height: 50px; line-height: 50px; padding-left: 10px; float: left;">
<a href=/><button class="btn btn-primary">Home</button></a>&nbsp; <a href=/><button class="btn btn-primary">Home</button></a>&nbsp;
{% for game in game_list %} {% for game in game_list %}
<a href=game/{{ game.url }}><button class="btn btn-success">{{ game.name }}</button></a>&nbsp; <a href=/game/{{ game.url }}><button class="btn btn-success">{{ game.name }}</button></a>&nbsp;
{% endfor %} {% endfor %}
</div> </div>
</div> </div>

View File

@ -33,8 +33,8 @@ class MuchaServlet:
self.logger.addHandler(fileHandler) self.logger.addHandler(fileHandler)
self.logger.addHandler(consoleHandler) self.logger.addHandler(consoleHandler)
self.logger.setLevel(logging.INFO) self.logger.setLevel(cfg.mucha.loglevel)
coloredlogs.install(level=logging.INFO, logger=self.logger, fmt=log_fmt_str) coloredlogs.install(level=cfg.mucha.loglevel, logger=self.logger, fmt=log_fmt_str)
all_titles = Utils.get_all_titles() all_titles = Utils.get_all_titles()

View File

@ -84,7 +84,7 @@ class TitleServlet:
request.setResponseCode(405) request.setResponseCode(405)
return b"" return b""
return index.render_GET(request, endpoints["version"], endpoints["endpoint"]) return index.render_GET(request, int(endpoints["version"]), endpoints["endpoint"])
def render_POST(self, request: Request, endpoints: dict) -> bytes: def render_POST(self, request: Request, endpoints: dict) -> bytes:
code = endpoints["game"] code = endpoints["game"]

View File

@ -85,4 +85,7 @@ if __name__ == "__main__":
elif args.action == "cleanup": elif args.action == "cleanup":
data.delete_hanging_users() data.delete_hanging_users()
elif args.action == "version":
data.show_versions()
data.logger.info("Done") data.logger.info("Done")

View File

@ -9,42 +9,44 @@ using the megaime database. Clean installations always create the latest databas
# Table of content # Table of content
- [Supported Games](#supported-games) - [Supported Games](#supported-games)
- [Chunithm](#chunithm) - [CHUNITHM](#chunithm)
- [crossbeats REV.](#crossbeats-rev) - [crossbeats REV.](#crossbeats-rev)
- [maimai DX](#maimai-dx) - [maimai DX](#maimai-dx)
- [O.N.G.E.K.I.](#o-n-g-e-k-i) - [O.N.G.E.K.I.](#o-n-g-e-k-i)
- [Card Maker](#card-maker) - [Card Maker](#card-maker)
- [WACCA](#wacca) - [WACCA](#wacca)
- [Sword Art Online Arcade](#sao)
# Supported Games # Supported Games
Games listed below have been tested and confirmed working. Games listed below have been tested and confirmed working.
## Chunithm ## CHUNITHM
### SDBT ### SDBT
| Version ID | Version Name | | Version ID | Version Name |
|------------|--------------------| |------------|-----------------------|
| 0 | Chunithm | | 0 | CHUNITHM |
| 1 | Chunithm+ | | 1 | CHUNITHM PLUS |
| 2 | Chunithm Air | | 2 | CHUNITHM AIR |
| 3 | Chunithm Air + | | 3 | CHUNITHM AIR PLUS |
| 4 | Chunithm Star | | 4 | CHUNITHM STAR |
| 5 | Chunithm Star + | | 5 | CHUNITHM STAR PLUS |
| 6 | Chunithm Amazon | | 6 | CHUNITHM AMAZON |
| 7 | Chunithm Amazon + | | 7 | CHUNITHM AMAZON PLUS |
| 8 | Chunithm Crystal | | 8 | CHUNITHM CRYSTAL |
| 9 | Chunithm Crystal + | | 9 | CHUNITHM CRYSTAL PLUS |
| 10 | Chunithm Paradise | | 10 | CHUNITHM PARADISE |
### SDHD/SDBT ### SDHD/SDBT
| Version ID | Version Name | | Version ID | Version Name |
|------------|-----------------| |------------|---------------------|
| 11 | Chunithm New!! | | 11 | CHUNITHM NEW!! |
| 12 | Chunithm New!!+ | | 12 | CHUNITHM NEW PLUS!! |
| 13 | CHUNITHM SUN |
### Importer ### Importer
@ -60,13 +62,33 @@ The importer for Chunithm will import: Events, Music, Charge Items and Avatar Ac
### Database upgrade ### Database upgrade
Always make sure your database (tables) are up-to-date, to do so go to the `core/data/schema/versions` folder and see Always make sure your database (tables) are up-to-date, to do so go to the `core/data/schema/versions` folder and see
which version is the latest, f.e. `SDBT_3_upgrade.sql`. In order to upgrade to version 3 in this case you need to which version is the latest, f.e. `SDBT_4_upgrade.sql`. In order to upgrade to version 4 in this case you need to
perform all previous updates as well: perform all previous updates as well:
```shell ```shell
python dbutils.py --game SDBT upgrade python dbutils.py --game SDBT upgrade
``` ```
### Online Battle
**Only matchmaking (with your imaginary friends) is supported! Online Battle does not (yet?) work!**
The first person to start the Online Battle (now called host) will create a "matching room" with a given `roomId`, after that max 3 other people can join the created room.
Non used slots during the matchmaking will be filled with CPUs after the timer runs out.
As soon as a new member will join the room the timer will jump back to 60 secs again.
Sending those 4 messages to all other users is also working properly.
In order to use the Online Battle every user needs the same ICF, same rom version and same data version!
If a room is full a new room will be created if another user starts an Online Battle.
After a failed Online Battle the room will be deleted. The host is used for the timer countdown, so if the connection failes to the host the timer will stop and could create a "frozen" state.
#### Information/Problems:
- Online Battle uses UDP hole punching and opens port 50201?
- `reflectorUri` seems related to that?
- Timer countdown should be handled globally and not by one user
- Game can freeze or can crash if someone (especially the host) leaves the matchmaking
## crossbeats REV. ## crossbeats REV.
### SDCA ### SDCA
@ -253,20 +275,20 @@ python dbutils.py --game SDDT upgrade
| Version ID | Version Name | | Version ID | Version Name |
|------------|-----------------| |------------|-----------------|
| 0 | Card Maker 1.34 | | 0 | Card Maker 1.30 |
| 1 | Card Maker 1.35 | | 1 | Card Maker 1.35 |
### Support status ### Support status
* Card Maker 1.34: * Card Maker 1.30:
* Chunithm New!!: Yes * CHUNITHM NEW!!: Yes
* maimai DX Universe: Yes * maimai DX UNiVERSE: Yes
* O.N.G.E.K.I. Bright: Yes * O.N.G.E.K.I. Bright: Yes
* Card Maker 1.35: * Card Maker 1.35:
* Chunithm New!!+: Yes * CHUNITHM SUN: Yes (NEW PLUS!! up to A032)
* maimai DX Universe PLUS: Yes * maimai DX FESTiVAL: Yes (up to A035) (UNiVERSE PLUS up to A031)
* O.N.G.E.K.I. Bright Memory: Yes * O.N.G.E.K.I. Bright Memory: Yes
@ -285,19 +307,46 @@ python read.py --series SDED --version <version ID> --binfolder titles/cm/cm_dat
python read.py --series SDDT --version <version ID> --binfolder /path/to/game/folder --optfolder /path/to/game/option/folder python read.py --series SDDT --version <version ID> --binfolder /path/to/game/folder --optfolder /path/to/game/option/folder
``` ```
Also make sure to import all maimai and Chunithm data as well: Also make sure to import all maimai DX and CHUNITHM data as well:
```shell ```shell
python read.py --series SDED --version <version ID> --binfolder /path/to/cardmaker/CardMaker_Data python read.py --series SDED --version <version ID> --binfolder /path/to/cardmaker/CardMaker_Data
``` ```
The importer for Card Maker will import all required Gachas (Banners) and cards (for maimai/Chunithm) and the hardcoded The importer for Card Maker will import all required Gachas (Banners) and cards (for maimai DX/CHUNITHM) and the hardcoded
Cards for each Gacha (O.N.G.E.K.I. only). Cards for each Gacha (O.N.G.E.K.I. only).
**NOTE: Without executing the importer Card Maker WILL NOT work!** **NOTE: Without executing the importer Card Maker WILL NOT work!**
### O.N.G.E.K.I. Gachas ### Config setup
Make sure to update your `config/cardmaker.yaml` with the correct version for each game. To get the current version required to run a specific game, open every opt (Axxx) folder descending until you find all three folders:
- `MU3`: O.N.G.E.K.I.
- `MAI`: maimai DX
- `CHU`: CHUNITHM
Inside each folder is a `DataConfig.xml` file, for example:
`MU3/DataConfig.xml`:
```xml
<cardMakerVersion>
<major>1</major>
<minor>35</minor>
<release>3</release>
</cardMakerVersion>
```
Now update your `config/cardmaker.yaml` with the correct version number, for example:
```yaml
version:
1: # Card Maker 1.35
ongeki: 1.35.03
```
### O.N.G.E.K.I.
Gacha "無料ガチャ" can only pull from the free cards with the following probabilities: 94%: R, 5% SR and 1% chance of Gacha "無料ガチャ" can only pull from the free cards with the following probabilities: 94%: R, 5% SR and 1% chance of
getting an SSR card getting an SSR card
@ -310,20 +359,24 @@ and 3% chance of getting an SSR card
All other (limited) gachas can pull from every card added to ongeki_static_cards but with the promoted cards All other (limited) gachas can pull from every card added to ongeki_static_cards but with the promoted cards
(click on the green button under the banner) having a 10 times higher chance to get pulled (click on the green button under the banner) having a 10 times higher chance to get pulled
### Chunithm Gachas ### CHUNITHM
All cards in Chunithm (basically just the characters) have the same rarity to it just pulls randomly from all cards All cards in CHUNITHM (basically just the characters) have the same rarity to it just pulls randomly from all cards
from a given gacha but made sure you cannot pull the same card twice in the same 5 times gacha roll. from a given gacha but made sure you cannot pull the same card twice in the same 5 times gacha roll.
### maimai DX
Printed maimai DX cards: Freedom (`cardTypeId=6`) or Gold Pass (`cardTypeId=4`) can now be selected during the login process. You can only have ONE Freedom and ONE Gold Pass active at a given time. The cards will expire after 15 days.
Thanks GetzeAvenue for the `selectedCardList` rarity hint!
### Notes ### Notes
Card Maker 1.34 will only load an O.N.G.E.K.I. Bright profile (1.30). Card Maker 1.35 will only load an O.N.G.E.K.I. Card Maker 1.30-1.34 will only load an O.N.G.E.K.I. Bright profile (1.30). Card Maker 1.35+ will only load an O.N.G.E.K.I.
Bright Memory profile (1.35). Bright Memory profile (1.35).
The gachas inside the `ongeki.yaml` will make sure only the right gacha ids for the right CM version will be loaded. The gachas inside the `config/ongeki.yaml` will make sure only the right gacha ids for the right CM version will be loaded.
Gacha IDs up to 1140 will be loaded for CM 1.34 and all gachas will be loaded for CM 1.35. Gacha IDs up to 1140 will be loaded for CM 1.34 and all gachas will be loaded for CM 1.35.
**NOTE: There is currently no way to load/use the (printed) maimai DX cards!**
## WACCA ## WACCA
### SDFE ### SDFE
@ -366,3 +419,52 @@ Always make sure your database (tables) are up-to-date, to do so go to the `core
```shell ```shell
python dbutils.py --game SDFE upgrade python dbutils.py --game SDFE upgrade
``` ```
## SAO
### SDEW
| Version ID | Version Name |
|------------|---------------|
| 0 | SAO |
### Importer
In order to use the importer locate your game installation folder and execute:
```shell
python read.py --series SDEW --version <version ID> --binfolder /path/to/game/extractedassets
```
The importer for SAO will import all items, heroes, support skills and titles data.
### Config
Config file is located in `config/sao.yaml`.
| Option | Info |
|--------------------|-----------------------------------------------------------------------------|
| `hostname` | Changes the server listening address for Mucha |
| `port` | Changes the listing port |
| `auto_register` | Allows the game to handle the automatic registration of new cards |
### Database upgrade
Always make sure your database (tables) are up-to-date, to do so go to the `core/data/schema/versions` folder and see which version is the latest, f.e. `SDEW_1_upgrade.sql`. In order to upgrade to version 3 in this case you need to perform all previous updates as well:
```shell
python dbutils.py --game SDEW upgrade
```
### Notes
- Co-Op (matching) is not supported
- Shop is not functionnal
- Player title is currently static and cannot be changed in-game
### Credits for SAO support:
- Midorica - Limited Network Support
- Dniel97 - Helping with network base
- tungnotpunk - Source

View File

@ -1,3 +1,13 @@
server: server:
enable: True enable: True
loglevel: "info" loglevel: "info"
version:
0:
ongeki: 1.30.01
chuni: 2.00.00
maimai: 1.20.00
1:
ongeki: 1.35.03
chuni: 2.10.00
maimai: 1.30.00

View File

@ -15,6 +15,9 @@ version:
12: 12:
rom: 2.05.00 rom: 2.05.00
data: 2.05.00 data: 2.05.00
13:
rom: 2.10.00
data: 2.10.00
crypto: crypto:
encrypted_only: False encrypted_only: False

View File

@ -2,8 +2,11 @@ server:
hostname: "localhost" hostname: "localhost"
enable: True enable: True
loglevel: "info" loglevel: "info"
port: 9000
port_stun: 9001
port_turn: 9002
port_admission: 9003
auto_register: True auto_register: True
enable_matching: False
stun_server_host: "stunserver.stunprotocol.org"
stun_server_port: 3478
ports:
game: 9000
admission: 9001

6
example_config/sao.yaml Normal file
View File

@ -0,0 +1,6 @@
server:
hostname: "localhost"
enable: True
loglevel: "info"
port: 9000
auto_register: True

View File

@ -3,32 +3,36 @@ A network service emulator for games running SEGA'S ALL.NET service, and similar
# Supported games # Supported games
Games listed below have been tested and confirmed working. Only game versions older then the version currently active in arcades, or games versions that have not recieved a major update in over one year, are supported. Games listed below have been tested and confirmed working. Only game versions older then the version currently active in arcades, or games versions that have not recieved a major update in over one year, are supported.
+ Chunithm
+ All versions up to New!! Plus
+ Crossbeats Rev + CHUNITHM
+ All versions up to SUN
+ crossbeats REV.
+ All versions + omnimix + All versions + omnimix
+ maimai DX + maimai DX
+ All versions up to Festival + All versions up to FESTiVAL
+ Hatsune Miku Arcade + Hatsune Miku: Project DIVA Arcade
+ All versions + All versions
+ Card Maker + Card Maker
+ 1.34.xx + 1.30
+ 1.35.xx + 1.35
+ Ongeki + O.N.G.E.K.I.
+ All versions up to Bright Memory + All versions up to Bright Memory
+ Wacca + WACCA
+ Lily R + Lily R
+ Reverse + Reverse
+ Pokken + POKKÉN TOURNAMENT
+ Final Online + Final Online
+ Sword Art Online Arcade (partial support)
+ Final
## Requirements ## Requirements
- python 3 (tested working with 3.9 and 3.10, other versions YMMV) - python 3 (tested working with 3.9 and 3.10, other versions YMMV)
- pip - pip

Binary file not shown.

View File

@ -7,4 +7,4 @@ index = ChuniServlet
database = ChuniData database = ChuniData
reader = ChuniReader reader = ChuniReader
game_codes = [ChuniConstants.GAME_CODE, ChuniConstants.GAME_CODE_NEW] game_codes = [ChuniConstants.GAME_CODE, ChuniConstants.GAME_CODE_NEW]
current_schema_version = 3 current_schema_version = 4

View File

@ -44,13 +44,15 @@ class ChuniBase:
# check if a user already has some pogress and if not add the # check if a user already has some pogress and if not add the
# login bonus entry # login bonus entry
user_login_bonus = self.data.item.get_login_bonus( user_login_bonus = self.data.item.get_login_bonus(
user_id, self.version, preset["id"] user_id, self.version, preset["presetId"]
) )
if user_login_bonus is None: if user_login_bonus is None:
self.data.item.put_login_bonus(user_id, self.version, preset["id"]) self.data.item.put_login_bonus(
user_id, self.version, preset["presetId"]
)
# yeah i'm lazy # yeah i'm lazy
user_login_bonus = self.data.item.get_login_bonus( user_login_bonus = self.data.item.get_login_bonus(
user_id, self.version, preset["id"] user_id, self.version, preset["presetId"]
) )
# skip the login bonus entirely if its already finished # skip the login bonus entirely if its already finished
@ -66,13 +68,13 @@ class ChuniBase:
last_update_date = datetime.now() last_update_date = datetime.now()
all_login_boni = self.data.static.get_login_bonus( all_login_boni = self.data.static.get_login_bonus(
self.version, preset["id"] self.version, preset["presetId"]
) )
# skip the current bonus preset if no boni were found # skip the current bonus preset if no boni were found
if all_login_boni is None or len(all_login_boni) < 1: if all_login_boni is None or len(all_login_boni) < 1:
self.logger.warn( self.logger.warn(
f"No bonus entries found for bonus preset {preset['id']}" f"No bonus entries found for bonus preset {preset['presetId']}"
) )
continue continue
@ -83,14 +85,14 @@ class ChuniBase:
if bonus_count > max_needed_days: if bonus_count > max_needed_days:
# assume that all login preset ids under 3000 needs to be # assume that all login preset ids under 3000 needs to be
# looped, like 30 and 40 are looped, 40 does not work? # looped, like 30 and 40 are looped, 40 does not work?
if preset["id"] < 3000: if preset["presetId"] < 3000:
bonus_count = 1 bonus_count = 1
else: else:
is_finished = True is_finished = True
# grab the item for the corresponding day # grab the item for the corresponding day
login_item = self.data.static.get_login_bonus_by_required_days( login_item = self.data.static.get_login_bonus_by_required_days(
self.version, preset["id"], bonus_count self.version, preset["presetId"], bonus_count
) )
if login_item is not None: if login_item is not None:
# now add the present to the database so the # now add the present to the database so the
@ -108,7 +110,7 @@ class ChuniBase:
self.data.item.put_login_bonus( self.data.item.put_login_bonus(
user_id, user_id,
self.version, self.version,
preset["id"], preset["presetId"],
bonusCount=bonus_count, bonusCount=bonus_count,
lastUpdateDate=last_update_date, lastUpdateDate=last_update_date,
isWatched=False, isWatched=False,
@ -156,12 +158,18 @@ class ChuniBase:
event_list = [] event_list = []
for evt_row in game_events: for evt_row in game_events:
tmp = {} event_list.append(
tmp["id"] = evt_row["eventId"] {
tmp["type"] = evt_row["type"] "id": evt_row["eventId"],
tmp["startDate"] = "2017-12-05 07:00:00.0" "type": evt_row["type"],
tmp["endDate"] = "2099-12-31 00:00:00.0" # actually use the startDate from the import so it
event_list.append(tmp) # properly shows all the events when new ones are imported
"startDate": datetime.strftime(
evt_row["startDate"], "%Y-%m-%d %H:%M:%S"
),
"endDate": "2099-12-31 00:00:00",
}
)
return { return {
"type": data["type"], "type": data["type"],
@ -228,29 +236,36 @@ class ChuniBase:
def handle_get_user_character_api_request(self, data: Dict) -> Dict: def handle_get_user_character_api_request(self, data: Dict) -> Dict:
characters = self.data.item.get_characters(data["userId"]) characters = self.data.item.get_characters(data["userId"])
if characters is None: if characters is None:
return {} return {
next_idx = -1 "userId": data["userId"],
"length": 0,
"nextIndex": -1,
"userCharacterList": [],
}
characterList = [] character_list = []
for x in range(int(data["nextIndex"]), len(characters)): next_idx = int(data["nextIndex"])
max_ct = int(data["maxCount"])
for x in range(next_idx, len(characters)):
tmp = characters[x]._asdict() tmp = characters[x]._asdict()
tmp.pop("user") tmp.pop("user")
tmp.pop("id") tmp.pop("id")
characterList.append(tmp) character_list.append(tmp)
if len(characterList) >= int(data["maxCount"]): if len(character_list) >= max_ct:
break break
if len(characterList) >= int(data["maxCount"]) and len(characters) > int( if len(characters) >= next_idx + max_ct:
data["maxCount"] next_idx += max_ct
) + int(data["nextIndex"]): else:
next_idx = int(data["maxCount"]) + int(data["nextIndex"]) + 1 next_idx = -1
return { return {
"userId": data["userId"], "userId": data["userId"],
"length": len(characterList), "length": len(character_list),
"nextIndex": next_idx, "nextIndex": next_idx,
"userCharacterList": characterList, "userCharacterList": character_list,
} }
def handle_get_user_charge_api_request(self, data: Dict) -> Dict: def handle_get_user_charge_api_request(self, data: Dict) -> Dict:
@ -292,8 +307,8 @@ class ChuniBase:
if len(user_course_list) >= max_ct: if len(user_course_list) >= max_ct:
break break
if len(user_course_list) >= max_ct: if len(user_course_list) >= next_idx + max_ct:
next_idx = next_idx + max_ct next_idx += max_ct
else: else:
next_idx = -1 next_idx = -1
@ -347,12 +362,23 @@ class ChuniBase:
} }
def handle_get_user_favorite_item_api_request(self, data: Dict) -> Dict: def handle_get_user_favorite_item_api_request(self, data: Dict) -> Dict:
user_fav_item_list = []
# still needs to be implemented on WebUI
# 1: Music, 3: Character
fav_list = self.data.item.get_all_favorites(
data["userId"], self.version, fav_kind=int(data["kind"])
)
if fav_list is not None:
for fav in fav_list:
user_fav_item_list.append({"id": fav["favId"]})
return { return {
"userId": data["userId"], "userId": data["userId"],
"length": 0, "length": len(user_fav_item_list),
"kind": data["kind"], "kind": data["kind"],
"nextIndex": -1, "nextIndex": -1,
"userFavoriteItemList": [], "userFavoriteItemList": user_fav_item_list,
} }
def handle_get_user_favorite_music_api_request(self, data: Dict) -> Dict: def handle_get_user_favorite_music_api_request(self, data: Dict) -> Dict:
@ -387,13 +413,13 @@ class ChuniBase:
xout = kind * 10000000000 + next_idx + len(items) xout = kind * 10000000000 + next_idx + len(items)
if len(items) < int(data["maxCount"]): if len(items) < int(data["maxCount"]):
nextIndex = 0 next_idx = 0
else: else:
nextIndex = xout next_idx = xout
return { return {
"userId": data["userId"], "userId": data["userId"],
"nextIndex": nextIndex, "nextIndex": next_idx,
"itemKind": kind, "itemKind": kind,
"length": len(items), "length": len(items),
"userItemList": items, "userItemList": items,
@ -452,6 +478,7 @@ class ChuniBase:
"nextIndex": -1, "nextIndex": -1,
"userMusicList": [], # 240 "userMusicList": [], # 240
} }
song_list = [] song_list = []
next_idx = int(data["nextIndex"]) next_idx = int(data["nextIndex"])
max_ct = int(data["maxCount"]) max_ct = int(data["maxCount"])
@ -474,10 +501,10 @@ class ChuniBase:
if len(song_list) >= max_ct: if len(song_list) >= max_ct:
break break
if len(song_list) >= max_ct: if len(song_list) >= next_idx + max_ct:
next_idx += max_ct next_idx += max_ct
else: else:
next_idx = 0 next_idx = -1
return { return {
"userId": data["userId"], "userId": data["userId"],
@ -623,12 +650,15 @@ class ChuniBase:
self.data.profile.put_profile_data( self.data.profile.put_profile_data(
user_id, self.version, upsert["userData"][0] user_id, self.version, upsert["userData"][0]
) )
if "userDataEx" in upsert: if "userDataEx" in upsert:
self.data.profile.put_profile_data_ex( self.data.profile.put_profile_data_ex(
user_id, self.version, upsert["userDataEx"][0] user_id, self.version, upsert["userDataEx"][0]
) )
if "userGameOption" in upsert: if "userGameOption" in upsert:
self.data.profile.put_profile_option(user_id, upsert["userGameOption"][0]) self.data.profile.put_profile_option(user_id, upsert["userGameOption"][0])
if "userGameOptionEx" in upsert: if "userGameOptionEx" in upsert:
self.data.profile.put_profile_option_ex( self.data.profile.put_profile_option_ex(
user_id, upsert["userGameOptionEx"][0] user_id, upsert["userGameOptionEx"][0]
@ -672,6 +702,10 @@ class ChuniBase:
if "userPlaylogList" in upsert: if "userPlaylogList" in upsert:
for playlog in upsert["userPlaylogList"]: for playlog in upsert["userPlaylogList"]:
# convert the player names to utf-8
playlog["playedUserName1"] = self.read_wtf8(playlog["playedUserName1"])
playlog["playedUserName2"] = self.read_wtf8(playlog["playedUserName2"])
playlog["playedUserName3"] = self.read_wtf8(playlog["playedUserName3"])
self.data.score.put_playlog(user_id, playlog) self.data.score.put_playlog(user_id, playlog)
if "userTeamPoint" in upsert: if "userTeamPoint" in upsert:

View File

@ -17,21 +17,23 @@ class ChuniConstants:
VER_CHUNITHM_PARADISE = 10 VER_CHUNITHM_PARADISE = 10
VER_CHUNITHM_NEW = 11 VER_CHUNITHM_NEW = 11
VER_CHUNITHM_NEW_PLUS = 12 VER_CHUNITHM_NEW_PLUS = 12
VER_CHUNITHM_SUN = 13
VERSION_NAMES = [ VERSION_NAMES = [
"Chunithm", "CHUNITHM",
"Chunithm+", "CHUNITHM PLUS",
"Chunithm Air", "CHUNITHM AIR",
"Chunithm Air+", "CHUNITHM AIR PLUS",
"Chunithm Star", "CHUNITHM STAR",
"Chunithm Star+", "CHUNITHM STAR PLUS",
"Chunithm Amazon", "CHUNITHM AMAZON",
"Chunithm Amazon+", "CHUNITHM AMAZON PLUS",
"Chunithm Crystal", "CHUNITHM CRYSTAL",
"Chunithm Crystal+", "CHUNITHM CRYSTAL PLUS",
"Chunithm Paradise", "CHUNITHM PARADISE",
"Chunithm New!!", "CHUNITHM NEW!!",
"Chunithm New!!+", "CHUNITHM NEW PLUS!!",
"CHUNITHM SUN"
] ]
@classmethod @classmethod

View File

@ -29,6 +29,7 @@ from titles.chuni.crystalplus import ChuniCrystalPlus
from titles.chuni.paradise import ChuniParadise from titles.chuni.paradise import ChuniParadise
from titles.chuni.new import ChuniNew from titles.chuni.new import ChuniNew
from titles.chuni.newplus import ChuniNewPlus from titles.chuni.newplus import ChuniNewPlus
from titles.chuni.sun import ChuniSun
class ChuniServlet: class ChuniServlet:
@ -55,6 +56,7 @@ class ChuniServlet:
ChuniParadise, ChuniParadise,
ChuniNew, ChuniNew,
ChuniNewPlus, ChuniNewPlus,
ChuniSun,
] ]
self.logger = logging.getLogger("chuni") self.logger = logging.getLogger("chuni")
@ -96,15 +98,18 @@ class ChuniServlet:
] ]
for method in method_list: for method in method_list:
method_fixed = inflection.camelize(method)[6:-7] method_fixed = inflection.camelize(method)[6:-7]
# number of iterations was changed to 70 in SUN
iter_count = 70 if version >= ChuniConstants.VER_CHUNITHM_SUN else 44
hash = PBKDF2( hash = PBKDF2(
method_fixed, method_fixed,
bytes.fromhex(keys[2]), bytes.fromhex(keys[2]),
128, 128,
count=44, count=iter_count,
hmac_hash_module=SHA1, hmac_hash_module=SHA1,
) )
self.hash_table[version][hash.hex()] = method_fixed hashed_name = hash.hex()[:32] # truncate unused bytes like the game does
self.hash_table[version][hashed_name] = method_fixed
self.logger.debug( self.logger.debug(
f"Hashed v{version} method {method_fixed} with {bytes.fromhex(keys[2])} to get {hash.hex()}" f"Hashed v{version} method {method_fixed} with {bytes.fromhex(keys[2])} to get {hash.hex()}"
@ -145,30 +150,32 @@ class ChuniServlet:
if version < 105: # 1.0 if version < 105: # 1.0
internal_ver = ChuniConstants.VER_CHUNITHM internal_ver = ChuniConstants.VER_CHUNITHM
elif version >= 105 and version < 110: # Plus elif version >= 105 and version < 110: # PLUS
internal_ver = ChuniConstants.VER_CHUNITHM_PLUS internal_ver = ChuniConstants.VER_CHUNITHM_PLUS
elif version >= 110 and version < 115: # Air elif version >= 110 and version < 115: # AIR
internal_ver = ChuniConstants.VER_CHUNITHM_AIR internal_ver = ChuniConstants.VER_CHUNITHM_AIR
elif version >= 115 and version < 120: # Air Plus elif version >= 115 and version < 120: # AIR PLUS
internal_ver = ChuniConstants.VER_CHUNITHM_AIR_PLUS internal_ver = ChuniConstants.VER_CHUNITHM_AIR_PLUS
elif version >= 120 and version < 125: # Star elif version >= 120 and version < 125: # STAR
internal_ver = ChuniConstants.VER_CHUNITHM_STAR internal_ver = ChuniConstants.VER_CHUNITHM_STAR
elif version >= 125 and version < 130: # Star Plus elif version >= 125 and version < 130: # STAR PLUS
internal_ver = ChuniConstants.VER_CHUNITHM_STAR_PLUS internal_ver = ChuniConstants.VER_CHUNITHM_STAR_PLUS
elif version >= 130 and version < 135: # Amazon elif version >= 130 and version < 135: # AMAZON
internal_ver = ChuniConstants.VER_CHUNITHM_AMAZON internal_ver = ChuniConstants.VER_CHUNITHM_AMAZON
elif version >= 135 and version < 140: # Amazon Plus elif version >= 135 and version < 140: # AMAZON PLUS
internal_ver = ChuniConstants.VER_CHUNITHM_AMAZON_PLUS internal_ver = ChuniConstants.VER_CHUNITHM_AMAZON_PLUS
elif version >= 140 and version < 145: # Crystal elif version >= 140 and version < 145: # CRYSTAL
internal_ver = ChuniConstants.VER_CHUNITHM_CRYSTAL internal_ver = ChuniConstants.VER_CHUNITHM_CRYSTAL
elif version >= 145 and version < 150: # Crystal Plus elif version >= 145 and version < 150: # CRYSTAL PLUS
internal_ver = ChuniConstants.VER_CHUNITHM_CRYSTAL_PLUS internal_ver = ChuniConstants.VER_CHUNITHM_CRYSTAL_PLUS
elif version >= 150 and version < 200: # Paradise elif version >= 150 and version < 200: # PARADISE
internal_ver = ChuniConstants.VER_CHUNITHM_PARADISE internal_ver = ChuniConstants.VER_CHUNITHM_PARADISE
elif version >= 200 and version < 205: # New elif version >= 200 and version < 205: # NEW!!
internal_ver = ChuniConstants.VER_CHUNITHM_NEW internal_ver = ChuniConstants.VER_CHUNITHM_NEW
elif version >= 205 and version < 210: # New Plus elif version >= 205 and version < 210: # NEW PLUS!!
internal_ver = ChuniConstants.VER_CHUNITHM_NEW_PLUS internal_ver = ChuniConstants.VER_CHUNITHM_NEW_PLUS
elif version >= 210: # SUN
internal_ver = ChuniConstants.VER_CHUNITHM_SUN
if all(c in string.hexdigits for c in endpoint) and len(endpoint) == 32: if all(c in string.hexdigits for c in endpoint) and len(endpoint) == 32:
# If we get a 32 character long hex string, it's a hash and we're # If we get a 32 character long hex string, it's a hash and we're

View File

@ -23,41 +23,44 @@ class ChuniNew(ChuniBase):
self.version = ChuniConstants.VER_CHUNITHM_NEW self.version = ChuniConstants.VER_CHUNITHM_NEW
def handle_get_game_setting_api_request(self, data: Dict) -> Dict: def handle_get_game_setting_api_request(self, data: Dict) -> Dict:
# use UTC time and convert it to JST time by adding +9
# matching therefore starts one hour before and lasts for 8 hours
match_start = datetime.strftime( match_start = datetime.strftime(
datetime.now() - timedelta(hours=10), self.date_time_format datetime.utcnow() + timedelta(hours=8), self.date_time_format
) )
match_end = datetime.strftime( match_end = datetime.strftime(
datetime.now() + timedelta(hours=10), self.date_time_format datetime.utcnow() + timedelta(hours=16), self.date_time_format
) )
reboot_start = datetime.strftime( reboot_start = datetime.strftime(
datetime.now() - timedelta(hours=11), self.date_time_format datetime.utcnow() + timedelta(hours=6), self.date_time_format
) )
reboot_end = datetime.strftime( reboot_end = datetime.strftime(
datetime.now() - timedelta(hours=10), self.date_time_format datetime.utcnow() + timedelta(hours=7), self.date_time_format
) )
return { return {
"gameSetting": { "gameSetting": {
"isMaintenance": "false", "isMaintenance": False,
"requestInterval": 10, "requestInterval": 10,
"rebootStartTime": reboot_start, "rebootStartTime": reboot_start,
"rebootEndTime": reboot_end, "rebootEndTime": reboot_end,
"isBackgroundDistribute": "false", "isBackgroundDistribute": False,
"maxCountCharacter": 300, "maxCountCharacter": 300,
"maxCountItem": 300, "maxCountItem": 300,
"maxCountMusic": 300, "maxCountMusic": 300,
"matchStartTime": match_start, "matchStartTime": match_start,
"matchEndTime": match_end, "matchEndTime": match_end,
"matchTimeLimit": 99, "matchTimeLimit": 60,
"matchErrorLimit": 9999, "matchErrorLimit": 9999,
"romVersion": self.game_cfg.version.version(self.version)["rom"], "romVersion": self.game_cfg.version.version(self.version)["rom"],
"dataVersion": self.game_cfg.version.version(self.version)["data"], "dataVersion": self.game_cfg.version.version(self.version)["data"],
"matchingUri": f"http://{self.core_cfg.title.hostname}:{self.core_cfg.title.port}/SDHD/200/ChuniServlet/", "matchingUri": f"http://{self.core_cfg.title.hostname}:{self.core_cfg.title.port}/SDHD/200/ChuniServlet/",
"matchingUriX": f"http://{self.core_cfg.title.hostname}:{self.core_cfg.title.port}/SDHD/200/ChuniServlet/", "matchingUriX": f"http://{self.core_cfg.title.hostname}:{self.core_cfg.title.port}/SDHD/200/ChuniServlet/",
# might be really important for online battle to connect the cabs via UDP port 50201
"udpHolePunchUri": f"http://{self.core_cfg.title.hostname}:{self.core_cfg.title.port}/SDHD/200/ChuniServlet/", "udpHolePunchUri": f"http://{self.core_cfg.title.hostname}:{self.core_cfg.title.port}/SDHD/200/ChuniServlet/",
"reflectorUri": f"http://{self.core_cfg.title.hostname}:{self.core_cfg.title.port}/SDHD/200/ChuniServlet/", "reflectorUri": f"http://{self.core_cfg.title.hostname}:{self.core_cfg.title.port}/SDHD/200/ChuniServlet/",
}, },
"isDumpUpload": "false", "isDumpUpload": False,
"isAou": "false", "isAou": False,
} }
def handle_remove_token_api_request(self, data: Dict) -> Dict: def handle_remove_token_api_request(self, data: Dict) -> Dict:
@ -468,3 +471,162 @@ class ChuniNew(ChuniBase):
self.data.item.put_user_print_state(user_id, id=order_id, hasCompleted=True) self.data.item.put_user_print_state(user_id, id=order_id, hasCompleted=True)
return {"returnCode": "1", "apiName": "CMUpsertUserPrintCancelApi"} return {"returnCode": "1", "apiName": "CMUpsertUserPrintCancelApi"}
def handle_ping_request(self, data: Dict) -> Dict:
# matchmaking ping request
return {"returnCode": "1"}
def handle_begin_matching_api_request(self, data: Dict) -> Dict:
room_id = 1
# check if there is a free matching room
matching_room = self.data.item.get_oldest_free_matching(self.version)
if matching_room is None:
# grab the latest roomId and add 1 for the new room
newest_matching = self.data.item.get_newest_matching(self.version)
if newest_matching is not None:
room_id = newest_matching["roomId"] + 1
# fix userName WTF8
new_member = data["matchingMemberInfo"]
new_member["userName"] = self.read_wtf8(new_member["userName"])
# create the new room with room_id and the current user id (host)
# user id is required for the countdown later on
self.data.item.put_matching(
self.version, room_id, [new_member], user_id=new_member["userId"]
)
# get the newly created matching room
matching_room = self.data.item.get_matching(self.version, room_id)
else:
# a room already exists, so just add the new member to it
matching_member_list = matching_room["matchingMemberInfoList"]
# fix userName WTF8
new_member = data["matchingMemberInfo"]
new_member["userName"] = self.read_wtf8(new_member["userName"])
matching_member_list.append(new_member)
# add the updated room to the database, make sure to set isFull correctly!
self.data.item.put_matching(
self.version,
matching_room["roomId"],
matching_member_list,
user_id=matching_room["user"],
is_full=True if len(matching_member_list) >= 4 else False,
)
matching_wait = {
"isFinish": False,
"restMSec": matching_room["restMSec"], # in sec
"pollingInterval": 1, # in sec
"matchingMemberInfoList": matching_room["matchingMemberInfoList"],
}
return {"roomId": 1, "matchingWaitState": matching_wait}
def handle_end_matching_api_request(self, data: Dict) -> Dict:
matching_room = self.data.item.get_matching(self.version, data["roomId"])
members = matching_room["matchingMemberInfoList"]
# only set the host user to role 1 every other to 0?
role_list = [
{"role": 1} if m["userId"] == matching_room["user"] else {"role": 0}
for m in members
]
self.data.item.put_matching(
self.version,
matching_room["roomId"],
members,
user_id=matching_room["user"],
rest_sec=0, # make sure to always set 0
is_full=True, # and full, so no one can join
)
return {
"matchingResult": 1, # needs to be 1 for successful matching
"matchingMemberInfoList": members,
# no idea, maybe to differentiate between CPUs and real players?
"matchingMemberRoleList": role_list,
# TCP/UDP connection?
"reflectorUri": f"{self.core_cfg.title.hostname}",
}
def handle_remove_matching_member_api_request(self, data: Dict) -> Dict:
# get all matching rooms, because Chuni only returns the userId
# not the actual roomId
matching_rooms = self.data.item.get_all_matchings(self.version)
if matching_rooms is None:
return {"returnCode": "1"}
for room in matching_rooms:
old_members = room["matchingMemberInfoList"]
new_members = [m for m in old_members if m["userId"] != data["userId"]]
# if nothing changed go to the next room
if len(old_members) == len(new_members):
continue
# if the last user got removed, delete the matching room
if len(new_members) <= 0:
self.data.item.delete_matching(self.version, room["roomId"])
else:
# remove the user from the room
self.data.item.put_matching(
self.version,
room["roomId"],
new_members,
user_id=room["user"],
rest_sec=room["restMSec"],
)
return {"returnCode": "1"}
def handle_get_matching_state_api_request(self, data: Dict) -> Dict:
polling_interval = 1
# get the current active room
matching_room = self.data.item.get_matching(self.version, data["roomId"])
members = matching_room["matchingMemberInfoList"]
rest_sec = matching_room["restMSec"]
# grab the current member
current_member = data["matchingMemberInfo"]
# only the host user can decrease the countdown
if matching_room["user"] == int(current_member["userId"]):
# cap the restMSec to 0
if rest_sec > 0:
rest_sec -= polling_interval
else:
rest_sec = 0
# update the members in order to recieve messages
for i, member in enumerate(members):
if member["userId"] == current_member["userId"]:
# replace the old user data with the current user data,
# also parse WTF-8 everytime
current_member["userName"] = self.read_wtf8(current_member["userName"])
members[i] = current_member
self.data.item.put_matching(
self.version,
data["roomId"],
members,
rest_sec=rest_sec,
user_id=matching_room["user"],
)
# only add the other members to the list
diff_members = [m for m in members if m["userId"] != current_member["userId"]]
matching_wait = {
# makes no difference? Always use False?
"isFinish": True if rest_sec == 0 else False,
"restMSec": rest_sec,
"pollingInterval": polling_interval,
# the current user needs to be the first one?
"matchingMemberInfoList": [current_member] + diff_members,
}
return {"matchingWaitState": matching_wait}

View File

@ -36,6 +36,6 @@ class ChuniNewPlus(ChuniNew):
def handle_cm_get_user_preview_api_request(self, data: Dict) -> Dict: def handle_cm_get_user_preview_api_request(self, data: Dict) -> Dict:
user_data = super().handle_cm_get_user_preview_api_request(data) user_data = super().handle_cm_get_user_preview_api_request(data)
# hardcode lastDataVersion for CardMaker 1.35 # hardcode lastDataVersion for CardMaker 1.35 A028
user_data["lastDataVersion"] = "2.05.00" user_data["lastDataVersion"] = "2.05.00"
return user_data return user_data

View File

@ -1,5 +1,12 @@
from typing import Dict, List, Optional from typing import Dict, List, Optional
from sqlalchemy import Table, Column, UniqueConstraint, PrimaryKeyConstraint, and_ from sqlalchemy import (
Table,
Column,
UniqueConstraint,
PrimaryKeyConstraint,
and_,
delete,
)
from sqlalchemy.types import Integer, String, TIMESTAMP, Boolean, JSON from sqlalchemy.types import Integer, String, TIMESTAMP, Boolean, JSON
from sqlalchemy.engine.base import Connection from sqlalchemy.engine.base import Connection
from sqlalchemy.schema import ForeignKey from sqlalchemy.schema import ForeignKey
@ -203,8 +210,141 @@ login_bonus = Table(
mysql_charset="utf8mb4", mysql_charset="utf8mb4",
) )
favorite = Table(
"chuni_item_favorite",
metadata,
Column("id", Integer, primary_key=True, nullable=False),
Column(
"user",
ForeignKey("aime_user.id", ondelete="cascade", onupdate="cascade"),
nullable=False,
),
Column("version", Integer, nullable=False),
Column("favId", Integer, nullable=False),
Column("favKind", Integer, nullable=False, server_default="1"),
UniqueConstraint("version", "user", "favId", name="chuni_item_favorite_uk"),
mysql_charset="utf8mb4",
)
matching = Table(
"chuni_item_matching",
metadata,
Column("roomId", Integer, nullable=False),
Column(
"user",
ForeignKey("aime_user.id", ondelete="cascade", onupdate="cascade"),
nullable=False,
),
Column("version", Integer, nullable=False),
Column("restMSec", Integer, nullable=False, server_default="60"),
Column("isFull", Boolean, nullable=False, server_default="0"),
PrimaryKeyConstraint("roomId", "version", name="chuni_item_matching_pk"),
Column("matchingMemberInfoList", JSON, nullable=False),
mysql_charset="utf8mb4",
)
class ChuniItemData(BaseData): class ChuniItemData(BaseData):
def get_oldest_free_matching(self, version: int) -> Optional[Row]:
sql = matching.select(
and_(
matching.c.version == version,
matching.c.isFull == False
)
).order_by(matching.c.roomId.asc())
result = self.execute(sql)
if result is None:
return None
return result.fetchone()
def get_newest_matching(self, version: int) -> Optional[Row]:
sql = matching.select(
and_(
matching.c.version == version
)
).order_by(matching.c.roomId.desc())
result = self.execute(sql)
if result is None:
return None
return result.fetchone()
def get_all_matchings(self, version: int) -> Optional[List[Row]]:
sql = matching.select(
and_(
matching.c.version == version
)
)
result = self.execute(sql)
if result is None:
return None
return result.fetchall()
def get_matching(self, version: int, room_id: int) -> Optional[Row]:
sql = matching.select(
and_(matching.c.version == version, matching.c.roomId == room_id)
)
result = self.execute(sql)
if result is None:
return None
return result.fetchone()
def put_matching(
self,
version: int,
room_id: int,
matching_member_info_list: list,
user_id: int = None,
rest_sec: int = 60,
is_full: bool = False
) -> Optional[int]:
sql = insert(matching).values(
roomId=room_id,
version=version,
restMSec=rest_sec,
user=user_id,
isFull=is_full,
matchingMemberInfoList=matching_member_info_list,
)
conflict = sql.on_duplicate_key_update(
restMSec=rest_sec, matchingMemberInfoList=matching_member_info_list
)
result = self.execute(conflict)
if result is None:
return None
return result.lastrowid
def delete_matching(self, version: int, room_id: int):
sql = delete(matching).where(
and_(matching.c.roomId == room_id, matching.c.version == version)
)
result = self.execute(sql)
if result is None:
return None
return result.lastrowid
def get_all_favorites(
self, user_id: int, version: int, fav_kind: int = 1
) -> Optional[List[Row]]:
sql = favorite.select(
and_(
favorite.c.version == version,
favorite.c.user == user_id,
favorite.c.favKind == fav_kind,
)
)
result = self.execute(sql)
if result is None:
return None
return result.fetchall()
def put_login_bonus( def put_login_bonus(
self, user_id: int, version: int, preset_id: int, **login_bonus_data self, user_id: int, version: int, preset_id: int, **login_bonus_data
) -> Optional[int]: ) -> Optional[int]:

View File

@ -89,8 +89,6 @@ profile = Table(
Integer, Integer,
ForeignKey("chuni_profile_team.id", ondelete="SET NULL", onupdate="SET NULL"), ForeignKey("chuni_profile_team.id", ondelete="SET NULL", onupdate="SET NULL"),
), ),
Column("avatarBack", Integer, server_default="0"),
Column("avatarFace", Integer, server_default="0"),
Column("eliteRankPoint", Integer, server_default="0"), Column("eliteRankPoint", Integer, server_default="0"),
Column("stockedGridCount", Integer, server_default="0"), Column("stockedGridCount", Integer, server_default="0"),
Column("netBattleLoseCount", Integer, server_default="0"), Column("netBattleLoseCount", Integer, server_default="0"),
@ -98,10 +96,8 @@ profile = Table(
Column("netBattle4thCount", Integer, server_default="0"), Column("netBattle4thCount", Integer, server_default="0"),
Column("overPowerRate", Integer, server_default="0"), Column("overPowerRate", Integer, server_default="0"),
Column("battleRewardStatus", Integer, server_default="0"), Column("battleRewardStatus", Integer, server_default="0"),
Column("avatarPoint", Integer, server_default="0"),
Column("netBattle1stCount", Integer, server_default="0"), Column("netBattle1stCount", Integer, server_default="0"),
Column("charaIllustId", Integer, server_default="0"), Column("charaIllustId", Integer, server_default="0"),
Column("avatarItem", Integer, server_default="0"),
Column("userNameEx", String(8), server_default=""), Column("userNameEx", String(8), server_default=""),
Column("netBattleWinCount", Integer, server_default="0"), Column("netBattleWinCount", Integer, server_default="0"),
Column("netBattleCorrection", Integer, server_default="0"), Column("netBattleCorrection", Integer, server_default="0"),
@ -112,7 +108,6 @@ profile = Table(
Column("netBattle3rdCount", Integer, server_default="0"), Column("netBattle3rdCount", Integer, server_default="0"),
Column("netBattleConsecutiveWinCount", Integer, server_default="0"), Column("netBattleConsecutiveWinCount", Integer, server_default="0"),
Column("overPowerLowerRank", Integer, server_default="0"), Column("overPowerLowerRank", Integer, server_default="0"),
Column("avatarWear", Integer, server_default="0"),
Column("classEmblemBase", Integer, server_default="0"), Column("classEmblemBase", Integer, server_default="0"),
Column("battleRankPoint", Integer, server_default="0"), Column("battleRankPoint", Integer, server_default="0"),
Column("netBattle2ndCount", Integer, server_default="0"), Column("netBattle2ndCount", Integer, server_default="0"),
@ -120,13 +115,19 @@ profile = Table(
Column("skillId", Integer, server_default="0"), Column("skillId", Integer, server_default="0"),
Column("lastCountryCode", String(5), server_default="JPN"), Column("lastCountryCode", String(5), server_default="JPN"),
Column("isNetBattleHost", Boolean, server_default="0"), Column("isNetBattleHost", Boolean, server_default="0"),
Column("avatarFront", Integer, server_default="0"),
Column("avatarSkin", Integer, server_default="0"),
Column("battleRewardCount", Integer, server_default="0"), Column("battleRewardCount", Integer, server_default="0"),
Column("battleRewardIndex", Integer, server_default="0"), Column("battleRewardIndex", Integer, server_default="0"),
Column("netBattlePlayCount", Integer, server_default="0"), Column("netBattlePlayCount", Integer, server_default="0"),
Column("exMapLoopCount", Integer, server_default="0"), Column("exMapLoopCount", Integer, server_default="0"),
Column("netBattleEndState", Integer, server_default="0"), Column("netBattleEndState", Integer, server_default="0"),
Column("rankUpChallengeResults", JSON),
Column("avatarBack", Integer, server_default="0"),
Column("avatarFace", Integer, server_default="0"),
Column("avatarPoint", Integer, server_default="0"),
Column("avatarItem", Integer, server_default="0"),
Column("avatarWear", Integer, server_default="0"),
Column("avatarFront", Integer, server_default="0"),
Column("avatarSkin", Integer, server_default="0"),
Column("avatarHead", Integer, server_default="0"), Column("avatarHead", Integer, server_default="0"),
UniqueConstraint("user", "version", name="chuni_profile_profile_uk"), UniqueConstraint("user", "version", name="chuni_profile_profile_uk"),
mysql_charset="utf8mb4", mysql_charset="utf8mb4",
@ -417,8 +418,8 @@ class ChuniProfileData(BaseData):
sql = ( sql = (
select([profile, option]) select([profile, option])
.join(option, profile.c.user == option.c.user) .join(option, profile.c.user == option.c.user)
.filter(and_(profile.c.user == aime_id, profile.c.version == version)) .filter(and_(profile.c.user == aime_id, profile.c.version <= version))
) ).order_by(profile.c.version.desc())
result = self.execute(sql) result = self.execute(sql)
if result is None: if result is None:
@ -429,9 +430,9 @@ class ChuniProfileData(BaseData):
sql = select(profile).where( sql = select(profile).where(
and_( and_(
profile.c.user == aime_id, profile.c.user == aime_id,
profile.c.version == version, profile.c.version <= version,
) )
) ).order_by(profile.c.version.desc())
result = self.execute(sql) result = self.execute(sql)
if result is None: if result is None:
@ -461,9 +462,9 @@ class ChuniProfileData(BaseData):
sql = select(profile_ex).where( sql = select(profile_ex).where(
and_( and_(
profile_ex.c.user == aime_id, profile_ex.c.user == aime_id,
profile_ex.c.version == version, profile_ex.c.version <= version,
) )
) ).order_by(profile_ex.c.version.desc())
result = self.execute(sql) result = self.execute(sql)
if result is None: if result is None:

View File

@ -134,7 +134,9 @@ playlog = Table(
Column("charaIllustId", Integer), Column("charaIllustId", Integer),
Column("romVersion", String(255)), Column("romVersion", String(255)),
Column("judgeHeaven", Integer), Column("judgeHeaven", Integer),
mysql_charset="utf8mb4", Column("regionId", Integer),
Column("machineType", Integer),
mysql_charset="utf8mb4"
) )

View File

@ -1,11 +1,19 @@
from typing import Dict, List, Optional from typing import Dict, List, Optional
from sqlalchemy import Table, Column, UniqueConstraint, PrimaryKeyConstraint, and_ from sqlalchemy import (
ForeignKeyConstraint,
Table,
Column,
UniqueConstraint,
PrimaryKeyConstraint,
and_,
)
from sqlalchemy.types import Integer, String, TIMESTAMP, Boolean, JSON, Float from sqlalchemy.types import Integer, String, TIMESTAMP, Boolean, JSON, Float
from sqlalchemy.engine.base import Connection from sqlalchemy.engine.base import Connection
from sqlalchemy.engine import Row from sqlalchemy.engine import Row
from sqlalchemy.schema import ForeignKey from sqlalchemy.schema import ForeignKey
from sqlalchemy.sql import func, select from sqlalchemy.sql import func, select
from sqlalchemy.dialects.mysql import insert from sqlalchemy.dialects.mysql import insert
from datetime import datetime
from core.data.schema import BaseData, metadata from core.data.schema import BaseData, metadata
@ -17,6 +25,7 @@ events = Table(
Column("eventId", Integer), Column("eventId", Integer),
Column("type", Integer), Column("type", Integer),
Column("name", String(255)), Column("name", String(255)),
Column("startDate", TIMESTAMP, server_default=func.now()),
Column("enabled", Boolean, server_default="1"), Column("enabled", Boolean, server_default="1"),
UniqueConstraint("version", "eventId", name="chuni_static_events_uk"), UniqueConstraint("version", "eventId", name="chuni_static_events_uk"),
mysql_charset="utf8mb4", mysql_charset="utf8mb4",
@ -125,11 +134,13 @@ gacha_cards = Table(
login_bonus_preset = Table( login_bonus_preset = Table(
"chuni_static_login_bonus_preset", "chuni_static_login_bonus_preset",
metadata, metadata,
Column("id", Integer, primary_key=True, nullable=False), Column("presetId", Integer, nullable=False),
Column("version", Integer, nullable=False), Column("version", Integer, nullable=False),
Column("presetName", String(255), nullable=False), Column("presetName", String(255), nullable=False),
Column("isEnabled", Boolean, server_default="1"), Column("isEnabled", Boolean, server_default="1"),
UniqueConstraint("version", "id", name="chuni_static_login_bonus_preset_uk"), PrimaryKeyConstraint(
"presetId", "version", name="chuni_static_login_bonus_preset_pk"
),
mysql_charset="utf8mb4", mysql_charset="utf8mb4",
) )
@ -138,15 +149,7 @@ login_bonus = Table(
metadata, metadata,
Column("id", Integer, primary_key=True, nullable=False), Column("id", Integer, primary_key=True, nullable=False),
Column("version", Integer, nullable=False), Column("version", Integer, nullable=False),
Column( Column("presetId", Integer, nullable=False),
"presetId",
ForeignKey(
"chuni_static_login_bonus_preset.id",
ondelete="cascade",
onupdate="cascade",
),
nullable=False,
),
Column("loginBonusId", Integer, nullable=False), Column("loginBonusId", Integer, nullable=False),
Column("loginBonusName", String(255), nullable=False), Column("loginBonusName", String(255), nullable=False),
Column("presentId", Integer, nullable=False), Column("presentId", Integer, nullable=False),
@ -157,6 +160,16 @@ login_bonus = Table(
UniqueConstraint( UniqueConstraint(
"version", "presetId", "loginBonusId", name="chuni_static_login_bonus_uk" "version", "presetId", "loginBonusId", name="chuni_static_login_bonus_uk"
), ),
ForeignKeyConstraint(
["presetId", "version"],
[
"chuni_static_login_bonus_preset.presetId",
"chuni_static_login_bonus_preset.version",
],
onupdate="CASCADE",
ondelete="CASCADE",
name="chuni_static_login_bonus_ibfk_1",
),
mysql_charset="utf8mb4", mysql_charset="utf8mb4",
) )
@ -236,7 +249,7 @@ class ChuniStaticData(BaseData):
self, version: int, preset_id: int, preset_name: str, is_enabled: bool self, version: int, preset_id: int, preset_name: str, is_enabled: bool
) -> Optional[int]: ) -> Optional[int]:
sql = insert(login_bonus_preset).values( sql = insert(login_bonus_preset).values(
id=preset_id, presetId=preset_id,
version=version, version=version,
presetName=preset_name, presetName=preset_name,
isEnabled=is_enabled, isEnabled=is_enabled,
@ -416,6 +429,14 @@ class ChuniStaticData(BaseData):
return None return None
return result.fetchall() return result.fetchall()
def get_music(self, version: int) -> Optional[List[Row]]:
sql = music.select(music.c.version <= version)
result = self.execute(sql)
if result is None:
return None
return result.fetchall()
def get_music_chart( def get_music_chart(
self, version: int, song_id: int, chart_id: int self, version: int, song_id: int, chart_id: int
) -> Optional[List[Row]]: ) -> Optional[List[Row]]:

37
titles/chuni/sun.py Normal file
View File

@ -0,0 +1,37 @@
from typing import Dict, Any
from core.config import CoreConfig
from titles.chuni.newplus import ChuniNewPlus
from titles.chuni.const import ChuniConstants
from titles.chuni.config import ChuniConfig
class ChuniSun(ChuniNewPlus):
def __init__(self, core_cfg: CoreConfig, game_cfg: ChuniConfig) -> None:
super().__init__(core_cfg, game_cfg)
self.version = ChuniConstants.VER_CHUNITHM_SUN
def handle_get_game_setting_api_request(self, data: Dict) -> Dict:
ret = super().handle_get_game_setting_api_request(data)
ret["gameSetting"]["romVersion"] = self.game_cfg.version.version(self.version)["rom"]
ret["gameSetting"]["dataVersion"] = self.game_cfg.version.version(self.version)["data"]
ret["gameSetting"][
"matchingUri"
] = f"http://{self.core_cfg.title.hostname}:{self.core_cfg.title.port}/SDHD/210/ChuniServlet/"
ret["gameSetting"][
"matchingUriX"
] = f"http://{self.core_cfg.title.hostname}:{self.core_cfg.title.port}/SDHD/210/ChuniServlet/"
ret["gameSetting"][
"udpHolePunchUri"
] = f"http://{self.core_cfg.title.hostname}:{self.core_cfg.title.port}/SDHD/210/ChuniServlet/"
ret["gameSetting"][
"reflectorUri"
] = f"http://{self.core_cfg.title.hostname}:{self.core_cfg.title.port}/SDHD/210/ChuniServlet/"
return ret
def handle_cm_get_user_preview_api_request(self, data: Dict) -> Dict:
user_data = super().handle_cm_get_user_preview_api_request(data)
# hardcode lastDataVersion for CardMaker 1.35 A032
user_data["lastDataVersion"] = "2.10.00"
return user_data

View File

@ -23,19 +23,40 @@ class CardMakerBase:
self.game = CardMakerConstants.GAME_CODE self.game = CardMakerConstants.GAME_CODE
self.version = CardMakerConstants.VER_CARD_MAKER self.version = CardMakerConstants.VER_CARD_MAKER
@staticmethod
def _parse_int_ver(version: str) -> str:
return version.replace(".", "")[:3]
def handle_get_game_connect_api_request(self, data: Dict) -> Dict: def handle_get_game_connect_api_request(self, data: Dict) -> Dict:
if self.core_cfg.server.is_develop: if self.core_cfg.server.is_develop:
uri = f"http://{self.core_cfg.title.hostname}:{self.core_cfg.title.port}" uri = f"http://{self.core_cfg.title.hostname}:{self.core_cfg.title.port}"
else: else:
uri = f"http://{self.core_cfg.title.hostname}" uri = f"http://{self.core_cfg.title.hostname}"
# CHUNITHM = 0, maimai = 1, ONGEKI = 2 # grab the dict with all games version numbers from user config
games_ver = self.game_cfg.version.version(self.version)
return { return {
"length": 3, "length": 3,
"gameConnectList": [ "gameConnectList": [
{"modelKind": 0, "type": 1, "titleUri": f"{uri}/SDHD/200/"}, # CHUNITHM
{"modelKind": 1, "type": 1, "titleUri": f"{uri}/SDEZ/120/"}, {
{"modelKind": 2, "type": 1, "titleUri": f"{uri}/SDDT/130/"}, "modelKind": 0,
"type": 1,
"titleUri": f"{uri}/SDHD/{self._parse_int_ver(games_ver['chuni'])}/",
},
# maimai DX
{
"modelKind": 1,
"type": 1,
"titleUri": f"{uri}/SDEZ/{self._parse_int_ver(games_ver['maimai'])}/",
},
# ONGEKI
{
"modelKind": 2,
"type": 1,
"titleUri": f"{uri}/SDDT/{self._parse_int_ver(games_ver['ongeki'])}/",
},
], ],
} }
@ -47,12 +68,15 @@ class CardMakerBase:
datetime.now() + timedelta(hours=4), self.date_time_format datetime.now() + timedelta(hours=4), self.date_time_format
) )
# grab the dict with all games version numbers from user config
games_ver = self.game_cfg.version.version(self.version)
return { return {
"gameSetting": { "gameSetting": {
"dataVersion": "1.30.00", "dataVersion": "1.30.00",
"ongekiCmVersion": "1.30.01", "ongekiCmVersion": games_ver["ongeki"],
"chuniCmVersion": "2.00.00", "chuniCmVersion": games_ver["chuni"],
"maimaiCmVersion": "1.20.00", "maimaiCmVersion": games_ver["maimai"],
"requestInterval": 10, "requestInterval": 10,
"rebootStartTime": reboot_start, "rebootStartTime": reboot_start,
"rebootEndTime": reboot_end, "rebootEndTime": reboot_end,

View File

@ -1,8 +1,4 @@
from datetime import date, datetime, timedelta from typing import Dict
from typing import Any, Dict, List
import json
import logging
from enum import Enum
from core.config import CoreConfig from core.config import CoreConfig
from core.data.cache import cached from core.data.cache import cached
@ -16,23 +12,7 @@ class CardMaker135(CardMakerBase):
super().__init__(core_cfg, game_cfg) super().__init__(core_cfg, game_cfg)
self.version = CardMakerConstants.VER_CARD_MAKER_135 self.version = CardMakerConstants.VER_CARD_MAKER_135
def handle_get_game_connect_api_request(self, data: Dict) -> Dict:
ret = super().handle_get_game_connect_api_request(data)
if self.core_cfg.server.is_develop:
uri = f"http://{self.core_cfg.title.hostname}:{self.core_cfg.title.port}"
else:
uri = f"http://{self.core_cfg.title.hostname}"
ret["gameConnectList"][0]["titleUri"] = f"{uri}/SDHD/205/"
ret["gameConnectList"][1]["titleUri"] = f"{uri}/SDEZ/125/"
ret["gameConnectList"][2]["titleUri"] = f"{uri}/SDDT/135/"
return ret
def handle_get_game_setting_api_request(self, data: Dict) -> Dict: def handle_get_game_setting_api_request(self, data: Dict) -> Dict:
ret = super().handle_get_game_setting_api_request(data) ret = super().handle_get_game_setting_api_request(data)
ret["gameSetting"]["dataVersion"] = "1.35.00" ret["gameSetting"]["dataVersion"] = "1.35.00"
ret["gameSetting"]["ongekiCmVersion"] = "1.35.03"
ret["gameSetting"]["chuniCmVersion"] = "2.05.00"
ret["gameSetting"]["maimaiCmVersion"] = "1.25.00"
return ret return ret

View File

@ -1,3 +1,4 @@
from typing import Dict
from core.config import CoreConfig from core.config import CoreConfig
@ -20,6 +21,21 @@ class CardMakerServerConfig:
) )
class CardMakerVersionConfig:
def __init__(self, parent_config: "CardMakerConfig") -> None:
self.__config = parent_config
def version(self, version: int) -> Dict:
"""
in the form of:
1: {"ongeki": 1.30.01, "chuni": 2.00.00, "maimai": 1.20.00}
"""
return CoreConfig.get_config_field(
self.__config, "cardmaker", "version", default={}
)[version]
class CardMakerConfig(dict): class CardMakerConfig(dict):
def __init__(self) -> None: def __init__(self) -> None:
self.server = CardMakerServerConfig(self) self.server = CardMakerServerConfig(self)
self.version = CardMakerVersionConfig(self)

View File

@ -6,7 +6,7 @@ class CardMakerConstants:
VER_CARD_MAKER = 0 VER_CARD_MAKER = 0
VER_CARD_MAKER_135 = 1 VER_CARD_MAKER_135 = 1
VERSION_NAMES = ("Card Maker 1.34", "Card Maker 1.35") VERSION_NAMES = ("Card Maker 1.30", "Card Maker 1.35")
@classmethod @classmethod
def game_ver_to_string(cls, ver: int): def game_ver_to_string(cls, ver: int):

View File

@ -30,7 +30,7 @@ class CardMakerServlet:
self.versions = [ self.versions = [
CardMakerBase(core_cfg, self.game_cfg), CardMakerBase(core_cfg, self.game_cfg),
CardMaker135(core_cfg, self.game_cfg), CardMaker135(core_cfg, self.game_cfg)
] ]
self.logger = logging.getLogger("cardmaker") self.logger = logging.getLogger("cardmaker")
@ -89,7 +89,7 @@ class CardMakerServlet:
if version >= 130 and version < 135: # Card Maker if version >= 130 and version < 135: # Card Maker
internal_ver = CardMakerConstants.VER_CARD_MAKER internal_ver = CardMakerConstants.VER_CARD_MAKER
elif version >= 135 and version < 136: # Card Maker 1.35 elif version >= 135 and version < 140: # Card Maker 1.35
internal_ver = CardMakerConstants.VER_CARD_MAKER_135 internal_ver = CardMakerConstants.VER_CARD_MAKER_135
if all(c in string.hexdigits for c in endpoint) and len(endpoint) == 32: if all(c in string.hexdigits for c in endpoint) and len(endpoint) == 32:

View File

@ -103,7 +103,7 @@ class CxbServlet(resource.Resource):
else: else:
self.logger.info(f"Ready on port {self.game_cfg.server.port}") self.logger.info(f"Ready on port {self.game_cfg.server.port}")
def render_POST(self, request: Request): def render_POST(self, request: Request, version: int, endpoint: str):
version = 0 version = 0
internal_ver = 0 internal_ver = 0
func_to_find = "" func_to_find = ""

View File

@ -83,7 +83,13 @@ class IDZUserDBProtocol(Protocol):
def dataReceived(self, data: bytes) -> None: def dataReceived(self, data: bytes) -> None:
self.logger.debug(f"Receive data {data.hex()}") self.logger.debug(f"Receive data {data.hex()}")
crypt = AES.new(self.static_key, AES.MODE_ECB) crypt = AES.new(self.static_key, AES.MODE_ECB)
data_dec = crypt.decrypt(data)
try:
data_dec = crypt.decrypt(data)
except Exception as e:
self.logger.error(f"Failed to decrypt UserDB request from {self.transport.getPeer().host} because {e} - {data.hex()}")
self.logger.debug(f"Decrypt data {data_dec.hex()}") self.logger.debug(f"Decrypt data {data_dec.hex()}")
magic = struct.unpack_from("<I", data_dec, 0)[0] magic = struct.unpack_from("<I", data_dec, 0)[0]

View File

@ -16,4 +16,4 @@ game_codes = [
Mai2Constants.GAME_CODE_GREEN, Mai2Constants.GAME_CODE_GREEN,
Mai2Constants.GAME_CODE, Mai2Constants.GAME_CODE,
] ]
current_schema_version = 4 current_schema_version = 5

View File

@ -632,21 +632,38 @@ class Mai2Base:
return {"userId": data["userId"], "length": 0, "userRegionList": []} return {"userId": data["userId"], "length": 0, "userRegionList": []}
def handle_get_user_music_api_request(self, data: Dict) -> Dict: def handle_get_user_music_api_request(self, data: Dict) -> Dict:
songs = self.data.score.get_best_scores(data["userId"]) user_id = data.get("userId", 0)
next_index = data.get("nextIndex", 0)
max_ct = data.get("maxCount", 50)
upper_lim = next_index + max_ct
music_detail_list = [] music_detail_list = []
next_index = 0
if songs is not None: if user_id <= 0:
for song in songs: self.logger.warn("handle_get_user_music_api_request: Could not find userid in data, or userId is 0")
tmp = song._asdict() return {}
tmp.pop("id")
tmp.pop("user")
music_detail_list.append(tmp)
if len(music_detail_list) == data["maxCount"]: songs = self.data.score.get_best_scores(user_id)
next_index = data["maxCount"] + data["nextIndex"] if songs is None:
break self.logger.debug("handle_get_user_music_api_request: get_best_scores returned None!")
return {
"userId": data["userId"],
"nextIndex": 0,
"userMusicList": [],
}
num_user_songs = len(songs)
for x in range(next_index, upper_lim):
if num_user_songs <= x:
break
tmp = songs[x]._asdict()
tmp.pop("id")
tmp.pop("user")
music_detail_list.append(tmp)
next_index = 0 if len(music_detail_list) < max_ct or num_user_songs == upper_lim else upper_lim
self.logger.info(f"Send songs {next_index}-{upper_lim} ({len(music_detail_list)}) out of {num_user_songs} for user {user_id} (next idx {next_index})")
return { return {
"userId": data["userId"], "userId": data["userId"],
"nextIndex": next_index, "nextIndex": next_index,

View File

@ -71,9 +71,9 @@ class Mai2Constants:
"maimai DX PLUS", "maimai DX PLUS",
"maimai DX Splash", "maimai DX Splash",
"maimai DX Splash PLUS", "maimai DX Splash PLUS",
"maimai DX Universe", "maimai DX UNiVERSE",
"maimai DX Universe PLUS", "maimai DX UNiVERSE PLUS",
"maimai DX Festival", "maimai DX FESTiVAL",
) )
@classmethod @classmethod

View File

@ -39,8 +39,8 @@ card = Table(
Column("cardTypeId", Integer, nullable=False), Column("cardTypeId", Integer, nullable=False),
Column("charaId", Integer, nullable=False), Column("charaId", Integer, nullable=False),
Column("mapId", Integer, nullable=False), Column("mapId", Integer, nullable=False),
Column("startDate", TIMESTAMP, server_default="2018-01-01 00:00:00.0"), Column("startDate", TIMESTAMP, nullable=False, server_default=func.now()),
Column("endDate", TIMESTAMP, server_default="2038-01-01 00:00:00.0"), Column("endDate", TIMESTAMP, nullable=False),
UniqueConstraint("user", "cardId", "cardTypeId", name="mai2_item_card_uk"), UniqueConstraint("user", "cardId", "cardTypeId", name="mai2_item_card_uk"),
mysql_charset="utf8mb4", mysql_charset="utf8mb4",
) )
@ -444,6 +444,8 @@ class Mai2ItemData(BaseData):
card_kind: int, card_kind: int,
chara_id: int, chara_id: int,
map_id: int, map_id: int,
start_date: datetime,
end_date: datetime,
) -> Optional[Row]: ) -> Optional[Row]:
sql = insert(card).values( sql = insert(card).values(
user=user_id, user=user_id,
@ -451,9 +453,13 @@ class Mai2ItemData(BaseData):
cardTypeId=card_kind, cardTypeId=card_kind,
charaId=chara_id, charaId=chara_id,
mapId=map_id, mapId=map_id,
startDate=start_date,
endDate=end_date,
) )
conflict = sql.on_duplicate_key_update(charaId=chara_id, mapId=map_id) conflict = sql.on_duplicate_key_update(
charaId=chara_id, mapId=map_id, startDate=start_date, endDate=end_date
)
result = self.execute(conflict) result = self.execute(conflict)
if result is None: if result is None:

View File

@ -7,6 +7,7 @@ from sqlalchemy.engine import Row
from sqlalchemy.dialects.mysql import insert from sqlalchemy.dialects.mysql import insert
from core.data.schema import BaseData, metadata from core.data.schema import BaseData, metadata
from core.data import cached
best_score = Table( best_score = Table(
"mai2_score_best", "mai2_score_best",
@ -190,6 +191,7 @@ class Mai2ScoreData(BaseData):
return None return None
return result.lastrowid return result.lastrowid
@cached(2)
def get_best_scores(self, user_id: int, song_id: int = None) -> Optional[List[Row]]: def get_best_scores(self, user_id: int, song_id: int = None) -> Optional[List[Row]]:
sql = best_score.select( sql = best_score.select(
and_( and_(

View File

@ -14,3 +14,202 @@ class Mai2Universe(Mai2DX):
def __init__(self, cfg: CoreConfig, game_cfg: Mai2Config) -> None: def __init__(self, cfg: CoreConfig, game_cfg: Mai2Config) -> None:
super().__init__(cfg, game_cfg) super().__init__(cfg, game_cfg)
self.version = Mai2Constants.VER_MAIMAI_DX_UNIVERSE self.version = Mai2Constants.VER_MAIMAI_DX_UNIVERSE
def handle_cm_get_user_preview_api_request(self, data: Dict) -> Dict:
p = self.data.profile.get_profile_detail(data["userId"], self.version)
if p is None:
return {}
return {
"userName": p["userName"],
"rating": p["playerRating"],
# hardcode lastDataVersion for CardMaker 1.34
"lastDataVersion": "1.20.00",
"isLogin": False,
"isExistSellingCard": False,
}
def handle_cm_get_user_data_api_request(self, data: Dict) -> Dict:
# user already exists, because the preview checks that already
p = self.data.profile.get_profile_detail(data["userId"], self.version)
cards = self.data.card.get_user_cards(data["userId"])
if cards is None or len(cards) == 0:
# This should never happen
self.logger.error(
f"handle_get_user_data_api_request: Internal error - No cards found for user id {data['userId']}"
)
return {}
# get the dict representation of the row so we can modify values
user_data = p._asdict()
# remove the values the game doesn't want
user_data.pop("id")
user_data.pop("user")
user_data.pop("version")
return {"userId": data["userId"], "userData": user_data}
def handle_cm_login_api_request(self, data: Dict) -> Dict:
return {"returnCode": 1}
def handle_cm_logout_api_request(self, data: Dict) -> Dict:
return {"returnCode": 1}
def handle_cm_get_selling_card_api_request(self, data: Dict) -> Dict:
selling_cards = self.data.static.get_enabled_cards(self.version)
if selling_cards is None:
return {"length": 0, "sellingCardList": []}
selling_card_list = []
for card in selling_cards:
tmp = card._asdict()
tmp.pop("id")
tmp.pop("version")
tmp.pop("cardName")
tmp.pop("enabled")
tmp["startDate"] = datetime.strftime(tmp["startDate"], "%Y-%m-%d %H:%M:%S")
tmp["endDate"] = datetime.strftime(tmp["endDate"], "%Y-%m-%d %H:%M:%S")
tmp["noticeStartDate"] = datetime.strftime(
tmp["noticeStartDate"], "%Y-%m-%d %H:%M:%S"
)
tmp["noticeEndDate"] = datetime.strftime(
tmp["noticeEndDate"], "%Y-%m-%d %H:%M:%S"
)
selling_card_list.append(tmp)
return {"length": len(selling_card_list), "sellingCardList": selling_card_list}
def handle_cm_get_user_card_api_request(self, data: Dict) -> Dict:
user_cards = self.data.item.get_cards(data["userId"])
if user_cards is None:
return {"returnCode": 1, "length": 0, "nextIndex": 0, "userCardList": []}
max_ct = data["maxCount"]
next_idx = data["nextIndex"]
start_idx = next_idx
end_idx = max_ct + start_idx
if len(user_cards[start_idx:]) > max_ct:
next_idx += max_ct
else:
next_idx = 0
card_list = []
for card in user_cards:
tmp = card._asdict()
tmp.pop("id")
tmp.pop("user")
tmp["startDate"] = datetime.strftime(
tmp["startDate"], Mai2Constants.DATE_TIME_FORMAT
)
tmp["endDate"] = datetime.strftime(
tmp["endDate"], Mai2Constants.DATE_TIME_FORMAT
)
card_list.append(tmp)
return {
"returnCode": 1,
"length": len(card_list[start_idx:end_idx]),
"nextIndex": next_idx,
"userCardList": card_list[start_idx:end_idx],
}
def handle_cm_get_user_item_api_request(self, data: Dict) -> Dict:
super().handle_get_user_item_api_request(data)
def handle_cm_get_user_character_api_request(self, data: Dict) -> Dict:
characters = self.data.item.get_characters(data["userId"])
chara_list = []
for chara in characters:
chara_list.append(
{
"characterId": chara["characterId"],
# no clue why those values are even needed
"point": 0,
"count": 0,
"level": chara["level"],
"nextAwake": 0,
"nextAwakePercent": 0,
"favorite": False,
"awakening": chara["awakening"],
"useCount": chara["useCount"],
}
)
return {
"returnCode": 1,
"length": len(chara_list),
"userCharacterList": chara_list,
}
def handle_cm_get_user_card_print_error_api_request(self, data: Dict) -> Dict:
return {"length": 0, "userPrintDetailList": []}
def handle_cm_upsert_user_print_api_request(self, data: Dict) -> Dict:
user_id = data["userId"]
upsert = data["userPrintDetail"]
# set a random card serial number
serial_id = "".join([str(randint(0, 9)) for _ in range(20)])
# calculate start and end date of the card
start_date = datetime.utcnow()
end_date = datetime.utcnow() + timedelta(days=15)
user_card = upsert["userCard"]
self.data.item.put_card(
user_id,
user_card["cardId"],
user_card["cardTypeId"],
user_card["charaId"],
user_card["mapId"],
# add the correct start date and also the end date in 15 days
start_date,
end_date,
)
# get the profile extend to save the new bought card
extend = self.data.profile.get_profile_extend(user_id, self.version)
if extend:
extend = extend._asdict()
# parse the selectedCardList
# 6 = Freedom Pass, 4 = Gold Pass (cardTypeId)
selected_cards: list = extend["selectedCardList"]
# if no pass is already added, add the corresponding pass
if not user_card["cardTypeId"] in selected_cards:
selected_cards.insert(0, user_card["cardTypeId"])
extend["selectedCardList"] = selected_cards
self.data.profile.put_profile_extend(user_id, self.version, extend)
# properly format userPrintDetail for the database
upsert.pop("userCard")
upsert.pop("serialId")
upsert["printDate"] = datetime.strptime(upsert["printDate"], "%Y-%m-%d")
self.data.item.put_user_print_detail(user_id, serial_id, upsert)
return {
"returnCode": 1,
"orderId": 0,
"serialId": serial_id,
"startDate": datetime.strftime(start_date, Mai2Constants.DATE_TIME_FORMAT),
"endDate": datetime.strftime(end_date, Mai2Constants.DATE_TIME_FORMAT),
}
def handle_cm_upsert_user_printlog_api_request(self, data: Dict) -> Dict:
return {
"returnCode": 1,
"orderId": 0,
"serialId": data["userPrintlog"]["serialId"],
}
def handle_cm_upsert_buy_card_api_request(self, data: Dict) -> Dict:
return {"returnCode": 1}

View File

@ -1,6 +1,6 @@
from datetime import datetime, timedelta from datetime import datetime, timedelta
import json, logging import json, logging
from typing import Any, Dict from typing import Any, Dict, List
import random import random
from core.data import Data from core.data import Data
@ -44,19 +44,19 @@ class PokkenBase:
biwa_setting = { biwa_setting = {
"MatchingServer": { "MatchingServer": {
"host": f"https://{self.game_cfg.server.hostname}", "host": f"https://{self.game_cfg.server.hostname}",
"port": self.game_cfg.server.port, "port": self.game_cfg.ports.game,
"url": "/SDAK/100/matching", "url": "/SDAK/100/matching",
}, },
"StunServer": { "StunServer": {
"addr": self.game_cfg.server.hostname, "addr": self.game_cfg.server.stun_server_host,
"port": self.game_cfg.server.port_stun, "port": self.game_cfg.server.stun_server_port,
}, },
"TurnServer": { "TurnServer": {
"addr": self.game_cfg.server.hostname, "addr": self.game_cfg.server.stun_server_host,
"port": self.game_cfg.server.port_turn, "port": self.game_cfg.server.stun_server_port,
}, },
"AdmissionUrl": f"ws://{self.game_cfg.server.hostname}:{self.game_cfg.server.port_admission}", "AdmissionUrl": f"ws://{self.game_cfg.server.hostname}:{self.game_cfg.ports.admission}",
"locationId": 123, "locationId": 123, # FIXME: Get arcade's ID from the database
"logfilename": "JackalMatchingLibrary.log", "logfilename": "JackalMatchingLibrary.log",
"biwalogfilename": "./biwa.log", "biwalogfilename": "./biwa.log",
} }
@ -94,6 +94,7 @@ class PokkenBase:
res.type = jackal_pb2.MessageType.LOAD_CLIENT_SETTINGS res.type = jackal_pb2.MessageType.LOAD_CLIENT_SETTINGS
settings = jackal_pb2.LoadClientSettingsResponseData() settings = jackal_pb2.LoadClientSettingsResponseData()
# TODO: Make configurable
settings.money_magnification = 1 settings.money_magnification = 1
settings.continue_bonus_exp = 100 settings.continue_bonus_exp = 100
settings.continue_fight_money = 100 settings.continue_fight_money = 100
@ -274,6 +275,60 @@ class PokkenBase:
res.result = 1 res.result = 1
res.type = jackal_pb2.MessageType.SAVE_USER res.type = jackal_pb2.MessageType.SAVE_USER
req = request.save_user
user_id = req.banapass_id
tut_flgs: List[int] = []
ach_flgs: List[int] = []
evt_flgs: List[int] = []
evt_params: List[int] = []
get_rank_pts: int = req.get_trainer_rank_point if req.get_trainer_rank_point else 0
get_money: int = req.get_money
get_score_pts: int = req.get_score_point if req.get_score_point else 0
grade_max: int = req.grade_max_num
extra_counter: int = req.extra_counter
evt_reward_get_flg: int = req.event_reward_get_flag
num_continues: int = req.continue_num
total_play_days: int = req.total_play_days
awake_num: int = req.awake_num # ?
use_support_ct: int = req.use_support_num
beat_num: int = req.beat_num # ?
evt_state: int = req.event_state
aid_skill: int = req.aid_skill
last_evt: int = req.last_play_event_id
battle = req.battle_data
mon = req.pokemon_data
self.data.profile.update_support_team(user_id, 1, req.support_set_1[0], req.support_set_1[1])
self.data.profile.update_support_team(user_id, 2, req.support_set_2[0], req.support_set_2[1])
self.data.profile.update_support_team(user_id, 3, req.support_set_3[0], req.support_set_3[1])
if req.trainer_name_pending: # we're saving for the first time
self.data.profile.set_profile_name(user_id, req.trainer_name_pending, req.avatar_gender if req.avatar_gender else None)
for tut_flg in req.tutorial_progress_flag:
tut_flgs.append(tut_flg)
self.data.profile.update_profile_tutorial_flags(user_id, tut_flgs)
for ach_flg in req.achievement_flag:
ach_flgs.append(ach_flg)
self.data.profile.update_profile_tutorial_flags(user_id, ach_flg)
for evt_flg in req.event_achievement_flag:
evt_flgs.append(evt_flg)
for evt_param in req.event_achievement_param:
evt_params.append(evt_param)
self.data.profile.update_profile_event(user_id, evt_state, evt_flgs, evt_params, )
for reward in req.reward_data:
self.data.item.add_reward(user_id, reward.get_category_id, reward.get_content_id, reward.get_type_id)
return res.SerializeToString() return res.SerializeToString()
def handle_save_ingame_log(self, data: jackal_pb2.Request) -> bytes: def handle_save_ingame_log(self, data: jackal_pb2.Request) -> bytes:
@ -302,16 +357,35 @@ class PokkenBase:
self, data: Dict = {}, client_ip: str = "127.0.0.1" self, data: Dict = {}, client_ip: str = "127.0.0.1"
) -> Dict: ) -> Dict:
""" """
"sessionId":"12345678", "sessionId":"12345678",
"A":{
"pcb_id": data["data"]["must"]["pcb_id"],
"gip": client_ip
},
"""
return {
"data": {
"sessionId":"12345678",
"A":{ "A":{
"pcb_id": data["data"]["must"]["pcb_id"], "pcb_id": data["data"]["must"]["pcb_id"],
"gip": client_ip "gip": client_ip
}, },
"list":[] "list":[]
""" }
return {} }
def handle_matching_stop_matching( def handle_matching_stop_matching(
self, data: Dict = {}, client_ip: str = "127.0.0.1" self, data: Dict = {}, client_ip: str = "127.0.0.1"
) -> Dict: ) -> Dict:
return {} return {}
def handle_admission_noop(self, data: Dict, req_ip: str = "127.0.0.1") -> Dict:
return {}
def handle_admission_joinsession(self, data: Dict, req_ip: str = "127.0.0.1") -> Dict:
self.logger.info(f"Admission: JoinSession from {req_ip}")
return {
'data': {
"id": 12345678
}
}

View File

@ -25,30 +25,6 @@ class PokkenServerConfig:
) )
) )
@property
def port(self) -> int:
return CoreConfig.get_config_field(
self.__config, "pokken", "server", "port", default=9000
)
@property
def port_stun(self) -> int:
return CoreConfig.get_config_field(
self.__config, "pokken", "server", "port_stun", default=9001
)
@property
def port_turn(self) -> int:
return CoreConfig.get_config_field(
self.__config, "pokken", "server", "port_turn", default=9002
)
@property
def port_admission(self) -> int:
return CoreConfig.get_config_field(
self.__config, "pokken", "server", "port_admission", default=9003
)
@property @property
def auto_register(self) -> bool: def auto_register(self) -> bool:
""" """
@ -59,7 +35,51 @@ class PokkenServerConfig:
self.__config, "pokken", "server", "auto_register", default=True self.__config, "pokken", "server", "auto_register", default=True
) )
@property
def enable_matching(self) -> bool:
"""
If global matching should happen
"""
return CoreConfig.get_config_field(
self.__config, "pokken", "server", "enable_matching", default=False
)
@property
def stun_server_host(self) -> str:
"""
Hostname of the EXTERNAL stun server the game should connect to. This is not handled by artemis.
"""
return CoreConfig.get_config_field(
self.__config, "pokken", "server", "stun_server_host", default="stunserver.stunprotocol.org"
)
@property
def stun_server_port(self) -> int:
"""
Port of the EXTERNAL stun server the game should connect to. This is not handled by artemis.
"""
return CoreConfig.get_config_field(
self.__config, "pokken", "server", "stun_server_port", default=3478
)
class PokkenPortsConfig:
def __init__(self, parent_config: "PokkenConfig"):
self.__config = parent_config
@property
def game(self) -> int:
return CoreConfig.get_config_field(
self.__config, "pokken", "ports", "game", default=9000
)
@property
def admission(self) -> int:
return CoreConfig.get_config_field(
self.__config, "pokken", "ports", "admission", default=9001
)
class PokkenConfig(dict): class PokkenConfig(dict):
def __init__(self) -> None: def __init__(self) -> None:
self.server = PokkenServerConfig(self) self.server = PokkenServerConfig(self)
self.ports = PokkenPortsConfig(self)

View File

@ -11,14 +11,14 @@ class PokkenConstants:
VERSION_NAMES = "Pokken Tournament" VERSION_NAMES = "Pokken Tournament"
class BATTLE_TYPE(Enum): class BATTLE_TYPE(Enum):
BATTLE_TYPE_TUTORIAL = 1 TUTORIAL = 1
BATTLE_TYPE_AI = 2 AI = 2
BATTLE_TYPE_LAN = 3 LAN = 3
BATTLE_TYPE_WAN = 4 WAN = 4
class BATTLE_RESULT(Enum): class BATTLE_RESULT(Enum):
BATTLE_RESULT_WIN = 1 WIN = 1
BATTLE_RESULT_LOSS = 2 LOSS = 2
@classmethod @classmethod
def game_ver_to_string(cls, ver: int): def game_ver_to_string(cls, ver: int):

View File

@ -2,8 +2,9 @@ import yaml
import jinja2 import jinja2
from twisted.web.http import Request from twisted.web.http import Request
from os import path from os import path
from twisted.web.server import Session
from core.frontend import FE_Base from core.frontend import FE_Base, IUserSession
from core.config import CoreConfig from core.config import CoreConfig
from .database import PokkenData from .database import PokkenData
from .config import PokkenConfig from .config import PokkenConfig
@ -27,7 +28,12 @@ class PokkenFrontend(FE_Base):
template = self.environment.get_template( template = self.environment.get_template(
"titles/pokken/frontend/pokken_index.jinja" "titles/pokken/frontend/pokken_index.jinja"
) )
sesh: Session = request.getSession()
usr_sesh = IUserSession(sesh)
return template.render( return template.render(
title=f"{self.core_config.server.name} | {self.nav_name}", title=f"{self.core_config.server.name} | {self.nav_name}",
game_list=self.environment.globals["game_list"], game_list=self.environment.globals["game_list"],
sesh=vars(usr_sesh)
).encode("utf-16") ).encode("utf-16")

View File

@ -1,6 +1,7 @@
from typing import Tuple from typing import Tuple
from twisted.web.http import Request from twisted.web.http import Request
from twisted.web import resource from twisted.web import resource
from twisted.internet import reactor
import json, ast import json, ast
from datetime import datetime from datetime import datetime
import yaml import yaml
@ -11,10 +12,11 @@ from os import path
from google.protobuf.message import DecodeError from google.protobuf.message import DecodeError
from core import CoreConfig, Utils from core import CoreConfig, Utils
from titles.pokken.config import PokkenConfig from .config import PokkenConfig
from titles.pokken.base import PokkenBase from .base import PokkenBase
from titles.pokken.const import PokkenConstants from .const import PokkenConstants
from titles.pokken.proto import jackal_pb2 from .proto import jackal_pb2
from .services import PokkenAdmissionFactory
class PokkenServlet(resource.Resource): class PokkenServlet(resource.Resource):
@ -69,7 +71,7 @@ class PokkenServlet(resource.Resource):
return ( return (
True, True,
f"https://{game_cfg.server.hostname}:{game_cfg.server.port}/{game_code}/$v/", f"https://{game_cfg.server.hostname}:{game_cfg.ports.game}/{game_code}/$v/",
f"{game_cfg.server.hostname}/SDAK/$v/", f"{game_cfg.server.hostname}/SDAK/$v/",
) )
@ -90,8 +92,10 @@ class PokkenServlet(resource.Resource):
return (True, "PKF1") return (True, "PKF1")
def setup(self) -> None: def setup(self) -> None:
# TODO: Setup stun, turn (UDP) and admission (WSS) servers if self.game_cfg.server.enable_matching:
pass reactor.listenTCP(
self.game_cfg.ports.admission, PokkenAdmissionFactory(self.core_cfg, self.game_cfg)
)
def render_POST( def render_POST(
self, request: Request, version: int = 0, endpoints: str = "" self, request: Request, version: int = 0, endpoints: str = ""
@ -128,6 +132,9 @@ class PokkenServlet(resource.Resource):
return ret return ret
def handle_matching(self, request: Request) -> bytes: def handle_matching(self, request: Request) -> bytes:
if not self.game_cfg.server.enable_matching:
return b""
content = request.content.getvalue() content = request.content.getvalue()
client_ip = Utils.get_ip_addr(request) client_ip = Utils.get_ip_addr(request)

View File

@ -31,4 +31,16 @@ class PokkenItemData(BaseData):
Items obtained as rewards Items obtained as rewards
""" """
pass def add_reward(self, user_id: int, category: int, content: int, item_type: int) -> Optional[int]:
sql = insert(item).values(
user=user_id,
category=category,
content=content,
type=item_type,
)
result = self.execute(sql)
if result is None:
self.logger.warn(f"Failed to insert reward for user {user_id}: {category}-{content}-{item_type}")
return None
return result.lastrowid

View File

@ -1,4 +1,4 @@
from typing import Optional, Dict, List from typing import Optional, Dict, List, Union
from sqlalchemy import Table, Column, UniqueConstraint, PrimaryKeyConstraint, and_, case from sqlalchemy import Table, Column, UniqueConstraint, PrimaryKeyConstraint, and_, case
from sqlalchemy.types import Integer, String, TIMESTAMP, Boolean, JSON from sqlalchemy.types import Integer, String, TIMESTAMP, Boolean, JSON
from sqlalchemy.schema import ForeignKey from sqlalchemy.schema import ForeignKey
@ -125,7 +125,7 @@ pokemon_data = Table(
Column("win_vs_lan", Integer), Column("win_vs_lan", Integer),
Column("battle_num_vs_cpu", Integer), # 2 Column("battle_num_vs_cpu", Integer), # 2
Column("win_cpu", Integer), Column("win_cpu", Integer),
Column("battle_all_num_tutorial", Integer), Column("battle_all_num_tutorial", Integer), # ???
Column("battle_num_tutorial", Integer), # 1? Column("battle_num_tutorial", Integer), # 1?
Column("bp_point_atk", Integer), Column("bp_point_atk", Integer),
Column("bp_point_res", Integer), Column("bp_point_res", Integer),
@ -147,11 +147,10 @@ class PokkenProfileData(BaseData):
return None return None
return result.lastrowid return result.lastrowid
def set_profile_name(self, user_id: int, new_name: str) -> None: def set_profile_name(self, user_id: int, new_name: str, gender: Union[int, None] = None) -> None:
sql = ( sql = update(profile).where(profile.c.user == user_id).values(
update(profile) trainer_name=new_name,
.where(profile.c.user == user_id) avatar_gender=gender if gender is not None else profile.c.avatar_gender
.values(trainer_name=new_name)
) )
result = self.execute(sql) result = self.execute(sql)
if result is None: if result is None:
@ -159,8 +158,38 @@ class PokkenProfileData(BaseData):
f"Failed to update pokken profile name for user {user_id}!" f"Failed to update pokken profile name for user {user_id}!"
) )
def update_profile_tutorial_flags(self, user_id: int, tutorial_flags: Dict) -> None: def update_profile_tutorial_flags(self, user_id: int, tutorial_flags: List) -> None:
pass sql = update(profile).where(profile.c.user == user_id).values(
tutorial_progress_flag=tutorial_flags,
)
result = self.execute(sql)
if result is None:
self.logger.error(
f"Failed to update pokken profile tutorial flags for user {user_id}!"
)
def update_profile_achievement_flags(self, user_id: int, achievement_flags: List) -> None:
sql = update(profile).where(profile.c.user == user_id).values(
achievement_flag=achievement_flags,
)
result = self.execute(sql)
if result is None:
self.logger.error(
f"Failed to update pokken profile achievement flags for user {user_id}!"
)
def update_profile_event(self, user_id: int, event_state: List, event_flags: List[int], event_param: List[int], last_evt: int = None) -> None:
sql = update(profile).where(profile.c.user == user_id).values(
event_state=event_state,
event_achievement_flag=event_flags,
event_achievement_param=event_param,
last_play_event_id=last_evt if last_evt is not None else profile.c.last_play_event_id,
)
result = self.execute(sql)
if result is None:
self.logger.error(
f"Failed to update pokken profile event state for user {user_id}!"
)
def add_profile_points( def add_profile_points(
self, user_id: int, rank_pts: int, money: int, score_pts: int self, user_id: int, rank_pts: int, money: int, score_pts: int
@ -174,18 +203,53 @@ class PokkenProfileData(BaseData):
return None return None
return result.fetchone() return result.fetchone()
def put_pokemon_data( def put_pokemon(
self, self,
user_id: int, user_id: int,
pokemon_id: int, pokemon_id: int,
illust_no: int, illust_no: int,
get_exp: int,
atk: int, atk: int,
res: int, res: int,
defe: int, defe: int,
sp: int, sp: int
) -> Optional[int]: ) -> Optional[int]:
pass sql = insert(pokemon_data).values(
user=user_id,
char_id=pokemon_id,
illustration_book_no=illust_no,
bp_point_atk=atk,
bp_point_res=res,
bp_point_defe=defe,
bp_point_sp=sp,
)
conflict = sql.on_duplicate_key_update(
illustration_book_no=illust_no,
bp_point_atk=atk,
bp_point_res=res,
bp_point_defe=defe,
bp_point_sp=sp,
)
result = self.execute(conflict)
if result is None:
self.logger.warn(f"Failed to insert pokemon ID {pokemon_id} for user {user_id}")
return None
return result.lastrowid
def add_pokemon_xp(
self,
user_id: int,
pokemon_id: int,
xp: int
) -> None:
sql = update(pokemon_data).where(and_(pokemon_data.c.user==user_id, pokemon_data.c.char_id==pokemon_id)).values(
pokemon_exp=pokemon_data.c.pokemon_exp + xp
)
result = self.execute(sql)
if result is None:
self.logger.warn(f"Failed to add {xp} XP to pokemon ID {pokemon_id} for user {user_id}")
def get_pokemon_data(self, user_id: int, pokemon_id: int) -> Optional[Row]: def get_pokemon_data(self, user_id: int, pokemon_id: int) -> Optional[Row]:
pass pass
@ -193,13 +257,29 @@ class PokkenProfileData(BaseData):
def get_all_pokemon_data(self, user_id: int) -> Optional[List[Row]]: def get_all_pokemon_data(self, user_id: int) -> Optional[List[Row]]:
pass pass
def put_results( def put_pokemon_battle_result(
self, user_id: int, pokemon_id: int, match_type: int, match_result: int self, user_id: int, pokemon_id: int, match_type: PokkenConstants.BATTLE_TYPE, match_result: PokkenConstants.BATTLE_RESULT
) -> None: ) -> None:
""" """
Records the match stats (type and win/loss) for the pokemon and profile Records the match stats (type and win/loss) for the pokemon and profile
""" """
pass sql = update(pokemon_data).where(and_(pokemon_data.c.user==user_id, pokemon_data.c.char_id==pokemon_id)).values(
battle_num_tutorial=pokemon_data.c.battle_num_tutorial + 1 if match_type==PokkenConstants.BATTLE_TYPE.TUTORIAL else pokemon_data.c.battle_num_tutorial,
battle_all_num_tutorial=pokemon_data.c.battle_all_num_tutorial + 1 if match_type==PokkenConstants.BATTLE_TYPE.TUTORIAL else pokemon_data.c.battle_all_num_tutorial,
battle_num_vs_cpu=pokemon_data.c.battle_num_vs_cpu + 1 if match_type==PokkenConstants.BATTLE_TYPE.AI else pokemon_data.c.battle_num_vs_cpu,
win_cpu=pokemon_data.c.win_cpu + 1 if match_type==PokkenConstants.BATTLE_TYPE.AI and match_result==PokkenConstants.BATTLE_RESULT.WIN else pokemon_data.c.win_cpu,
battle_num_vs_lan=pokemon_data.c.battle_num_vs_lan + 1 if match_type==PokkenConstants.BATTLE_TYPE.LAN else pokemon_data.c.battle_num_vs_lan,
win_vs_lan=pokemon_data.c.win_vs_lan + 1 if match_type==PokkenConstants.BATTLE_TYPE.LAN and match_result==PokkenConstants.BATTLE_RESULT.WIN else pokemon_data.c.win_vs_lan,
battle_num_vs_wan=pokemon_data.c.battle_num_vs_wan + 1 if match_type==PokkenConstants.BATTLE_TYPE.WAN else pokemon_data.c.battle_num_vs_wan,
win_vs_wan=pokemon_data.c.win_vs_wan + 1 if match_type==PokkenConstants.BATTLE_TYPE.WAN and match_result==PokkenConstants.BATTLE_RESULT.WIN else pokemon_data.c.win_vs_wan,
)
result = self.execute(sql)
if result is None:
self.logger.warn(f"Failed to record match stats for user {user_id}'s pokemon {pokemon_id} (type {match_type.name} | result {match_result.name})")
def put_stats( def put_stats(
self, self,
@ -215,3 +295,17 @@ class PokkenProfileData(BaseData):
Records profile stats Records profile stats
""" """
pass pass
def update_support_team(self, user_id: int, support_id: int, support1: int = 4294967295, support2: int = 4294967295) -> None:
sql = update(profile).where(profile.c.user==user_id).values(
support_set_1_1=support1 if support_id == 1 else profile.c.support_set_1_1,
support_set_1_2=support2 if support_id == 1 else profile.c.support_set_1_2,
support_set_2_1=support1 if support_id == 2 else profile.c.support_set_2_1,
support_set_2_2=support2 if support_id == 2 else profile.c.support_set_2_2,
support_set_3_1=support1 if support_id == 3 else profile.c.support_set_3_1,
support_set_3_2=support2 if support_id == 3 else profile.c.support_set_3_2,
)
result = self.execute(sql)
if result is None:
self.logger.warn(f"Failed to update support team {support_id} for user {user_id}")

66
titles/pokken/services.py Normal file
View File

@ -0,0 +1,66 @@
from twisted.internet.interfaces import IAddress
from twisted.internet.protocol import Protocol
from autobahn.twisted.websocket import WebSocketServerProtocol, WebSocketServerFactory
from autobahn.websocket.types import ConnectionRequest
from typing import Dict
import logging
import json
from core.config import CoreConfig
from .config import PokkenConfig
from .base import PokkenBase
class PokkenAdmissionProtocol(WebSocketServerProtocol):
def __init__(self, cfg: CoreConfig, game_cfg: PokkenConfig):
super().__init__()
self.core_config = cfg
self.game_config = game_cfg
self.logger = logging.getLogger("pokken")
self.base = PokkenBase(cfg, game_cfg)
def onConnect(self, request: ConnectionRequest) -> None:
self.logger.debug(f"Admission: Connection from {request.peer}")
def onClose(self, wasClean: bool, code: int, reason: str) -> None:
self.logger.debug(f"Admission: Connection with {self.transport.getPeer().host} closed {'cleanly ' if wasClean else ''}with code {code} - {reason}")
def onMessage(self, payload, isBinary: bool) -> None:
msg: Dict = json.loads(payload)
self.logger.debug(f"Admission: Message from {self.transport.getPeer().host}:{self.transport.getPeer().port} - {msg}")
api = msg.get("api", "noop")
handler = getattr(self.base, f"handle_admission_{api.lower()}")
resp = handler(msg, self.transport.getPeer().host)
if resp is None:
resp = {}
if "type" not in resp:
resp['type'] = "res"
if "data" not in resp:
resp['data'] = {}
if "api" not in resp:
resp['api'] = api
if "result" not in resp:
resp['result'] = 'true'
self.logger.debug(f"Websocket response: {resp}")
self.sendMessage(json.dumps(resp).encode(), isBinary)
class PokkenAdmissionFactory(WebSocketServerFactory):
protocol = PokkenAdmissionProtocol
def __init__(
self,
cfg: CoreConfig,
game_cfg: PokkenConfig
) -> None:
self.core_config = cfg
self.game_config = game_cfg
super().__init__(f"ws://{self.game_config.server.hostname}:{self.game_config.ports.admission}")
def buildProtocol(self, addr: IAddress) -> Protocol:
p = self.protocol(self.core_config, self.game_config)
p.factory = self
return p

10
titles/sao/__init__.py Normal file
View File

@ -0,0 +1,10 @@
from .index import SaoServlet
from .const import SaoConstants
from .database import SaoData
from .read import SaoReader
index = SaoServlet
database = SaoData
reader = SaoReader
game_codes = [SaoConstants.GAME_CODE]
current_schema_version = 1

1165
titles/sao/base.py Normal file

File diff suppressed because it is too large Load Diff

47
titles/sao/config.py Normal file
View File

@ -0,0 +1,47 @@
from core.config import CoreConfig
class SaoServerConfig:
def __init__(self, parent_config: "SaoConfig"):
self.__config = parent_config
@property
def hostname(self) -> str:
return CoreConfig.get_config_field(
self.__config, "sao", "server", "hostname", default="localhost"
)
@property
def enable(self) -> bool:
return CoreConfig.get_config_field(
self.__config, "sao", "server", "enable", default=True
)
@property
def loglevel(self) -> int:
return CoreConfig.str_to_loglevel(
CoreConfig.get_config_field(
self.__config, "sao", "server", "loglevel", default="info"
)
)
@property
def port(self) -> int:
return CoreConfig.get_config_field(
self.__config, "sao", "server", "port", default=9000
)
@property
def auto_register(self) -> bool:
"""
Automatically register users in `aime_user` on first carding in with sao
if they don't exist already. Set to false to display an error instead.
"""
return CoreConfig.get_config_field(
self.__config, "sao", "server", "auto_register", default=True
)
class SaoConfig(dict):
def __init__(self) -> None:
self.server = SaoServerConfig(self)

15
titles/sao/const.py Normal file
View File

@ -0,0 +1,15 @@
from enum import Enum
class SaoConstants:
GAME_CODE = "SDEW"
CONFIG_NAME = "sao.yaml"
VER_SAO = 0
VERSION_NAMES = ("Sword Art Online Arcade")
@classmethod
def game_ver_to_string(cls, ver: int):
return cls.VERSION_NAMES[ver]

Binary file not shown.
1 EquipmentLevelId,RequireExp
2 1,200,
3 2,400,
4 3,600,
5 4,800,
6 5,1000,
7 6,1200,
8 7,1400,
9 8,1600,
10 9,1800,
11 10,2000,
12 11,2200,
13 12,2400,
14 13,2600,
15 14,2800,
16 15,3000,
17 16,3200,
18 17,3400,
19 18,3600,
20 19,3800,
21 20,4000,
22 21,4200,
23 22,4400,
24 23,4600,
25 24,4800,
26 25,5000,
27 26,5200,
28 27,5400,
29 28,5600,
30 29,5800,
31 30,6000,
32 31,6200,
33 32,6400,
34 33,6600,
35 34,6800,
36 35,7000,
37 36,7200,
38 37,7400,
39 38,7600,
40 39,7800,
41 40,8000,
42 41,8200,
43 42,8400,
44 43,8600,
45 44,8800,
46 45,9000,
47 46,9200,
48 47,9400,
49 48,9600,
50 49,9800,
51 50,10000,
52 51,10200,
53 52,10400,
54 53,10600,
55 54,10800,
56 55,11000,
57 56,11200,
58 57,11400,
59 58,11600,
60 59,11800,
61 60,12000,
62 61,12200,
63 62,12400,
64 63,12600,
65 64,12800,
66 65,13000,
67 66,13200,
68 67,13400,
69 68,13600,
70 69,13800,
71 70,14000,
72 71,14200,
73 72,14400,
74 73,14600,
75 74,14800,
76 75,15000,
77 76,15200,
78 77,15400,
79 78,15600,
80 79,15800,
81 80,16000,
82 81,16200,
83 82,16400,
84 83,16600,
85 84,16800,
86 85,17000,
87 86,17200,
88 87,17400,
89 88,17600,
90 89,17800,
91 90,18000,
92 91,18200,
93 92,18400,
94 93,18600,
95 94,18800,
96 95,19000,
97 96,19200,
98 97,19400,
99 98,19600,
100 99,19800,
101 100,100000,
102 101,150000,
103 102,200000,
104 103,250000,
105 104,300000,
106 105,350000,
107 106,400000,
108 107,450000,
109 108,500000,
110 109,550000,
111 110,600000,
112 111,650000,
113 112,700000,
114 113,750000,
115 114,800000,
116 115,850000,
117 116,900000,
118 117,950000,
119 118,1000000,
120 119,1000000,
121 120,1000000,

Binary file not shown.
1 HeroLogLevelId,RequireExp
2 1,0,
3 2,1000,
4 3,1200,
5 4,1400,
6 5,1600,
7 6,1900,
8 7,2200,
9 8,2500,
10 9,2800,
11 10,3100,
12 11,3500,
13 12,3900,
14 13,4300,
15 14,4700,
16 15,5100,
17 16,5550,
18 17,6000,
19 18,6450,
20 19,6900,
21 20,7350,
22 21,7850,
23 22,8350,
24 23,8850,
25 24,9350,
26 25,9850,
27 26,10450,
28 27,11050,
29 28,11650,
30 29,12250,
31 30,12850,
32 31,13550,
33 32,14250,
34 33,14950,
35 34,15650,
36 35,16350,
37 36,17150,
38 37,17950,
39 38,18750,
40 39,19550,
41 40,20350,
42 41,21250,
43 42,22150,
44 43,23050,
45 44,23950,
46 45,24850,
47 46,25850,
48 47,26850,
49 48,27850,
50 49,28850,
51 50,29850,
52 51,30950,
53 52,32050,
54 53,33150,
55 54,34250,
56 55,35350,
57 56,36550,
58 57,37750,
59 58,38950,
60 59,40150,
61 60,41350,
62 61,42650,
63 62,43950,
64 63,45250,
65 64,46550,
66 65,47850,
67 66,49250,
68 67,50650,
69 68,52050,
70 69,53450,
71 70,54850,
72 71,56350,
73 72,57850,
74 73,59350,
75 74,60850,
76 75,62350,
77 76,63950,
78 77,65550,
79 78,67150,
80 79,68750,
81 80,70350,
82 81,72050,
83 82,73750,
84 83,75450,
85 84,77150,
86 85,78850,
87 86,80650,
88 87,82450,
89 88,84250,
90 89,86050,
91 90,87850,
92 91,89750,
93 92,91650,
94 93,93550,
95 94,95450,
96 95,97350,
97 96,99350,
98 97,101350,
99 98,103350,
100 99,105350,
101 100,107350,
102 101,200000,
103 102,300000,
104 103,450000,
105 104,600000,
106 105,800000,
107 106,1000000,
108 107,1250000,
109 108,1500000,
110 109,1800000,
111 110,2100000,
112 111,2100000,
113 112,2100000,
114 113,2100000,
115 114,2100000,
116 115,2100000,
117 116,2100000,
118 117,2100000,
119 118,2100000,
120 119,2100000,
121 120,2100000,

Binary file not shown.
Can't render this file because it has a wrong number of fields in line 11.

Binary file not shown.
1 RewardTableId UnanalyzedLogGradeId CommonRewardId
2 142 1 101000000
3 143 2 101000001
4 144 3 101000002
5 145 4 101000008
6 146 5 101000004
7 147 1 102000000
8 148 2 102000001
9 149 3 102000002
10 150 4 102000003
11 151 5 102000004
12 152 1 103000000
13 153 2 103000001
14 154 3 103000002
15 155 4 103000003
16 156 5 103000004
17 157 1 105000000
18 158 2 105000001
19 159 3 105000002
20 160 4 105000003
21 161 5 105000004
22 162 1 108000000
23 163 2 108000001
24 164 3 108000002
25 165 4 108000003
26 166 5 108000004
27 167 1 109000000
28 168 2 109000001
29 169 3 109000002
30 170 4 109000003
31 171 5 109000004
32 172 1 111000000
33 173 2 111000001
34 174 3 111000002
35 175 4 111000003
36 176 5 111000004
37 177 1 112000000
38 178 2 112000001
39 179 3 112000002
40 180 4 112000003
41 181 5 112000004
42 182 1 120000000
43 183 2 120000001
44 184 3 120000002
45 185 4 120000003
46 186 5 120000004
47 187 1 101000010
48 188 2 101000030
49 189 3 101000040
50 190 1 102000010
51 191 2 102000030
52 192 3 102000070
53 193 1 103000010
54 194 2 103000040
55 195 3 103000070
56 196 1 104000010
57 197 2 104000030
58 198 3 104000070
59 199 1 105000010
60 200 2 105000040
61 201 3 105000070
62 202 1 106000010
63 203 2 106000030
64 204 3 106000070
65 205 1 107000010
66 206 2 107000040
67 207 3 107000070
68 208 1 108000010
69 209 2 108000030
70 210 3 108000050
71 212 1 101000000
72 213 2 101000001
73 214 3 101000002
74 215 4 101000008
75 216 5 101000004
76 218 1 101000000
77 219 2 101000001
78 220 3 101000002
79 221 4 101000008
80 222 5 101000004
81 223 1 102000000
82 224 2 102000001
83 225 3 102000002
84 226 4 102000003
85 227 5 102000004
86 228 1 103000000
87 229 2 103000001
88 230 3 103000002
89 231 4 103000003
90 232 5 103000004
91 233 1 105000000
92 234 2 105000001
93 235 3 105000002
94 236 4 105000003
95 237 5 105000004
96 238 1 108000000
97 239 2 108000001
98 240 3 108000002
99 241 4 108000003
100 242 5 108000004
101 243 1 109000000
102 244 2 109000001
103 245 3 109000002
104 246 4 109000003
105 247 5 109000004
106 248 1 111000000
107 249 2 111000001
108 250 3 111000002
109 251 4 111000003
110 252 5 111000004
111 253 1 112000000
112 254 2 112000001
113 255 3 112000002
114 256 4 112000003
115 257 5 112000004
116 258 1 120000000
117 259 2 120000001
118 260 3 120000002
119 261 4 120000003
120 262 5 120000004
121 263 1 101000010
122 264 2 101000020
123 265 2 101000030
124 266 3 101000040
125 267 3 101000050
126 268 3 101000060
127 269 3 101000070
128 270 3 101000080
129 271 1 102000010
130 272 2 102000020
131 273 2 102000030
132 274 2 102000040
133 275 3 102000050
134 276 3 102000060
135 277 3 102000070
136 278 3 102000080
137 279 1 103000010
138 280 2 103000020
139 281 2 103000030
140 282 2 103000040
141 283 3 103000050
142 284 3 103000060
143 285 3 103000070
144 286 3 103000080
145 287 1 104000010
146 288 2 104000020
147 289 2 104000030
148 290 2 104000040
149 291 3 104000050
150 292 3 104000060
151 293 3 104000070
152 294 3 104000080
153 295 1 105000010
154 296 2 105000020
155 297 2 105000030
156 298 2 105000040
157 299 3 105000050
158 300 3 105000060
159 301 3 105000070
160 302 3 105000080
161 303 1 106000010
162 304 2 106000020
163 305 2 106000030
164 306 2 106000040
165 307 3 106000050
166 308 3 106000060
167 309 3 106000070
168 310 3 106000080
169 311 1 107000010
170 312 2 107000020
171 313 2 107000030
172 314 2 107000040
173 315 3 107000050
174 316 3 107000060
175 317 3 107000070
176 318 3 107000080
177 319 1 108000010
178 320 2 108000020
179 321 2 108000030
180 322 2 108000040
181 323 3 108000050
182 324 3 108000060
183 325 3 108000070
184 326 3 108000080
185 327 2 180000
186 329 1 101000000
187 330 2 101000001
188 331 3 101000002
189 332 4 101000008
190 333 5 101000004
191 334 1 102000000
192 335 2 102000001
193 336 3 102000002
194 337 4 102000003
195 338 5 102000004
196 339 1 103000000
197 340 2 103000001
198 341 3 103000002
199 342 4 103000003
200 343 5 103000004
201 344 1 105000000
202 345 2 105000001
203 346 3 105000002
204 347 4 105000003
205 348 5 105000004
206 349 1 108000000
207 350 2 108000001
208 351 3 108000002
209 352 4 108000003
210 353 5 108000004
211 354 1 109000000
212 355 2 109000001
213 356 3 109000002
214 357 4 109000003
215 358 5 109000004
216 359 1 111000000
217 360 2 111000001
218 361 3 111000002
219 362 4 111000003
220 363 5 111000004
221 364 1 112000000
222 365 2 112000001
223 366 3 112000002
224 367 4 112000003
225 368 5 112000004
226 369 1 120000000
227 370 2 120000001
228 371 3 120000002
229 372 4 120000003
230 373 5 120000004
231 374 1 101000010
232 375 2 101000020
233 376 2 101000030
234 377 3 101000040
235 378 3 101000050
236 379 3 101000060
237 380 3 101000070
238 381 3 101000080
239 382 1 102000010
240 383 2 102000020
241 384 2 102000030
242 385 2 102000040
243 386 3 102000050
244 387 3 102000060
245 388 3 102000070
246 389 3 102000080
247 390 1 103000010
248 391 2 103000020
249 392 2 103000030
250 393 2 103000040
251 394 3 103000050
252 395 3 103000060
253 396 3 103000070
254 397 3 103000080
255 398 1 104000010
256 399 2 104000020
257 400 2 104000030
258 401 2 104000040
259 402 3 104000050
260 403 3 104000060
261 404 3 104000070
262 405 3 104000080
263 406 1 105000010
264 407 2 105000020
265 408 2 105000030
266 409 2 105000040
267 410 3 105000050
268 411 3 105000060
269 412 3 105000070
270 413 3 105000080
271 414 1 106000010
272 415 2 106000020
273 416 2 106000030
274 417 2 106000040
275 418 3 106000050
276 419 3 106000060
277 420 3 106000070
278 421 3 106000080
279 422 1 107000010
280 423 2 107000020
281 424 2 107000030
282 425 2 107000040
283 426 3 107000050
284 427 3 107000060
285 428 3 107000070
286 429 3 107000080
287 430 1 108000010
288 431 2 108000020
289 432 2 108000030
290 433 2 108000040
291 434 3 108000050
292 435 3 108000060
293 436 3 108000070
294 437 3 108000080
295 438 2 180000
296 440 1 101000000
297 441 2 101000001
298 442 3 101000002
299 443 4 101000008
300 444 5 101000004
301 446 1 102000000
302 447 2 102000001
303 448 3 102000002
304 449 4 102000003
305 450 5 102000004
306 451 1 112000000
307 452 2 112000001
308 453 3 112000002
309 454 4 112000003
310 455 5 112000004
311 457 1 101000000
312 458 2 101000001
313 459 3 101000002
314 460 4 101000008
315 461 5 101000004
316 462 1 120000000
317 463 2 120000001
318 464 3 120000002
319 465 4 120000003
320 466 5 120000004
321 468 1 111000000
322 469 2 111000001
323 470 3 111000002
324 471 4 111000003
325 472 5 111000004
326 473 1 120000000
327 474 2 120000001
328 475 3 120000002
329 476 4 120000003
330 477 5 120000004
331 479 1 109000000
332 480 2 109000001
333 481 3 109000002
334 482 4 109000003
335 483 5 109000004
336 484 1 112000000
337 485 2 112000001
338 486 3 112000002
339 487 4 112000003
340 488 5 112000004
341 490 1 103000000
342 491 2 103000001
343 492 3 103000002
344 493 4 103000003
345 494 5 103000004
346 495 1 112000000
347 496 2 112000001
348 497 3 112000002
349 498 4 112000003
350 499 5 112000004
351 501 1 105000000
352 502 2 105000001
353 503 3 105000002
354 504 4 105000003
355 505 5 105000004
356 506 1 120000000
357 507 2 120000001
358 508 3 120000002
359 509 4 120000003
360 510 5 120000004
361 512 1 108000000
362 513 2 108000001
363 514 3 108000002
364 515 4 108000003
365 516 5 108000004
366 517 1 120000000
367 518 2 120000001
368 519 3 120000002
369 520 4 120000003
370 521 5 120000004
371 523 1 101000010
372 524 1 103000010
373 525 2 103000030
374 526 2 103000040
375 527 2 107000020
376 528 2 101000030
377 529 3 101000050
378 530 3 101000060
379 531 3 101000080
380 532 3 103000060
381 533 3 103000070
382 534 3 103000080
383 535 3 101000040
384 536 1 101000000
385 537 2 101000001
386 538 3 101000002
387 539 4 101000008
388 540 5 101000004
389 541 1 112000000
390 542 2 112000001
391 543 3 112000002
392 544 4 112000003
393 545 5 112000004
394 546 2 101000005
395 547 2 112000005
396 548 3 170000
397 549 4 170001
398 551 1 102000010
399 552 2 102000030
400 553 2 102000040
401 554 2 104000020
402 555 3 102000060
403 556 3 102000070
404 557 3 102000080
405 558 3 103000050
406 559 3 105000050
407 560 1 102000000
408 561 2 102000001
409 562 3 102000002
410 563 4 102000003
411 564 5 102000004
412 565 1 112000000
413 566 2 112000001
414 567 3 112000002
415 568 4 112000003
416 569 5 112000004
417 570 3 170000
418 571 4 170001
419 573 1 106000010
420 574 2 106000030
421 575 2 106000040
422 576 2 105000020
423 577 3 106000060
424 578 3 106000070
425 579 3 106000080
426 580 3 101000070
427 581 1 103000000
428 582 2 103000001
429 583 3 103000002
430 584 4 103000003
431 585 5 103000004
432 586 1 112000000
433 587 2 112000001
434 588 3 112000002
435 589 4 112000003
436 590 5 112000004
437 591 3 170000
438 592 4 170001
439 594 1 104000010
440 595 2 104000030
441 596 2 104000040
442 597 2 108000020
443 598 3 104000060
444 599 3 104000070
445 600 3 104000080
446 601 3 102000050
447 602 1 111000000
448 603 2 111000001
449 604 3 111000002
450 605 4 111000003
451 606 5 111000004
452 607 1 120000000
453 608 2 120000001
454 609 3 120000002
455 610 4 120000003
456 611 5 120000004
457 612 1 110020
458 613 1 110030
459 614 1 110040
460 615 1 110050
461 616 3 110060
462 617 3 110070
463 618 3 110080
464 619 3 110090
465 620 3 110100
466 621 3 110110
467 622 3 110120
468 623 3 110130
469 624 3 110140
470 625 3 110150
471 626 3 110160
472 627 3 110170
473 628 3 110180
474 629 3 110190
475 630 3 110200
476 631 3 110210
477 632 3 110220
478 633 3 110230
479 634 3 110240
480 635 3 110250
481 636 3 110260
482 637 3 110270
483 639 1 107000010
484 640 2 107000030
485 641 2 107000040
486 642 2 101000020
487 643 3 107000060
488 644 3 107000070
489 645 3 107000080
490 646 3 108000050
491 647 1 105000000
492 648 2 105000001
493 649 3 105000002
494 650 4 105000003
495 651 5 105000004
496 652 1 120000000
497 653 2 120000001
498 654 3 120000002
499 655 4 120000003
500 656 5 120000004
501 657 3 180000
502 658 4 180001
503 660 1 105000010
504 661 2 105000030
505 662 2 105000040
506 663 2 102000020
507 664 2 103000020
508 665 3 105000060
509 666 3 105000070
510 667 3 105000080
511 668 3 104000050
512 669 3 106000050
513 670 1 109000000
514 671 2 109000001
515 672 3 109000002
516 673 4 109000003
517 674 5 109000004
518 675 1 112000000
519 676 2 112000001
520 677 3 112000002
521 678 4 112000003
522 679 5 112000004
523 680 1 120020
524 681 1 120030
525 682 1 120040
526 683 1 120050
527 684 3 120240
528 685 3 120250
529 686 3 120260
530 687 3 120270
531 688 3 120300
532 689 3 120310
533 690 3 120320
534 691 3 120330
535 692 3 120340
536 693 3 120350
537 694 3 120360
538 695 3 120370
539 696 3 120380
540 697 3 120390
541 698 3 120400
542 699 3 120410
543 700 3 120420
544 701 3 120430
545 702 3 120450
546 703 3 120460
547 705 1 108000010
548 706 2 108000030
549 707 2 108000040
550 708 2 106000020
551 709 3 108000060
552 710 3 108000070
553 711 3 108000080
554 712 3 107000050
555 713 1 108000000
556 714 2 108000001
557 715 3 108000002
558 716 4 108000003
559 717 5 108000004
560 718 1 120000000
561 719 2 120000001
562 720 3 120000002
563 721 4 120000003
564 722 5 120000004
565 723 1 130020
566 724 1 130030
567 725 1 130040
568 726 1 130050
569 727 3 130060
570 728 3 130070
571 729 3 130080
572 730 3 130090
573 731 3 130100
574 732 3 130110
575 733 3 130120
576 734 3 130130
577 735 3 130140
578 736 3 130150
579 737 3 130160
580 738 3 130170
581 739 3 130180
582 740 3 130190
583 741 3 130200
584 742 3 130420
585 743 3 130510
586 744 3 130520
587 745 3 130530
588 746 3 130540
589 748 1 105000010
590 749 2 105000030
591 750 2 105000040
592 751 2 102000020
593 752 2 103000020
594 753 3 105000060
595 754 3 105000070
596 755 3 105000080
597 756 3 104000050
598 757 3 106000050
599 758 1 109000000
600 759 2 109000001
601 760 3 109000002
602 761 4 109000003
603 762 5 109000004
604 763 1 112000000
605 764 2 112000001
606 765 3 112000002
607 766 4 112000003
608 767 5 112000004
609 768 3 170000
610 769 4 170001
611 771 1 104000010
612 772 2 104000030
613 773 2 104000040
614 774 2 108000020
615 775 3 104000060
616 776 3 104000070
617 777 3 104000080
618 778 3 102000050
619 779 1 111000000
620 780 2 111000001
621 781 3 111000002
622 782 4 111000003
623 783 5 111000004
624 784 1 120000000
625 785 2 120000001
626 786 3 120000002
627 787 4 120000003
628 788 5 120000004
629 789 1 110020
630 790 1 110030
631 791 1 110040
632 792 1 110050
633 793 3 110060
634 794 3 110070
635 795 3 110080
636 796 3 110090
637 797 3 110100
638 798 3 110110
639 799 3 110120
640 800 3 110130
641 801 3 110140
642 802 3 110150
643 803 3 110160
644 804 3 110170
645 805 3 110180
646 806 3 110190
647 807 3 110200
648 808 3 110210
649 809 3 110220
650 810 3 110230
651 811 3 110240
652 812 3 110250
653 813 3 110260
654 814 3 110270
655 816 1 102000010
656 817 2 102000030
657 818 2 102000040
658 819 2 104000020
659 820 3 102000060
660 821 3 102000070
661 822 3 102000080
662 823 3 103000050
663 824 3 105000050
664 825 1 102000000
665 826 2 102000001
666 827 3 102000002
667 828 4 102000003
668 829 5 102000004
669 830 1 112000000
670 831 2 112000001
671 832 3 112000002
672 833 4 112000003
673 834 5 112000004
674 835 3 170001
675 836 4 170002
676 838 1 102000010
677 839 2 102000030
678 840 2 102000040
679 841 2 104000020
680 842 3 102000060
681 843 3 102000070
682 844 3 102000080
683 845 3 103000050
684 846 3 105000050
685 847 1 102000000
686 848 2 102000001
687 849 3 102000002
688 850 4 102000003
689 851 5 102000004
690 852 1 112000000
691 853 2 112000001
692 854 3 112000002
693 855 4 112000003
694 856 5 112000004
695 857 1 110020
696 858 1 110030
697 859 1 110040
698 860 1 110050
699 861 2 110021
700 862 2 110031
701 863 2 110041
702 864 2 110051
703 865 3 110060
704 866 3 110070
705 867 3 110080
706 868 3 110090
707 869 3 110100
708 870 3 110110
709 871 3 110120
710 872 3 110130
711 873 3 110140
712 874 3 110150
713 875 3 110160
714 876 3 110170
715 877 3 110180
716 878 3 110190
717 879 3 110200
718 880 3 110210
719 881 3 110220
720 882 3 110230
721 883 3 110240
722 884 3 110250
723 885 3 110260
724 886 3 110270
725 887 4 140000
726 889 1 101000010
727 890 1 103000010
728 891 2 103000030
729 892 2 103000040
730 893 2 107000020
731 894 2 101000030
732 895 3 101000050
733 896 3 101000060
734 897 3 101000080
735 898 3 103000060
736 899 3 103000070
737 900 3 103000080
738 901 3 101000040
739 902 1 101000000
740 903 2 101000001
741 904 3 101000002
742 905 4 101000008
743 906 5 101000004
744 907 1 112000000
745 908 2 112000001
746 909 3 112000002
747 910 4 112000003
748 911 5 112000004
749 912 1 120020
750 913 1 120030
751 914 1 120040
752 915 1 120050
753 916 2 120021
754 917 2 120031
755 918 2 120041
756 919 2 120051
757 920 3 120240
758 921 3 120250
759 922 3 120260
760 923 3 120270
761 924 3 120300
762 925 3 120310
763 926 3 120320
764 927 3 120330
765 928 3 120340
766 929 3 120350
767 930 3 120360
768 931 3 120370
769 932 3 120380
770 933 3 120390
771 934 3 120400
772 935 3 120410
773 936 3 120420
774 937 3 120430
775 938 3 120450
776 939 3 120460
777 940 4 140000
778 942 1 106000010
779 943 2 106000030
780 944 2 106000040
781 945 2 105000020
782 946 3 106000060
783 947 3 106000070
784 948 3 106000080
785 949 3 101000070
786 950 1 103000000
787 951 2 103000001
788 952 3 103000002
789 953 4 103000003
790 954 5 103000004
791 955 1 112000000
792 956 2 112000001
793 957 3 112000002
794 958 4 112000003
795 959 5 112000004
796 960 3 180001
797 961 4 180002
798 963 1 101000010
799 964 1 103000010
800 965 2 103000030
801 966 2 103000040
802 967 2 107000020
803 968 2 101000030
804 969 3 101000050
805 970 3 101000060
806 971 3 101000080
807 972 3 103000060
808 973 3 103000070
809 974 3 103000080
810 975 3 101000040
811 976 1 101000000
812 977 2 101000001
813 978 3 101000002
814 979 4 101000008
815 980 5 101000004
816 981 1 120000000
817 982 2 120000001
818 983 3 120000002
819 984 4 120000003
820 985 5 120000004
821 986 3 170001
822 987 4 170002
823 989 1 105000010
824 990 2 105000030
825 991 2 105000040
826 992 2 102000020
827 993 2 103000020
828 994 3 105000060
829 995 3 105000070
830 996 3 105000080
831 997 3 104000050
832 998 3 106000050
833 999 1 109000000
834 1000 2 109000001
835 1001 3 109000002
836 1002 4 109000003
837 1003 5 109000004
838 1004 1 112000000
839 1005 2 112000001
840 1006 3 112000002
841 1007 4 112000003
842 1008 5 112000004
843 1009 1 130020
844 1010 1 130030
845 1011 1 130040
846 1012 1 130050
847 1013 2 130021
848 1014 2 130031
849 1015 2 130041
850 1016 2 130051
851 1017 3 130060
852 1018 3 130070
853 1019 3 130080
854 1020 3 130090
855 1021 3 130100
856 1022 3 130110
857 1023 3 130120
858 1024 3 130130
859 1025 3 130140
860 1026 3 130150
861 1027 3 130160
862 1028 3 130170
863 1029 3 130180
864 1030 3 130190
865 1031 3 130200
866 1032 3 130420
867 1033 3 130510
868 1034 3 130520
869 1035 3 130530
870 1036 3 130540
871 1037 4 140000
872 1039 1 107000010
873 1040 2 107000030
874 1041 2 107000040
875 1042 2 101000020
876 1043 3 107000060
877 1044 3 107000070
878 1045 3 107000080
879 1046 3 108000050
880 1047 1 105000000
881 1048 2 105000001
882 1049 3 105000002
883 1050 4 105000003
884 1051 5 105000004
885 1052 1 120000000
886 1053 2 120000001
887 1054 3 120000002
888 1055 4 120000003
889 1056 5 120000004
890 1057 1 120020
891 1058 1 120030
892 1059 1 120040
893 1060 1 120050
894 1061 2 120021
895 1062 2 120031
896 1063 2 120041
897 1064 2 120051
898 1065 3 120240
899 1066 3 120250
900 1067 3 120260
901 1068 3 120270
902 1069 3 120300
903 1070 3 120310
904 1071 3 120320
905 1072 3 120330
906 1073 3 120340
907 1074 3 120350
908 1075 3 120360
909 1076 3 120370
910 1077 3 120380
911 1078 3 120390
912 1079 3 120400
913 1080 3 120410
914 1081 3 120420
915 1082 3 120430
916 1083 3 120450
917 1084 3 120460
918 1085 4 140000
919 1087 1 108000010
920 1088 2 108000030
921 1089 2 108000040
922 1090 2 106000020
923 1091 3 108000060
924 1092 3 108000070
925 1093 3 108000080
926 1094 3 107000050
927 1095 1 108000000
928 1096 2 108000001
929 1097 3 108000002
930 1098 4 108000003
931 1099 5 108000004
932 1100 1 120000000
933 1101 2 120000001
934 1102 3 120000002
935 1103 4 120000003
936 1104 5 120000004
937 1105 3 170001
938 1106 4 170002
939 1108 1 101000010
940 1109 1 103000010
941 1110 2 103000030
942 1111 2 103000040
943 1112 2 107000020
944 1113 2 101000030
945 1114 3 101000050
946 1115 3 101000060
947 1116 3 101000080
948 1117 3 103000060
949 1118 3 103000070
950 1119 3 103000080
951 1120 3 101000040
952 1121 1 101000000
953 1122 2 101000001
954 1123 3 101000002
955 1124 4 101000008
956 1125 5 101000004
957 1126 1 112000000
958 1127 2 112000001
959 1128 3 112000002
960 1129 4 112000003
961 1130 5 112000004
962 1131 2 101000005
963 1132 2 112000005
964 1133 3 170001
965 1134 4 170002
966 1136 1 102000010
967 1137 2 102000030
968 1138 2 102000040
969 1139 2 104000020
970 1140 3 102000060
971 1141 3 102000070
972 1142 3 102000080
973 1143 3 103000050
974 1144 3 105000050
975 1145 1 102000000
976 1146 2 102000001
977 1147 3 102000002
978 1148 4 102000003
979 1149 5 102000004
980 1150 1 112000000
981 1151 2 112000001
982 1152 3 112000002
983 1153 4 112000003
984 1154 5 112000004
985 1155 1 120020
986 1156 1 120030
987 1157 1 120040
988 1158 1 120050
989 1159 2 120021
990 1160 2 120031
991 1161 2 120041
992 1162 2 120051
993 1163 3 120240
994 1164 3 120250
995 1165 3 120260
996 1166 3 120270
997 1167 3 120300
998 1168 3 120310
999 1169 3 120320
1000 1170 3 120330
1001 1171 3 120340
1002 1172 3 120350
1003 1173 3 120360
1004 1174 3 120370
1005 1175 3 120380
1006 1176 3 120390
1007 1177 3 120400
1008 1178 3 120410
1009 1179 3 120420
1010 1180 3 120430
1011 1181 3 120450
1012 1182 3 120460
1013 1183 4 140000
1014 1185 2 104000030
1015 1186 2 104000040
1016 1187 2 108000020
1017 1188 3 104000060
1018 1189 3 104000070
1019 1190 3 104000080
1020 1191 3 102000050
1021 1192 4 104000100
1022 1193 4 104000110
1023 1194 4 107000090
1024 1195 1 111000000
1025 1196 2 111000001
1026 1197 3 111000002
1027 1198 4 111000003
1028 1199 5 111000004
1029 1200 1 120000000
1030 1201 2 120000001
1031 1202 3 120000002
1032 1203 4 120000003
1033 1204 5 120000004
1034 1205 3 170002
1035 1206 4 170003
1036 1208 2 104000030
1037 1209 2 104000040
1038 1210 2 108000020
1039 1211 3 104000060
1040 1212 3 104000070
1041 1213 3 104000080
1042 1214 3 102000050
1043 1215 4 104000100
1044 1216 4 104000110
1045 1217 4 107000090
1046 1218 1 111000000
1047 1219 2 111000001
1048 1220 3 111000002
1049 1221 4 111000003
1050 1222 5 111000004
1051 1223 1 120000000
1052 1224 2 120000001
1053 1225 3 120000002
1054 1226 4 120000003
1055 1227 5 120000004
1056 1228 1 110020
1057 1229 1 110030
1058 1230 1 110040
1059 1231 1 110050
1060 1232 2 110021
1061 1233 2 110031
1062 1234 2 110041
1063 1235 2 110051
1064 1236 3 110022
1065 1237 3 110032
1066 1238 3 110042
1067 1239 3 110052
1068 1240 3 110060
1069 1241 3 110070
1070 1242 3 110080
1071 1243 3 110090
1072 1244 3 110100
1073 1245 3 110110
1074 1246 3 110120
1075 1247 3 110130
1076 1248 3 110140
1077 1249 3 110150
1078 1250 3 110160
1079 1251 3 110170
1080 1252 3 110180
1081 1253 3 110190
1082 1254 3 110200
1083 1255 3 110210
1084 1256 3 110220
1085 1257 3 110230
1086 1258 3 110240
1087 1259 3 110250
1088 1260 3 110260
1089 1261 3 110270
1090 1262 4 140000
1091 1264 2 105000030
1092 1265 2 105000040
1093 1266 2 102000020
1094 1267 2 103000020
1095 1268 3 105000060
1096 1269 3 105000070
1097 1270 3 105000080
1098 1271 3 104000050
1099 1272 3 106000050
1100 1273 4 105000100
1101 1274 4 105000110
1102 1275 4 108000090
1103 1276 1 109000000
1104 1277 2 109000001
1105 1278 3 109000002
1106 1279 4 109000003
1107 1280 5 109000004
1108 1281 1 112000000
1109 1282 2 112000001
1110 1283 3 112000002
1111 1284 4 112000003
1112 1285 5 112000004
1113 1286 3 170002
1114 1287 4 170003
1115 1289 2 106000030
1116 1290 2 106000040
1117 1291 2 105000020
1118 1292 3 106000060
1119 1293 3 106000070
1120 1294 3 106000080
1121 1295 3 101000070
1122 1296 4 106000100
1123 1297 4 106000110
1124 1298 4 104000090
1125 1299 1 103000000
1126 1300 2 103000001
1127 1301 3 103000002
1128 1302 4 103000003
1129 1303 5 103000004
1130 1304 1 112000000
1131 1305 2 112000001
1132 1306 3 112000002
1133 1307 4 112000003
1134 1308 5 112000004
1135 1309 1 130020
1136 1310 1 130030
1137 1311 1 130040
1138 1312 1 130050
1139 1313 2 130021
1140 1314 2 130031
1141 1315 2 130041
1142 1316 2 130051
1143 1317 3 130022
1144 1318 3 130032
1145 1319 3 130042
1146 1320 3 130052
1147 1321 3 130060
1148 1322 3 130070
1149 1323 3 130080
1150 1324 3 130090
1151 1325 3 130100
1152 1326 3 130110
1153 1327 3 130120
1154 1328 3 130130
1155 1329 3 130140
1156 1330 3 130150
1157 1331 3 130160
1158 1332 3 130170
1159 1333 3 130180
1160 1334 3 130190
1161 1335 3 130200
1162 1336 3 130420
1163 1337 3 130510
1164 1338 3 130520
1165 1339 3 130530
1166 1340 3 130540
1167 1341 4 140000
1168 1343 2 108000030
1169 1344 2 108000040
1170 1345 2 106000020
1171 1346 3 108000060
1172 1347 3 108000070
1173 1348 3 108000080
1174 1349 3 107000050
1175 1350 4 108000100
1176 1351 4 105000090
1177 1352 1 108000000
1178 1353 2 108000001
1179 1354 3 108000002
1180 1355 4 108000003
1181 1356 5 108000004
1182 1357 1 120000000
1183 1358 2 120000001
1184 1359 3 120000002
1185 1360 4 120000003
1186 1361 5 120000004
1187 1362 1 120020
1188 1363 1 120030
1189 1364 1 120040
1190 1365 1 120050
1191 1366 2 120021
1192 1367 2 120031
1193 1368 2 120041
1194 1369 2 120051
1195 1370 3 120022
1196 1371 3 120032
1197 1372 3 120042
1198 1373 3 120052
1199 1374 3 120240
1200 1375 3 120250
1201 1376 3 120260
1202 1377 3 120270
1203 1378 3 120300
1204 1379 3 120310
1205 1380 3 120320
1206 1381 3 120330
1207 1382 3 120340
1208 1383 3 120350
1209 1384 3 120360
1210 1385 3 120370
1211 1386 3 120380
1212 1387 3 120390
1213 1388 3 120400
1214 1389 3 120410
1215 1390 3 120420
1216 1391 3 120430
1217 1392 3 120450
1218 1393 3 120460
1219 1394 4 140000
1220 1396 2 103000030
1221 1397 2 103000040
1222 1398 2 107000020
1223 1399 2 101000030
1224 1400 3 101000050
1225 1401 3 101000060
1226 1402 3 101000080
1227 1403 3 103000060
1228 1404 3 103000070
1229 1405 3 103000080
1230 1406 3 101000040
1231 1407 4 101000090
1232 1408 4 102000090
1233 1409 4 103000100
1234 1410 4 101000100
1235 1411 4 101000110
1236 1412 1 101000000
1237 1413 2 101000001
1238 1414 3 101000002
1239 1415 4 101000008
1240 1416 5 101000004
1241 1417 1 120000000
1242 1418 2 120000001
1243 1419 3 120000002
1244 1420 4 120000003
1245 1421 5 120000004
1246 1422 3 170002
1247 1423 4 170003
1248 1425 2 105000030
1249 1426 2 105000040
1250 1427 2 102000020
1251 1428 2 103000020
1252 1429 3 105000060
1253 1430 3 105000070
1254 1431 3 105000080
1255 1432 3 104000050
1256 1433 3 106000050
1257 1434 4 105000100
1258 1435 4 105000110
1259 1436 4 108000090
1260 1437 1 109000000
1261 1438 2 109000001
1262 1439 3 109000002
1263 1440 4 109000003
1264 1441 5 109000004
1265 1442 1 112000000
1266 1443 2 112000001
1267 1444 3 112000002
1268 1445 4 112000003
1269 1446 5 112000004
1270 1447 3 180002
1271 1448 4 180003
1272 1450 2 107000030
1273 1451 2 107000040
1274 1452 2 101000020
1275 1453 3 107000060
1276 1454 3 107000070
1277 1455 3 107000080
1278 1456 3 108000050
1279 1457 4 107000100
1280 1458 4 103000090
1281 1459 1 105000000
1282 1460 2 105000001
1283 1461 3 105000002
1284 1462 4 105000003
1285 1463 5 105000004
1286 1464 1 120000000
1287 1465 2 120000001
1288 1466 3 120000002
1289 1467 4 120000003
1290 1468 5 120000004
1291 1469 3 170002
1292 1470 4 170003
1293 1472 2 104000030
1294 1473 2 104000040
1295 1474 2 108000020
1296 1475 3 104000060
1297 1476 3 104000070
1298 1477 3 104000080
1299 1478 3 102000050
1300 1479 4 104000100
1301 1480 4 104000110
1302 1481 4 107000090
1303 1482 1 111000000
1304 1483 2 111000001
1305 1484 3 111000002
1306 1485 4 111000003
1307 1486 5 111000004
1308 1487 1 120000000
1309 1488 2 120000001
1310 1489 3 120000002
1311 1490 4 120000003
1312 1491 5 120000004
1313 1492 1 110020
1314 1493 1 110030
1315 1494 1 110040
1316 1495 1 110050
1317 1496 2 110021
1318 1497 2 110031
1319 1498 2 110041
1320 1499 2 110051
1321 1500 3 110022
1322 1501 3 110032
1323 1502 3 110042
1324 1503 3 110052
1325 1504 3 110060
1326 1505 3 110070
1327 1506 3 110080
1328 1507 3 110090
1329 1508 3 110100
1330 1509 3 110110
1331 1510 3 110120
1332 1511 3 110130
1333 1512 3 110140
1334 1513 3 110150
1335 1514 3 110160
1336 1515 3 110170
1337 1516 3 110180
1338 1517 3 110190
1339 1518 3 110200
1340 1519 3 110210
1341 1520 3 110220
1342 1521 3 110230
1343 1522 3 110240
1344 1523 3 110250
1345 1524 3 110260
1346 1525 3 110270
1347 1526 4 140000
1348 1528 2 108000030
1349 1529 2 108000040
1350 1530 2 106000020
1351 1531 3 108000060
1352 1532 3 108000070
1353 1533 3 108000080
1354 1534 3 107000050
1355 1535 4 108000100
1356 1536 4 105000090
1357 1537 1 108000000
1358 1538 2 108000001
1359 1539 3 108000002
1360 1540 4 108000003
1361 1541 5 108000004
1362 1542 1 120000000
1363 1543 2 120000001
1364 1544 3 120000002
1365 1545 4 120000003
1366 1546 5 120000004
1367 1547 3 170002
1368 1548 4 170003
1369 1550 2 103000030
1370 1551 2 103000040
1371 1552 2 107000020
1372 1553 2 101000030
1373 1554 3 101000050
1374 1555 3 101000060
1375 1556 3 101000080
1376 1557 3 103000060
1377 1558 3 103000070
1378 1559 3 103000080
1379 1560 3 101000040
1380 1561 4 101000090
1381 1562 4 102000090
1382 1563 4 103000100
1383 1564 4 101000100
1384 1565 4 101000110
1385 1566 1 101000000
1386 1567 2 101000001
1387 1568 3 101000002
1388 1569 4 101000008
1389 1570 5 101000004
1390 1571 1 112000000
1391 1572 2 112000001
1392 1573 3 112000002
1393 1574 4 112000003
1394 1575 5 112000004
1395 1576 1 120020
1396 1577 1 120030
1397 1578 1 120040
1398 1579 1 120050
1399 1580 2 120021
1400 1581 2 120031
1401 1582 2 120041
1402 1583 2 120051
1403 1584 3 120022
1404 1585 3 120032
1405 1586 3 120042
1406 1587 3 120052
1407 1588 4 120023
1408 1589 4 120033
1409 1590 4 120043
1410 1591 4 120053
1411 1592 3 120240
1412 1593 3 120250
1413 1594 3 120260
1414 1595 3 120270
1415 1596 3 120300
1416 1597 3 120310
1417 1598 3 120320
1418 1599 3 120330
1419 1600 3 120340
1420 1601 3 120350
1421 1602 3 120360
1422 1603 3 120370
1423 1604 3 120380
1424 1605 3 120390
1425 1606 3 120400
1426 1607 3 120410
1427 1608 3 120420
1428 1609 3 120430
1429 1610 3 120450
1430 1611 3 120460
1431 1612 4 140000
1432 1613 4 150010
1433 1614 4 150020
1434 1615 4 150030
1435 1616 4 150040
1436 1618 2 102000030
1437 1619 2 102000040
1438 1620 2 104000020
1439 1621 3 102000060
1440 1622 3 102000070
1441 1623 3 102000080
1442 1624 3 103000050
1443 1625 3 105000050
1444 1626 4 102000100
1445 1627 4 102000110
1446 1628 4 106000090
1447 1629 1 102000000
1448 1630 2 102000001
1449 1631 3 102000002
1450 1632 4 102000003
1451 1633 5 102000004
1452 1634 1 112000000
1453 1635 2 112000001
1454 1636 3 112000002
1455 1637 4 112000003
1456 1638 5 112000004
1457 1639 1 110020
1458 1640 1 110030
1459 1641 1 110040
1460 1642 1 110050
1461 1643 2 110021
1462 1644 2 110031
1463 1645 2 110041
1464 1646 2 110051
1465 1647 3 110022
1466 1648 3 110032
1467 1649 3 110042
1468 1650 3 110052
1469 1651 4 110023
1470 1652 4 110033
1471 1653 4 110043
1472 1654 4 110053
1473 1655 3 110060
1474 1656 3 110070
1475 1657 3 110080
1476 1658 3 110090
1477 1659 3 110100
1478 1660 3 110110
1479 1661 3 110120
1480 1662 3 110130
1481 1663 3 110140
1482 1664 3 110150
1483 1665 3 110160
1484 1666 3 110170
1485 1667 3 110180
1486 1668 3 110190
1487 1669 3 110200
1488 1670 3 110210
1489 1671 3 110220
1490 1672 3 110230
1491 1673 3 110240
1492 1674 3 110250
1493 1675 3 110260
1494 1676 3 110270
1495 1677 4 140000
1496 1678 4 150010
1497 1679 4 150020
1498 1680 4 150030
1499 1681 4 150040
1500 1683 2 106000030
1501 1684 2 106000040
1502 1685 2 105000020
1503 1686 3 106000060
1504 1687 3 106000070
1505 1688 3 106000080
1506 1689 3 101000070
1507 1690 4 106000100
1508 1691 4 106000110
1509 1692 4 104000090
1510 1693 1 103000000
1511 1694 2 103000001
1512 1695 3 103000002
1513 1696 4 103000003
1514 1697 5 103000004
1515 1698 1 112000000
1516 1699 2 112000001
1517 1700 3 112000002
1518 1701 4 112000003
1519 1702 5 112000004
1520 1703 1 120020
1521 1704 1 120030
1522 1705 1 120040
1523 1706 1 120050
1524 1707 2 120021
1525 1708 2 120031
1526 1709 2 120041
1527 1710 2 120051
1528 1711 3 120022
1529 1712 3 120032
1530 1713 3 120042
1531 1714 3 120052
1532 1715 4 120023
1533 1716 4 120033
1534 1717 4 120043
1535 1718 4 120053
1536 1719 3 120240
1537 1720 3 120250
1538 1721 3 120260
1539 1722 3 120270
1540 1723 3 120300
1541 1724 3 120310
1542 1725 3 120320
1543 1726 3 120330
1544 1727 3 120340
1545 1728 3 120350
1546 1729 3 120360
1547 1730 3 120370
1548 1731 3 120380
1549 1732 3 120390
1550 1733 3 120400
1551 1734 3 120410
1552 1735 3 120420
1553 1736 3 120430
1554 1737 3 120450
1555 1738 3 120460
1556 1739 4 140000
1557 1740 4 150010
1558 1741 4 150020
1559 1742 4 150030
1560 1743 4 150040
1561 1745 2 103000030
1562 1746 2 103000040
1563 1747 2 107000020
1564 1748 2 101000030
1565 1749 3 101000050
1566 1750 3 101000060
1567 1751 3 101000080
1568 1752 3 103000060
1569 1753 3 103000070
1570 1754 3 103000080
1571 1755 3 101000040
1572 1756 4 101000090
1573 1757 4 102000090
1574 1758 4 103000100
1575 1759 4 101000100
1576 1760 4 101000110
1577 1761 1 101000000
1578 1762 2 101000001
1579 1763 3 101000002
1580 1764 4 101000008
1581 1765 5 101000004
1582 1766 1 120000000
1583 1767 2 120000001
1584 1768 3 120000002
1585 1769 4 120000003
1586 1770 5 120000004
1587 1771 3 170003
1588 1772 4 170004
1589 1774 2 107000030
1590 1775 2 107000040
1591 1776 2 101000020
1592 1777 3 107000060
1593 1778 3 107000070
1594 1779 3 107000080
1595 1780 3 108000050
1596 1781 4 107000100
1597 1782 4 103000090
1598 1783 1 105000000
1599 1784 2 105000001
1600 1785 3 105000002
1601 1786 4 105000003
1602 1787 5 105000004
1603 1788 1 120000000
1604 1789 2 120000001
1605 1790 3 120000002
1606 1791 4 120000003
1607 1792 5 120000004
1608 1793 1 130020
1609 1794 1 130030
1610 1795 1 130040
1611 1796 1 130050
1612 1797 2 130021
1613 1798 2 130031
1614 1799 2 130041
1615 1800 2 130051
1616 1801 3 130022
1617 1802 3 130032
1618 1803 3 130042
1619 1804 3 130052
1620 1805 4 130023
1621 1806 4 130033
1622 1807 4 130043
1623 1808 4 130053
1624 1809 3 130060
1625 1810 3 130070
1626 1811 3 130080
1627 1812 3 130090
1628 1813 3 130100
1629 1814 3 130110
1630 1815 3 130120
1631 1816 3 130130
1632 1817 3 130140
1633 1818 3 130150
1634 1819 3 130160
1635 1820 3 130170
1636 1821 3 130180
1637 1822 3 130190
1638 1823 3 130200
1639 1824 3 130420
1640 1825 3 130510
1641 1826 3 130520
1642 1827 3 130530
1643 1828 3 130540
1644 1829 4 140000
1645 1830 4 150010
1646 1831 4 150020
1647 1832 4 150030
1648 1833 4 150040
1649 1835 2 102000030
1650 1836 2 102000040
1651 1837 2 104000020
1652 1838 3 102000060
1653 1839 3 102000070
1654 1840 3 102000080
1655 1841 3 103000050
1656 1842 3 105000050
1657 1843 4 102000100
1658 1844 4 102000110
1659 1845 4 106000090
1660 1846 1 102000000
1661 1847 2 102000001
1662 1848 3 102000002
1663 1849 4 102000003
1664 1850 5 102000004
1665 1851 1 112000000
1666 1852 2 112000001
1667 1853 3 112000002
1668 1854 4 112000003
1669 1855 5 112000004
1670 1856 1 120020
1671 1857 1 120030
1672 1858 1 120040
1673 1859 1 120050
1674 1860 2 120021
1675 1861 2 120031
1676 1862 2 120041
1677 1863 2 120051
1678 1864 3 120022
1679 1865 3 120032
1680 1866 3 120042
1681 1867 3 120052
1682 1868 4 120023
1683 1869 4 120033
1684 1870 4 120043
1685 1871 4 120053
1686 1872 3 120240
1687 1873 3 120250
1688 1874 3 120260
1689 1875 3 120270
1690 1876 3 120300
1691 1877 3 120310
1692 1878 3 120320
1693 1879 3 120330
1694 1880 3 120340
1695 1881 3 120350
1696 1882 3 120360
1697 1883 3 120370
1698 1884 3 120380
1699 1885 3 120390
1700 1886 3 120400
1701 1887 3 120410
1702 1888 3 120420
1703 1889 3 120430
1704 1890 3 120450
1705 1891 3 120460
1706 1892 4 140000
1707 1893 4 150010
1708 1894 4 150020
1709 1895 4 150030
1710 1896 4 150040
1711 1898 2 108000030
1712 1899 2 108000040
1713 1900 2 106000020
1714 1901 3 108000060
1715 1902 3 108000070
1716 1903 3 108000080
1717 1904 3 107000050
1718 1905 4 108000100
1719 1906 4 105000090
1720 1907 1 108000000
1721 1908 2 108000001
1722 1909 3 108000002
1723 1910 4 108000003
1724 1911 5 108000004
1725 1912 1 120000000
1726 1913 2 120000001
1727 1914 3 120000002
1728 1915 4 120000003
1729 1916 5 120000004
1730 1917 3 170003
1731 1918 4 170004
1732 1920 2 103000030
1733 1921 2 103000040
1734 1922 2 107000020
1735 1923 2 101000030
1736 1924 3 101000050
1737 1925 3 101000060
1738 1926 3 101000080
1739 1927 3 103000060
1740 1928 3 103000070
1741 1929 3 103000080
1742 1930 3 101000040
1743 1931 4 101000090
1744 1932 4 102000090
1745 1933 4 103000100
1746 1934 4 101000100
1747 1935 4 101000110
1748 1936 1 101000000
1749 1937 2 101000001
1750 1938 3 101000002
1751 1939 4 101000008
1752 1940 5 101000004
1753 1941 1 112000000
1754 1942 2 112000001
1755 1943 3 112000002
1756 1944 4 112000003
1757 1945 5 112000004
1758 1946 3 170003
1759 1947 4 170004
1760 1949 2 105000030
1761 1950 2 105000040
1762 1951 2 102000020
1763 1952 2 103000020
1764 1953 3 105000060
1765 1954 3 105000070
1766 1955 3 105000080
1767 1956 3 104000050
1768 1957 3 106000050
1769 1958 4 105000100
1770 1959 4 105000110
1771 1960 4 108000090
1772 1961 1 109000000
1773 1962 2 109000001
1774 1963 3 109000002
1775 1964 4 109000003
1776 1965 5 109000004
1777 1966 1 112000000
1778 1967 2 112000001
1779 1968 3 112000002
1780 1969 4 112000003
1781 1970 5 112000004
1782 1971 3 180003
1783 1972 4 180004
1784 1974 2 104000030
1785 1975 2 104000040
1786 1976 2 108000020
1787 1977 3 104000060
1788 1978 3 104000070
1789 1979 3 104000080
1790 1980 3 102000050
1791 1981 4 104000100
1792 1982 4 104000110
1793 1983 4 107000090
1794 1984 1 111000000
1795 1985 2 111000001
1796 1986 3 111000002
1797 1987 4 111000003
1798 1988 5 111000004
1799 1989 1 120000000
1800 1990 2 120000001
1801 1991 3 120000002
1802 1992 4 120000003
1803 1993 5 120000004
1804 1994 1 110020
1805 1995 1 110030
1806 1996 1 110040
1807 1997 1 110050
1808 1998 2 110021
1809 1999 2 110031
1810 2000 2 110041
1811 2001 2 110051
1812 2002 3 110022
1813 2003 3 110032
1814 2004 3 110042
1815 2005 3 110052
1816 2006 4 110023
1817 2007 4 110033
1818 2008 4 110043
1819 2009 4 110053
1820 2010 3 110060
1821 2011 3 110070
1822 2012 3 110080
1823 2013 3 110090
1824 2014 3 110100
1825 2015 3 110110
1826 2016 3 110120
1827 2017 3 110130
1828 2018 3 110140
1829 2019 3 110150
1830 2020 3 110160
1831 2021 3 110170
1832 2022 3 110180
1833 2023 3 110190
1834 2024 3 110200
1835 2025 3 110210
1836 2026 3 110220
1837 2027 3 110230
1838 2028 3 110240
1839 2029 3 110250
1840 2030 3 110260
1841 2031 3 110270
1842 2032 4 140000
1843 2033 4 150010
1844 2034 4 150020
1845 2035 4 150030
1846 2036 4 150040
1847 2038 3 105000060
1848 2039 3 105000070
1849 2040 3 105000080
1850 2041 3 104000050
1851 2042 3 106000050
1852 2043 4 105000100
1853 2044 4 105000110
1854 2045 4 108000090
1855 2046 5 105000120
1856 2047 1 109000000
1857 2048 2 109000001
1858 2049 3 109000002
1859 2050 4 109000003
1860 2051 5 109000004
1861 2052 1 112000000
1862 2053 2 112000001
1863 2054 3 112000002
1864 2055 4 112000003
1865 2056 5 112000004
1866 2057 3 170004
1867 2059 3 101000050
1868 2060 3 101000060
1869 2061 3 101000080
1870 2062 3 103000060
1871 2063 3 103000070
1872 2064 3 103000080
1873 2065 3 101000040
1874 2066 4 101000090
1875 2067 4 102000090
1876 2068 4 103000100
1877 2069 4 101000100
1878 2070 4 101000110
1879 2071 5 101000120
1880 2072 5 103000120
1881 2073 1 101000000
1882 2074 2 101000001
1883 2075 3 101000002
1884 2076 4 101000008
1885 2077 5 101000004
1886 2078 1 120000000
1887 2079 2 120000001
1888 2080 3 120000002
1889 2081 4 120000003
1890 2082 5 120000004
1891 2083 3 170004
1892 2085 3 107000060
1893 2086 3 107000070
1894 2087 3 107000080
1895 2088 3 108000050
1896 2089 4 107000100
1897 2090 4 103000090
1898 2091 5 107000110
1899 2092 1 105000000
1900 2093 2 105000001
1901 2094 3 105000002
1902 2095 4 105000003
1903 2096 5 105000004
1904 2097 1 120000000
1905 2098 2 120000001
1906 2099 3 120000002
1907 2100 4 120000003
1908 2101 5 120000004
1909 2102 3 170004
1910 2104 3 101000050
1911 2105 3 101000060
1912 2106 3 101000080
1913 2107 3 103000060
1914 2108 3 103000070
1915 2109 3 103000080
1916 2110 3 101000040
1917 2111 4 101000090
1918 2112 4 102000090
1919 2113 4 103000100
1920 2114 4 101000100
1921 2115 4 101000110
1922 2116 5 101000120
1923 2117 5 103000120
1924 2118 1 101000000
1925 2119 2 101000001
1926 2120 3 101000002
1927 2121 4 101000008
1928 2122 5 101000004
1929 2123 1 112000000
1930 2124 2 112000001
1931 2125 3 112000002
1932 2126 4 112000003
1933 2127 5 112000004
1934 2128 1 130020
1935 2129 1 130030
1936 2130 1 130040
1937 2131 1 130050
1938 2132 2 130021
1939 2133 2 130031
1940 2134 2 130041
1941 2135 2 130051
1942 2136 3 130022
1943 2137 3 130032
1944 2138 3 130042
1945 2139 3 130052
1946 2140 4 130023
1947 2141 4 130033
1948 2142 4 130043
1949 2143 4 130053
1950 2144 5 130024
1951 2145 5 130034
1952 2146 5 130044
1953 2147 5 130054
1954 2148 3 130060
1955 2149 3 130070
1956 2150 3 130080
1957 2151 3 130090
1958 2152 3 130100
1959 2153 3 130110
1960 2154 3 130120
1961 2155 3 130130
1962 2156 3 130140
1963 2157 3 130150
1964 2158 3 130160
1965 2159 3 130170
1966 2160 3 130180
1967 2161 3 130190
1968 2162 3 130200
1969 2163 3 130420
1970 2164 3 130510
1971 2165 3 130520
1972 2166 3 130530
1973 2167 3 130540
1974 2168 4 140000
1975 2169 4 150010
1976 2170 4 150020
1977 2171 4 150030
1978 2172 4 150040
1979 2174 3 102000060
1980 2175 3 102000070
1981 2176 3 102000080
1982 2177 3 103000050
1983 2178 3 105000050
1984 2179 4 102000100
1985 2180 4 102000110
1986 2181 4 106000090
1987 2182 5 102000120
1988 2183 1 102000000
1989 2184 2 102000001
1990 2185 3 102000002
1991 2186 4 102000003
1992 2187 5 102000004
1993 2188 1 112000000
1994 2189 2 112000001
1995 2190 3 112000002
1996 2191 4 112000003
1997 2192 5 112000004
1998 2193 3 170004
1999 2195 3 101000050
2000 2196 3 101000060
2001 2197 3 101000080
2002 2198 3 103000060
2003 2199 3 103000070
2004 2200 3 103000080
2005 2201 3 101000040
2006 2202 4 101000090
2007 2203 4 102000090
2008 2204 4 103000100
2009 2205 4 101000100
2010 2206 4 101000110
2011 2207 5 101000120
2012 2208 5 103000120
2013 2209 1 101000000
2014 2210 2 101000001
2015 2211 3 101000002
2016 2212 4 101000008
2017 2213 5 101000004
2018 2214 1 120000000
2019 2215 2 120000001
2020 2216 3 120000002
2021 2217 4 120000003
2022 2218 5 120000004
2023 2219 3 170004
2024 2221 3 106000060
2025 2222 3 106000070
2026 2223 3 106000080
2027 2224 3 101000070
2028 2225 4 106000100
2029 2226 4 106000110
2030 2227 4 104000090
2031 2228 5 106000120
2032 2229 1 103000000
2033 2230 2 103000001
2034 2231 3 103000002
2035 2232 4 103000003
2036 2233 5 103000004
2037 2234 1 112000000
2038 2235 2 112000001
2039 2236 3 112000002
2040 2237 4 112000003
2041 2238 5 112000004
2042 2239 1 130020
2043 2240 1 130030
2044 2241 1 130040
2045 2242 1 130050
2046 2243 2 130021
2047 2244 2 130031
2048 2245 2 130041
2049 2246 2 130051
2050 2247 3 130022
2051 2248 3 130032
2052 2249 3 130042
2053 2250 3 130052
2054 2251 4 130023
2055 2252 4 130033
2056 2253 4 130043
2057 2254 4 130053
2058 2255 5 130024
2059 2256 5 130034
2060 2257 5 130044
2061 2258 5 130054
2062 2259 3 130060
2063 2260 3 130070
2064 2261 3 130080
2065 2262 3 130090
2066 2263 3 130100
2067 2264 3 130110
2068 2265 3 130120
2069 2266 3 130130
2070 2267 3 130140
2071 2268 3 130150
2072 2269 3 130160
2073 2270 3 130170
2074 2271 3 130180
2075 2272 3 130190
2076 2273 3 130200
2077 2274 3 130420
2078 2275 3 130510
2079 2276 3 130520
2080 2277 3 130530
2081 2278 3 130540
2082 2279 4 140000
2083 2280 4 150010
2084 2281 4 150020
2085 2282 4 150030
2086 2283 4 150040
2087 2285 3 108000060
2088 2286 3 108000070
2089 2287 3 108000080
2090 2288 3 107000050
2091 2289 4 108000100
2092 2290 4 105000090
2093 2291 5 108000110
2094 2292 1 108000000
2095 2293 2 108000001
2096 2294 3 108000002
2097 2295 4 108000003
2098 2296 5 108000004
2099 2297 1 120000000
2100 2298 2 120000001
2101 2299 3 120000002
2102 2300 4 120000003
2103 2301 5 120000004
2104 2302 1 120020
2105 2303 1 120030
2106 2304 1 120040
2107 2305 1 120050
2108 2306 2 120021
2109 2307 2 120031
2110 2308 2 120041
2111 2309 2 120051
2112 2310 3 120022
2113 2311 3 120032
2114 2312 3 120042
2115 2313 3 120052
2116 2314 4 120023
2117 2315 4 120033
2118 2316 4 120043
2119 2317 4 120053
2120 2318 5 120024
2121 2319 5 120034
2122 2320 5 120044
2123 2321 5 120054
2124 2322 3 120240
2125 2323 3 120250
2126 2324 3 120260
2127 2325 3 120270
2128 2326 3 120300
2129 2327 3 120310
2130 2328 3 120320
2131 2329 3 120330
2132 2330 3 120340
2133 2331 3 120350
2134 2332 3 120360
2135 2333 3 120370
2136 2334 3 120380
2137 2335 3 120390
2138 2336 3 120400
2139 2337 3 120410
2140 2338 3 120420
2141 2339 3 120430
2142 2340 3 120450
2143 2341 3 120460
2144 2342 4 140000
2145 2343 4 150010
2146 2344 4 150020
2147 2345 4 150030
2148 2346 4 150040
2149 2348 3 104000060
2150 2349 3 104000070
2151 2350 3 104000080
2152 2351 3 102000050
2153 2352 4 104000100
2154 2353 4 104000110
2155 2354 4 107000090
2156 2355 5 104000120
2157 2356 1 111000000
2158 2357 2 111000001
2159 2358 3 111000002
2160 2359 4 111000003
2161 2360 5 111000004
2162 2361 1 120000000
2163 2362 2 120000001
2164 2363 3 120000002
2165 2364 4 120000003
2166 2365 5 120000004
2167 2366 1 110020
2168 2367 1 110030
2169 2368 1 110040
2170 2369 1 110050
2171 2370 2 110021
2172 2371 2 110031
2173 2372 2 110041
2174 2373 2 110051
2175 2374 3 110022
2176 2375 3 110032
2177 2376 3 110042
2178 2377 3 110052
2179 2378 4 110023
2180 2379 4 110033
2181 2380 4 110043
2182 2381 4 110053
2183 2382 5 110024
2184 2383 5 110034
2185 2384 5 110044
2186 2385 5 110054
2187 2386 3 110060
2188 2387 3 110070
2189 2388 3 110080
2190 2389 3 110090
2191 2390 3 110100
2192 2391 3 110110
2193 2392 3 110120
2194 2393 3 110130
2195 2394 3 110140
2196 2395 3 110150
2197 2396 3 110160
2198 2397 3 110170
2199 2398 3 110180
2200 2399 3 110190
2201 2400 3 110200
2202 2401 3 110210
2203 2402 3 110220
2204 2403 3 110230
2205 2404 3 110240
2206 2405 3 110250
2207 2406 3 110260
2208 2407 3 110270
2209 2408 4 140000
2210 2409 4 150010
2211 2410 4 150020
2212 2411 4 150030
2213 2412 4 150040
2214 2414 3 105000060
2215 2415 3 105000070
2216 2416 3 105000080
2217 2417 3 104000050
2218 2418 3 106000050
2219 2419 4 105000100
2220 2420 4 105000110
2221 2421 4 108000090
2222 2422 5 105000120
2223 2423 1 109000000
2224 2424 2 109000001
2225 2425 3 109000002
2226 2426 4 109000003
2227 2427 5 109000004
2228 2428 1 112000000
2229 2429 2 112000001
2230 2430 3 112000002
2231 2431 4 112000003
2232 2432 5 112000004
2233 2433 3 170004
2234 2435 3 104000060
2235 2436 3 104000070
2236 2437 3 104000080
2237 2438 3 102000050
2238 2439 4 104000100
2239 2440 4 104000110
2240 2441 4 107000090
2241 2442 5 104000120
2242 2443 1 111000000
2243 2444 2 111000001
2244 2445 3 111000002
2245 2446 4 111000003
2246 2447 5 111000004
2247 2448 1 120000000
2248 2449 2 120000001
2249 2450 3 120000002
2250 2451 4 120000003
2251 2452 5 120000004
2252 2453 1 130020
2253 2454 1 130030
2254 2455 1 130040
2255 2456 1 130050
2256 2457 2 130021
2257 2458 2 130031
2258 2459 2 130041
2259 2460 2 130051
2260 2461 3 130022
2261 2462 3 130032
2262 2463 3 130042
2263 2464 3 130052
2264 2465 4 130023
2265 2466 4 130033
2266 2467 4 130043
2267 2468 4 130053
2268 2469 5 130024
2269 2470 5 130034
2270 2471 5 130044
2271 2472 5 130054
2272 2473 3 130060
2273 2474 3 130070
2274 2475 3 130080
2275 2476 3 130090
2276 2477 3 130100
2277 2478 3 130110
2278 2479 3 130120
2279 2480 3 130130
2280 2481 3 130140
2281 2482 3 130150
2282 2483 3 130160
2283 2484 3 130170
2284 2485 3 130180
2285 2486 3 130190
2286 2487 3 130200
2287 2488 3 130420
2288 2489 3 130510
2289 2490 3 130520
2290 2491 3 130530
2291 2492 3 130540
2292 2493 4 140000
2293 2494 4 150010
2294 2495 4 150020
2295 2496 4 150030
2296 2497 4 150040
2297 2500 1 101000000
2298 2501 2 101000001
2299 2502 3 101000002
2300 2503 4 101000008
2301 2504 5 101000004
2302 2505 1 102000000
2303 2506 2 102000001
2304 2507 3 102000002
2305 2508 4 102000003
2306 2509 5 102000004
2307 2510 1 103000000
2308 2511 2 103000001
2309 2512 3 103000002
2310 2513 4 103000003
2311 2514 5 103000004
2312 2515 1 105000000
2313 2516 2 105000001
2314 2517 3 105000002
2315 2518 4 105000003
2316 2519 5 105000004
2317 2520 1 108000000
2318 2521 2 108000001
2319 2522 3 108000002
2320 2523 4 108000003
2321 2524 5 108000004
2322 2525 1 109000000
2323 2526 2 109000001
2324 2527 3 109000002
2325 2528 4 109000003
2326 2529 5 109000004
2327 2530 1 111000000
2328 2531 2 111000001
2329 2532 3 111000002
2330 2533 4 111000003
2331 2534 5 111000004
2332 2535 1 112000000
2333 2536 2 112000001
2334 2537 3 112000002
2335 2538 4 112000003
2336 2539 5 112000004
2337 2540 1 120000000
2338 2541 2 120000001
2339 2542 3 120000002
2340 2543 4 120000003
2341 2544 5 120000004
2342 2545 1 101000010
2343 2546 2 101000020
2344 2547 2 101000030
2345 2548 3 101000040
2346 2549 3 101000050
2347 2550 3 101000060
2348 2551 3 101000070
2349 2552 3 101000080
2350 2553 1 102000010
2351 2554 2 102000020
2352 2555 2 102000030
2353 2556 2 102000040
2354 2557 3 102000050
2355 2558 3 102000060
2356 2559 3 102000070
2357 2560 3 102000080
2358 2561 1 103000010
2359 2562 2 103000020
2360 2563 2 103000030
2361 2564 2 103000040
2362 2565 3 103000050
2363 2566 3 103000060
2364 2567 3 103000070
2365 2568 3 103000080
2366 2569 1 104000010
2367 2570 2 104000020
2368 2571 2 104000030
2369 2572 2 104000040
2370 2573 3 104000050
2371 2574 3 104000060
2372 2575 3 104000070
2373 2576 3 104000080
2374 2577 1 105000010
2375 2578 2 105000020
2376 2579 2 105000030
2377 2580 2 105000040
2378 2581 3 105000050
2379 2582 3 105000060
2380 2583 3 105000070
2381 2584 3 105000080
2382 2585 1 106000010
2383 2586 2 106000020
2384 2587 2 106000030
2385 2588 2 106000040
2386 2589 3 106000050
2387 2590 3 106000060
2388 2591 3 106000070
2389 2592 3 106000080
2390 2593 1 107000010
2391 2594 2 107000020
2392 2595 2 107000030
2393 2596 2 107000040
2394 2597 3 107000050
2395 2598 3 107000060
2396 2599 3 107000070
2397 2600 3 107000080
2398 2601 1 108000010
2399 2602 2 108000020
2400 2603 2 108000030
2401 2604 2 108000040
2402 2605 3 108000050
2403 2606 3 108000060
2404 2607 3 108000070
2405 2608 3 108000080
2406 2609 2 180001
2407 2611 1 101000000
2408 2612 2 101000001
2409 2613 3 101000002
2410 2614 4 101000008
2411 2615 5 101000004
2412 2616 1 102000000
2413 2617 2 102000001
2414 2618 3 102000002
2415 2619 4 102000003
2416 2620 5 102000004
2417 2621 1 103000000
2418 2622 2 103000001
2419 2623 3 103000002
2420 2624 4 103000003
2421 2625 5 103000004
2422 2626 1 105000000
2423 2627 2 105000001
2424 2628 3 105000002
2425 2629 4 105000003
2426 2630 5 105000004
2427 2631 1 108000000
2428 2632 2 108000001
2429 2633 3 108000002
2430 2634 4 108000003
2431 2635 5 108000004
2432 2636 1 109000000
2433 2637 2 109000001
2434 2638 3 109000002
2435 2639 4 109000003
2436 2640 5 109000004
2437 2641 1 111000000
2438 2642 2 111000001
2439 2643 3 111000002
2440 2644 4 111000003
2441 2645 5 111000004
2442 2646 1 112000000
2443 2647 2 112000001
2444 2648 3 112000002
2445 2649 4 112000003
2446 2650 5 112000004
2447 2651 1 120000000
2448 2652 2 120000001
2449 2653 3 120000002
2450 2654 4 120000003
2451 2655 5 120000004
2452 2656 1 101000010
2453 2657 2 101000020
2454 2658 2 101000030
2455 2659 3 101000040
2456 2660 3 101000050
2457 2661 3 101000060
2458 2662 3 101000070
2459 2663 3 101000080
2460 2664 1 102000010
2461 2665 2 102000020
2462 2666 2 102000030
2463 2667 2 102000040
2464 2668 3 102000050
2465 2669 3 102000060
2466 2670 3 102000070
2467 2671 3 102000080
2468 2672 1 103000010
2469 2673 2 103000020
2470 2674 2 103000030
2471 2675 2 103000040
2472 2676 3 103000050
2473 2677 3 103000060
2474 2678 3 103000070
2475 2679 3 103000080
2476 2680 1 104000010
2477 2681 2 104000020
2478 2682 2 104000030
2479 2683 2 104000040
2480 2684 3 104000050
2481 2685 3 104000060
2482 2686 3 104000070
2483 2687 3 104000080
2484 2688 1 105000010
2485 2689 2 105000020
2486 2690 2 105000030
2487 2691 2 105000040
2488 2692 3 105000050
2489 2693 3 105000060
2490 2694 3 105000070
2491 2695 3 105000080
2492 2696 1 106000010
2493 2697 2 106000020
2494 2698 2 106000030
2495 2699 2 106000040
2496 2700 3 106000050
2497 2701 3 106000060
2498 2702 3 106000070
2499 2703 3 106000080
2500 2704 1 107000010
2501 2705 2 107000020
2502 2706 2 107000030
2503 2707 2 107000040
2504 2708 3 107000050
2505 2709 3 107000060
2506 2710 3 107000070
2507 2711 3 107000080
2508 2712 1 108000010
2509 2713 2 108000020
2510 2714 2 108000030
2511 2715 2 108000040
2512 2716 3 108000050
2513 2717 3 108000060
2514 2718 3 108000070
2515 2719 3 108000080
2516 2720 1 109000010
2517 2721 2 109000020
2518 2722 2 109000030
2519 2723 2 109000040
2520 2724 3 109000050
2521 2725 3 109000060
2522 2726 3 109000070
2523 2727 3 109000080
2524 2728 2 180001
2525 2731 1 101000000
2526 2732 2 101000001
2527 2733 3 101000002
2528 2734 4 101000008
2529 2735 5 101000004
2530 2736 1 102000000
2531 2737 2 102000001
2532 2738 3 102000002
2533 2739 4 102000003
2534 2740 5 102000004
2535 2741 1 103000000
2536 2742 2 103000001
2537 2743 3 103000002
2538 2744 4 103000003
2539 2745 5 103000004
2540 2746 1 105000000
2541 2747 2 105000001
2542 2748 3 105000002
2543 2749 4 105000003
2544 2750 5 105000004
2545 2751 1 107000000
2546 2752 2 107000001
2547 2753 3 107000002
2548 2754 4 107000003
2549 2755 5 107000004
2550 2756 1 108000000
2551 2757 2 108000001
2552 2758 3 108000002
2553 2759 4 108000003
2554 2760 5 108000004
2555 2761 1 109000000
2556 2762 2 109000001
2557 2763 3 109000002
2558 2764 4 109000003
2559 2765 5 109000004
2560 2766 1 111000000
2561 2767 2 111000001
2562 2768 3 111000002
2563 2769 4 111000003
2564 2770 5 111000004
2565 2771 1 112000000
2566 2772 2 112000001
2567 2773 3 112000002
2568 2774 4 112000003
2569 2775 5 112000004
2570 2776 1 120000000
2571 2777 2 120000001
2572 2778 3 120000002
2573 2779 4 120000003
2574 2780 5 120000004
2575 2781 1 101000010
2576 2782 2 101000020
2577 2783 2 101000030
2578 2784 3 101000040
2579 2785 3 101000050
2580 2786 3 101000060
2581 2787 3 101000070
2582 2788 3 101000080
2583 2789 1 102000010
2584 2790 2 102000020
2585 2791 2 102000030
2586 2792 2 102000040
2587 2793 3 102000050
2588 2794 3 102000060
2589 2795 3 102000070
2590 2796 3 102000080
2591 2797 1 103000010
2592 2798 2 103000020
2593 2799 2 103000030
2594 2800 2 103000040
2595 2801 3 103000050
2596 2802 3 103000060
2597 2803 3 103000070
2598 2804 3 103000080
2599 2805 1 104000010
2600 2806 2 104000020
2601 2807 2 104000030
2602 2808 2 104000040
2603 2809 3 104000050
2604 2810 3 104000060
2605 2811 3 104000070
2606 2812 3 104000080
2607 2813 1 105000010
2608 2814 2 105000020
2609 2815 2 105000030
2610 2816 2 105000040
2611 2817 3 105000050
2612 2818 3 105000060
2613 2819 3 105000070
2614 2820 3 105000080
2615 2821 1 106000010
2616 2822 2 106000020
2617 2823 2 106000030
2618 2824 2 106000040
2619 2825 3 106000050
2620 2826 3 106000060
2621 2827 3 106000070
2622 2828 3 106000080
2623 2829 1 107000010
2624 2830 2 107000020
2625 2831 2 107000030
2626 2832 2 107000040
2627 2833 3 107000050
2628 2834 3 107000060
2629 2835 3 107000070
2630 2836 3 107000080
2631 2837 1 108000010
2632 2838 2 108000020
2633 2839 2 108000030
2634 2840 2 108000040
2635 2841 3 108000050
2636 2842 3 108000060
2637 2843 3 108000070
2638 2844 3 108000080
2639 2845 1 109000010
2640 2846 2 109000020
2641 2847 2 109000030
2642 2848 2 109000040
2643 2849 3 109000050
2644 2850 3 109000060
2645 2851 3 109000070
2646 2852 3 109000080
2647 2853 1 110000010
2648 2854 2 110000020
2649 2855 2 110000030
2650 2856 2 110000040
2651 2857 3 110000050
2652 2858 3 110000060
2653 2859 3 110000070
2654 2860 3 110000080
2655 2861 2 180001
2656 2863 1 107000000
2657 2864 2 107000001
2658 2865 3 107000002
2659 2866 4 107000003
2660 2867 5 107000004
2661 2868 1 120000000
2662 2869 2 120000001
2663 2870 3 120000002
2664 2871 4 120000003
2665 2872 5 120000004
2666 2874 3 110000070
2667 2875 3 110000080
2668 2876 4 110000100
2669 2877 5 110000110
2670 2878 1 107000000
2671 2879 2 107000001
2672 2880 3 107000002
2673 2881 4 107000003
2674 2882 5 107000004
2675 2883 1 120000000
2676 2884 2 120000001
2677 2885 3 120000002
2678 2886 4 120000003
2679 2887 5 120000004
2680 2888 3 120023
2681 2889 3 120033
2682 2890 3 120043
2683 2891 3 120053
2684 2892 4 120024
2685 2893 4 120034
2686 2894 4 120044
2687 2895 4 120054
2688 2896 3 120240
2689 2897 3 120250
2690 2898 3 120260
2691 2899 3 120270
2692 2900 3 120300
2693 2901 3 120310
2694 2902 3 120320
2695 2903 3 120330
2696 2904 3 120340
2697 2905 3 120350
2698 2906 3 120360
2699 2907 3 120370
2700 2908 3 120380
2701 2909 3 120390
2702 2910 3 120400
2703 2911 3 120410
2704 2912 3 120420
2705 2913 3 120430
2706 2914 3 120450
2707 2915 3 120460
2708 2916 3 120550
2709 2917 3 120560
2710 2918 3 120570
2711 2919 3 120990
2712 2920 3 121000
2713 2921 3 121010
2714 2922 3 121020
2715 2923 4 140000
2716 2924 4 150010
2717 2925 4 150020
2718 2926 4 150030
2719 2927 4 150040
2720 2929 3 108000060
2721 2930 3 108000070
2722 2931 3 108000080
2723 2932 3 107000050
2724 2933 4 108000100
2725 2934 4 105000090
2726 2935 5 108000110
2727 2936 1 108000000
2728 2937 2 108000001
2729 2938 3 108000002
2730 2939 4 108000003
2731 2940 5 108000004
2732 2941 1 120000000
2733 2942 2 120000001
2734 2943 3 120000002
2735 2944 4 120000003
2736 2945 5 120000004
2737 2946 3 170004
2738 2948 3 102000060
2739 2949 3 102000070
2740 2950 3 102000080
2741 2951 3 103000050
2742 2952 3 105000050
2743 2953 4 102000100
2744 2954 4 102000110
2745 2955 4 106000090
2746 2956 4 109000090
2747 2957 5 102000120
2748 2958 1 102000000
2749 2959 2 102000001
2750 2960 3 102000002
2751 2961 4 102000003
2752 2962 5 102000004
2753 2963 1 112000000
2754 2964 2 112000001
2755 2965 3 112000002
2756 2966 4 112000003
2757 2967 5 112000004
2758 2968 3 170004
2759 2970 3 101000050
2760 2971 3 101000060
2761 2972 3 101000080
2762 2973 3 103000060
2763 2974 3 103000070
2764 2975 3 103000080
2765 2976 3 101000040
2766 2977 3 109000060
2767 2978 3 109000070
2768 2979 3 109000080
2769 2980 3 110000050
2770 2981 4 101000090
2771 2982 4 102000090
2772 2983 4 103000100
2773 2984 4 101000100
2774 2985 4 101000110
2775 2986 4 109000100
2776 2987 5 101000120
2777 2988 5 103000120
2778 2989 5 109000110
2779 2990 1 101000000
2780 2991 2 101000001
2781 2992 3 101000002
2782 2993 4 101000008
2783 2994 5 101000004
2784 2995 1 112000000
2785 2996 2 112000001
2786 2997 3 112000002
2787 2998 4 112000003
2788 2999 5 112000004
2789 3000 3 120023
2790 3001 3 120033
2791 3002 3 120043
2792 3003 3 120053
2793 3004 4 120024
2794 3005 4 120034
2795 3006 4 120044
2796 3007 4 120054
2797 3008 3 120240
2798 3009 3 120250
2799 3010 3 120260
2800 3011 3 120270
2801 3012 3 120300
2802 3013 3 120310
2803 3014 3 120320
2804 3015 3 120330
2805 3016 3 120340
2806 3017 3 120350
2807 3018 3 120360
2808 3019 3 120370
2809 3020 3 120380
2810 3021 3 120390
2811 3022 3 120400
2812 3023 3 120410
2813 3024 3 120420
2814 3025 3 120430
2815 3026 3 120450
2816 3027 3 120460
2817 3028 3 120550
2818 3029 3 120560
2819 3030 3 120570
2820 3031 3 120990
2821 3032 3 121000
2822 3033 3 121010
2823 3034 3 121020
2824 3035 4 140000
2825 3036 4 150010
2826 3037 4 150020
2827 3038 4 150030
2828 3039 4 150040
2829 3041 3 105000060
2830 3042 3 105000070
2831 3043 3 105000080
2832 3044 3 104000050
2833 3045 3 106000050
2834 3046 4 105000100
2835 3047 4 105000110
2836 3048 4 108000090
2837 3049 4 110000090
2838 3050 5 105000120
2839 3051 1 109000000
2840 3052 2 109000001
2841 3053 3 109000002
2842 3054 4 109000003
2843 3055 5 109000004
2844 3056 1 112000000
2845 3057 2 112000001
2846 3058 3 112000002
2847 3059 4 112000003
2848 3060 5 112000004
2849 3061 3 170004
2850 3063 3 107000060
2851 3064 3 107000070
2852 3065 3 107000080
2853 3066 3 108000050
2854 3067 3 109000050
2855 3068 4 107000100
2856 3069 4 103000090
2857 3070 5 107000110
2858 3071 1 105000000
2859 3072 2 105000001
2860 3073 3 105000002
2861 3074 4 105000003
2862 3075 5 105000004
2863 3076 1 120000000
2864 3077 2 120000001
2865 3078 3 120000002
2866 3079 4 120000003
2867 3080 5 120000004
2868 3081 3 130023
2869 3082 3 130033
2870 3083 3 130043
2871 3084 3 130053
2872 3085 4 130024
2873 3086 4 130034
2874 3087 4 130044
2875 3088 4 130054
2876 3089 3 130060
2877 3090 3 130070
2878 3091 3 130080
2879 3092 3 130090
2880 3093 3 130100
2881 3094 3 130110
2882 3095 3 130120
2883 3096 3 130130
2884 3097 3 130140
2885 3098 3 130150
2886 3099 3 130160
2887 3100 3 130170
2888 3101 3 130180
2889 3102 3 130190
2890 3103 3 130200
2891 3104 3 130420
2892 3105 3 130510
2893 3106 3 130520
2894 3107 3 130530
2895 3108 3 130540
2896 3109 3 130660
2897 3110 4 140000
2898 3111 4 150010
2899 3112 4 150020
2900 3113 4 150030
2901 3114 4 150040
2902 3116 3 106000060
2903 3117 3 106000070
2904 3118 3 106000080
2905 3119 3 101000070
2906 3120 3 110000060
2907 3121 4 106000100
2908 3122 4 106000110
2909 3123 4 104000090
2910 3124 5 106000120
2911 3125 1 103000000
2912 3126 2 103000001
2913 3127 3 103000002
2914 3128 4 103000003
2915 3129 5 103000004
2916 3130 1 112000000
2917 3131 2 112000001
2918 3132 3 112000002
2919 3133 4 112000003
2920 3134 5 112000004
2921 3135 3 170004
2922 3137 3 104000060
2923 3138 3 104000070
2924 3139 3 104000080
2925 3140 3 102000050
2926 3141 4 104000100
2927 3142 4 104000110
2928 3143 4 107000090
2929 3144 5 104000120
2930 3145 1 111000000
2931 3146 2 111000001
2932 3147 3 111000002
2933 3148 4 111000003
2934 3149 5 111000004
2935 3150 1 120000000
2936 3151 2 120000001
2937 3152 3 120000002
2938 3153 4 120000003
2939 3154 5 120000004
2940 3155 3 110023
2941 3156 3 110033
2942 3157 3 110043
2943 3158 3 110053
2944 3159 4 110024
2945 3160 4 110034
2946 3161 4 110044
2947 3162 4 110054
2948 3163 3 110060
2949 3164 3 110070
2950 3165 3 110080
2951 3166 3 110090
2952 3167 3 110100
2953 3168 3 110110
2954 3169 3 110120
2955 3170 3 110130
2956 3171 3 110140
2957 3172 3 110150
2958 3173 3 110160
2959 3174 3 110170
2960 3175 3 110180
2961 3176 3 110190
2962 3177 3 110200
2963 3178 3 110210
2964 3179 3 110220
2965 3180 3 110230
2966 3181 3 110240
2967 3182 3 110250
2968 3183 3 110260
2969 3184 3 110270
2970 3185 3 110620
2971 3186 3 110670
2972 3187 4 140000
2973 3188 4 150010
2974 3189 4 150020
2975 3190 4 150030
2976 3191 4 150040
2977 3193 3 101000050
2978 3194 3 101000060
2979 3195 3 101000080
2980 3196 3 103000060
2981 3197 3 103000070
2982 3198 3 103000080
2983 3199 3 101000040
2984 3200 3 109000060
2985 3201 3 109000070
2986 3202 3 109000080
2987 3203 3 110000050
2988 3204 4 101000090
2989 3205 4 102000090
2990 3206 4 103000100
2991 3207 4 101000100
2992 3208 4 101000110
2993 3209 4 109000100
2994 3210 5 101000120
2995 3211 5 103000120
2996 3212 5 109000110
2997 3213 1 101000000
2998 3214 2 101000001
2999 3215 3 101000002
3000 3216 4 101000008
3001 3217 5 101000004
3002 3218 1 120000000
3003 3219 2 120000001
3004 3220 3 120000002
3005 3221 4 120000003
3006 3222 5 120000004
3007 3223 3 170004
3008 3225 3 110000070
3009 3226 3 110000080
3010 3227 4 110000100
3011 3228 5 110000110
3012 3229 1 107000000
3013 3230 2 107000001
3014 3231 3 107000002
3015 3232 4 107000003
3016 3233 5 107000004
3017 3234 1 120000000
3018 3235 2 120000001
3019 3236 3 120000002
3020 3237 4 120000003
3021 3238 5 120000004
3022 3239 3 180004
3023 3241 3 105000060
3024 3242 3 105000070
3025 3243 3 105000080
3026 3244 3 104000050
3027 3245 3 106000050
3028 3246 4 105000100
3029 3247 4 105000110
3030 3248 4 108000090
3031 3249 4 110000090
3032 3250 5 105000120
3033 3251 1 109000000
3034 3252 2 109000001
3035 3253 3 109000002
3036 3254 4 109000003
3037 3255 5 109000004
3038 3256 1 112000000
3039 3257 2 112000001
3040 3258 3 112000002
3041 3259 4 112000003
3042 3260 5 112000004
3043 3261 3 170004
3044 3263 3 108000060
3045 3264 3 108000070
3046 3265 3 108000080
3047 3266 3 107000050
3048 3267 4 108000100
3049 3268 4 105000090
3050 3269 5 108000110
3051 3270 1 108000000
3052 3271 2 108000001
3053 3272 3 108000002
3054 3273 4 108000003
3055 3274 5 108000004
3056 3275 1 120000000
3057 3276 2 120000001
3058 3277 3 120000002
3059 3278 4 120000003
3060 3279 5 120000004
3061 3280 4 120024
3062 3281 4 120034
3063 3282 4 120044
3064 3283 4 120054
3065 3284 3 120240
3066 3285 3 120250
3067 3286 3 120260
3068 3287 3 120270
3069 3288 3 120300
3070 3289 3 120310
3071 3290 3 120320
3072 3291 3 120330
3073 3292 3 120340
3074 3293 3 120350
3075 3294 3 120360
3076 3295 3 120370
3077 3296 3 120380
3078 3297 3 120390
3079 3298 3 120400
3080 3299 3 120410
3081 3300 3 120420
3082 3301 3 120430
3083 3302 3 120450
3084 3303 3 120460
3085 3304 3 120550
3086 3305 3 120560
3087 3306 3 120570
3088 3307 3 120990
3089 3308 3 121000
3090 3309 3 121010
3091 3310 3 121020
3092 3311 4 140000
3093 3312 4 150010
3094 3313 4 150020
3095 3314 4 150030
3096 3315 4 150040
3097 3317 3 104000060
3098 3318 3 104000070
3099 3319 3 104000080
3100 3320 3 102000050
3101 3321 4 104000100
3102 3322 4 104000110
3103 3323 4 107000090
3104 3324 5 104000120
3105 3325 1 111000000
3106 3326 2 111000001
3107 3327 3 111000002
3108 3328 4 111000003
3109 3329 5 111000004
3110 3330 1 120000000
3111 3331 2 120000001
3112 3332 3 120000002
3113 3333 4 120000003
3114 3334 5 120000004
3115 3335 4 110024
3116 3336 4 110034
3117 3337 4 110044
3118 3338 4 110054
3119 3339 3 110060
3120 3340 3 110070
3121 3341 3 110080
3122 3342 3 110090
3123 3343 3 110100
3124 3344 3 110110
3125 3345 3 110120
3126 3346 3 110130
3127 3347 3 110140
3128 3348 3 110150
3129 3349 3 110160
3130 3350 3 110170
3131 3351 3 110180
3132 3352 3 110190
3133 3353 3 110200
3134 3354 3 110210
3135 3355 3 110220
3136 3356 3 110230
3137 3357 3 110240
3138 3358 3 110250
3139 3359 3 110260
3140 3360 3 110270
3141 3361 3 110620
3142 3362 3 110670
3143 3363 4 140000
3144 3364 4 150010
3145 3365 4 150020
3146 3366 4 150030
3147 3367 4 150040
3148 3369 3 101000050
3149 3370 3 101000060
3150 3371 3 101000080
3151 3372 3 103000060
3152 3373 3 103000070
3153 3374 3 103000080
3154 3375 3 101000040
3155 3376 3 109000060
3156 3377 3 109000070
3157 3378 3 109000080
3158 3379 3 110000050
3159 3380 4 101000090
3160 3381 4 102000090
3161 3382 4 103000100
3162 3383 4 101000100
3163 3384 4 101000110
3164 3385 4 109000100
3165 3386 5 101000120
3166 3387 5 103000120
3167 3388 5 109000110
3168 3389 1 101000000
3169 3390 2 101000001
3170 3391 3 101000002
3171 3392 4 101000008
3172 3393 5 101000004
3173 3394 1 112000000
3174 3395 2 112000001
3175 3396 3 112000002
3176 3397 4 112000003
3177 3398 5 112000004
3178 3399 3 170004
3179 3401 3 107000060
3180 3402 3 107000070
3181 3403 3 107000080
3182 3404 3 108000050
3183 3405 3 109000050
3184 3406 4 107000100
3185 3407 4 103000090
3186 3408 5 107000110
3187 3409 1 105000000
3188 3410 2 105000001
3189 3411 3 105000002
3190 3412 4 105000003
3191 3413 5 105000004
3192 3414 1 120000000
3193 3415 2 120000001
3194 3416 3 120000002
3195 3417 4 120000003
3196 3418 5 120000004
3197 3419 4 120024
3198 3420 4 120034
3199 3421 4 120044
3200 3422 4 120054
3201 3423 3 120240
3202 3424 3 120250
3203 3425 3 120260
3204 3426 3 120270
3205 3427 3 120300
3206 3428 3 120310
3207 3429 3 120320
3208 3430 3 120330
3209 3431 3 120340
3210 3432 3 120350
3211 3433 3 120360
3212 3434 3 120370
3213 3435 3 120380
3214 3436 3 120390
3215 3437 3 120400
3216 3438 3 120410
3217 3439 3 120420
3218 3440 3 120430
3219 3441 3 120450
3220 3442 3 120460
3221 3443 3 120550
3222 3444 3 120560
3223 3445 3 120570
3224 3446 3 120990
3225 3447 3 121000
3226 3448 3 121010
3227 3449 3 121020
3228 3450 4 140000
3229 3451 4 150010
3230 3452 4 150020
3231 3453 4 150030
3232 3454 4 150040
3233 3456 3 108000060
3234 3457 3 108000070
3235 3458 3 108000080
3236 3459 3 107000050
3237 3460 4 108000100
3238 3461 4 105000090
3239 3462 5 108000110
3240 3463 1 108000000
3241 3464 2 108000001
3242 3465 3 108000002
3243 3466 4 108000003
3244 3467 5 108000004
3245 3468 1 120000000
3246 3469 2 120000001
3247 3470 3 120000002
3248 3471 4 120000003
3249 3472 5 120000004
3250 3473 3 170004
3251 3475 3 102000060
3252 3476 3 102000070
3253 3477 3 102000080
3254 3478 3 103000050
3255 3479 3 105000050
3256 3480 4 102000100
3257 3481 4 102000110
3258 3482 4 106000090
3259 3483 4 109000090
3260 3484 5 102000120
3261 3485 1 102000000
3262 3486 2 102000001
3263 3487 3 102000002
3264 3488 4 102000003
3265 3489 5 102000004
3266 3490 1 112000000
3267 3491 2 112000001
3268 3492 3 112000002
3269 3493 4 112000003
3270 3494 5 112000004
3271 3495 3 180004
3272 3497 3 106000060
3273 3498 3 106000070
3274 3499 3 106000080
3275 3500 3 101000070
3276 3501 3 110000060
3277 3502 4 106000100
3278 3503 4 106000110
3279 3504 4 104000090
3280 3505 5 106000120
3281 3506 1 103000000
3282 3507 2 103000001
3283 3508 3 103000002
3284 3509 4 103000003
3285 3510 5 103000004
3286 3511 1 112000000
3287 3512 2 112000001
3288 3513 3 112000002
3289 3514 4 112000003
3290 3515 5 112000004
3291 3516 4 130024
3292 3517 4 130034
3293 3518 4 130044
3294 3519 4 130054
3295 3520 3 130060
3296 3521 3 130070
3297 3522 3 130080
3298 3523 3 130090
3299 3524 3 130100
3300 3525 3 130110
3301 3526 3 130120
3302 3527 3 130130
3303 3528 3 130140
3304 3529 3 130150
3305 3530 3 130160
3306 3531 3 130170
3307 3532 3 130180
3308 3533 3 130190
3309 3534 3 130200
3310 3535 3 130420
3311 3536 3 130510
3312 3537 3 130520
3313 3538 3 130530
3314 3539 3 130540
3315 3540 3 130660
3316 3541 4 140000
3317 3542 4 150010
3318 3543 4 150020
3319 3544 4 150030
3320 3545 4 150040
3321 3547 3 110000070
3322 3548 3 110000080
3323 3549 4 110000100
3324 3550 5 110000110
3325 3551 1 107000000
3326 3552 2 107000001
3327 3553 3 107000002
3328 3554 4 107000003
3329 3555 5 107000004
3330 3556 1 120000000
3331 3557 2 120000001
3332 3558 3 120000002
3333 3559 4 120000003
3334 3560 5 120000004
3335 3561 3 170004
3336 3563 3 105000060
3337 3564 3 105000070
3338 3565 3 105000080
3339 3566 3 104000050
3340 3567 3 106000050
3341 3568 4 105000100
3342 3569 4 105000110
3343 3570 4 108000090
3344 3571 4 110000090
3345 3572 5 105000120
3346 3573 1 109000000
3347 3574 2 109000001
3348 3575 3 109000002
3349 3576 4 109000003
3350 3577 5 109000004
3351 3578 1 112000000
3352 3579 2 112000001
3353 3580 3 112000002
3354 3581 4 112000003
3355 3582 5 112000004
3356 3583 4 120024
3357 3584 4 120034
3358 3585 4 120044
3359 3586 4 120054
3360 3587 3 120240
3361 3588 3 120250
3362 3589 3 120260
3363 3590 3 120270
3364 3591 3 120300
3365 3592 3 120310
3366 3593 3 120320
3367 3594 3 120330
3368 3595 3 120340
3369 3596 3 120350
3370 3597 3 120360
3371 3598 3 120370
3372 3599 3 120380
3373 3600 3 120390
3374 3601 3 120400
3375 3602 3 120410
3376 3603 3 120420
3377 3604 3 120430
3378 3605 3 120450
3379 3606 3 120460
3380 3607 3 120550
3381 3608 3 120560
3382 3609 3 120570
3383 3610 3 120990
3384 3611 3 121000
3385 3612 3 121010
3386 3613 3 121020
3387 3614 4 140000
3388 3615 4 150010
3389 3616 4 150020
3390 3617 4 150030
3391 3618 4 150040
3392 3620 1 170000
3393 3621 2 170001
3394 3622 3 170002
3395 3623 4 170003
3396 3624 5 170004
3397 3625 1 180000
3398 3626 2 180001
3399 3627 3 180002
3400 3628 4 180003
3401 3629 5 180004
3402 3630 4 140000
3403 3631 1 201000010
3404 3632 1 292000010
3405 3633 1 299000040
3406 3634 1 299000070
3407 3635 1 299000110
3408 3636 1 299000120
3409 3637 1 299000140
3410 3638 2 202000010
3411 3639 2 290000010
3412 3640 2 299000010
3413 3641 2 299000150
3414 3642 2 299000190
3415 3643 2 299000200
3416 3644 2 299000210
3417 3645 3 298000050
3418 3646 3 298000060
3419 3647 3 299000060
3420 3648 3 299000170
3421 3649 5 150010
3422 3650 5 150020
3423 3651 5 150030
3424 3652 5 150040
3425 3654 3 105000060
3426 3655 3 105000070
3427 3656 3 105000080
3428 3657 3 104000050
3429 3658 3 106000050
3430 3659 4 105000100
3431 3660 4 105000110
3432 3661 4 108000090
3433 3662 4 110000090
3434 3663 5 105000120
3435 3664 1 109000000
3436 3665 2 109000001
3437 3666 3 109000002
3438 3667 4 109000003
3439 3668 5 109000004
3440 3669 1 112000000
3441 3670 2 112000001
3442 3671 3 112000002
3443 3672 4 112000003
3444 3673 5 112000004
3445 3674 3 170004
3446 3676 3 108000060
3447 3677 3 108000070
3448 3678 3 108000080
3449 3679 3 107000050
3450 3680 4 108000100
3451 3681 4 105000090
3452 3682 5 108000110
3453 3683 1 108000000
3454 3684 2 108000001
3455 3685 3 108000002
3456 3686 4 108000003
3457 3687 5 108000004
3458 3688 1 120000000
3459 3689 2 120000001
3460 3690 3 120000002
3461 3691 4 120000003
3462 3692 5 120000004
3463 3693 3 180004
3464 3695 3 106000060
3465 3696 3 106000070
3466 3697 3 106000080
3467 3698 3 101000070
3468 3699 3 110000060
3469 3700 4 106000100
3470 3701 4 106000110
3471 3702 4 104000090
3472 3703 5 106000120
3473 3704 1 103000000
3474 3705 2 103000001
3475 3706 3 103000002
3476 3707 4 103000003
3477 3708 5 103000004
3478 3709 1 112000000
3479 3710 2 112000001
3480 3711 3 112000002
3481 3712 4 112000003
3482 3713 5 112000004
3483 3714 3 170004
3484 3716 3 104000170
3485 3717 1 115000000
3486 3718 2 115000001
3487 3719 3 115000002
3488 3720 4 115000003
3489 3721 5 115000004
3490 3722 1 120000000
3491 3723 2 120000001
3492 3724 3 120000002
3493 3725 4 120000003
3494 3726 5 120000004
3495 3727 4 120024
3496 3728 4 120034
3497 3729 4 120044
3498 3730 4 120054
3499 3731 3 120241
3500 3732 3 120251
3501 3733 3 120261
3502 3734 3 120271
3503 3735 3 120300
3504 3736 3 120310
3505 3737 3 120320
3506 3738 3 120330
3507 3739 3 120340
3508 3740 3 120350
3509 3741 3 120360
3510 3742 3 120370
3511 3743 3 120380
3512 3744 3 120390
3513 3745 3 120400
3514 3746 3 120410
3515 3747 3 120420
3516 3748 3 120430
3517 3749 3 120450
3518 3750 3 120460
3519 3751 3 120550
3520 3752 3 120560
3521 3753 3 120570
3522 3754 3 120990
3523 3755 3 121000
3524 3756 3 121010
3525 3757 3 121020
3526 3758 4 140000
3527 3759 4 150010
3528 3760 4 150020
3529 3761 4 150030
3530 3762 4 150040
3531 3764 3 102000060
3532 3765 3 102000070
3533 3766 3 102000080
3534 3767 3 103000050
3535 3768 3 105000050
3536 3769 4 102000100
3537 3770 4 102000110
3538 3771 4 106000090
3539 3772 4 109000090
3540 3773 5 102000120
3541 3774 1 102000000
3542 3775 2 102000001
3543 3776 3 102000002
3544 3777 4 102000003
3545 3778 5 102000004
3546 3779 1 112000000
3547 3780 2 112000001
3548 3781 3 112000002
3549 3782 4 112000003
3550 3783 5 112000004
3551 3784 4 110024
3552 3785 4 110034
3553 3786 4 110044
3554 3787 4 110054
3555 3788 3 110060
3556 3789 3 110070
3557 3790 3 110080
3558 3791 3 110090
3559 3792 3 110100
3560 3793 3 110110
3561 3794 3 110120
3562 3795 3 110130
3563 3796 3 110140
3564 3797 3 110150
3565 3798 3 110160
3566 3799 3 110170
3567 3800 3 110180
3568 3801 3 110190
3569 3802 3 110200
3570 3803 3 110210
3571 3804 3 110220
3572 3805 3 110230
3573 3806 3 110240
3574 3807 3 110250
3575 3808 3 110260
3576 3809 3 110270
3577 3810 3 110620
3578 3811 3 110670
3579 3812 4 140000
3580 3813 4 150010
3581 3814 4 150020
3582 3815 4 150030
3583 3816 4 150040
3584 3818 3 104000060
3585 3819 3 104000070
3586 3820 3 104000080
3587 3821 3 102000050
3588 3822 4 104000100
3589 3823 4 104000110
3590 3824 4 107000090
3591 3825 5 104000120
3592 3826 1 111000000
3593 3827 2 111000001
3594 3828 3 111000002
3595 3829 4 111000003
3596 3830 5 111000004
3597 3831 1 120000000
3598 3832 2 120000001
3599 3833 3 120000002
3600 3834 4 120000003
3601 3835 5 120000004
3602 3836 4 110024
3603 3837 4 110034
3604 3838 4 110044
3605 3839 4 110054
3606 3840 3 110060
3607 3841 3 110070
3608 3842 3 110080
3609 3843 3 110090
3610 3844 3 110100
3611 3845 3 110110
3612 3846 3 110120
3613 3847 3 110130
3614 3848 3 110140
3615 3849 3 110150
3616 3850 3 110160
3617 3851 3 110170
3618 3852 3 110180
3619 3853 3 110190
3620 3854 3 110200
3621 3855 3 110210
3622 3856 3 110220
3623 3857 3 110230
3624 3858 3 110240
3625 3859 3 110250
3626 3860 3 110260
3627 3861 3 110270
3628 3862 3 110620
3629 3863 3 110670
3630 3864 4 140000
3631 3865 4 150010
3632 3866 4 150020
3633 3867 4 150030
3634 3868 4 150040
3635 3870 3 110000070
3636 3871 3 110000080
3637 3872 4 110000100
3638 3873 5 110000110
3639 3874 1 107000000
3640 3875 2 107000001
3641 3876 3 107000002
3642 3877 4 107000003
3643 3878 5 107000004
3644 3879 1 120000000
3645 3880 2 120000001
3646 3881 3 120000002
3647 3882 4 120000003
3648 3883 5 120000004
3649 3884 4 130024
3650 3885 4 130034
3651 3886 4 130044
3652 3887 4 130054
3653 3888 3 130060
3654 3889 3 130070
3655 3890 3 130080
3656 3891 3 130090
3657 3892 3 130100
3658 3893 3 130110
3659 3894 3 130120
3660 3895 3 130130
3661 3896 3 130140
3662 3897 3 130150
3663 3898 3 130160
3664 3899 3 130170
3665 3900 3 130180
3666 3901 3 130190
3667 3902 3 130200
3668 3903 3 130420
3669 3904 3 130510
3670 3905 3 130520
3671 3906 3 130530
3672 3907 3 130540
3673 3908 3 130660
3674 3909 4 140000
3675 3910 4 150010
3676 3911 4 150020
3677 3912 4 150030
3678 3913 4 150040
3679 3915 3 101000050
3680 3916 3 101000060
3681 3917 3 101000080
3682 3918 3 103000060
3683 3919 3 103000070
3684 3920 3 103000080
3685 3921 3 101000040
3686 3922 3 109000060
3687 3923 3 109000070
3688 3924 3 109000080
3689 3925 3 110000050
3690 3926 4 101000090
3691 3927 4 102000090
3692 3928 4 103000100
3693 3929 4 101000100
3694 3930 4 101000110
3695 3931 4 109000100
3696 3932 5 101000120
3697 3933 5 101000160
3698 3934 5 103000120
3699 3935 5 109000110
3700 3936 1 101000000
3701 3937 2 101000001
3702 3938 3 101000002
3703 3939 4 101000008
3704 3940 5 101000004
3705 3941 1 120000000
3706 3942 2 120000001
3707 3943 3 120000002
3708 3944 4 120000003
3709 3945 5 120000004
3710 3946 3 170004
3711 3948 3 107000060
3712 3949 3 107000070
3713 3950 3 107000080
3714 3951 3 108000050
3715 3952 3 109000050
3716 3953 4 107000100
3717 3954 4 103000090
3718 3955 5 107000110
3719 3956 1 105000000
3720 3957 2 105000001
3721 3958 3 105000002
3722 3959 4 105000003
3723 3960 5 105000004
3724 3961 1 120000000
3725 3962 2 120000001
3726 3963 3 120000002
3727 3964 4 120000003
3728 3965 5 120000004
3729 3966 3 170004
3730 3968 3 104000170
3731 3969 1 115000000
3732 3970 2 115000001
3733 3971 3 115000002
3734 3972 4 115000003
3735 3973 5 115000004
3736 3974 1 120000000
3737 3975 2 120000001
3738 3976 3 120000002
3739 3977 4 120000003
3740 3978 5 120000004
3741 3979 4 120024
3742 3980 4 120034
3743 3981 4 120044
3744 3982 4 120054
3745 3983 3 120241
3746 3984 3 120251
3747 3985 3 120261
3748 3986 3 120271
3749 3987 3 120300
3750 3988 3 120310
3751 3989 3 120320
3752 3990 3 120330
3753 3991 3 120340
3754 3992 3 120350
3755 3993 3 120360
3756 3994 3 120370
3757 3995 3 120380
3758 3996 3 120390
3759 3997 3 120400
3760 3998 3 120410
3761 3999 3 120420
3762 4000 3 120430
3763 4001 3 120450
3764 4002 3 120460
3765 4003 3 120550
3766 4004 3 120560
3767 4005 3 120570
3768 4006 3 120990
3769 4007 3 121000
3770 4008 3 121010
3771 4009 3 121020
3772 4010 4 140000
3773 4011 4 150010
3774 4012 4 150020
3775 4013 4 150030
3776 4014 4 150040
3777 4016 1 101000000
3778 4017 2 101000001
3779 4018 3 101000002
3780 4019 4 101000008
3781 4020 5 101000012
3782 4021 1 120000000
3783 4022 2 120000001
3784 4023 3 120000002
3785 4024 4 120000003
3786 4025 5 120000004
3787 4027 1 101000000
3788 4028 2 101000001
3789 4029 3 101000002
3790 4030 4 101000008
3791 4031 5 101000011
3792 4032 1 120000000
3793 4033 2 120000001
3794 4034 3 120000002
3795 4035 4 120000003
3796 4036 5 120000004
3797 4038 3 101000050
3798 4039 3 101000060
3799 4040 3 101000080
3800 4041 3 103000060
3801 4042 3 103000070
3802 4043 3 103000080
3803 4044 3 101000040
3804 4045 3 109000060
3805 4046 3 109000070
3806 4047 3 109000080
3807 4048 3 110000050
3808 4049 4 101000090
3809 4050 4 102000090
3810 4051 4 103000100
3811 4052 4 101000100
3812 4053 4 101000110
3813 4054 4 109000100
3814 4055 5 101000120
3815 4056 5 101000160
3816 4057 5 103000120
3817 4058 5 109000110
3818 4059 1 101000000
3819 4060 2 101000001
3820 4061 3 101000002
3821 4062 4 101000008
3822 4063 5 101000004
3823 4064 1 120000000
3824 4065 2 120000001
3825 4066 3 120000002
3826 4067 4 120000003
3827 4068 5 120000004
3828 4069 4 120024
3829 4070 4 120034
3830 4071 4 120044
3831 4072 4 120054
3832 4073 3 120241
3833 4074 3 120251
3834 4075 3 120261
3835 4076 3 120271
3836 4077 3 120300
3837 4078 3 120310
3838 4079 3 120320
3839 4080 3 120330
3840 4081 3 120340
3841 4082 3 120350
3842 4083 3 120360
3843 4084 3 120370
3844 4085 3 120380
3845 4086 3 120390
3846 4087 3 120400
3847 4088 3 120410
3848 4089 3 120420
3849 4090 3 120430
3850 4091 3 120450
3851 4092 3 120460
3852 4093 3 120550
3853 4094 3 120560
3854 4095 3 120570
3855 4096 3 120990
3856 4097 3 121000
3857 4098 3 121010
3858 4099 3 121020
3859 4100 4 140000
3860 4101 4 150010
3861 4102 4 150020
3862 4103 4 150030
3863 4104 4 150040
3864 4106 3 108000060
3865 4107 3 108000070
3866 4108 3 108000080
3867 4109 3 107000050
3868 4110 4 108000100
3869 4111 4 105000090
3870 4112 5 108000110
3871 4113 1 108000000
3872 4114 2 108000001
3873 4115 3 108000002
3874 4116 4 108000003
3875 4117 5 108000004
3876 4118 1 120000000
3877 4119 2 120000001
3878 4120 3 120000002
3879 4121 4 120000003
3880 4122 5 120000004
3881 4123 3 170004
3882 4125 3 102000060
3883 4126 3 102000070
3884 4127 3 102000080
3885 4128 3 103000050
3886 4129 3 105000050
3887 4130 4 102000100
3888 4131 4 102000110
3889 4132 4 106000090
3890 4133 4 109000090
3891 4134 5 102000120
3892 4135 1 102000000
3893 4136 2 102000001
3894 4137 3 102000002
3895 4138 4 102000003
3896 4139 5 102000004
3897 4140 1 112000000
3898 4141 2 112000001
3899 4142 3 112000002
3900 4143 4 112000003
3901 4144 5 112000004
3902 4145 4 110024
3903 4146 4 110034
3904 4147 4 110044
3905 4148 4 110054
3906 4149 3 110060
3907 4150 3 110070
3908 4151 3 110080
3909 4152 3 110090
3910 4153 3 110100
3911 4154 3 110110
3912 4155 3 110120
3913 4156 3 110130
3914 4157 3 110140
3915 4158 3 110150
3916 4159 3 110160
3917 4160 3 110170
3918 4161 3 110180
3919 4162 3 110190
3920 4163 3 110200
3921 4164 3 110210
3922 4165 3 110220
3923 4166 3 110230
3924 4167 3 110240
3925 4168 3 110250
3926 4169 3 110260
3927 4170 3 110270
3928 4171 3 110620
3929 4172 3 110670
3930 4173 4 140000
3931 4174 4 150010
3932 4175 4 150020
3933 4176 4 150030
3934 4177 4 150040
3935 4179 3 104000170
3936 4180 4 104000180
3937 4181 5 104000190
3938 4182 1 115000000
3939 4183 2 115000001
3940 4184 3 115000002
3941 4185 4 115000003
3942 4186 5 115000004
3943 4187 1 120000000
3944 4188 2 120000001
3945 4189 3 120000002
3946 4190 4 120000003
3947 4191 5 120000004
3948 4192 4 120024
3949 4193 4 120034
3950 4194 4 120044
3951 4195 4 120054
3952 4196 3 120241
3953 4197 3 120251
3954 4198 3 120261
3955 4199 3 120271
3956 4200 3 120300
3957 4201 3 120310
3958 4202 3 120320
3959 4203 3 120330
3960 4204 3 120340
3961 4205 3 120350
3962 4206 3 120360
3963 4207 3 120370
3964 4208 3 120380
3965 4209 3 120390
3966 4210 3 120400
3967 4211 3 120410
3968 4212 3 120420
3969 4213 3 120430
3970 4214 3 120450
3971 4215 3 120460
3972 4216 3 120550
3973 4217 3 120560
3974 4218 3 120570
3975 4219 3 120990
3976 4220 3 121000
3977 4221 3 121010
3978 4222 3 121020
3979 4223 4 140000
3980 4224 4 150010
3981 4225 4 150020
3982 4226 4 150030
3983 4227 4 150040
3984 4229 3 110000070
3985 4230 3 110000080
3986 4231 4 110000100
3987 4232 5 110000110
3988 4233 1 107000000
3989 4234 2 107000001
3990 4235 3 107000002
3991 4236 4 107000003
3992 4237 5 107000004
3993 4238 1 120000000
3994 4239 2 120000001
3995 4240 3 120000002
3996 4241 4 120000003
3997 4242 5 120000004
3998 4243 4 120024
3999 4244 4 120034
4000 4245 4 120044
4001 4246 4 120054
4002 4247 3 120241
4003 4248 3 120251
4004 4249 3 120261
4005 4250 3 120271
4006 4251 3 120300
4007 4252 3 120310
4008 4253 3 120320
4009 4254 3 120330
4010 4255 3 120340
4011 4256 3 120350
4012 4257 3 120360
4013 4258 3 120370
4014 4259 3 120380
4015 4260 3 120390
4016 4261 3 120400
4017 4262 3 120410
4018 4263 3 120420
4019 4264 3 120430
4020 4265 3 120450
4021 4266 3 120460
4022 4267 3 120550
4023 4268 3 120560
4024 4269 3 120570
4025 4270 3 120990
4026 4271 3 121000
4027 4272 3 121010
4028 4273 3 121020
4029 4274 4 140000
4030 4275 4 150010
4031 4276 4 150020
4032 4277 4 150030
4033 4278 4 150040
4034 4280 3 106000060
4035 4281 3 106000070
4036 4282 3 106000080
4037 4283 3 101000070
4038 4284 3 110000060
4039 4285 4 106000100
4040 4286 4 106000110
4041 4287 4 104000090
4042 4288 5 106000120
4043 4289 1 103000000
4044 4290 2 103000001
4045 4291 3 103000002
4046 4292 4 103000003
4047 4293 5 103000004
4048 4294 1 112000000
4049 4295 2 112000001
4050 4296 3 112000002
4051 4297 4 112000003
4052 4298 5 112000004
4053 4299 3 170004
4054 4301 3 105000060
4055 4302 3 105000070
4056 4303 3 105000080
4057 4304 3 104000050
4058 4305 3 106000050
4059 4306 4 105000100
4060 4307 4 105000110
4061 4308 4 108000090
4062 4309 4 110000090
4063 4310 5 105000120
4064 4311 1 109000000
4065 4312 2 109000001
4066 4313 3 109000002
4067 4314 4 109000003
4068 4315 5 109000004
4069 4316 1 112000000
4070 4317 2 112000001
4071 4318 3 112000002
4072 4319 4 112000003
4073 4320 5 112000004
4074 4321 4 130024
4075 4322 4 130034
4076 4323 4 130044
4077 4324 4 130054
4078 4325 3 130060
4079 4326 3 130070
4080 4327 3 130080
4081 4328 3 130090
4082 4329 3 130100
4083 4330 3 130110
4084 4331 3 130120
4085 4332 3 130130
4086 4333 3 130140
4087 4334 3 130150
4088 4335 3 130160
4089 4336 3 130170
4090 4337 3 130180
4091 4338 3 130190
4092 4339 3 130200
4093 4340 3 130420
4094 4341 3 130510
4095 4342 3 130520
4096 4343 3 130530
4097 4344 3 130540
4098 4345 3 130660
4099 4346 4 140000
4100 4347 4 150010
4101 4348 4 150020
4102 4349 4 150030
4103 4350 4 150040
4104 4352 3 101000050
4105 4353 3 101000060
4106 4354 3 101000080
4107 4355 3 103000060
4108 4356 3 103000070
4109 4357 3 103000080
4110 4358 3 101000040
4111 4359 3 109000060
4112 4360 3 109000070
4113 4361 3 109000080
4114 4362 3 110000050
4115 4363 4 101000090
4116 4364 4 102000090
4117 4365 4 103000100
4118 4366 4 101000100
4119 4367 4 101000110
4120 4368 4 109000100
4121 4369 5 101000120
4122 4370 5 103000120
4123 4371 5 109000110
4124 4372 1 101000000
4125 4373 2 101000001
4126 4374 3 101000002
4127 4375 4 101000008
4128 4376 5 101000004
4129 4377 1 112000000
4130 4378 2 112000001
4131 4379 3 112000002
4132 4380 4 112000003
4133 4381 5 112000004
4134 4382 3 180004
4135 4384 3 104000060
4136 4385 3 104000070
4137 4386 3 104000080
4138 4387 3 102000050
4139 4388 4 104000100
4140 4389 4 104000110
4141 4390 4 107000090
4142 4391 5 104000120
4143 4392 1 111000000
4144 4393 2 111000001
4145 4394 3 111000002
4146 4395 4 111000003
4147 4396 5 111000004
4148 4397 1 120000000
4149 4398 2 120000001
4150 4399 3 120000002
4151 4400 4 120000003
4152 4401 5 120000004
4153 4402 4 110024
4154 4403 4 110034
4155 4404 4 110044
4156 4405 4 110054
4157 4406 3 110060
4158 4407 3 110070
4159 4408 3 110080
4160 4409 3 110090
4161 4410 3 110100
4162 4411 3 110110
4163 4412 3 110120
4164 4413 3 110130
4165 4414 3 110140
4166 4415 3 110150
4167 4416 3 110160
4168 4417 3 110170
4169 4418 3 110180
4170 4419 3 110190
4171 4420 3 110200
4172 4421 3 110210
4173 4422 3 110220
4174 4423 3 110230
4175 4424 3 110240
4176 4425 3 110250
4177 4426 3 110260
4178 4427 3 110270
4179 4428 3 110620
4180 4429 3 110670
4181 4430 4 140000
4182 4431 4 150010
4183 4432 4 150020
4184 4433 4 150030
4185 4434 4 150040
4186 4436 3 107000060
4187 4437 3 107000070
4188 4438 3 107000080
4189 4439 3 108000050
4190 4440 3 109000050
4191 4441 4 107000100
4192 4442 4 103000090
4193 4443 5 107000110
4194 4444 1 105000000
4195 4445 2 105000001
4196 4446 3 105000002
4197 4447 4 105000003
4198 4448 5 105000004
4199 4449 1 120000000
4200 4450 2 120000001
4201 4451 3 120000002
4202 4452 4 120000003
4203 4453 5 120000004
4204 4454 4 130024
4205 4455 4 130034
4206 4456 4 130044
4207 4457 4 130054
4208 4458 3 130060
4209 4459 3 130070
4210 4460 3 130080
4211 4461 3 130090
4212 4462 3 130100
4213 4463 3 130110
4214 4464 3 130120
4215 4465 3 130130
4216 4466 3 130140
4217 4467 3 130150
4218 4468 3 130160
4219 4469 3 130170
4220 4470 3 130180
4221 4471 3 130190
4222 4472 3 130200
4223 4473 3 130420
4224 4474 3 130510
4225 4475 3 130520
4226 4476 3 130530
4227 4477 3 130540
4228 4478 3 130660
4229 4479 4 140000
4230 4480 4 150010
4231 4481 4 150020
4232 4482 4 150030
4233 4483 4 150040
4234 4485 1 109000010
4235 4486 2 109000020
4236 4487 2 109000030
4237 4488 2 109000040
4238 4489 3 109000050
4239 4490 3 109000060
4240 4491 3 109000070
4241 4492 3 109000080
4242 4493 4 109000090
4243 4494 4 109000100
4244 4495 5 109000110
4245 4496 1 170000
4246 4497 2 170001
4247 4498 3 170002
4248 4499 4 170003
4249 4500 5 170004
4250 4501 1 180000
4251 4502 2 180001
4252 4503 3 180002
4253 4504 4 180003
4254 4505 5 180004
4255 4506 1 201000010
4256 4507 1 292000010
4257 4508 1 299000040
4258 4509 1 299000070
4259 4510 1 299000110
4260 4511 1 299000120
4261 4512 1 299000140
4262 4513 2 202000010
4263 4514 2 290000010
4264 4515 2 299000010
4265 4516 2 299000150
4266 4517 2 299000190
4267 4518 2 299000200
4268 4519 2 299000210
4269 4520 3 298000050
4270 4521 3 298000060
4271 4522 3 299000060
4272 4523 3 299000170
4273 4524 4 140000
4274 4525 5 150010
4275 4526 5 150020
4276 4527 5 150030
4277 4528 5 150040
4278 4530 1 109000010
4279 4531 2 109000020
4280 4532 2 109000030
4281 4533 2 109000040
4282 4534 3 109000050
4283 4535 3 109000060
4284 4536 3 109000070
4285 4537 3 109000080
4286 4538 4 109000090
4287 4539 4 109000100
4288 4540 5 109000110
4289 4541 1 170000
4290 4542 2 170001
4291 4543 3 170002
4292 4544 4 170003
4293 4545 5 170004
4294 4546 1 180000
4295 4547 2 180001
4296 4548 3 180002
4297 4549 4 180003
4298 4550 5 180004
4299 4551 1 201000010
4300 4552 1 292000010
4301 4553 1 299000040
4302 4554 1 299000070
4303 4555 1 299000110
4304 4556 1 299000120
4305 4557 1 299000140
4306 4558 2 202000010
4307 4559 2 290000010
4308 4560 2 299000010
4309 4561 2 299000150
4310 4562 2 299000190
4311 4563 2 299000200
4312 4564 2 299000210
4313 4565 3 298000050
4314 4566 3 298000060
4315 4567 3 299000060
4316 4568 3 299000170
4317 4569 4 140000
4318 4570 5 150010
4319 4571 5 150020
4320 4572 5 150030
4321 4573 5 150040
4322 4575 3 109000050
4323 4576 3 109000060
4324 4577 3 109000070
4325 4578 3 109000080
4326 4579 4 109000090
4327 4580 4 109000100
4328 4581 5 109000110
4329 4582 1 170000
4330 4583 2 170001
4331 4584 3 170002
4332 4585 4 170003
4333 4586 5 170004
4334 4587 1 180000
4335 4588 2 180001
4336 4589 3 180002
4337 4590 4 180003
4338 4591 5 180004
4339 4592 1 201000010
4340 4593 1 292000010
4341 4594 1 299000040
4342 4595 1 299000070
4343 4596 1 299000110
4344 4597 1 299000120
4345 4598 1 299000140
4346 4599 2 202000010
4347 4600 2 290000010
4348 4601 2 299000010
4349 4602 2 299000150
4350 4603 2 299000190
4351 4604 2 299000200
4352 4605 2 299000210
4353 4606 3 298000050
4354 4607 3 298000060
4355 4608 3 299000060
4356 4609 3 299000170
4357 4610 4 140000
4358 4611 5 150010
4359 4612 5 150020
4360 4613 5 150030
4361 4614 5 150040
4362 4616 3 109000050
4363 4617 3 109000060
4364 4618 3 109000070
4365 4619 3 109000080
4366 4620 4 109000090
4367 4621 4 109000100
4368 4622 5 109000110
4369 4623 1 170000
4370 4624 2 170001
4371 4625 3 170002
4372 4626 4 170003
4373 4627 5 170004
4374 4628 1 180000
4375 4629 2 180001
4376 4630 3 180002
4377 4631 4 180003
4378 4632 5 180004
4379 4633 1 201000010
4380 4634 1 292000010
4381 4635 1 299000040
4382 4636 1 299000070
4383 4637 1 299000110
4384 4638 1 299000120
4385 4639 1 299000140
4386 4640 2 202000010
4387 4641 2 290000010
4388 4642 2 299000010
4389 4643 2 299000150
4390 4644 2 299000190
4391 4645 2 299000200
4392 4646 2 299000210
4393 4647 3 298000050
4394 4648 3 298000060
4395 4649 3 299000060
4396 4650 3 299000170
4397 4651 4 140000
4398 4652 5 150010
4399 4653 5 150020
4400 4654 5 150030
4401 4655 5 150040
4402 4657 3 109000050
4403 4658 3 109000060
4404 4659 3 109000070
4405 4660 3 109000080
4406 4661 4 109000090
4407 4662 4 109000100
4408 4663 5 109000110
4409 4664 1 170000
4410 4665 2 170001
4411 4666 3 170002
4412 4667 4 170003
4413 4668 5 170004
4414 4669 1 180000
4415 4670 2 180001
4416 4671 3 180002
4417 4672 4 180003
4418 4673 5 180004
4419 4674 1 201000010
4420 4675 1 292000010
4421 4676 1 299000040
4422 4677 1 299000070
4423 4678 1 299000110
4424 4679 1 299000120
4425 4680 1 299000140
4426 4681 2 202000010
4427 4682 2 290000010
4428 4683 2 299000010
4429 4684 2 299000150
4430 4685 2 299000190
4431 4686 2 299000200
4432 4687 2 299000210
4433 4688 3 298000050
4434 4689 3 298000060
4435 4690 3 299000060
4436 4691 3 299000170
4437 4692 4 140000
4438 4693 5 150010
4439 4694 5 150020
4440 4695 5 150030
4441 4696 5 150040
4442 4697 5 190000
4443 4698 5 200000
4444 4699 5 210000
4445 4701 3 102000060
4446 4702 3 102000070
4447 4703 3 102000080
4448 4704 3 103000050
4449 4705 3 105000050
4450 4706 4 102000100
4451 4707 4 102000110
4452 4708 4 106000090
4453 4709 4 109000090
4454 4710 5 102000120
4455 4711 1 102000000
4456 4712 2 102000001
4457 4713 3 102000002
4458 4714 4 102000003
4459 4715 5 102000004
4460 4716 1 112000000
4461 4717 2 112000001
4462 4718 3 112000002
4463 4719 4 112000003
4464 4720 5 112000004
4465 4721 3 170004
4466 4722 4 170005
4467 4724 3 110000070
4468 4725 3 110000080
4469 4726 4 110000100
4470 4727 5 110000110
4471 4728 1 107000000
4472 4729 2 107000001
4473 4730 3 107000002
4474 4731 4 107000003
4475 4732 5 107000004
4476 4733 1 120000000
4477 4734 2 120000001
4478 4735 3 120000002
4479 4736 4 120000003
4480 4737 5 120000004
4481 4738 4 120024
4482 4739 4 120034
4483 4740 4 120044
4484 4741 4 120054
4485 4742 3 120241
4486 4743 3 120251
4487 4744 3 120261
4488 4745 3 120271
4489 4746 3 120300
4490 4747 3 120310
4491 4748 3 120320
4492 4749 3 120330
4493 4750 3 120340
4494 4751 3 120350
4495 4752 3 120360
4496 4753 3 120370
4497 4754 3 120380
4498 4755 3 120390
4499 4756 3 120400
4500 4757 3 120410
4501 4758 3 120420
4502 4759 3 120430
4503 4760 3 120450
4504 4761 3 120460
4505 4762 3 120550
4506 4763 3 120560
4507 4764 3 120570
4508 4765 3 120990
4509 4766 3 121000
4510 4767 3 121010
4511 4768 3 121020
4512 4769 4 140000
4513 4770 4 150010
4514 4771 4 150020
4515 4772 4 150030
4516 4773 4 150040
4517 4775 3 105000060
4518 4776 3 105000070
4519 4777 3 105000080
4520 4778 3 104000050
4521 4779 3 106000050
4522 4780 4 105000100
4523 4781 4 105000110
4524 4782 4 108000090
4525 4783 4 110000090
4526 4784 5 105000120
4527 4785 1 109000000
4528 4786 2 109000001
4529 4787 3 109000002
4530 4788 4 109000003
4531 4789 5 109000004
4532 4790 1 112000000
4533 4791 2 112000001
4534 4792 3 112000002
4535 4793 4 112000003
4536 4794 5 112000004
4537 4795 4 130024
4538 4796 4 130034
4539 4797 4 130044
4540 4798 4 130054
4541 4799 3 130060
4542 4800 3 130070
4543 4801 3 130080
4544 4802 3 130090
4545 4803 3 130100
4546 4804 3 130110
4547 4805 3 130120
4548 4806 3 130130
4549 4807 3 130140
4550 4808 3 130150
4551 4809 3 130160
4552 4810 3 130170
4553 4811 3 130180
4554 4812 3 130190
4555 4813 3 130200
4556 4814 3 130420
4557 4815 3 130510
4558 4816 3 130520
4559 4817 3 130530
4560 4818 3 130540
4561 4819 3 130660
4562 4820 4 140000
4563 4821 4 150010
4564 4822 4 150020
4565 4823 4 150030
4566 4824 4 150040
4567 4826 3 104000060
4568 4827 3 104000070
4569 4828 3 104000080
4570 4829 3 102000050
4571 4830 4 104000100
4572 4831 4 104000110
4573 4832 4 107000090
4574 4833 5 104000120
4575 4834 1 111000000
4576 4835 2 111000001
4577 4836 3 111000002
4578 4837 4 111000003
4579 4838 5 111000004
4580 4839 1 120000000
4581 4840 2 120000001
4582 4841 3 120000002
4583 4842 4 120000003
4584 4843 5 120000004
4585 4844 4 110024
4586 4845 4 110034
4587 4846 4 110044
4588 4847 4 110054
4589 4848 3 110060
4590 4849 3 110070
4591 4850 3 110080
4592 4851 3 110090
4593 4852 3 110100
4594 4853 3 110110
4595 4854 3 110120
4596 4855 3 110130
4597 4856 3 110140
4598 4857 3 110150
4599 4858 3 110160
4600 4859 3 110170
4601 4860 3 110180
4602 4861 3 110190
4603 4862 3 110200
4604 4863 3 110210
4605 4864 3 110220
4606 4865 3 110230
4607 4866 3 110240
4608 4867 3 110250
4609 4868 3 110260
4610 4869 3 110270
4611 4870 3 110620
4612 4871 3 110670
4613 4872 4 140000
4614 4873 4 150010
4615 4874 4 150020
4616 4875 4 150030
4617 4876 4 150040
4618 4878 3 107000060
4619 4879 3 107000070
4620 4880 3 107000080
4621 4881 3 108000050
4622 4882 3 109000050
4623 4883 4 107000100
4624 4884 4 103000090
4625 4885 5 107000110
4626 4886 1 105000000
4627 4887 2 105000001
4628 4888 3 105000002
4629 4889 4 105000003
4630 4890 5 105000004
4631 4891 1 120000000
4632 4892 2 120000001
4633 4893 3 120000002
4634 4894 4 120000003
4635 4895 5 120000004
4636 4896 3 180004
4637 4897 4 180005
4638 4899 3 106000060
4639 4900 3 106000070
4640 4901 3 106000080
4641 4902 3 101000070
4642 4903 3 110000060
4643 4904 4 106000100
4644 4905 4 106000110
4645 4906 4 104000090
4646 4907 5 106000120
4647 4908 1 103000000
4648 4909 2 103000001
4649 4910 3 103000002
4650 4911 4 103000003
4651 4912 5 103000004
4652 4913 1 112000000
4653 4914 2 112000001
4654 4915 3 112000002
4655 4916 4 112000003
4656 4917 5 112000004
4657 4918 3 170004
4658 4919 4 170005
4659 4921 3 112000020
4660 4922 3 112000030
4661 4923 4 112000040
4662 4924 5 112000060
4663 4925 1 101000000
4664 4926 2 101000001
4665 4927 3 101000002
4666 4928 4 101000008
4667 4929 5 101000004
4668 4930 1 112000000
4669 4931 2 112000001
4670 4932 3 112000002
4671 4933 4 112000003
4672 4934 5 112000004
4673 4935 3 170004
4674 4936 4 170005
4675 4938 3 104000170
4676 4939 4 104000180
4677 4940 5 104000190
4678 4941 1 115000000
4679 4942 2 115000001
4680 4943 3 115000002
4681 4944 4 115000003
4682 4945 5 115000004
4683 4946 1 120000000
4684 4947 2 120000001
4685 4948 3 120000002
4686 4949 4 120000003
4687 4950 5 120000004
4688 4951 4 120024
4689 4952 4 120034
4690 4953 4 120044
4691 4954 4 120054
4692 4955 3 120241
4693 4956 3 120251
4694 4957 3 120261
4695 4958 3 120271
4696 4959 3 120300
4697 4960 3 120310
4698 4961 3 120320
4699 4962 3 120330
4700 4963 3 120340
4701 4964 3 120350
4702 4965 3 120360
4703 4966 3 120370
4704 4967 3 120380
4705 4968 3 120390
4706 4969 3 120400
4707 4970 3 120410
4708 4971 3 120420
4709 4972 3 120430
4710 4973 3 120450
4711 4974 3 120460
4712 4975 3 120550
4713 4976 3 120560
4714 4977 3 120570
4715 4978 3 120990
4716 4979 3 121000
4717 4980 3 121010
4718 4981 3 121020
4719 4982 4 140000
4720 4983 4 150010
4721 4984 4 150020
4722 4985 4 150030
4723 4986 4 150040
4724 4988 3 111000010
4725 4989 3 111000020
4726 4990 3 111000030
4727 4991 4 111000040
4728 4992 5 111000060
4729 4993 1 101000000
4730 4994 2 101000001
4731 4995 3 101000002
4732 4996 4 101000008
4733 4997 5 101000004
4734 4998 1 120000000
4735 4999 2 120000001
4736 5000 3 120000002
4737 5001 4 120000003
4738 5002 5 120000004
4739 5003 4 110024
4740 5004 4 110034
4741 5005 4 110044
4742 5006 4 110054
4743 5007 3 110060
4744 5008 3 110070
4745 5009 3 110080
4746 5010 3 110090
4747 5011 3 110100
4748 5012 3 110110
4749 5013 3 110120
4750 5014 3 110130
4751 5015 3 110140
4752 5016 3 110150
4753 5017 3 110160
4754 5018 3 110170
4755 5019 3 110180
4756 5020 3 110190
4757 5021 3 110200
4758 5022 3 110210
4759 5023 3 110220
4760 5024 3 110230
4761 5025 3 110240
4762 5026 3 110250
4763 5027 3 110260
4764 5028 3 110270
4765 5029 3 110620
4766 5030 3 110670
4767 5031 4 140000
4768 5032 4 150010
4769 5033 4 150020
4770 5034 4 150030
4771 5035 4 150040
4772 5037 3 108000060
4773 5038 3 108000070
4774 5039 3 108000080
4775 5040 3 107000050
4776 5041 3 112000010
4777 5042 4 108000100
4778 5043 4 105000090
4779 5044 5 108000110
4780 5045 1 108000000
4781 5046 2 108000001
4782 5047 3 108000002
4783 5048 4 108000003
4784 5049 5 108000004
4785 5050 1 120000000
4786 5051 2 120000001
4787 5052 3 120000002
4788 5053 4 120000003
4789 5054 5 120000004
4790 5055 4 130024
4791 5056 4 130034
4792 5057 4 130044
4793 5058 4 130054
4794 5059 3 130060
4795 5060 3 130070
4796 5061 3 130080
4797 5062 3 130090
4798 5063 3 130100
4799 5064 3 130110
4800 5065 3 130120
4801 5066 3 130130
4802 5067 3 130140
4803 5068 3 130150
4804 5069 3 130160
4805 5070 3 130170
4806 5071 3 130180
4807 5072 3 130190
4808 5073 3 130200
4809 5074 3 130420
4810 5075 3 130510
4811 5076 3 130520
4812 5077 3 130530
4813 5078 3 130540
4814 5079 3 130660
4815 5080 4 140000
4816 5081 4 150010
4817 5082 4 150020
4818 5083 4 150030
4819 5084 4 150040
4820 5086 3 111000010
4821 5087 3 111000020
4822 5088 3 111000030
4823 5089 4 111000040
4824 5090 5 111000060
4825 5091 1 170002
4826 5092 2 170003
4827 5093 3 170004
4828 5094 1 180002
4829 5095 2 180003
4830 5096 3 180004
4831 5097 1 201000010
4832 5098 1 292000010
4833 5099 1 299000040
4834 5100 1 299000070
4835 5101 1 299000110
4836 5102 1 299000120
4837 5103 1 299000140
4838 5104 2 202000010
4839 5105 2 290000010
4840 5106 2 299000010
4841 5107 2 299000150
4842 5108 2 299000190
4843 5109 2 299000200
4844 5110 2 299000210
4845 5111 3 298000050
4846 5112 3 298000060
4847 5113 3 299000060
4848 5114 3 299000170
4849 5115 4 140000
4850 5116 5 150010
4851 5117 5 150020
4852 5118 5 150030
4853 5119 5 150040
4854 5121 3 111000010
4855 5122 3 111000020
4856 5123 3 111000030
4857 5124 4 111000040
4858 5125 5 111000060
4859 5126 2 170003
4860 5127 3 170004
4861 5128 2 180003
4862 5129 3 180004
4863 5130 1 201000010
4864 5131 1 292000010
4865 5132 1 299000040
4866 5133 1 299000070
4867 5134 1 299000110
4868 5135 1 299000120
4869 5136 1 299000140
4870 5137 2 202000010
4871 5138 2 290000010
4872 5139 2 299000010
4873 5140 2 299000150
4874 5141 2 299000190
4875 5142 2 299000200
4876 5143 2 299000210
4877 5144 3 298000050
4878 5145 3 298000060
4879 5146 3 299000060
4880 5147 3 299000170
4881 5148 4 140000
4882 5149 5 150010
4883 5150 5 150020
4884 5151 5 150030
4885 5152 5 150040
4886 5154 3 111000010
4887 5155 3 111000020
4888 5156 3 111000030
4889 5157 4 111000040
4890 5158 5 111000060
4891 5159 3 170004
4892 5160 3 180004
4893 5161 1 201000010
4894 5162 1 292000010
4895 5163 1 299000040
4896 5164 1 299000070
4897 5165 1 299000110
4898 5166 1 299000120
4899 5167 1 299000140
4900 5168 2 202000010
4901 5169 2 290000010
4902 5170 2 299000010
4903 5171 2 299000150
4904 5172 2 299000190
4905 5173 2 299000200
4906 5174 2 299000210
4907 5175 3 298000050
4908 5176 3 298000060
4909 5177 3 299000060
4910 5178 3 299000170
4911 5179 4 140000
4912 5180 5 150010
4913 5181 5 150020
4914 5182 5 150030
4915 5183 5 150040
4916 5185 3 111000010
4917 5186 3 111000020
4918 5187 3 111000030
4919 5188 4 111000040
4920 5189 5 111000060
4921 5190 3 170004
4922 5191 3 180004
4923 5192 1 201000010
4924 5193 1 292000010
4925 5194 1 299000040
4926 5195 1 299000070
4927 5196 1 299000110
4928 5197 1 299000120
4929 5198 1 299000140
4930 5199 2 202000010
4931 5200 2 290000010
4932 5201 2 299000010
4933 5202 2 299000150
4934 5203 2 299000190
4935 5204 2 299000200
4936 5205 2 299000210
4937 5206 3 298000050
4938 5207 3 298000060
4939 5208 3 299000060
4940 5209 3 299000170
4941 5210 4 140000
4942 5211 5 150010
4943 5212 5 150020
4944 5213 5 150030
4945 5214 5 150040
4946 5216 3 111000010
4947 5217 3 111000020
4948 5218 3 111000030
4949 5219 4 111000040
4950 5220 5 111000060
4951 5221 3 170004
4952 5222 3 180004
4953 5223 1 201000010
4954 5224 1 292000010
4955 5225 1 299000040
4956 5226 1 299000070
4957 5227 1 299000110
4958 5228 1 299000120
4959 5229 1 299000140
4960 5230 2 202000010
4961 5231 2 290000010
4962 5232 2 299000010
4963 5233 2 299000150
4964 5234 2 299000190
4965 5235 2 299000200
4966 5236 2 299000210
4967 5237 3 298000050
4968 5238 3 298000060
4969 5239 3 299000060
4970 5240 3 299000170
4971 5241 4 140000
4972 5242 5 150010
4973 5243 5 150020
4974 5244 5 150030
4975 5245 5 150040
4976 5246 5 190000
4977 5247 5 200000
4978 5248 5 210000
4979 5250 3 101000050
4980 5251 3 101000060
4981 5252 3 101000080
4982 5253 3 101000040
4983 5254 3 109000060
4984 5255 3 109000070
4985 5256 3 109000080
4986 5257 3 105000060
4987 5258 3 105000070
4988 5259 3 105000080
4989 5260 3 104000050
4990 5261 3 106000050
4991 5262 4 101000090
4992 5263 4 101000100
4993 5264 4 101000110
4994 5265 4 109000100
4995 5266 4 105000100
4996 5267 4 105000110
4997 5268 4 108000090
4998 5269 4 110000090
4999 5270 5 101000120
5000 5271 5 109000110
5001 5272 5 105000120
5002 5273 1 101000000
5003 5274 2 101000001
5004 5275 3 101000002
5005 5276 4 101000008
5006 5277 5 101000004
5007 5278 1 109000000
5008 5279 2 109000001
5009 5280 3 109000002
5010 5281 4 109000003
5011 5282 5 109000004
5012 5283 3 170004
5013 5284 4 170005
5014 5285 3 180004
5015 5286 4 180005
5016 5287 4 140000
5017 5288 4 150010
5018 5289 4 150020
5019 5290 4 150030
5020 5291 4 150040
5021 5293 3 102000060
5022 5294 3 102000070
5023 5295 3 102000080
5024 5296 3 103000050
5025 5297 3 105000050
5026 5298 3 107000060
5027 5299 3 107000070
5028 5300 3 107000080
5029 5301 3 108000050
5030 5302 3 109000050
5031 5303 3 103000060
5032 5304 3 103000070
5033 5305 3 103000080
5034 5306 3 110000050
5035 5307 4 102000100
5036 5308 4 102000110
5037 5309 4 106000090
5038 5310 4 109000090
5039 5311 4 107000100
5040 5312 4 103000090
5041 5313 4 102000090
5042 5314 4 103000100
5043 5315 5 102000120
5044 5316 5 107000110
5045 5317 5 103000120
5046 5318 1 102000000
5047 5319 2 102000001
5048 5320 3 102000002
5049 5321 4 102000003
5050 5322 5 102000004
5051 5323 1 105000000
5052 5324 2 105000001
5053 5325 3 105000002
5054 5326 4 105000003
5055 5327 5 105000004
5056 5328 1 112000000
5057 5329 2 112000001
5058 5330 3 112000002
5059 5331 4 112000003
5060 5332 5 112000004
5061 5333 4 110024
5062 5334 4 110034
5063 5335 4 110044
5064 5336 4 110054
5065 5337 3 110060
5066 5338 3 110070
5067 5339 3 110080
5068 5340 3 110090
5069 5341 3 110100
5070 5342 3 110110
5071 5343 3 110120
5072 5344 3 110130
5073 5345 3 110140
5074 5346 3 110150
5075 5347 3 110160
5076 5348 3 110170
5077 5349 3 110180
5078 5350 3 110190
5079 5351 3 110200
5080 5352 3 110210
5081 5353 3 110220
5082 5354 3 110230
5083 5355 3 110240
5084 5356 3 110250
5085 5357 3 110260
5086 5358 3 110270
5087 5359 3 110620
5088 5360 3 110670
5089 5361 4 140000
5090 5362 4 150010
5091 5363 4 150020
5092 5364 4 150030
5093 5365 4 150040
5094 5367 3 106000060
5095 5368 3 106000070
5096 5369 3 106000080
5097 5370 3 101000070
5098 5371 3 110000060
5099 5372 3 104000060
5100 5373 3 104000070
5101 5374 3 104000080
5102 5375 3 102000050
5103 5376 3 104000170
5104 5377 3 104000260
5105 5378 4 106000100
5106 5379 4 106000110
5107 5380 4 104000090
5108 5381 4 104000100
5109 5382 4 104000110
5110 5383 4 107000090
5111 5384 4 104000180
5112 5385 4 104000270
5113 5386 5 106000120
5114 5387 5 104000120
5115 5388 5 104000190
5116 5389 1 103000000
5117 5390 2 103000001
5118 5391 3 103000002
5119 5392 4 103000003
5120 5393 5 103000004
5121 5394 1 111000000
5122 5395 2 111000001
5123 5396 3 111000002
5124 5397 4 111000003
5125 5398 5 111000004
5126 5399 1 115000000
5127 5400 2 115000001
5128 5401 3 115000002
5129 5402 4 115000003
5130 5403 5 115000004
5131 5404 4 120024
5132 5405 4 120034
5133 5406 4 120044
5134 5407 4 120054
5135 5408 3 120241
5136 5409 3 120251
5137 5410 3 120261
5138 5411 3 120271
5139 5412 3 120300
5140 5413 3 120310
5141 5414 3 120320
5142 5415 3 120330
5143 5416 3 120340
5144 5417 3 120350
5145 5418 3 120360
5146 5419 3 120370
5147 5420 3 120380
5148 5421 3 120390
5149 5422 3 120400
5150 5423 3 120410
5151 5424 3 120420
5152 5425 3 120430
5153 5426 3 120450
5154 5427 3 120460
5155 5428 3 120550
5156 5429 3 120560
5157 5430 3 120570
5158 5431 3 120990
5159 5432 3 121000
5160 5433 3 121010
5161 5434 3 121020
5162 5435 4 140000
5163 5436 4 150010
5164 5437 4 150020
5165 5438 4 150030
5166 5439 4 150040
5167 5441 3 111000010
5168 5442 3 111000020
5169 5443 3 111000030
5170 5444 3 112000020
5171 5445 3 112000030
5172 5446 3 108000060
5173 5447 3 108000070
5174 5448 3 108000080
5175 5449 3 107000050
5176 5450 3 112000010
5177 5451 3 110000070
5178 5452 3 110000080
5179 5453 4 111000040
5180 5454 4 112000040
5181 5455 4 108000100
5182 5456 4 105000090
5183 5457 4 110000100
5184 5458 5 111000060
5185 5459 5 112000060
5186 5460 5 108000110
5187 5461 5 110000110
5188 5462 1 108000000
5189 5463 2 108000001
5190 5464 3 108000002
5191 5465 4 108000003
5192 5466 5 108000004
5193 5467 1 107000000
5194 5468 2 107000001
5195 5469 3 107000002
5196 5470 4 107000003
5197 5471 5 107000004
5198 5472 1 120000000
5199 5473 2 120000001
5200 5474 3 120000002
5201 5475 4 120000003
5202 5476 5 120000004
5203 5477 4 130024
5204 5478 4 130034
5205 5479 4 130044
5206 5480 4 130054
5207 5481 3 130060
5208 5482 3 130070
5209 5483 3 130080
5210 5484 3 130090
5211 5485 3 130100
5212 5486 3 130110
5213 5487 3 130120
5214 5488 3 130130
5215 5489 3 130140
5216 5490 3 130150
5217 5491 3 130160
5218 5492 3 130170
5219 5493 3 130180
5220 5494 3 130190
5221 5495 3 130200
5222 5496 3 130420
5223 5497 3 130510
5224 5498 3 130520
5225 5499 3 130530
5226 5500 3 130540
5227 5501 3 130660
5228 5502 4 140000
5229 5503 4 150010
5230 5504 4 150020
5231 5505 4 150030
5232 5506 4 150040
5233 5508 1 101000000
5234 5509 2 101000001
5235 5510 3 101000002
5236 5511 4 101000008
5237 5512 5 101000004
5238 5513 1 120000000
5239 5514 2 120000001
5240 5515 3 120000002
5241 5516 4 120000003
5242 5517 5 120000004
5243 5519 1 101000010
5244 5520 1 102000010
5245 5521 1 103000010
5246 5522 1 104000010
5247 5523 1 105000010
5248 5524 1 106000010
5249 5525 1 107000010
5250 5526 1 108000010
5251 5527 1 109000010
5252 5528 1 110000010
5253 5529 2 101000020
5254 5530 2 101000030
5255 5531 2 102000020
5256 5532 2 102000030
5257 5533 2 102000040
5258 5534 2 103000020
5259 5535 2 103000030
5260 5536 2 103000040
5261 5537 2 104000020
5262 5538 2 104000030
5263 5539 2 104000040
5264 5540 2 105000020
5265 5541 2 105000030
5266 5542 2 105000040
5267 5543 2 106000020
5268 5544 2 106000030
5269 5545 2 106000040
5270 5546 2 107000020
5271 5547 2 107000030
5272 5548 2 107000040
5273 5549 2 108000020
5274 5550 2 108000030
5275 5551 2 108000040
5276 5552 2 109000020
5277 5553 2 109000030
5278 5554 2 109000040
5279 5555 2 110000020
5280 5556 2 110000030
5281 5557 2 110000040
5282 5558 3 101000050
5283 5559 3 101000060
5284 5560 3 101000080
5285 5561 3 101000040
5286 5562 3 109000060
5287 5563 3 109000070
5288 5564 3 109000080
5289 5565 3 105000060
5290 5566 3 105000070
5291 5567 3 105000080
5292 5568 3 104000050
5293 5569 3 106000050
5294 5570 3 102000060
5295 5571 3 102000070
5296 5572 3 102000080
5297 5573 3 103000050
5298 5574 3 105000050
5299 5575 3 107000060
5300 5576 3 107000070
5301 5577 3 107000080
5302 5578 3 108000050
5303 5579 3 109000050
5304 5580 3 103000060
5305 5581 3 103000070
5306 5582 3 103000080
5307 5583 3 110000050
5308 5584 3 106000060
5309 5585 3 106000070
5310 5586 3 106000080
5311 5587 3 101000070
5312 5588 3 110000060
5313 5589 3 104000060
5314 5590 3 104000070
5315 5591 3 104000080
5316 5592 3 102000050
5317 5593 3 104000170
5318 5594 3 104000260
5319 5595 3 111000010
5320 5596 3 111000020
5321 5597 3 111000030
5322 5598 3 112000020
5323 5599 3 112000030
5324 5600 3 108000060
5325 5601 3 108000070
5326 5602 3 108000080
5327 5603 3 107000050
5328 5604 3 112000010
5329 5605 3 110000070
5330 5606 3 110000080
5331 5607 4 101000090
5332 5608 4 101000100
5333 5609 4 101000110
5334 5610 4 109000100
5335 5611 4 105000100
5336 5612 4 105000110
5337 5613 4 108000090
5338 5614 4 110000090
5339 5615 4 102000100
5340 5616 4 102000110
5341 5617 4 106000090
5342 5618 4 109000090
5343 5619 4 107000100
5344 5620 4 103000090
5345 5621 4 102000090
5346 5622 4 103000100
5347 5623 4 106000100
5348 5624 4 106000110
5349 5625 4 104000090
5350 5626 4 104000100
5351 5627 4 104000110
5352 5628 4 107000090
5353 5629 4 104000180
5354 5630 4 111000040
5355 5631 4 112000040
5356 5632 4 108000100
5357 5633 4 105000090
5358 5634 4 110000100
5359 5635 5 101000120
5360 5636 5 109000110
5361 5637 5 105000120
5362 5638 5 102000120
5363 5639 5 107000110
5364 5640 5 103000120
5365 5641 5 106000120
5366 5642 5 104000120
5367 5643 5 104000190
5368 5644 5 111000060
5369 5645 5 112000060
5370 5646 5 108000110
5371 5647 5 110000110
5372 5648 1 170002
5373 5649 2 170003
5374 5650 3 170004
5375 5651 1 180002
5376 5652 2 180003
5377 5653 3 180004
5378 5654 1 201000010
5379 5655 1 292000010
5380 5656 1 299000040
5381 5657 1 299000070
5382 5658 1 299000110
5383 5659 1 299000120
5384 5660 1 299000140
5385 5661 2 202000010
5386 5662 2 290000010
5387 5663 2 299000010
5388 5664 2 299000150
5389 5665 2 299000190
5390 5666 2 299000200
5391 5667 2 299000210
5392 5668 3 298000050
5393 5669 3 298000060
5394 5670 3 299000060
5395 5671 3 299000170
5396 5672 5 297000100
5397 5673 5 291000020
5398 5674 4 140000
5399 5675 5 150010
5400 5676 5 150020
5401 5677 5 150030
5402 5678 5 150040
5403 5680 1 101000010
5404 5681 1 102000010
5405 5682 1 103000010
5406 5683 1 104000010
5407 5684 1 105000010
5408 5685 1 106000010
5409 5686 1 107000010
5410 5687 1 108000010
5411 5688 1 109000010
5412 5689 1 110000010
5413 5690 2 101000020
5414 5691 2 101000030
5415 5692 2 102000020
5416 5693 2 102000030
5417 5694 2 102000040
5418 5695 2 103000020
5419 5696 2 103000030
5420 5697 2 103000040
5421 5698 2 104000020
5422 5699 2 104000030
5423 5700 2 104000040
5424 5701 2 105000020
5425 5702 2 105000030
5426 5703 2 105000040
5427 5704 2 106000020
5428 5705 2 106000030
5429 5706 2 106000040
5430 5707 2 107000020
5431 5708 2 107000030
5432 5709 2 107000040
5433 5710 2 108000020
5434 5711 2 108000030
5435 5712 2 108000040
5436 5713 2 109000020
5437 5714 2 109000030
5438 5715 2 109000040
5439 5716 2 110000020
5440 5717 2 110000030
5441 5718 2 110000040
5442 5719 3 101000050
5443 5720 3 101000060
5444 5721 3 101000080
5445 5722 3 101000040
5446 5723 3 109000060
5447 5724 3 109000070
5448 5725 3 109000080
5449 5726 3 105000060
5450 5727 3 105000070
5451 5728 3 105000080
5452 5729 3 104000050
5453 5730 3 106000050
5454 5731 3 102000060
5455 5732 3 102000070
5456 5733 3 102000080
5457 5734 3 103000050
5458 5735 3 105000050
5459 5736 3 107000060
5460 5737 3 107000070
5461 5738 3 107000080
5462 5739 3 108000050
5463 5740 3 109000050
5464 5741 3 103000060
5465 5742 3 103000070
5466 5743 3 103000080
5467 5744 3 110000050
5468 5745 3 106000060
5469 5746 3 106000070
5470 5747 3 106000080
5471 5748 3 101000070
5472 5749 3 110000060
5473 5750 3 104000060
5474 5751 3 104000070
5475 5752 3 104000080
5476 5753 3 102000050
5477 5754 3 104000170
5478 5755 3 104000260
5479 5756 3 111000010
5480 5757 3 111000020
5481 5758 3 111000030
5482 5759 3 112000020
5483 5760 3 112000030
5484 5761 3 108000060
5485 5762 3 108000070
5486 5763 3 108000080
5487 5764 3 107000050
5488 5765 3 112000010
5489 5766 3 110000070
5490 5767 3 110000080
5491 5768 4 101000090
5492 5769 4 101000100
5493 5770 4 101000110
5494 5771 4 109000100
5495 5772 4 105000100
5496 5773 4 105000110
5497 5774 4 108000090
5498 5775 4 110000090
5499 5776 4 102000100
5500 5777 4 102000110
5501 5778 4 106000090
5502 5779 4 109000090
5503 5780 4 107000100
5504 5781 4 103000090
5505 5782 4 102000090
5506 5783 4 103000100
5507 5784 4 106000100
5508 5785 4 106000110
5509 5786 4 104000090
5510 5787 4 104000100
5511 5788 4 104000110
5512 5789 4 107000090
5513 5790 4 104000180
5514 5791 4 111000040
5515 5792 4 112000040
5516 5793 4 108000100
5517 5794 4 105000090
5518 5795 4 110000100
5519 5796 5 101000120
5520 5797 5 109000110
5521 5798 5 105000120
5522 5799 5 102000120
5523 5800 5 107000110
5524 5801 5 103000120
5525 5802 5 106000120
5526 5803 5 104000120
5527 5804 5 104000190
5528 5805 5 111000060
5529 5806 5 112000060
5530 5807 5 108000110
5531 5808 5 110000110
5532 5809 2 170003
5533 5810 3 170004
5534 5811 2 180003
5535 5812 3 180004
5536 5813 1 201000010
5537 5814 1 292000010
5538 5815 1 299000040
5539 5816 1 299000070
5540 5817 1 299000110
5541 5818 1 299000120
5542 5819 1 299000140
5543 5820 2 202000010
5544 5821 2 290000010
5545 5822 2 299000010
5546 5823 2 299000150
5547 5824 2 299000190
5548 5825 2 299000200
5549 5826 2 299000210
5550 5827 3 298000050
5551 5828 3 298000060
5552 5829 3 299000060
5553 5830 3 299000170
5554 5831 5 297000100
5555 5832 5 291000020
5556 5833 4 140000
5557 5834 5 150010
5558 5835 5 150020
5559 5836 5 150030
5560 5837 5 150040
5561 5839 3 101000050
5562 5840 3 101000060
5563 5841 3 101000080
5564 5842 3 101000040
5565 5843 3 109000060
5566 5844 3 109000070
5567 5845 3 109000080
5568 5846 3 105000060
5569 5847 3 105000070
5570 5848 3 105000080
5571 5849 3 104000050
5572 5850 3 106000050
5573 5851 3 102000060
5574 5852 3 102000070
5575 5853 3 102000080
5576 5854 3 103000050
5577 5855 3 105000050
5578 5856 3 107000060
5579 5857 3 107000070
5580 5858 3 107000080
5581 5859 3 108000050
5582 5860 3 109000050
5583 5861 3 103000060
5584 5862 3 103000070
5585 5863 3 103000080
5586 5864 3 110000050
5587 5865 3 106000060
5588 5866 3 106000070
5589 5867 3 106000080
5590 5868 3 101000070
5591 5869 3 110000060
5592 5870 3 104000060
5593 5871 3 104000070
5594 5872 3 104000080
5595 5873 3 102000050
5596 5874 3 104000170
5597 5875 3 104000260
5598 5876 3 111000010
5599 5877 3 111000020
5600 5878 3 111000030
5601 5879 3 112000020
5602 5880 3 112000030
5603 5881 3 108000060
5604 5882 3 108000070
5605 5883 3 108000080
5606 5884 3 107000050
5607 5885 3 112000010
5608 5886 3 110000070
5609 5887 3 110000080
5610 5888 4 101000090
5611 5889 4 101000100
5612 5890 4 101000110
5613 5891 4 109000100
5614 5892 4 105000100
5615 5893 4 105000110
5616 5894 4 108000090
5617 5895 4 110000090
5618 5896 4 102000100
5619 5897 4 102000110
5620 5898 4 106000090
5621 5899 4 109000090
5622 5900 4 107000100
5623 5901 4 103000090
5624 5902 4 102000090
5625 5903 4 103000100
5626 5904 4 106000100
5627 5905 4 106000110
5628 5906 4 104000090
5629 5907 4 104000100
5630 5908 4 104000110
5631 5909 4 107000090
5632 5910 4 104000180
5633 5911 4 111000040
5634 5912 4 112000040
5635 5913 4 108000100
5636 5914 4 105000090
5637 5915 4 110000100
5638 5916 5 101000120
5639 5917 5 109000110
5640 5918 5 105000120
5641 5919 5 102000120
5642 5920 5 107000110
5643 5921 5 103000120
5644 5922 5 106000120
5645 5923 5 104000120
5646 5924 5 104000190
5647 5925 5 111000060
5648 5926 5 112000060
5649 5927 5 108000110
5650 5928 5 110000110
5651 5929 3 170004
5652 5930 3 180004
5653 5931 1 201000010
5654 5932 1 292000010
5655 5933 1 299000040
5656 5934 1 299000070
5657 5935 1 299000110
5658 5936 1 299000120
5659 5937 1 299000140
5660 5938 2 202000010
5661 5939 2 290000010
5662 5940 2 299000010
5663 5941 2 299000150
5664 5942 2 299000190
5665 5943 2 299000200
5666 5944 2 299000210
5667 5945 3 298000050
5668 5946 3 298000060
5669 5947 3 299000060
5670 5948 3 299000170
5671 5949 5 297000100
5672 5950 5 291000020
5673 5951 4 140000
5674 5952 5 150010
5675 5953 5 150020
5676 5954 5 150030
5677 5955 5 150040
5678 5957 3 101000050
5679 5958 3 101000060
5680 5959 3 101000080
5681 5960 3 101000040
5682 5961 3 109000060
5683 5962 3 109000070
5684 5963 3 109000080
5685 5964 3 105000060
5686 5965 3 105000070
5687 5966 3 105000080
5688 5967 3 104000050
5689 5968 3 106000050
5690 5969 3 102000060
5691 5970 3 102000070
5692 5971 3 102000080
5693 5972 3 103000050
5694 5973 3 105000050
5695 5974 3 107000060
5696 5975 3 107000070
5697 5976 3 107000080
5698 5977 3 108000050
5699 5978 3 109000050
5700 5979 3 103000060
5701 5980 3 103000070
5702 5981 3 103000080
5703 5982 3 110000050
5704 5983 3 106000060
5705 5984 3 106000070
5706 5985 3 106000080
5707 5986 3 101000070
5708 5987 3 110000060
5709 5988 3 104000060
5710 5989 3 104000070
5711 5990 3 104000080
5712 5991 3 102000050
5713 5992 3 104000170
5714 5993 3 104000260
5715 5994 3 111000010
5716 5995 3 111000020
5717 5996 3 111000030
5718 5997 3 112000020
5719 5998 3 112000030
5720 5999 3 108000060
5721 6000 3 108000070
5722 6001 3 108000080
5723 6002 3 107000050
5724 6003 3 112000010
5725 6004 3 110000070
5726 6005 3 110000080
5727 6006 4 101000090
5728 6007 4 101000100
5729 6008 4 101000110
5730 6009 4 109000100
5731 6010 4 105000100
5732 6011 4 105000110
5733 6012 4 108000090
5734 6013 4 110000090
5735 6014 4 102000100
5736 6015 4 102000110
5737 6016 4 106000090
5738 6017 4 109000090
5739 6018 4 107000100
5740 6019 4 103000090
5741 6020 4 102000090
5742 6021 4 103000100
5743 6022 4 106000100
5744 6023 4 106000110
5745 6024 4 104000090
5746 6025 4 104000100
5747 6026 4 104000110
5748 6027 4 107000090
5749 6028 4 104000180
5750 6029 4 111000040
5751 6030 4 112000040
5752 6031 4 108000100
5753 6032 4 105000090
5754 6033 4 110000100
5755 6034 5 101000120
5756 6035 5 109000110
5757 6036 5 105000120
5758 6037 5 102000120
5759 6038 5 107000110
5760 6039 5 103000120
5761 6040 5 106000120
5762 6041 5 104000120
5763 6042 5 104000190
5764 6043 5 111000060
5765 6044 5 112000060
5766 6045 5 108000110
5767 6046 5 110000110
5768 6047 3 170004
5769 6048 3 180004
5770 6049 1 201000010
5771 6050 1 292000010
5772 6051 1 299000040
5773 6052 1 299000070
5774 6053 1 299000110
5775 6054 1 299000120
5776 6055 1 299000140
5777 6056 2 202000010
5778 6057 2 290000010
5779 6058 2 299000010
5780 6059 2 299000150
5781 6060 2 299000190
5782 6061 2 299000200
5783 6062 2 299000210
5784 6063 3 298000050
5785 6064 3 298000060
5786 6065 3 299000060
5787 6066 3 299000170
5788 6067 5 297000100
5789 6068 5 291000020
5790 6069 4 140000
5791 6070 5 150010
5792 6071 5 150020
5793 6072 5 150030
5794 6073 5 150040
5795 6075 3 101000050
5796 6076 3 101000060
5797 6077 3 101000080
5798 6078 3 101000040
5799 6079 3 109000060
5800 6080 3 109000070
5801 6081 3 109000080
5802 6082 3 105000060
5803 6083 3 105000070
5804 6084 3 105000080
5805 6085 3 104000050
5806 6086 3 106000050
5807 6087 3 102000060
5808 6088 3 102000070
5809 6089 3 102000080
5810 6090 3 103000050
5811 6091 3 105000050
5812 6092 3 107000060
5813 6093 3 107000070
5814 6094 3 107000080
5815 6095 3 108000050
5816 6096 3 109000050
5817 6097 3 103000060
5818 6098 3 103000070
5819 6099 3 103000080
5820 6100 3 110000050
5821 6101 3 106000060
5822 6102 3 106000070
5823 6103 3 106000080
5824 6104 3 101000070
5825 6105 3 110000060
5826 6106 3 104000060
5827 6107 3 104000070
5828 6108 3 104000080
5829 6109 3 102000050
5830 6110 3 104000170
5831 6111 3 104000260
5832 6112 3 111000010
5833 6113 3 111000020
5834 6114 3 111000030
5835 6115 3 112000020
5836 6116 3 112000030
5837 6117 3 108000060
5838 6118 3 108000070
5839 6119 3 108000080
5840 6120 3 107000050
5841 6121 3 112000010
5842 6122 3 110000070
5843 6123 3 110000080
5844 6124 4 101000090
5845 6125 4 101000100
5846 6126 4 101000110
5847 6127 4 109000100
5848 6128 4 105000100
5849 6129 4 105000110
5850 6130 4 108000090
5851 6131 4 110000090
5852 6132 4 102000100
5853 6133 4 102000110
5854 6134 4 106000090
5855 6135 4 109000090
5856 6136 4 107000100
5857 6137 4 103000090
5858 6138 4 102000090
5859 6139 4 103000100
5860 6140 4 106000100
5861 6141 4 106000110
5862 6142 4 104000090
5863 6143 4 104000100
5864 6144 4 104000110
5865 6145 4 107000090
5866 6146 4 104000180
5867 6147 4 111000040
5868 6148 4 112000040
5869 6149 4 108000100
5870 6150 4 105000090
5871 6151 4 110000100
5872 6152 5 101000120
5873 6153 5 109000110
5874 6154 5 105000120
5875 6155 5 102000120
5876 6156 5 107000110
5877 6157 5 103000120
5878 6158 5 106000120
5879 6159 5 104000120
5880 6160 5 104000190
5881 6161 5 111000060
5882 6162 5 112000060
5883 6163 5 108000110
5884 6164 5 110000110
5885 6165 3 170004
5886 6166 3 180004
5887 6167 1 201000010
5888 6168 1 292000010
5889 6169 1 299000040
5890 6170 1 299000070
5891 6171 1 299000110
5892 6172 1 299000120
5893 6173 1 299000140
5894 6174 2 202000010
5895 6175 2 290000010
5896 6176 2 299000010
5897 6177 2 299000150
5898 6178 2 299000190
5899 6179 2 299000200
5900 6180 2 299000210
5901 6181 3 298000050
5902 6182 3 298000060
5903 6183 3 299000060
5904 6184 3 299000170
5905 6185 5 297000100
5906 6186 5 291000020
5907 6187 4 140000
5908 6188 5 150010
5909 6189 5 150020
5910 6190 5 150030
5911 6191 5 150040
5912 6192 5 190000
5913 6193 5 200000
5914 6194 5 210000
5915 6196 3 111000010
5916 6197 3 111000020
5917 6198 3 111000030
5918 6199 3 112000020
5919 6200 3 112000030
5920 6201 3 108000060
5921 6202 3 108000070
5922 6203 3 108000080
5923 6204 3 107000050
5924 6205 3 112000010
5925 6206 3 110000070
5926 6207 3 110000080
5927 6208 4 111000040
5928 6209 4 112000040
5929 6210 4 108000100
5930 6211 4 105000090
5931 6212 4 110000100
5932 6213 5 111000060
5933 6214 5 112000060
5934 6215 5 108000110
5935 6216 5 110000110
5936 6217 1 108000000
5937 6218 2 108000001
5938 6219 3 108000002
5939 6220 4 108000003
5940 6221 5 108000004
5941 6222 1 107000000
5942 6223 2 107000001
5943 6224 3 107000002
5944 6225 4 107000003
5945 6226 5 107000004
5946 6227 1 120000000
5947 6228 2 120000001
5948 6229 3 120000002
5949 6230 4 120000003
5950 6231 5 120000004
5951 6232 3 170004
5952 6233 4 170005
5953 6234 3 180004
5954 6235 4 180005
5955 6236 4 140000
5956 6237 4 150010
5957 6238 4 150020
5958 6239 4 150030
5959 6240 4 150040
5960 6242 3 101000050
5961 6243 3 101000060
5962 6244 3 101000080
5963 6245 3 101000040
5964 6246 3 109000060
5965 6247 3 109000070
5966 6248 3 109000080
5967 6249 3 105000060
5968 6250 3 105000070
5969 6251 3 105000080
5970 6252 3 104000050
5971 6253 3 106000050
5972 6254 4 101000090
5973 6255 4 101000100
5974 6256 4 101000110
5975 6257 4 109000100
5976 6258 4 105000100
5977 6259 4 105000110
5978 6260 4 108000090
5979 6261 4 110000090
5980 6262 5 101000120
5981 6263 5 109000110
5982 6264 5 105000120
5983 6265 1 101000000
5984 6266 2 101000001
5985 6267 3 101000002
5986 6268 4 101000008
5987 6269 5 101000004
5988 6270 1 109000000
5989 6271 2 109000001
5990 6272 3 109000002
5991 6273 4 109000003
5992 6274 5 109000004
5993 6275 4 110024
5994 6276 4 110034
5995 6277 4 110044
5996 6278 4 110054
5997 6279 3 110060
5998 6280 3 110070
5999 6281 3 110080
6000 6282 3 110090
6001 6283 3 110100
6002 6284 3 110110
6003 6285 3 110120
6004 6286 3 110130
6005 6287 3 110140
6006 6288 3 110150
6007 6289 3 110160
6008 6290 3 110170
6009 6291 3 110180
6010 6292 3 110190
6011 6293 3 110200
6012 6294 3 110210
6013 6295 3 110220
6014 6296 3 110230
6015 6297 3 110240
6016 6298 3 110250
6017 6299 3 110260
6018 6300 3 110270
6019 6301 3 110620
6020 6302 3 110670
6021 6303 4 140000
6022 6304 4 150010
6023 6305 4 150020
6024 6306 4 150030
6025 6307 4 150040
6026 6309 3 102000060
6027 6310 3 102000070
6028 6311 3 102000080
6029 6312 3 103000050
6030 6313 3 105000050
6031 6314 3 107000060
6032 6315 3 107000070
6033 6316 3 107000080
6034 6317 3 108000050
6035 6318 3 109000050
6036 6319 3 103000060
6037 6320 3 103000070
6038 6321 3 103000080
6039 6322 3 110000050
6040 6323 4 102000100
6041 6324 4 102000110
6042 6325 4 106000090
6043 6326 4 109000090
6044 6327 4 107000100
6045 6328 4 103000090
6046 6329 4 102000090
6047 6330 4 103000100
6048 6331 5 102000120
6049 6332 5 107000110
6050 6333 5 103000120
6051 6334 1 102000000
6052 6335 2 102000001
6053 6336 3 102000002
6054 6337 4 102000003
6055 6338 5 102000004
6056 6339 1 105000000
6057 6340 2 105000001
6058 6341 3 105000002
6059 6342 4 105000003
6060 6343 5 105000004
6061 6344 1 112000000
6062 6345 2 112000001
6063 6346 3 112000002
6064 6347 4 112000003
6065 6348 5 112000004
6066 6349 4 120024
6067 6350 4 120034
6068 6351 4 120044
6069 6352 4 120054
6070 6353 3 120241
6071 6354 3 120251
6072 6355 3 120261
6073 6356 3 120271
6074 6357 3 120300
6075 6358 3 120310
6076 6359 3 120320
6077 6360 3 120330
6078 6361 3 120340
6079 6362 3 120350
6080 6363 3 120360
6081 6364 3 120370
6082 6365 3 120380
6083 6366 3 120390
6084 6367 3 120400
6085 6368 3 120410
6086 6369 3 120420
6087 6370 3 120430
6088 6371 3 120450
6089 6372 3 120460
6090 6373 3 120550
6091 6374 3 120560
6092 6375 3 120570
6093 6376 3 120990
6094 6377 3 121000
6095 6378 3 121010
6096 6379 3 121020
6097 6380 4 140000
6098 6381 4 150010
6099 6382 4 150020
6100 6383 4 150030
6101 6384 4 150040
6102 6386 3 106000060
6103 6387 3 106000070
6104 6388 3 106000080
6105 6389 3 101000070
6106 6390 3 110000060
6107 6391 3 104000060
6108 6392 3 104000070
6109 6393 3 104000080
6110 6394 3 102000050
6111 6395 3 104000170
6112 6396 3 104000260
6113 6397 4 106000100
6114 6398 4 106000110
6115 6399 4 104000090
6116 6400 4 104000100
6117 6401 4 104000110
6118 6402 4 107000090
6119 6403 4 104000180
6120 6404 5 106000120
6121 6405 5 104000120
6122 6406 5 104000190
6123 6407 1 103000000
6124 6408 2 103000001
6125 6409 3 103000002
6126 6410 4 103000003
6127 6411 5 103000004
6128 6412 1 111000000
6129 6413 2 111000001
6130 6414 3 111000002
6131 6415 4 111000003
6132 6416 5 111000004
6133 6417 1 115000000
6134 6418 2 115000001
6135 6419 3 115000002
6136 6420 4 115000003
6137 6421 5 115000004
6138 6422 4 130024
6139 6423 4 130034
6140 6424 4 130044
6141 6425 4 130054
6142 6426 3 130060
6143 6427 3 130070
6144 6428 3 130080
6145 6429 3 130090
6146 6430 3 130100
6147 6431 3 130110
6148 6432 3 130120
6149 6433 3 130130
6150 6434 3 130140
6151 6435 3 130150
6152 6436 3 130160
6153 6437 3 130170
6154 6438 3 130180
6155 6439 3 130190
6156 6440 3 130200
6157 6441 3 130420
6158 6442 3 130510
6159 6443 3 130520
6160 6444 3 130530
6161 6445 3 130540
6162 6446 3 130660
6163 6447 3 130790
6164 6448 3 130800
6165 6449 4 140000
6166 6450 4 150010
6167 6451 4 150020
6168 6452 4 150030
6169 6453 4 150040
6170 6455 1 101000010
6171 6456 1 102000010
6172 6457 1 103000010
6173 6458 1 104000010
6174 6459 1 105000010
6175 6460 1 106000010
6176 6461 1 107000010
6177 6462 1 108000010
6178 6463 1 109000010
6179 6464 1 110000010
6180 6465 2 101000020
6181 6466 2 101000030
6182 6467 2 102000020
6183 6468 2 102000030
6184 6469 2 102000040
6185 6470 2 103000020
6186 6471 2 103000030
6187 6472 2 103000040
6188 6473 2 104000020
6189 6474 2 104000030
6190 6475 2 104000040
6191 6476 2 105000020
6192 6477 2 105000030
6193 6478 2 105000040
6194 6479 2 106000020
6195 6480 2 106000030
6196 6481 2 106000040
6197 6482 2 107000020
6198 6483 2 107000030
6199 6484 2 107000040
6200 6485 2 108000020
6201 6486 2 108000030
6202 6487 2 108000040
6203 6488 2 109000020
6204 6489 2 109000030
6205 6490 2 109000040
6206 6491 2 110000020
6207 6492 2 110000030
6208 6493 2 110000040
6209 6494 2 118000010
6210 6495 3 101000050
6211 6496 3 101000060
6212 6497 3 101000080
6213 6498 3 101000040
6214 6499 3 109000060
6215 6500 3 109000070
6216 6501 3 109000080
6217 6502 3 105000060
6218 6503 3 105000070
6219 6504 3 105000080
6220 6505 3 104000050
6221 6506 3 106000050
6222 6507 3 102000060
6223 6508 3 102000070
6224 6509 3 102000080
6225 6510 3 103000050
6226 6511 3 105000050
6227 6512 3 107000060
6228 6513 3 107000070
6229 6514 3 107000080
6230 6515 3 108000050
6231 6516 3 109000050
6232 6517 3 103000060
6233 6518 3 103000070
6234 6519 3 103000080
6235 6520 3 110000050
6236 6521 3 106000060
6237 6522 3 106000070
6238 6523 3 106000080
6239 6524 3 101000070
6240 6525 3 110000060
6241 6526 3 104000060
6242 6527 3 104000070
6243 6528 3 104000080
6244 6529 3 102000050
6245 6530 3 104000170
6246 6531 3 104000260
6247 6532 3 111000010
6248 6533 3 111000020
6249 6534 3 111000030
6250 6535 3 112000020
6251 6536 3 112000030
6252 6537 3 108000060
6253 6538 3 108000070
6254 6539 3 108000080
6255 6540 3 107000050
6256 6541 3 112000010
6257 6542 3 110000070
6258 6543 3 110000080
6259 6544 3 118000020
6260 6545 3 118000030
6261 6546 3 118000040
6262 6547 4 101000090
6263 6548 4 101000100
6264 6549 4 101000110
6265 6550 4 109000100
6266 6551 4 105000100
6267 6552 4 105000110
6268 6553 4 108000090
6269 6554 4 110000090
6270 6555 4 102000100
6271 6556 4 102000110
6272 6557 4 106000090
6273 6558 4 109000090
6274 6559 4 107000100
6275 6560 4 103000090
6276 6561 4 102000090
6277 6562 4 103000100
6278 6563 4 106000100
6279 6564 4 106000110
6280 6565 4 104000090
6281 6566 4 104000100
6282 6567 4 104000110
6283 6568 4 107000090
6284 6569 4 104000180
6285 6570 4 111000040
6286 6571 4 112000040
6287 6572 4 108000100
6288 6573 4 105000090
6289 6574 4 110000100
6290 6575 4 118000050
6291 6576 4 118000060
6292 6577 5 101000120
6293 6578 5 109000110
6294 6579 5 105000120
6295 6580 5 102000120
6296 6581 5 107000110
6297 6582 5 103000120
6298 6583 5 106000120
6299 6584 5 104000120
6300 6585 5 104000190
6301 6586 5 111000060
6302 6587 5 112000060
6303 6588 5 108000110
6304 6589 5 110000110
6305 6590 5 118000070
6306 6591 1 170002
6307 6592 2 170003
6308 6593 3 170004
6309 6594 1 180002
6310 6595 2 180003
6311 6596 3 180004
6312 6597 1 201000010
6313 6598 1 292000010
6314 6599 1 299000040
6315 6600 1 299000070
6316 6601 1 299000110
6317 6602 1 299000120
6318 6603 1 299000140
6319 6604 2 202000010
6320 6605 2 290000010
6321 6606 2 299000010
6322 6607 2 299000150
6323 6608 2 299000190
6324 6609 2 299000200
6325 6610 2 299000210
6326 6611 3 298000050
6327 6612 3 298000060
6328 6613 3 299000060
6329 6614 3 299000170
6330 6615 5 297000100
6331 6616 5 291000020
6332 6617 4 140000
6333 6618 5 150010
6334 6619 5 150020
6335 6620 5 150030
6336 6621 5 150040
6337 6623 1 101000010
6338 6624 1 102000010
6339 6625 1 103000010
6340 6626 1 104000010
6341 6627 1 105000010
6342 6628 1 106000010
6343 6629 1 107000010
6344 6630 1 108000010
6345 6631 1 109000010
6346 6632 1 110000010
6347 6633 2 101000020
6348 6634 2 101000030
6349 6635 2 102000020
6350 6636 2 102000030
6351 6637 2 102000040
6352 6638 2 103000020
6353 6639 2 103000030
6354 6640 2 103000040
6355 6641 2 104000020
6356 6642 2 104000030
6357 6643 2 104000040
6358 6644 2 105000020
6359 6645 2 105000030
6360 6646 2 105000040
6361 6647 2 106000020
6362 6648 2 106000030
6363 6649 2 106000040
6364 6650 2 107000020
6365 6651 2 107000030
6366 6652 2 107000040
6367 6653 2 108000020
6368 6654 2 108000030
6369 6655 2 108000040
6370 6656 2 109000020
6371 6657 2 109000030
6372 6658 2 109000040
6373 6659 2 110000020
6374 6660 2 110000030
6375 6661 2 110000040
6376 6662 2 118000010
6377 6663 3 101000050
6378 6664 3 101000060
6379 6665 3 101000080
6380 6666 3 101000040
6381 6667 3 109000060
6382 6668 3 109000070
6383 6669 3 109000080
6384 6670 3 105000060
6385 6671 3 105000070
6386 6672 3 105000080
6387 6673 3 104000050
6388 6674 3 106000050
6389 6675 3 102000060
6390 6676 3 102000070
6391 6677 3 102000080
6392 6678 3 103000050
6393 6679 3 105000050
6394 6680 3 107000060
6395 6681 3 107000070
6396 6682 3 107000080
6397 6683 3 108000050
6398 6684 3 109000050
6399 6685 3 103000060
6400 6686 3 103000070
6401 6687 3 103000080
6402 6688 3 110000050
6403 6689 3 106000060
6404 6690 3 106000070
6405 6691 3 106000080
6406 6692 3 101000070
6407 6693 3 110000060
6408 6694 3 104000060
6409 6695 3 104000070
6410 6696 3 104000080
6411 6697 3 102000050
6412 6698 3 104000170
6413 6699 3 104000260
6414 6700 3 111000010
6415 6701 3 111000020
6416 6702 3 111000030
6417 6703 3 112000020
6418 6704 3 112000030
6419 6705 3 108000060
6420 6706 3 108000070
6421 6707 3 108000080
6422 6708 3 107000050
6423 6709 3 112000010
6424 6710 3 110000070
6425 6711 3 110000080
6426 6712 3 118000020
6427 6713 3 118000030
6428 6714 3 118000040
6429 6715 4 101000090
6430 6716 4 101000100
6431 6717 4 101000110
6432 6718 4 109000100
6433 6719 4 105000100
6434 6720 4 105000110
6435 6721 4 108000090
6436 6722 4 110000090
6437 6723 4 102000100
6438 6724 4 102000110
6439 6725 4 106000090
6440 6726 4 109000090
6441 6727 4 107000100
6442 6728 4 103000090
6443 6729 4 102000090
6444 6730 4 103000100
6445 6731 4 106000100
6446 6732 4 106000110
6447 6733 4 104000090
6448 6734 4 104000100
6449 6735 4 104000110
6450 6736 4 107000090
6451 6737 4 104000180
6452 6738 4 111000040
6453 6739 4 112000040
6454 6740 4 108000100
6455 6741 4 105000090
6456 6742 4 110000100
6457 6743 4 118000050
6458 6744 4 118000060
6459 6745 5 101000120
6460 6746 5 109000110
6461 6747 5 105000120
6462 6748 5 102000120
6463 6749 5 107000110
6464 6750 5 103000120
6465 6751 5 106000120
6466 6752 5 104000120
6467 6753 5 104000190
6468 6754 5 111000060
6469 6755 5 112000060
6470 6756 5 108000110
6471 6757 5 110000110
6472 6758 5 118000070
6473 6759 2 170003
6474 6760 3 170004
6475 6761 2 180003
6476 6762 3 180004
6477 6763 1 201000010
6478 6764 1 292000010
6479 6765 1 299000040
6480 6766 1 299000070
6481 6767 1 299000110
6482 6768 1 299000120
6483 6769 1 299000140
6484 6770 2 202000010
6485 6771 2 290000010
6486 6772 2 299000010
6487 6773 2 299000150
6488 6774 2 299000190
6489 6775 2 299000200
6490 6776 2 299000210
6491 6777 3 298000050
6492 6778 3 298000060
6493 6779 3 299000060
6494 6780 3 299000170
6495 6781 5 297000100
6496 6782 5 291000020
6497 6783 4 140000
6498 6784 5 150010
6499 6785 5 150020
6500 6786 5 150030
6501 6787 5 150040
6502 6789 3 101000050
6503 6790 3 101000060
6504 6791 3 101000080
6505 6792 3 101000040
6506 6793 3 109000060
6507 6794 3 109000070
6508 6795 3 109000080
6509 6796 3 105000060
6510 6797 3 105000070
6511 6798 3 105000080
6512 6799 3 104000050
6513 6800 3 106000050
6514 6801 3 102000060
6515 6802 3 102000070
6516 6803 3 102000080
6517 6804 3 103000050
6518 6805 3 105000050
6519 6806 3 107000060
6520 6807 3 107000070
6521 6808 3 107000080
6522 6809 3 108000050
6523 6810 3 109000050
6524 6811 3 103000060
6525 6812 3 103000070
6526 6813 3 103000080
6527 6814 3 110000050
6528 6815 3 106000060
6529 6816 3 106000070
6530 6817 3 106000080
6531 6818 3 101000070
6532 6819 3 110000060
6533 6820 3 104000060
6534 6821 3 104000070
6535 6822 3 104000080
6536 6823 3 102000050
6537 6824 3 104000170
6538 6825 3 104000260
6539 6826 3 111000010
6540 6827 3 111000020
6541 6828 3 111000030
6542 6829 3 112000020
6543 6830 3 112000030
6544 6831 3 108000060
6545 6832 3 108000070
6546 6833 3 108000080
6547 6834 3 107000050
6548 6835 3 112000010
6549 6836 3 110000070
6550 6837 3 110000080
6551 6838 3 118000020
6552 6839 3 118000030
6553 6840 3 118000040
6554 6841 4 101000090
6555 6842 4 101000100
6556 6843 4 101000110
6557 6844 4 109000100
6558 6845 4 105000100
6559 6846 4 105000110
6560 6847 4 108000090
6561 6848 4 110000090
6562 6849 4 102000100
6563 6850 4 102000110
6564 6851 4 106000090
6565 6852 4 109000090
6566 6853 4 107000100
6567 6854 4 103000090
6568 6855 4 102000090
6569 6856 4 103000100
6570 6857 4 106000100
6571 6858 4 106000110
6572 6859 4 104000090
6573 6860 4 104000100
6574 6861 4 104000110
6575 6862 4 107000090
6576 6863 4 104000180
6577 6864 4 111000040
6578 6865 4 112000040
6579 6866 4 108000100
6580 6867 4 105000090
6581 6868 4 110000100
6582 6869 4 118000050
6583 6870 4 118000060
6584 6871 5 101000120
6585 6872 5 109000110
6586 6873 5 105000120
6587 6874 5 102000120
6588 6875 5 107000110
6589 6876 5 103000120
6590 6877 5 106000120
6591 6878 5 104000120
6592 6879 5 104000190
6593 6880 5 111000060
6594 6881 5 112000060
6595 6882 5 108000110
6596 6883 5 110000110
6597 6884 5 118000070
6598 6885 3 170004
6599 6886 3 180004
6600 6887 1 201000010
6601 6888 1 292000010
6602 6889 1 299000040
6603 6890 1 299000070
6604 6891 1 299000110
6605 6892 1 299000120
6606 6893 1 299000140
6607 6894 2 202000010
6608 6895 2 290000010
6609 6896 2 299000010
6610 6897 2 299000150
6611 6898 2 299000190
6612 6899 2 299000200
6613 6900 2 299000210
6614 6901 3 298000050
6615 6902 3 298000060
6616 6903 3 299000060
6617 6904 3 299000170
6618 6905 5 297000100
6619 6906 5 291000020
6620 6907 4 140000
6621 6908 5 150010
6622 6909 5 150020
6623 6910 5 150030
6624 6911 5 150040
6625 6913 3 101000050
6626 6914 3 101000060
6627 6915 3 101000080
6628 6916 3 101000040
6629 6917 3 109000060
6630 6918 3 109000070
6631 6919 3 109000080
6632 6920 3 105000060
6633 6921 3 105000070
6634 6922 3 105000080
6635 6923 3 104000050
6636 6924 3 106000050
6637 6925 3 102000060
6638 6926 3 102000070
6639 6927 3 102000080
6640 6928 3 103000050
6641 6929 3 105000050
6642 6930 3 107000060
6643 6931 3 107000070
6644 6932 3 107000080
6645 6933 3 108000050
6646 6934 3 109000050
6647 6935 3 103000060
6648 6936 3 103000070
6649 6937 3 103000080
6650 6938 3 110000050
6651 6939 3 106000060
6652 6940 3 106000070
6653 6941 3 106000080
6654 6942 3 101000070
6655 6943 3 110000060
6656 6944 3 104000060
6657 6945 3 104000070
6658 6946 3 104000080
6659 6947 3 102000050
6660 6948 3 104000170
6661 6949 3 104000260
6662 6950 3 111000010
6663 6951 3 111000020
6664 6952 3 111000030
6665 6953 3 112000020
6666 6954 3 112000030
6667 6955 3 108000060
6668 6956 3 108000070
6669 6957 3 108000080
6670 6958 3 107000050
6671 6959 3 112000010
6672 6960 3 110000070
6673 6961 3 110000080
6674 6962 3 118000020
6675 6963 3 118000030
6676 6964 3 118000040
6677 6965 4 101000090
6678 6966 4 101000100
6679 6967 4 101000110
6680 6968 4 109000100
6681 6969 4 105000100
6682 6970 4 105000110
6683 6971 4 108000090
6684 6972 4 110000090
6685 6973 4 102000100
6686 6974 4 102000110
6687 6975 4 106000090
6688 6976 4 109000090
6689 6977 4 107000100
6690 6978 4 103000090
6691 6979 4 102000090
6692 6980 4 103000100
6693 6981 4 106000100
6694 6982 4 106000110
6695 6983 4 104000090
6696 6984 4 104000100
6697 6985 4 104000110
6698 6986 4 107000090
6699 6987 4 104000180
6700 6988 4 111000040
6701 6989 4 112000040
6702 6990 4 108000100
6703 6991 4 105000090
6704 6992 4 110000100
6705 6993 4 118000050
6706 6994 4 118000060
6707 6995 5 101000120
6708 6996 5 109000110
6709 6997 5 105000120
6710 6998 5 102000120
6711 6999 5 107000110
6712 7000 5 103000120
6713 7001 5 106000120
6714 7002 5 104000120
6715 7003 5 104000190
6716 7004 5 111000060
6717 7005 5 112000060
6718 7006 5 108000110
6719 7007 5 110000110
6720 7008 5 118000070
6721 7009 3 170004
6722 7010 3 180004
6723 7011 1 201000010
6724 7012 1 292000010
6725 7013 1 299000040
6726 7014 1 299000070
6727 7015 1 299000110
6728 7016 1 299000120
6729 7017 1 299000140
6730 7018 2 202000010
6731 7019 2 290000010
6732 7020 2 299000010
6733 7021 2 299000150
6734 7022 2 299000190
6735 7023 2 299000200
6736 7024 2 299000210
6737 7025 3 298000050
6738 7026 3 298000060
6739 7027 3 299000060
6740 7028 3 299000170
6741 7029 5 297000100
6742 7030 5 291000020
6743 7031 4 140000
6744 7032 5 150010
6745 7033 5 150020
6746 7034 5 150030
6747 7035 5 150040
6748 7037 3 101000050
6749 7038 3 101000060
6750 7039 3 101000080
6751 7040 3 101000040
6752 7041 3 109000060
6753 7042 3 109000070
6754 7043 3 109000080
6755 7044 3 105000060
6756 7045 3 105000070
6757 7046 3 105000080
6758 7047 3 104000050
6759 7048 3 106000050
6760 7049 3 102000060
6761 7050 3 102000070
6762 7051 3 102000080
6763 7052 3 103000050
6764 7053 3 105000050
6765 7054 3 107000060
6766 7055 3 107000070
6767 7056 3 107000080
6768 7057 3 108000050
6769 7058 3 109000050
6770 7059 3 103000060
6771 7060 3 103000070
6772 7061 3 103000080
6773 7062 3 110000050
6774 7063 3 106000060
6775 7064 3 106000070
6776 7065 3 106000080
6777 7066 3 101000070
6778 7067 3 110000060
6779 7068 3 104000060
6780 7069 3 104000070
6781 7070 3 104000080
6782 7071 3 102000050
6783 7072 3 104000170
6784 7073 3 104000260
6785 7074 3 111000010
6786 7075 3 111000020
6787 7076 3 111000030
6788 7077 3 112000020
6789 7078 3 112000030
6790 7079 3 108000060
6791 7080 3 108000070
6792 7081 3 108000080
6793 7082 3 107000050
6794 7083 3 112000010
6795 7084 3 110000070
6796 7085 3 110000080
6797 7086 3 118000020
6798 7087 3 118000030
6799 7088 3 118000040
6800 7089 4 101000090
6801 7090 4 101000100
6802 7091 4 101000110
6803 7092 4 109000100
6804 7093 4 105000100
6805 7094 4 105000110
6806 7095 4 108000090
6807 7096 4 110000090
6808 7097 4 102000100
6809 7098 4 102000110
6810 7099 4 106000090
6811 7100 4 109000090
6812 7101 4 107000100
6813 7102 4 103000090
6814 7103 4 102000090
6815 7104 4 103000100
6816 7105 4 106000100
6817 7106 4 106000110
6818 7107 4 104000090
6819 7108 4 104000100
6820 7109 4 104000110
6821 7110 4 107000090
6822 7111 4 104000180
6823 7112 4 111000040
6824 7113 4 112000040
6825 7114 4 108000100
6826 7115 4 105000090
6827 7116 4 110000100
6828 7117 4 118000050
6829 7118 4 118000060
6830 7119 5 101000120
6831 7120 5 109000110
6832 7121 5 105000120
6833 7122 5 102000120
6834 7123 5 107000110
6835 7124 5 103000120
6836 7125 5 106000120
6837 7126 5 104000120
6838 7127 5 104000190
6839 7128 5 111000060
6840 7129 5 112000060
6841 7130 5 108000110
6842 7131 5 110000110
6843 7132 5 118000070
6844 7133 3 170004
6845 7134 3 180004
6846 7135 1 201000010
6847 7136 1 292000010
6848 7137 1 299000040
6849 7138 1 299000070
6850 7139 1 299000110
6851 7140 1 299000120
6852 7141 1 299000140
6853 7142 2 202000010
6854 7143 2 290000010
6855 7144 2 299000010
6856 7145 2 299000150
6857 7146 2 299000190
6858 7147 2 299000200
6859 7148 2 299000210
6860 7149 3 298000050
6861 7150 3 298000060
6862 7151 3 299000060
6863 7152 3 299000170
6864 7153 5 297000100
6865 7154 5 291000020
6866 7155 4 140000
6867 7156 5 150010
6868 7157 5 150020
6869 7158 5 150030
6870 7159 5 150040
6871 7160 5 190000
6872 7161 5 200000
6873 7162 5 210000
6874 7164 3 118000020
6875 7165 3 118000030
6876 7166 3 118000040
6877 7167 3 106000060
6878 7168 3 106000070
6879 7169 3 106000080
6880 7170 3 101000070
6881 7171 3 110000060
6882 7172 3 104000060
6883 7173 3 104000070
6884 7174 3 104000080
6885 7175 3 102000050
6886 7176 3 104000170
6887 7177 3 104000260
6888 7178 4 118000050
6889 7179 4 118000060
6890 7180 4 106000100
6891 7181 4 106000110
6892 7182 4 104000090
6893 7183 4 104000100
6894 7184 4 104000110
6895 7185 4 104000270
6896 7186 4 107000090
6897 7187 4 104000180
6898 7188 5 118000070
6899 7189 5 106000120
6900 7190 5 104000120
6901 7191 5 104000190
6902 7192 1 103000000
6903 7193 2 103000001
6904 7194 3 103000002
6905 7195 4 103000003
6906 7196 5 103000004
6907 7197 1 111000000
6908 7198 2 111000001
6909 7199 3 111000002
6910 7200 4 111000003
6911 7201 5 111000004
6912 7202 1 115000000
6913 7203 2 115000001
6914 7204 3 115000002
6915 7205 4 115000003
6916 7206 5 115000004
6917 7207 3 170004
6918 7208 4 170005
6919 7209 3 180004
6920 7210 4 180005
6921 7211 4 140000
6922 7212 4 150010
6923 7213 4 150020
6924 7214 4 150030
6925 7215 4 150040
6926 7217 3 111000010
6927 7218 3 111000020
6928 7219 3 111000030
6929 7220 3 112000020
6930 7221 3 112000030
6931 7222 3 108000060
6932 7223 3 108000070
6933 7224 3 108000080
6934 7225 3 107000050
6935 7226 3 112000010
6936 7227 3 110000070
6937 7228 3 110000080
6938 7229 4 111000040
6939 7230 4 112000040
6940 7231 4 108000100
6941 7232 4 105000090
6942 7233 4 110000100
6943 7234 5 111000060
6944 7235 5 112000060
6945 7236 5 108000110
6946 7237 5 110000110
6947 7238 1 108000000
6948 7239 2 108000001
6949 7240 3 108000002
6950 7241 4 108000003
6951 7242 5 108000004
6952 7243 1 107000000
6953 7244 2 107000001
6954 7245 3 107000002
6955 7246 4 107000003
6956 7247 5 107000004
6957 7248 1 120000000
6958 7249 2 120000001
6959 7250 3 120000002
6960 7251 4 120000003
6961 7252 5 120000004
6962 7253 4 110024
6963 7254 4 110034
6964 7255 4 110044
6965 7256 4 110054
6966 7257 3 110060
6967 7258 3 110070
6968 7259 3 110080
6969 7260 3 110090
6970 7261 3 110100
6971 7262 3 110110
6972 7263 3 110120
6973 7264 3 110130
6974 7265 3 110140
6975 7266 3 110150
6976 7267 3 110160
6977 7268 3 110170
6978 7269 3 110180
6979 7270 3 110190
6980 7271 3 110200
6981 7272 3 110210
6982 7273 3 110220
6983 7274 3 110230
6984 7275 3 110240
6985 7276 3 110250
6986 7277 3 110260
6987 7278 3 110270
6988 7279 3 110620
6989 7280 3 110670
6990 7281 4 140000
6991 7282 4 150010
6992 7283 4 150020
6993 7284 4 150030
6994 7285 4 150040
6995 7287 3 101000050
6996 7288 3 101000060
6997 7289 3 101000080
6998 7290 3 101000040
6999 7291 3 109000060
7000 7292 3 109000070
7001 7293 3 109000080
7002 7294 3 105000060
7003 7295 3 105000070
7004 7296 3 105000080
7005 7297 3 104000050
7006 7298 3 106000050
7007 7299 4 101000090
7008 7300 4 101000100
7009 7301 4 101000110
7010 7302 4 109000100
7011 7303 4 105000100
7012 7304 4 105000110
7013 7305 4 108000090
7014 7306 4 110000090
7015 7307 5 101000120
7016 7308 5 109000110
7017 7309 5 105000120
7018 7310 1 101000000
7019 7311 2 101000001
7020 7312 3 101000002
7021 7313 4 101000008
7022 7314 5 101000004
7023 7315 1 109000000
7024 7316 2 109000001
7025 7317 3 109000002
7026 7318 4 109000003
7027 7319 5 109000004
7028 7320 4 120024
7029 7321 4 120034
7030 7322 4 120044
7031 7323 4 120054
7032 7324 3 120241
7033 7325 3 120251
7034 7326 3 120261
7035 7327 3 120271
7036 7328 3 120300
7037 7329 3 120310
7038 7330 3 120320
7039 7331 3 120330
7040 7332 3 120340
7041 7333 3 120350
7042 7334 3 120360
7043 7335 3 120370
7044 7336 3 120380
7045 7337 3 120390
7046 7338 3 120400
7047 7339 3 120410
7048 7340 3 120420
7049 7341 3 120430
7050 7342 3 120450
7051 7343 3 120460
7052 7344 3 120550
7053 7345 3 120560
7054 7346 3 120570
7055 7347 3 120990
7056 7348 3 121000
7057 7349 3 121010
7058 7350 3 121020
7059 7351 4 140000
7060 7352 4 150010
7061 7353 4 150020
7062 7354 4 150030
7063 7355 4 150040
7064 7357 3 102000060
7065 7358 3 102000070
7066 7359 3 102000080
7067 7360 3 103000050
7068 7361 3 105000050
7069 7362 3 107000060
7070 7363 3 107000070
7071 7364 3 107000080
7072 7365 3 108000050
7073 7366 3 109000050
7074 7367 3 103000060
7075 7368 3 103000070
7076 7369 3 103000080
7077 7370 3 110000050
7078 7371 4 102000100
7079 7372 4 102000110
7080 7373 4 106000090
7081 7374 4 109000090
7082 7375 4 107000100
7083 7376 4 103000090
7084 7377 4 102000090
7085 7378 4 103000100
7086 7379 5 102000120
7087 7380 5 107000110
7088 7381 5 103000120
7089 7382 1 102000000
7090 7383 2 102000001
7091 7384 3 102000002
7092 7385 4 102000003
7093 7386 5 102000004
7094 7387 1 105000000
7095 7388 2 105000001
7096 7389 3 105000002
7097 7390 4 105000003
7098 7391 5 105000004
7099 7392 1 112000000
7100 7393 2 112000001
7101 7394 3 112000002
7102 7395 4 112000003
7103 7396 5 112000004
7104 7397 4 130024
7105 7398 4 130034
7106 7399 4 130044
7107 7400 4 130054
7108 7401 3 130060
7109 7402 3 130070
7110 7403 3 130080
7111 7404 3 130090
7112 7405 3 130100
7113 7406 3 130110
7114 7407 3 130120
7115 7408 3 130130
7116 7409 3 130140
7117 7410 3 130150
7118 7411 3 130160
7119 7412 3 130170
7120 7413 3 130180
7121 7414 3 130190
7122 7415 3 130200
7123 7416 3 130420
7124 7417 3 130510
7125 7418 3 130520
7126 7419 3 130530
7127 7420 3 130540
7128 7421 3 130660
7129 7422 3 130790
7130 7423 3 130800
7131 7424 4 140000
7132 7425 4 150010
7133 7426 4 150020
7134 7427 4 150030
7135 7428 4 150040
7136 7430 1 101000010
7137 7431 1 102000010
7138 7432 1 103000010
7139 7433 1 104000010
7140 7434 1 105000010
7141 7435 1 106000010
7142 7436 1 107000010
7143 7437 1 108000010
7144 7438 1 109000010
7145 7439 1 110000010
7146 7440 2 101000020
7147 7441 2 101000030
7148 7442 2 102000020
7149 7443 2 102000030
7150 7444 2 102000040
7151 7445 2 103000020
7152 7446 2 103000030
7153 7447 2 103000040
7154 7448 2 104000020
7155 7449 2 104000030
7156 7450 2 104000040
7157 7451 2 105000020
7158 7452 2 105000030
7159 7453 2 105000040
7160 7454 2 106000020
7161 7455 2 106000030
7162 7456 2 106000040
7163 7457 2 107000020
7164 7458 2 107000030
7165 7459 2 107000040
7166 7460 2 108000020
7167 7461 2 108000030
7168 7462 2 108000040
7169 7463 2 109000020
7170 7464 2 109000030
7171 7465 2 109000040
7172 7466 2 110000020
7173 7467 2 110000030
7174 7468 2 110000040
7175 7469 2 118000010
7176 7470 3 101000050
7177 7471 3 101000060
7178 7472 3 101000080
7179 7473 3 101000040
7180 7474 3 109000060
7181 7475 3 109000070
7182 7476 3 109000080
7183 7477 3 105000060
7184 7478 3 105000070
7185 7479 3 105000080
7186 7480 3 104000050
7187 7481 3 106000050
7188 7482 3 102000060
7189 7483 3 102000070
7190 7484 3 102000080
7191 7485 3 103000050
7192 7486 3 105000050
7193 7487 3 107000060
7194 7488 3 107000070
7195 7489 3 107000080
7196 7490 3 108000050
7197 7491 3 109000050
7198 7492 3 103000060
7199 7493 3 103000070
7200 7494 3 103000080
7201 7495 3 110000050
7202 7496 3 106000060
7203 7497 3 106000070
7204 7498 3 106000080
7205 7499 3 101000070
7206 7500 3 110000060
7207 7501 3 104000060
7208 7502 3 104000070
7209 7503 3 104000080
7210 7504 3 102000050
7211 7505 3 104000170
7212 7506 3 104000260
7213 7507 3 111000010
7214 7508 3 111000020
7215 7509 3 111000030
7216 7510 3 112000020
7217 7511 3 112000030
7218 7512 3 108000060
7219 7513 3 108000070
7220 7514 3 108000080
7221 7515 3 107000050
7222 7516 3 112000010
7223 7517 3 110000070
7224 7518 3 110000080
7225 7519 3 118000020
7226 7520 3 118000030
7227 7521 3 118000040
7228 7522 4 101000090
7229 7523 4 101000100
7230 7524 4 101000110
7231 7525 4 109000100
7232 7526 4 105000100
7233 7527 4 105000110
7234 7528 4 108000090
7235 7529 4 110000090
7236 7530 4 102000100
7237 7531 4 102000110
7238 7532 4 106000090
7239 7533 4 109000090
7240 7534 4 107000100
7241 7535 4 103000090
7242 7536 4 102000090
7243 7537 4 103000100
7244 7538 4 106000100
7245 7539 4 106000110
7246 7540 4 104000090
7247 7541 4 104000100
7248 7542 4 104000110
7249 7543 4 107000090
7250 7544 4 104000180
7251 7545 4 111000040
7252 7546 4 112000040
7253 7547 4 108000100
7254 7548 4 105000090
7255 7549 4 110000100
7256 7550 4 118000050
7257 7551 4 118000060
7258 7552 5 101000120
7259 7553 5 109000110
7260 7554 5 105000120
7261 7555 5 102000120
7262 7556 5 107000110
7263 7557 5 103000120
7264 7558 5 106000120
7265 7559 5 104000120
7266 7560 5 104000190
7267 7561 5 111000060
7268 7562 5 112000060
7269 7563 5 108000110
7270 7564 5 110000110
7271 7565 5 118000070
7272 7566 1 170002
7273 7567 2 170003
7274 7568 3 170004
7275 7569 1 180002
7276 7570 2 180003
7277 7571 3 180004
7278 7572 1 201000010
7279 7573 1 292000010
7280 7574 1 299000040
7281 7575 1 299000070
7282 7576 1 299000110
7283 7577 1 299000120
7284 7578 1 299000140
7285 7579 2 202000010
7286 7580 2 290000010
7287 7581 2 299000010
7288 7582 2 299000150
7289 7583 2 299000190
7290 7584 2 299000200
7291 7585 2 299000210
7292 7586 3 298000050
7293 7587 3 298000060
7294 7588 3 299000060
7295 7589 3 299000170
7296 7590 3 290000120
7297 7591 3 291000050
7298 7592 3 292000020
7299 7593 4 299000670
7300 7594 4 299000680
7301 7595 4 204000010
7302 7596 5 297000100
7303 7597 5 291000020
7304 7598 5 297000130
7305 7599 5 297000140
7306 7600 5 203000010
7307 7601 4 140000
7308 7602 5 150010
7309 7603 5 150020
7310 7604 5 150030
7311 7605 5 150040
7312 7607 1 101000010
7313 7608 1 102000010
7314 7609 1 103000010
7315 7610 1 104000010
7316 7611 1 105000010
7317 7612 1 106000010
7318 7613 1 107000010
7319 7614 1 108000010
7320 7615 1 109000010
7321 7616 1 110000010
7322 7617 2 101000020
7323 7618 2 101000030
7324 7619 2 102000020
7325 7620 2 102000030
7326 7621 2 102000040
7327 7622 2 103000020
7328 7623 2 103000030
7329 7624 2 103000040
7330 7625 2 104000020
7331 7626 2 104000030
7332 7627 2 104000040
7333 7628 2 105000020
7334 7629 2 105000030
7335 7630 2 105000040
7336 7631 2 106000020
7337 7632 2 106000030
7338 7633 2 106000040
7339 7634 2 107000020
7340 7635 2 107000030
7341 7636 2 107000040
7342 7637 2 108000020
7343 7638 2 108000030
7344 7639 2 108000040
7345 7640 2 109000020
7346 7641 2 109000030
7347 7642 2 109000040
7348 7643 2 110000020
7349 7644 2 110000030
7350 7645 2 110000040
7351 7646 2 118000010
7352 7647 3 101000050
7353 7648 3 101000060
7354 7649 3 101000080
7355 7650 3 101000040
7356 7651 3 109000060
7357 7652 3 109000070
7358 7653 3 109000080
7359 7654 3 105000060
7360 7655 3 105000070
7361 7656 3 105000080
7362 7657 3 104000050
7363 7658 3 106000050
7364 7659 3 102000060
7365 7660 3 102000070
7366 7661 3 102000080
7367 7662 3 103000050
7368 7663 3 105000050
7369 7664 3 107000060
7370 7665 3 107000070
7371 7666 3 107000080
7372 7667 3 108000050
7373 7668 3 109000050
7374 7669 3 103000060
7375 7670 3 103000070
7376 7671 3 103000080
7377 7672 3 110000050
7378 7673 3 106000060
7379 7674 3 106000070
7380 7675 3 106000080
7381 7676 3 101000070
7382 7677 3 110000060
7383 7678 3 104000060
7384 7679 3 104000070
7385 7680 3 104000080
7386 7681 3 102000050
7387 7682 3 104000170
7388 7683 3 104000260
7389 7684 3 111000010
7390 7685 3 111000020
7391 7686 3 111000030
7392 7687 3 112000020
7393 7688 3 112000030
7394 7689 3 108000060
7395 7690 3 108000070
7396 7691 3 108000080
7397 7692 3 107000050
7398 7693 3 112000010
7399 7694 3 110000070
7400 7695 3 110000080
7401 7696 3 118000020
7402 7697 3 118000030
7403 7698 3 118000040
7404 7699 4 101000090
7405 7700 4 101000100
7406 7701 4 101000110
7407 7702 4 109000100
7408 7703 4 105000100
7409 7704 4 105000110
7410 7705 4 108000090
7411 7706 4 110000090
7412 7707 4 102000100
7413 7708 4 102000110
7414 7709 4 106000090
7415 7710 4 109000090
7416 7711 4 107000100
7417 7712 4 103000090
7418 7713 4 102000090
7419 7714 4 103000100
7420 7715 4 106000100
7421 7716 4 106000110
7422 7717 4 104000090
7423 7718 4 104000100
7424 7719 4 104000110
7425 7720 4 107000090
7426 7721 4 104000180
7427 7722 4 111000040
7428 7723 4 112000040
7429 7724 4 108000100
7430 7725 4 105000090
7431 7726 4 110000100
7432 7727 4 118000050
7433 7728 4 118000060
7434 7729 5 101000120
7435 7730 5 109000110
7436 7731 5 105000120
7437 7732 5 102000120
7438 7733 5 107000110
7439 7734 5 103000120
7440 7735 5 106000120
7441 7736 5 104000120
7442 7737 5 104000190
7443 7738 5 111000060
7444 7739 5 112000060
7445 7740 5 108000110
7446 7741 5 110000110
7447 7742 5 118000070
7448 7743 2 170003
7449 7744 3 170004
7450 7745 2 180003
7451 7746 3 180004
7452 7747 1 201000010
7453 7748 1 292000010
7454 7749 1 299000040
7455 7750 1 299000070
7456 7751 1 299000110
7457 7752 1 299000120
7458 7753 1 299000140
7459 7754 2 202000010
7460 7755 2 290000010
7461 7756 2 299000010
7462 7757 2 299000150
7463 7758 2 299000190
7464 7759 2 299000200
7465 7760 2 299000210
7466 7761 3 298000050
7467 7762 3 298000060
7468 7763 3 299000060
7469 7764 3 299000170
7470 7765 3 290000120
7471 7766 3 291000050
7472 7767 3 292000020
7473 7768 4 299000670
7474 7769 4 299000680
7475 7770 4 204000010
7476 7771 5 297000100
7477 7772 5 291000020
7478 7773 5 297000130
7479 7774 5 297000140
7480 7775 5 203000010
7481 7776 4 140000
7482 7777 5 150010
7483 7778 5 150020
7484 7779 5 150030
7485 7780 5 150040
7486 7782 3 101000050
7487 7783 3 101000060
7488 7784 3 101000080
7489 7785 3 101000040
7490 7786 3 109000060
7491 7787 3 109000070
7492 7788 3 109000080
7493 7789 3 105000060
7494 7790 3 105000070
7495 7791 3 105000080
7496 7792 3 104000050
7497 7793 3 106000050
7498 7794 3 102000060
7499 7795 3 102000070
7500 7796 3 102000080
7501 7797 3 103000050
7502 7798 3 105000050
7503 7799 3 107000060
7504 7800 3 107000070
7505 7801 3 107000080
7506 7802 3 108000050
7507 7803 3 109000050
7508 7804 3 103000060
7509 7805 3 103000070
7510 7806 3 103000080
7511 7807 3 110000050
7512 7808 3 106000060
7513 7809 3 106000070
7514 7810 3 106000080
7515 7811 3 101000070
7516 7812 3 110000060
7517 7813 3 104000060
7518 7814 3 104000070
7519 7815 3 104000080
7520 7816 3 102000050
7521 7817 3 104000170
7522 7818 3 104000260
7523 7819 3 111000010
7524 7820 3 111000020
7525 7821 3 111000030
7526 7822 3 112000020
7527 7823 3 112000030
7528 7824 3 108000060
7529 7825 3 108000070
7530 7826 3 108000080
7531 7827 3 107000050
7532 7828 3 112000010
7533 7829 3 110000070
7534 7830 3 110000080
7535 7831 3 118000020
7536 7832 3 118000030
7537 7833 3 118000040
7538 7834 4 101000090
7539 7835 4 101000100
7540 7836 4 101000110
7541 7837 4 109000100
7542 7838 4 105000100
7543 7839 4 105000110
7544 7840 4 108000090
7545 7841 4 110000090
7546 7842 4 102000100
7547 7843 4 102000110
7548 7844 4 106000090
7549 7845 4 109000090
7550 7846 4 107000100
7551 7847 4 103000090
7552 7848 4 102000090
7553 7849 4 103000100
7554 7850 4 106000100
7555 7851 4 106000110
7556 7852 4 104000090
7557 7853 4 104000100
7558 7854 4 104000110
7559 7855 4 107000090
7560 7856 4 104000180
7561 7857 4 111000040
7562 7858 4 112000040
7563 7859 4 108000100
7564 7860 4 105000090
7565 7861 4 110000100
7566 7862 4 118000050
7567 7863 4 118000060
7568 7864 5 101000120
7569 7865 5 109000110
7570 7866 5 105000120
7571 7867 5 102000120
7572 7868 5 107000110
7573 7869 5 103000120
7574 7870 5 106000120
7575 7871 5 104000120
7576 7872 5 104000190
7577 7873 5 111000060
7578 7874 5 112000060
7579 7875 5 108000110
7580 7876 5 110000110
7581 7877 5 118000070
7582 7878 3 170004
7583 7879 3 180004
7584 7880 1 201000010
7585 7881 1 292000010
7586 7882 1 299000040
7587 7883 1 299000070
7588 7884 1 299000110
7589 7885 1 299000120
7590 7886 1 299000140
7591 7887 2 202000010
7592 7888 2 290000010
7593 7889 2 299000010
7594 7890 2 299000150
7595 7891 2 299000190
7596 7892 2 299000200
7597 7893 2 299000210
7598 7894 3 298000050
7599 7895 3 298000060
7600 7896 3 299000060
7601 7897 3 299000170
7602 7898 3 290000120
7603 7899 3 291000050
7604 7900 3 292000020
7605 7901 4 299000670
7606 7902 4 299000680
7607 7903 4 204000010
7608 7904 5 297000100
7609 7905 5 291000020
7610 7906 5 297000130
7611 7907 5 297000140
7612 7908 5 203000010
7613 7909 4 140000
7614 7910 5 150010
7615 7911 5 150020
7616 7912 5 150030
7617 7913 5 150040
7618 7915 3 101000050
7619 7916 3 101000060
7620 7917 3 101000080
7621 7918 3 101000040
7622 7919 3 109000060
7623 7920 3 109000070
7624 7921 3 109000080
7625 7922 3 105000060
7626 7923 3 105000070
7627 7924 3 105000080
7628 7925 3 104000050
7629 7926 3 106000050
7630 7927 3 102000060
7631 7928 3 102000070
7632 7929 3 102000080
7633 7930 3 103000050
7634 7931 3 105000050
7635 7932 3 107000060
7636 7933 3 107000070
7637 7934 3 107000080
7638 7935 3 108000050
7639 7936 3 109000050
7640 7937 3 103000060
7641 7938 3 103000070
7642 7939 3 103000080
7643 7940 3 110000050
7644 7941 3 106000060
7645 7942 3 106000070
7646 7943 3 106000080
7647 7944 3 101000070
7648 7945 3 110000060
7649 7946 3 104000060
7650 7947 3 104000070
7651 7948 3 104000080
7652 7949 3 102000050
7653 7950 3 104000170
7654 7951 3 104000260
7655 7952 3 111000010
7656 7953 3 111000020
7657 7954 3 111000030
7658 7955 3 112000020
7659 7956 3 112000030
7660 7957 3 108000060
7661 7958 3 108000070
7662 7959 3 108000080
7663 7960 3 107000050
7664 7961 3 112000010
7665 7962 3 110000070
7666 7963 3 110000080
7667 7964 3 118000020
7668 7965 3 118000030
7669 7966 3 118000040
7670 7967 4 101000090
7671 7968 4 101000100
7672 7969 4 101000110
7673 7970 4 109000100
7674 7971 4 105000100
7675 7972 4 105000110
7676 7973 4 108000090
7677 7974 4 110000090
7678 7975 4 102000100
7679 7976 4 102000110
7680 7977 4 106000090
7681 7978 4 109000090
7682 7979 4 107000100
7683 7980 4 103000090
7684 7981 4 102000090
7685 7982 4 103000100
7686 7983 4 106000100
7687 7984 4 106000110
7688 7985 4 104000090
7689 7986 4 104000100
7690 7987 4 104000110
7691 7988 4 107000090
7692 7989 4 104000180
7693 7990 4 111000040
7694 7991 4 112000040
7695 7992 4 108000100
7696 7993 4 105000090
7697 7994 4 110000100
7698 7995 4 118000050
7699 7996 4 118000060
7700 7997 5 101000120
7701 7998 5 109000110
7702 7999 5 105000120
7703 8000 5 102000120
7704 8001 5 107000110
7705 8002 5 103000120
7706 8003 5 106000120
7707 8004 5 104000120
7708 8005 5 104000190
7709 8006 5 111000060
7710 8007 5 112000060
7711 8008 5 108000110
7712 8009 5 110000110
7713 8010 5 118000070
7714 8011 3 170004
7715 8012 3 180004
7716 8013 1 201000010
7717 8014 1 292000010
7718 8015 1 299000040
7719 8016 1 299000070
7720 8017 1 299000110
7721 8018 1 299000120
7722 8019 1 299000140
7723 8020 2 202000010
7724 8021 2 290000010
7725 8022 2 299000010
7726 8023 2 299000150
7727 8024 2 299000190
7728 8025 2 299000200
7729 8026 2 299000210
7730 8027 3 298000050
7731 8028 3 298000060
7732 8029 3 299000060
7733 8030 3 299000170
7734 8031 3 290000120
7735 8032 3 291000050
7736 8033 3 292000020
7737 8034 4 299000670
7738 8035 4 299000680
7739 8036 4 204000010
7740 8037 5 297000100
7741 8038 5 291000020
7742 8039 5 297000130
7743 8040 5 297000140
7744 8041 5 203000010
7745 8042 4 140000
7746 8043 5 150010
7747 8044 5 150020
7748 8045 5 150030
7749 8046 5 150040
7750 8048 3 101000050
7751 8049 3 101000060
7752 8050 3 101000080
7753 8051 3 101000040
7754 8052 3 109000060
7755 8053 3 109000070
7756 8054 3 109000080
7757 8055 3 105000060
7758 8056 3 105000070
7759 8057 3 105000080
7760 8058 3 104000050
7761 8059 3 106000050
7762 8060 3 102000060
7763 8061 3 102000070
7764 8062 3 102000080
7765 8063 3 103000050
7766 8064 3 105000050
7767 8065 3 107000060
7768 8066 3 107000070
7769 8067 3 107000080
7770 8068 3 108000050
7771 8069 3 109000050
7772 8070 3 103000060
7773 8071 3 103000070
7774 8072 3 103000080
7775 8073 3 110000050
7776 8074 3 106000060
7777 8075 3 106000070
7778 8076 3 106000080
7779 8077 3 101000070
7780 8078 3 110000060
7781 8079 3 104000060
7782 8080 3 104000070
7783 8081 3 104000080
7784 8082 3 102000050
7785 8083 3 104000170
7786 8084 3 104000260
7787 8085 3 111000010
7788 8086 3 111000020
7789 8087 3 111000030
7790 8088 3 112000020
7791 8089 3 112000030
7792 8090 3 108000060
7793 8091 3 108000070
7794 8092 3 108000080
7795 8093 3 107000050
7796 8094 3 112000010
7797 8095 3 110000070
7798 8096 3 110000080
7799 8097 3 118000020
7800 8098 3 118000030
7801 8099 3 118000040
7802 8100 4 101000090
7803 8101 4 101000100
7804 8102 4 101000110
7805 8103 4 109000100
7806 8104 4 105000100
7807 8105 4 105000110
7808 8106 4 108000090
7809 8107 4 110000090
7810 8108 4 102000100
7811 8109 4 102000110
7812 8110 4 106000090
7813 8111 4 109000090
7814 8112 4 107000100
7815 8113 4 103000090
7816 8114 4 102000090
7817 8115 4 103000100
7818 8116 4 106000100
7819 8117 4 106000110
7820 8118 4 104000090
7821 8119 4 104000100
7822 8120 4 104000110
7823 8121 4 107000090
7824 8122 4 104000180
7825 8123 4 111000040
7826 8124 4 112000040
7827 8125 4 108000100
7828 8126 4 105000090
7829 8127 4 110000100
7830 8128 4 118000050
7831 8129 4 118000060
7832 8130 5 101000120
7833 8131 5 109000110
7834 8132 5 105000120
7835 8133 5 102000120
7836 8134 5 107000110
7837 8135 5 103000120
7838 8136 5 106000120
7839 8137 5 104000120
7840 8138 5 104000190
7841 8139 5 111000060
7842 8140 5 112000060
7843 8141 5 108000110
7844 8142 5 110000110
7845 8143 5 118000070
7846 8144 3 170004
7847 8145 3 180004
7848 8146 1 201000010
7849 8147 1 292000010
7850 8148 1 299000040
7851 8149 1 299000070
7852 8150 1 299000110
7853 8151 1 299000120
7854 8152 1 299000140
7855 8153 2 202000010
7856 8154 2 290000010
7857 8155 2 299000010
7858 8156 2 299000150
7859 8157 2 299000190
7860 8158 2 299000200
7861 8159 2 299000210
7862 8160 3 298000050
7863 8161 3 298000060
7864 8162 3 299000060
7865 8163 3 299000170
7866 8164 3 290000120
7867 8165 3 291000050
7868 8166 3 292000020
7869 8167 4 299000670
7870 8168 4 299000680
7871 8169 4 204000010
7872 8170 5 297000100
7873 8171 5 291000020
7874 8172 5 297000130
7875 8173 5 297000140
7876 8174 5 203000010
7877 8175 4 140000
7878 8176 5 150010
7879 8177 5 150020
7880 8178 5 150030
7881 8179 5 150040
7882 8180 5 190000
7883 8181 5 200000
7884 8182 5 210000
7885 8184 3 102000060
7886 8185 3 102000070
7887 8186 3 102000080
7888 8187 3 103000050
7889 8188 3 105000050
7890 8189 3 107000060
7891 8190 3 107000070
7892 8191 3 107000080
7893 8192 3 108000050
7894 8193 3 109000050
7895 8194 3 103000060
7896 8195 3 103000070
7897 8196 3 103000080
7898 8197 3 110000050
7899 8198 4 102000100
7900 8199 4 102000110
7901 8200 4 106000090
7902 8201 4 109000090
7903 8202 4 107000100
7904 8203 4 103000090
7905 8204 4 102000090
7906 8205 4 103000100
7907 8206 5 102000120
7908 8207 5 107000110
7909 8208 5 103000120
7910 8209 1 102000000
7911 8210 2 102000001
7912 8211 3 102000002
7913 8212 4 102000003
7914 8213 5 102000004
7915 8214 1 105000000
7916 8215 2 105000001
7917 8216 3 105000002
7918 8217 4 105000003
7919 8218 5 105000004
7920 8219 1 112000000
7921 8220 2 112000001
7922 8221 3 112000002
7923 8222 4 112000003
7924 8223 5 112000004
7925 8224 3 170004
7926 8225 4 170005
7927 8226 3 180004
7928 8227 4 180005
7929 8228 4 140000
7930 8229 4 150010
7931 8230 4 150020
7932 8231 4 150030
7933 8232 4 150040
7934 8234 3 118000020
7935 8235 3 118000030
7936 8236 3 118000040
7937 8237 3 106000060
7938 8238 3 106000070
7939 8239 3 106000080
7940 8240 3 101000070
7941 8241 3 110000060
7942 8242 3 104000060
7943 8243 3 104000070
7944 8244 3 104000080
7945 8245 3 102000050
7946 8246 3 104000170
7947 8247 3 104000260
7948 8248 4 118000050
7949 8249 4 118000060
7950 8250 4 106000100
7951 8251 4 106000110
7952 8252 4 104000090
7953 8253 4 104000100
7954 8254 4 104000110
7955 8255 4 104000270
7956 8256 4 107000090
7957 8257 4 104000180
7958 8258 5 118000070
7959 8259 5 106000120
7960 8260 5 104000120
7961 8261 5 104000190
7962 8262 1 103000000
7963 8263 2 103000001
7964 8264 3 103000002
7965 8265 4 103000003
7966 8266 5 103000004
7967 8267 1 111000000
7968 8268 2 111000001
7969 8269 3 111000002
7970 8270 4 111000003
7971 8271 5 111000004
7972 8272 1 115000000
7973 8273 2 115000001
7974 8274 3 115000002
7975 8275 4 115000003
7976 8276 5 115000004
7977 8277 4 110024
7978 8278 4 110034
7979 8279 4 110044
7980 8280 4 110054
7981 8281 3 110060
7982 8282 3 110070
7983 8283 3 110080
7984 8284 3 110090
7985 8285 3 110100
7986 8286 3 110110
7987 8287 3 110120
7988 8288 3 110130
7989 8289 3 110140
7990 8290 3 110150
7991 8291 3 110160
7992 8292 3 110170
7993 8293 3 110180
7994 8294 3 110190
7995 8295 3 110200
7996 8296 3 110210
7997 8297 3 110220
7998 8298 3 110230
7999 8299 3 110240
8000 8300 3 110250
8001 8301 3 110260
8002 8302 3 110270
8003 8303 3 110620
8004 8304 3 110670
8005 8305 4 140000
8006 8306 4 150010
8007 8307 4 150020
8008 8308 4 150030
8009 8309 4 150040
8010 8311 3 111000010
8011 8312 3 111000020
8012 8313 3 111000030
8013 8314 3 112000020
8014 8315 3 112000030
8015 8316 3 108000060
8016 8317 3 108000070
8017 8318 3 108000080
8018 8319 3 107000050
8019 8320 3 112000010
8020 8321 3 110000070
8021 8322 3 110000080
8022 8323 4 111000040
8023 8324 4 112000040
8024 8325 4 108000100
8025 8326 4 105000090
8026 8327 4 110000100
8027 8328 5 111000060
8028 8329 5 112000060
8029 8330 5 108000110
8030 8331 5 110000110
8031 8332 1 108000000
8032 8333 2 108000001
8033 8334 3 108000002
8034 8335 4 108000003
8035 8336 5 108000004
8036 8337 1 107000000
8037 8338 2 107000001
8038 8339 3 107000002
8039 8340 4 107000003
8040 8341 5 107000004
8041 8342 1 120000000
8042 8343 2 120000001
8043 8344 3 120000002
8044 8345 4 120000003
8045 8346 5 120000004
8046 8347 4 120024
8047 8348 4 120034
8048 8349 4 120044
8049 8350 4 120054
8050 8351 3 120241
8051 8352 3 120251
8052 8353 3 120261
8053 8354 3 120271
8054 8355 3 120300
8055 8356 3 120310
8056 8357 3 120320
8057 8358 3 120330
8058 8359 3 120340
8059 8360 3 120350
8060 8361 3 120360
8061 8362 3 120370
8062 8363 3 120380
8063 8364 3 120390
8064 8365 3 120400
8065 8366 3 120410
8066 8367 3 120420
8067 8368 3 120430
8068 8369 3 120450
8069 8370 3 120460
8070 8371 3 120550
8071 8372 3 120560
8072 8373 3 120570
8073 8374 3 120990
8074 8375 3 121000
8075 8376 3 121010
8076 8377 3 121020
8077 8378 4 140000
8078 8379 4 150010
8079 8380 4 150020
8080 8381 4 150030
8081 8382 4 150040
8082 8384 3 101000050
8083 8385 3 101000060
8084 8386 3 101000080
8085 8387 3 101000040
8086 8388 3 109000060
8087 8389 3 109000070
8088 8390 3 109000080
8089 8391 3 105000060
8090 8392 3 105000070
8091 8393 3 105000080
8092 8394 3 104000050
8093 8395 3 106000050
8094 8396 4 101000090
8095 8397 4 101000100
8096 8398 4 101000110
8097 8399 4 109000100
8098 8400 4 105000100
8099 8401 4 105000110
8100 8402 4 108000090
8101 8403 4 110000090
8102 8404 5 101000120
8103 8405 5 109000110
8104 8406 5 105000120
8105 8407 1 101000000
8106 8408 2 101000001
8107 8409 3 101000002
8108 8410 4 101000008
8109 8411 5 101000004
8110 8412 1 109000000
8111 8413 2 109000001
8112 8414 3 109000002
8113 8415 4 109000003
8114 8416 5 109000004
8115 8417 4 130024
8116 8418 4 130034
8117 8419 4 130044
8118 8420 4 130054
8119 8421 3 130060
8120 8422 3 130070
8121 8423 3 130080
8122 8424 3 130090
8123 8425 3 130100
8124 8426 3 130110
8125 8427 3 130120
8126 8428 3 130130
8127 8429 3 130140
8128 8430 3 130150
8129 8431 3 130160
8130 8432 3 130170
8131 8433 3 130180
8132 8434 3 130190
8133 8435 3 130200
8134 8436 3 130420
8135 8437 3 130510
8136 8438 3 130520
8137 8439 3 130531
8138 8440 3 130540
8139 8441 3 130660
8140 8442 3 130790
8141 8443 3 130800
8142 8444 3 131130
8143 8445 4 140000
8144 8446 4 150010
8145 8447 4 150020
8146 8448 4 150030
8147 8449 4 150040
8148 8451 1 101000000
8149 8452 2 101000001
8150 8453 3 101000002
8151 8454 4 101000008
8152 8455 5 101000004
8153 8456 1 102000000
8154 8457 2 102000001
8155 8458 3 102000002
8156 8459 4 102000003
8157 8460 5 102000004
8158 8461 1 103000000
8159 8462 2 103000001
8160 8463 3 103000002
8161 8464 4 103000003
8162 8465 5 103000004
8163 8466 1 105000000
8164 8467 2 105000001
8165 8468 3 105000002
8166 8469 4 105000003
8167 8470 5 105000004
8168 8471 1 108000000
8169 8472 2 108000001
8170 8473 3 108000002
8171 8474 4 108000003
8172 8475 5 108000004
8173 8476 1 109000000
8174 8477 2 109000001
8175 8478 3 109000002
8176 8479 4 109000003
8177 8480 5 109000004
8178 8481 1 111000000
8179 8482 2 111000001
8180 8483 3 111000002
8181 8484 4 111000003
8182 8485 5 111000004
8183 8486 1 112000000
8184 8487 2 112000001
8185 8488 3 112000002
8186 8489 4 112000003
8187 8490 5 112000004
8188 8491 1 120000000
8189 8492 2 120000001
8190 8493 3 120000002
8191 8494 4 120000003
8192 8495 5 120000004
8193 8496 1 101000010
8194 8497 2 101000020
8195 8498 2 101000030
8196 8499 3 101000040
8197 8500 3 101000050
8198 8501 3 101000060
8199 8502 3 101000070
8200 8503 3 101000080
8201 8504 1 102000010
8202 8505 2 102000020
8203 8506 2 102000030
8204 8507 2 102000040
8205 8508 3 102000050
8206 8509 3 102000060
8207 8510 3 102000070
8208 8511 3 102000080
8209 8512 1 103000010
8210 8513 2 103000020
8211 8514 2 103000030
8212 8515 2 103000040
8213 8516 3 103000050
8214 8517 3 103000060
8215 8518 3 103000070
8216 8519 3 103000080
8217 8520 1 104000010
8218 8521 2 104000020
8219 8522 2 104000030
8220 8523 2 104000040
8221 8524 3 104000050
8222 8525 3 104000060
8223 8526 3 104000070
8224 8527 3 104000080
8225 8528 1 105000010
8226 8529 2 105000020
8227 8530 2 105000030
8228 8531 2 105000040
8229 8532 3 105000050
8230 8533 3 105000060
8231 8534 3 105000070
8232 8535 3 105000080
8233 8536 1 106000010
8234 8537 2 106000020
8235 8538 2 106000030
8236 8539 2 106000040
8237 8540 3 106000050
8238 8541 3 106000060
8239 8542 3 106000070
8240 8543 3 106000080
8241 8544 1 107000010
8242 8545 2 107000020
8243 8546 2 107000030
8244 8547 2 107000040
8245 8548 3 107000050
8246 8549 3 107000060
8247 8550 3 107000070
8248 8551 3 107000080
8249 8552 1 108000010
8250 8553 2 108000020
8251 8554 2 108000030
8252 8555 2 108000040
8253 8556 3 108000050
8254 8557 3 108000060
8255 8558 3 108000070
8256 8559 3 108000080
8257 8560 2 180000
8258 8561 2 170002
8259 8562 3 170003
8260 8563 4 170004
8261 8565 1 101000000
8262 8566 2 101000001
8263 8567 3 101000002
8264 8568 4 101000008
8265 8569 5 101000004
8266 8570 1 102000000
8267 8571 2 102000001
8268 8572 3 102000002
8269 8573 4 102000003
8270 8574 5 102000004
8271 8575 1 103000000
8272 8576 2 103000001
8273 8577 3 103000002
8274 8578 4 103000003
8275 8579 5 103000004
8276 8580 1 105000000
8277 8581 2 105000001
8278 8582 3 105000002
8279 8583 4 105000003
8280 8584 5 105000004
8281 8585 1 108000000
8282 8586 2 108000001
8283 8587 3 108000002
8284 8588 4 108000003
8285 8589 5 108000004
8286 8590 1 109000000
8287 8591 2 109000001
8288 8592 3 109000002
8289 8593 4 109000003
8290 8594 5 109000004
8291 8595 1 111000000
8292 8596 2 111000001
8293 8597 3 111000002
8294 8598 4 111000003
8295 8599 5 111000004
8296 8600 1 112000000
8297 8601 2 112000001
8298 8602 3 112000002
8299 8603 4 112000003
8300 8604 5 112000004
8301 8605 1 120000000
8302 8606 2 120000001
8303 8607 3 120000002
8304 8608 4 120000003
8305 8609 5 120000004
8306 8610 1 101000010
8307 8611 2 101000020
8308 8612 2 101000030
8309 8613 3 101000040
8310 8614 3 101000050
8311 8615 3 101000060
8312 8616 3 101000070
8313 8617 3 101000080
8314 8618 1 102000010
8315 8619 2 102000020
8316 8620 2 102000030
8317 8621 2 102000040
8318 8622 3 102000050
8319 8623 3 102000060
8320 8624 3 102000070
8321 8625 3 102000080
8322 8626 1 103000010
8323 8627 2 103000020
8324 8628 2 103000030
8325 8629 2 103000040
8326 8630 3 103000050
8327 8631 3 103000060
8328 8632 3 103000070
8329 8633 3 103000080
8330 8634 1 104000010
8331 8635 2 104000020
8332 8636 2 104000030
8333 8637 2 104000040
8334 8638 3 104000050
8335 8639 3 104000060
8336 8640 3 104000070
8337 8641 3 104000080
8338 8642 1 105000010
8339 8643 2 105000020
8340 8644 2 105000030
8341 8645 2 105000040
8342 8646 3 105000050
8343 8647 3 105000060
8344 8648 3 105000070
8345 8649 3 105000080
8346 8650 1 106000010
8347 8651 2 106000020
8348 8652 2 106000030
8349 8653 2 106000040
8350 8654 3 106000050
8351 8655 3 106000060
8352 8656 3 106000070
8353 8657 3 106000080
8354 8658 1 107000010
8355 8659 2 107000020
8356 8660 2 107000030
8357 8661 2 107000040
8358 8662 3 107000050
8359 8663 3 107000060
8360 8664 3 107000070
8361 8665 3 107000080
8362 8666 1 108000010
8363 8667 2 108000020
8364 8668 2 108000030
8365 8669 2 108000040
8366 8670 3 108000050
8367 8671 3 108000060
8368 8672 3 108000070
8369 8673 3 108000080
8370 8674 2 180000
8371 8675 2 170002
8372 8676 3 170003
8373 8677 4 170004
8374 8679 1 101000000
8375 8680 2 101000001
8376 8681 3 101000002
8377 8682 4 101000008
8378 8683 5 101000004
8379 8684 1 102000000
8380 8685 2 102000001
8381 8686 3 102000002
8382 8687 4 102000003
8383 8688 5 102000004
8384 8689 1 103000000
8385 8690 2 103000001
8386 8691 3 103000002
8387 8692 4 103000003
8388 8693 5 103000004
8389 8694 1 105000000
8390 8695 2 105000001
8391 8696 3 105000002
8392 8697 4 105000003
8393 8698 5 105000004
8394 8699 1 108000000
8395 8700 2 108000001
8396 8701 3 108000002
8397 8702 4 108000003
8398 8703 5 108000004
8399 8704 1 109000000
8400 8705 2 109000001
8401 8706 3 109000002
8402 8707 4 109000003
8403 8708 5 109000004
8404 8709 1 111000000
8405 8710 2 111000001
8406 8711 3 111000002
8407 8712 4 111000003
8408 8713 5 111000004
8409 8714 1 112000000
8410 8715 2 112000001
8411 8716 3 112000002
8412 8717 4 112000003
8413 8718 5 112000004
8414 8719 1 120000000
8415 8720 2 120000001
8416 8721 3 120000002
8417 8722 4 120000003
8418 8723 5 120000004
8419 8724 1 101000010
8420 8725 2 101000020
8421 8726 2 101000030
8422 8727 3 101000040
8423 8728 3 101000050
8424 8729 3 101000060
8425 8730 3 101000070
8426 8731 3 101000080
8427 8732 1 102000010
8428 8733 2 102000020
8429 8734 2 102000030
8430 8735 2 102000040
8431 8736 3 102000050
8432 8737 3 102000060
8433 8738 3 102000070
8434 8739 3 102000080
8435 8740 1 103000010
8436 8741 2 103000020
8437 8742 2 103000030
8438 8743 2 103000040
8439 8744 3 103000050
8440 8745 3 103000060
8441 8746 3 103000070
8442 8747 3 103000080
8443 8748 1 104000010
8444 8749 2 104000020
8445 8750 2 104000030
8446 8751 2 104000040
8447 8752 3 104000050
8448 8753 3 104000060
8449 8754 3 104000070
8450 8755 3 104000080
8451 8756 1 105000010
8452 8757 2 105000020
8453 8758 2 105000030
8454 8759 2 105000040
8455 8760 3 105000050
8456 8761 3 105000060
8457 8762 3 105000070
8458 8763 3 105000080
8459 8764 1 106000010
8460 8765 2 106000020
8461 8766 2 106000030
8462 8767 2 106000040
8463 8768 3 106000050
8464 8769 3 106000060
8465 8770 3 106000070
8466 8771 3 106000080
8467 8772 1 107000010
8468 8773 2 107000020
8469 8774 2 107000030
8470 8775 2 107000040
8471 8776 3 107000050
8472 8777 3 107000060
8473 8778 3 107000070
8474 8779 3 107000080
8475 8780 1 108000010
8476 8781 2 108000020
8477 8782 2 108000030
8478 8783 2 108000040
8479 8784 3 108000050
8480 8785 3 108000060
8481 8786 3 108000070
8482 8787 3 108000080
8483 8788 2 180001
8484 8789 2 170002
8485 8790 3 170003
8486 8791 4 170004
8487 8793 1 101000000
8488 8794 2 101000001
8489 8795 3 101000002
8490 8796 4 101000008
8491 8797 5 101000004
8492 8798 1 102000000
8493 8799 2 102000001
8494 8800 3 102000002
8495 8801 4 102000003
8496 8802 5 102000004
8497 8803 1 103000000
8498 8804 2 103000001
8499 8805 3 103000002
8500 8806 4 103000003
8501 8807 5 103000004
8502 8808 1 105000000
8503 8809 2 105000001
8504 8810 3 105000002
8505 8811 4 105000003
8506 8812 5 105000004
8507 8813 1 108000000
8508 8814 2 108000001
8509 8815 3 108000002
8510 8816 4 108000003
8511 8817 5 108000004
8512 8818 1 109000000
8513 8819 2 109000001
8514 8820 3 109000002
8515 8821 4 109000003
8516 8822 5 109000004
8517 8823 1 111000000
8518 8824 2 111000001
8519 8825 3 111000002
8520 8826 4 111000003
8521 8827 5 111000004
8522 8828 1 112000000
8523 8829 2 112000001
8524 8830 3 112000002
8525 8831 4 112000003
8526 8832 5 112000004
8527 8833 1 120000000
8528 8834 2 120000001
8529 8835 3 120000002
8530 8836 4 120000003
8531 8837 5 120000004
8532 8838 1 101000010
8533 8839 2 101000020
8534 8840 2 101000030
8535 8841 3 101000040
8536 8842 3 101000050
8537 8843 3 101000060
8538 8844 3 101000070
8539 8845 3 101000080
8540 8846 1 102000010
8541 8847 2 102000020
8542 8848 2 102000030
8543 8849 2 102000040
8544 8850 3 102000050
8545 8851 3 102000060
8546 8852 3 102000070
8547 8853 3 102000080
8548 8854 1 103000010
8549 8855 2 103000020
8550 8856 2 103000030
8551 8857 2 103000040
8552 8858 3 103000050
8553 8859 3 103000060
8554 8860 3 103000070
8555 8861 3 103000080
8556 8862 1 104000010
8557 8863 2 104000020
8558 8864 2 104000030
8559 8865 2 104000040
8560 8866 3 104000050
8561 8867 3 104000060
8562 8868 3 104000070
8563 8869 3 104000080
8564 8870 1 105000010
8565 8871 2 105000020
8566 8872 2 105000030
8567 8873 2 105000040
8568 8874 3 105000050
8569 8875 3 105000060
8570 8876 3 105000070
8571 8877 3 105000080
8572 8878 1 106000010
8573 8879 2 106000020
8574 8880 2 106000030
8575 8881 2 106000040
8576 8882 3 106000050
8577 8883 3 106000060
8578 8884 3 106000070
8579 8885 3 106000080
8580 8886 1 107000010
8581 8887 2 107000020
8582 8888 2 107000030
8583 8889 2 107000040
8584 8890 3 107000050
8585 8891 3 107000060
8586 8892 3 107000070
8587 8893 3 107000080
8588 8894 1 108000010
8589 8895 2 108000020
8590 8896 2 108000030
8591 8897 2 108000040
8592 8898 3 108000050
8593 8899 3 108000060
8594 8900 3 108000070
8595 8901 3 108000080
8596 8902 1 109000010
8597 8903 2 109000020
8598 8904 2 109000030
8599 8905 2 109000040
8600 8906 3 109000050
8601 8907 3 109000060
8602 8908 3 109000070
8603 8909 3 109000080
8604 8910 2 180001
8605 8911 2 170002
8606 8912 3 170003
8607 8913 4 170004
8608 8915 1 101000000
8609 8916 2 101000001
8610 8917 3 101000002
8611 8918 4 101000008
8612 8919 5 101000004
8613 8920 1 102000000
8614 8921 2 102000001
8615 8922 3 102000002
8616 8923 4 102000003
8617 8924 5 102000004
8618 8925 1 103000000
8619 8926 2 103000001
8620 8927 3 103000002
8621 8928 4 103000003
8622 8929 5 103000004
8623 8930 1 105000000
8624 8931 2 105000001
8625 8932 3 105000002
8626 8933 4 105000003
8627 8934 5 105000004
8628 8935 1 107000000
8629 8936 2 107000001
8630 8937 3 107000002
8631 8938 4 107000003
8632 8939 5 107000004
8633 8940 1 108000000
8634 8941 2 108000001
8635 8942 3 108000002
8636 8943 4 108000003
8637 8944 5 108000004
8638 8945 1 109000000
8639 8946 2 109000001
8640 8947 3 109000002
8641 8948 4 109000003
8642 8949 5 109000004
8643 8950 1 111000000
8644 8951 2 111000001
8645 8952 3 111000002
8646 8953 4 111000003
8647 8954 5 111000004
8648 8955 1 112000000
8649 8956 2 112000001
8650 8957 3 112000002
8651 8958 4 112000003
8652 8959 5 112000004
8653 8960 1 120000000
8654 8961 2 120000001
8655 8962 3 120000002
8656 8963 4 120000003
8657 8964 5 120000004
8658 8965 1 101000010
8659 8966 2 101000020
8660 8967 2 101000030
8661 8968 3 101000040
8662 8969 3 101000050
8663 8970 3 101000060
8664 8971 3 101000070
8665 8972 3 101000080
8666 8973 1 102000010
8667 8974 2 102000020
8668 8975 2 102000030
8669 8976 2 102000040
8670 8977 3 102000050
8671 8978 3 102000060
8672 8979 3 102000070
8673 8980 3 102000080
8674 8981 1 103000010
8675 8982 2 103000020
8676 8983 2 103000030
8677 8984 2 103000040
8678 8985 3 103000050
8679 8986 3 103000060
8680 8987 3 103000070
8681 8988 3 103000080
8682 8989 1 104000010
8683 8990 2 104000020
8684 8991 2 104000030
8685 8992 2 104000040
8686 8993 3 104000050
8687 8994 3 104000060
8688 8995 3 104000070
8689 8996 3 104000080
8690 8997 1 105000010
8691 8998 2 105000020
8692 8999 2 105000030
8693 9000 2 105000040
8694 9001 3 105000050
8695 9002 3 105000060
8696 9003 3 105000070
8697 9004 3 105000080
8698 9005 1 106000010
8699 9006 2 106000020
8700 9007 2 106000030
8701 9008 2 106000040
8702 9009 3 106000050
8703 9010 3 106000060
8704 9011 3 106000070
8705 9012 3 106000080
8706 9013 1 107000010
8707 9014 2 107000020
8708 9015 2 107000030
8709 9016 2 107000040
8710 9017 3 107000050
8711 9018 3 107000060
8712 9019 3 107000070
8713 9020 3 107000080
8714 9021 1 108000010
8715 9022 2 108000020
8716 9023 2 108000030
8717 9024 2 108000040
8718 9025 3 108000050
8719 9026 3 108000060
8720 9027 3 108000070
8721 9028 3 108000080
8722 9029 1 109000010
8723 9030 2 109000020
8724 9031 2 109000030
8725 9032 2 109000040
8726 9033 3 109000050
8727 9034 3 109000060
8728 9035 3 109000070
8729 9036 3 109000080
8730 9037 1 110000010
8731 9038 2 110000020
8732 9039 2 110000030
8733 9040 2 110000040
8734 9041 3 110000050
8735 9042 3 110000060
8736 9043 3 110000070
8737 9044 3 110000080
8738 9045 2 180001
8739 9046 2 170002
8740 9047 3 170003
8741 9048 4 170004
8742 9050 1 101000010
8743 9051 1 102000010
8744 9052 1 103000010
8745 9053 1 104000010
8746 9054 1 105000010
8747 9055 1 106000010
8748 9056 1 107000010
8749 9057 1 108000010
8750 9058 1 109000010
8751 9059 1 110000010
8752 9060 2 101000020
8753 9061 2 101000030
8754 9062 2 102000020
8755 9063 2 102000030
8756 9064 2 102000040
8757 9065 2 103000020
8758 9066 2 103000030
8759 9067 2 103000040
8760 9068 2 104000020
8761 9069 2 104000030
8762 9070 2 104000040
8763 9071 2 105000020
8764 9072 2 105000030
8765 9073 2 105000040
8766 9074 2 106000020
8767 9075 2 106000030
8768 9076 2 106000040
8769 9077 2 107000020
8770 9078 2 107000030
8771 9079 2 107000040
8772 9080 2 108000020
8773 9081 2 108000030
8774 9082 2 108000040
8775 9083 2 109000020
8776 9084 2 109000030
8777 9085 2 109000040
8778 9086 2 110000020
8779 9087 2 110000030
8780 9088 2 110000040
8781 9089 2 118000010
8782 9090 3 101000050
8783 9091 3 101000060
8784 9092 3 101000080
8785 9093 3 101000040
8786 9094 3 109000060
8787 9095 3 109000070
8788 9096 3 109000080
8789 9097 3 105000060
8790 9098 3 105000070
8791 9099 3 105000080
8792 9100 3 104000050
8793 9101 3 106000050
8794 9102 3 102000060
8795 9103 3 102000070
8796 9104 3 102000080
8797 9105 3 103000050
8798 9106 3 105000050
8799 9107 3 107000060
8800 9108 3 107000070
8801 9109 3 107000080
8802 9110 3 108000050
8803 9111 3 109000050
8804 9112 3 103000060
8805 9113 3 103000070
8806 9114 3 103000080
8807 9115 3 110000050
8808 9116 3 106000060
8809 9117 3 106000070
8810 9118 3 106000080
8811 9119 3 101000070
8812 9120 3 110000060
8813 9121 3 104000060
8814 9122 3 104000070
8815 9123 3 104000080
8816 9124 3 102000050
8817 9125 3 104000170
8818 9126 3 104000260
8819 9127 3 111000010
8820 9128 3 111000020
8821 9129 3 111000030
8822 9130 3 112000020
8823 9131 3 112000030
8824 9132 3 108000060
8825 9133 3 108000070
8826 9134 3 108000080
8827 9135 3 107000050
8828 9136 3 112000010
8829 9137 3 110000070
8830 9138 3 110000080
8831 9139 3 118000020
8832 9140 3 118000030
8833 9141 3 118000040
8834 9142 4 101000090
8835 9143 4 101000100
8836 9144 4 101000110
8837 9145 4 109000100
8838 9146 4 105000100
8839 9147 4 105000110
8840 9148 4 108000090
8841 9149 4 110000090
8842 9150 4 102000100
8843 9151 4 102000110
8844 9152 4 106000090
8845 9153 4 109000090
8846 9154 4 107000100
8847 9155 4 103000090
8848 9156 4 102000090
8849 9157 4 103000100
8850 9158 4 106000100
8851 9159 4 106000110
8852 9160 4 104000090
8853 9161 4 104000100
8854 9162 4 104000110
8855 9163 4 107000090
8856 9164 4 104000180
8857 9165 4 111000040
8858 9166 4 112000040
8859 9167 4 108000100
8860 9168 4 105000090
8861 9169 4 110000100
8862 9170 4 118000050
8863 9171 4 118000060
8864 9172 5 101000120
8865 9173 5 109000110
8866 9174 5 105000120
8867 9175 5 102000120
8868 9176 5 107000110
8869 9177 5 103000120
8870 9178 5 106000120
8871 9179 5 104000120
8872 9180 5 104000190
8873 9181 5 111000060
8874 9182 5 112000060
8875 9183 5 108000110
8876 9184 5 110000110
8877 9185 5 118000070
8878 9186 1 201000010
8879 9187 1 292000010
8880 9188 1 299000040
8881 9189 1 299000070
8882 9190 1 299000110
8883 9191 1 299000120
8884 9192 1 299000140
8885 9193 2 202000010
8886 9194 2 290000010
8887 9195 2 299000010
8888 9196 2 299000150
8889 9197 2 299000190
8890 9198 2 299000200
8891 9199 2 299000210
8892 9200 3 298000050
8893 9201 3 298000060
8894 9202 3 299000060
8895 9203 3 299000170
8896 9204 3 290000120
8897 9205 3 291000050
8898 9206 3 292000020
8899 9207 4 299000670
8900 9208 4 299000680
8901 9209 4 204000010
8902 9210 4 209000040
8903 9211 5 297000100
8904 9212 5 291000020
8905 9213 5 297000130
8906 9214 5 297000140
8907 9215 5 203000010
8908 9216 5 206000030
8909 9217 1 170002
8910 9218 1 180002
8911 9219 2 170003
8912 9220 2 180003
8913 9221 3 170004
8914 9222 3 180004
8915 9223 4 140000
8916 9224 5 150010
8917 9225 5 150020
8918 9226 5 150030
8919 9227 5 150040
8920 9229 1 101000010
8921 9230 1 102000010
8922 9231 1 103000010
8923 9232 1 104000010
8924 9233 1 105000010
8925 9234 1 106000010
8926 9235 1 107000010
8927 9236 1 108000010
8928 9237 1 109000010
8929 9238 1 110000010
8930 9239 2 101000020
8931 9240 2 101000030
8932 9241 2 102000020
8933 9242 2 102000030
8934 9243 2 102000040
8935 9244 2 103000020
8936 9245 2 103000030
8937 9246 2 103000040
8938 9247 2 104000020
8939 9248 2 104000030
8940 9249 2 104000040
8941 9250 2 105000020
8942 9251 2 105000030
8943 9252 2 105000040
8944 9253 2 106000020
8945 9254 2 106000030
8946 9255 2 106000040
8947 9256 2 107000020
8948 9257 2 107000030
8949 9258 2 107000040
8950 9259 2 108000020
8951 9260 2 108000030
8952 9261 2 108000040
8953 9262 2 109000020
8954 9263 2 109000030
8955 9264 2 109000040
8956 9265 2 110000020
8957 9266 2 110000030
8958 9267 2 110000040
8959 9268 2 118000010
8960 9269 3 101000050
8961 9270 3 101000060
8962 9271 3 101000080
8963 9272 3 101000040
8964 9273 3 109000060
8965 9274 3 109000070
8966 9275 3 109000080
8967 9276 3 105000060
8968 9277 3 105000070
8969 9278 3 105000080
8970 9279 3 104000050
8971 9280 3 106000050
8972 9281 3 102000060
8973 9282 3 102000070
8974 9283 3 102000080
8975 9284 3 103000050
8976 9285 3 105000050
8977 9286 3 107000060
8978 9287 3 107000070
8979 9288 3 107000080
8980 9289 3 108000050
8981 9290 3 109000050
8982 9291 3 103000060
8983 9292 3 103000070
8984 9293 3 103000080
8985 9294 3 110000050
8986 9295 3 106000060
8987 9296 3 106000070
8988 9297 3 106000080
8989 9298 3 101000070
8990 9299 3 110000060
8991 9300 3 104000060
8992 9301 3 104000070
8993 9302 3 104000080
8994 9303 3 102000050
8995 9304 3 104000170
8996 9305 3 104000260
8997 9306 3 111000010
8998 9307 3 111000020
8999 9308 3 111000030
9000 9309 3 112000020
9001 9310 3 112000030
9002 9311 3 108000060
9003 9312 3 108000070
9004 9313 3 108000080
9005 9314 3 107000050
9006 9315 3 112000010
9007 9316 3 110000070
9008 9317 3 110000080
9009 9318 3 118000020
9010 9319 3 118000030
9011 9320 3 118000040
9012 9321 4 101000090
9013 9322 4 101000100
9014 9323 4 101000110
9015 9324 4 109000100
9016 9325 4 105000100
9017 9326 4 105000110
9018 9327 4 108000090
9019 9328 4 110000090
9020 9329 4 102000100
9021 9330 4 102000110
9022 9331 4 106000090
9023 9332 4 109000090
9024 9333 4 107000100
9025 9334 4 103000090
9026 9335 4 102000090
9027 9336 4 103000100
9028 9337 4 106000100
9029 9338 4 106000110
9030 9339 4 104000090
9031 9340 4 104000100
9032 9341 4 104000110
9033 9342 4 107000090
9034 9343 4 104000180
9035 9344 4 111000040
9036 9345 4 112000040
9037 9346 4 108000100
9038 9347 4 105000090
9039 9348 4 110000100
9040 9349 4 118000050
9041 9350 4 118000060
9042 9351 5 101000120
9043 9352 5 109000110
9044 9353 5 105000120
9045 9354 5 102000120
9046 9355 5 107000110
9047 9356 5 103000120
9048 9357 5 106000120
9049 9358 5 104000120
9050 9359 5 104000190
9051 9360 5 111000060
9052 9361 5 112000060
9053 9362 5 108000110
9054 9363 5 110000110
9055 9364 5 118000070
9056 9365 1 201000010
9057 9366 1 292000010
9058 9367 1 299000040
9059 9368 1 299000070
9060 9369 1 299000110
9061 9370 1 299000120
9062 9371 1 299000140
9063 9372 2 202000010
9064 9373 2 290000010
9065 9374 2 299000010
9066 9375 2 299000150
9067 9376 2 299000190
9068 9377 2 299000200
9069 9378 2 299000210
9070 9379 3 298000050
9071 9380 3 298000060
9072 9381 3 299000060
9073 9382 3 299000170
9074 9383 3 290000120
9075 9384 3 291000050
9076 9385 3 292000020
9077 9386 4 299000670
9078 9387 4 299000680
9079 9388 4 204000010
9080 9389 4 209000040
9081 9390 5 297000100
9082 9391 5 291000020
9083 9392 5 297000130
9084 9393 5 297000140
9085 9394 5 203000010
9086 9395 5 206000030
9087 9396 2 170003
9088 9397 2 180003
9089 9398 3 170004
9090 9399 3 180004
9091 9400 4 140000
9092 9401 5 150010
9093 9402 5 150020
9094 9403 5 150030
9095 9404 5 150040
9096 9406 3 101000050
9097 9407 3 101000060
9098 9408 3 101000080
9099 9409 3 101000040
9100 9410 3 109000060
9101 9411 3 109000070
9102 9412 3 109000080
9103 9413 3 105000060
9104 9414 3 105000070
9105 9415 3 105000080
9106 9416 3 104000050
9107 9417 3 106000050
9108 9418 3 102000060
9109 9419 3 102000070
9110 9420 3 102000080
9111 9421 3 103000050
9112 9422 3 105000050
9113 9423 3 107000060
9114 9424 3 107000070
9115 9425 3 107000080
9116 9426 3 108000050
9117 9427 3 109000050
9118 9428 3 103000060
9119 9429 3 103000070
9120 9430 3 103000080
9121 9431 3 110000050
9122 9432 3 106000060
9123 9433 3 106000070
9124 9434 3 106000080
9125 9435 3 101000070
9126 9436 3 110000060
9127 9437 3 104000060
9128 9438 3 104000070
9129 9439 3 104000080
9130 9440 3 102000050
9131 9441 3 104000170
9132 9442 3 104000260
9133 9443 3 111000010
9134 9444 3 111000020
9135 9445 3 111000030
9136 9446 3 112000020
9137 9447 3 112000030
9138 9448 3 108000060
9139 9449 3 108000070
9140 9450 3 108000080
9141 9451 3 107000050
9142 9452 3 112000010
9143 9453 3 110000070
9144 9454 3 110000080
9145 9455 3 118000020
9146 9456 3 118000030
9147 9457 3 118000040
9148 9458 4 101000090
9149 9459 4 101000100
9150 9460 4 101000110
9151 9461 4 109000100
9152 9462 4 105000100
9153 9463 4 105000110
9154 9464 4 108000090
9155 9465 4 110000090
9156 9466 4 102000100
9157 9467 4 102000110
9158 9468 4 106000090
9159 9469 4 109000090
9160 9470 4 107000100
9161 9471 4 103000090
9162 9472 4 102000090
9163 9473 4 103000100
9164 9474 4 106000100
9165 9475 4 106000110
9166 9476 4 104000090
9167 9477 4 104000100
9168 9478 4 104000110
9169 9479 4 107000090
9170 9480 4 104000180
9171 9481 4 111000040
9172 9482 4 112000040
9173 9483 4 108000100
9174 9484 4 105000090
9175 9485 4 110000100
9176 9486 4 118000050
9177 9487 4 118000060
9178 9488 5 101000120
9179 9489 5 109000110
9180 9490 5 105000120
9181 9491 5 102000120
9182 9492 5 107000110
9183 9493 5 103000120
9184 9494 5 106000120
9185 9495 5 104000120
9186 9496 5 104000190
9187 9497 5 111000060
9188 9498 5 112000060
9189 9499 5 108000110
9190 9500 5 110000110
9191 9501 5 118000070
9192 9502 1 201000010
9193 9503 1 292000010
9194 9504 1 299000040
9195 9505 1 299000070
9196 9506 1 299000110
9197 9507 1 299000120
9198 9508 1 299000140
9199 9509 2 202000010
9200 9510 2 290000010
9201 9511 2 299000010
9202 9512 2 299000150
9203 9513 2 299000190
9204 9514 2 299000200
9205 9515 2 299000210
9206 9516 3 298000050
9207 9517 3 298000060
9208 9518 3 299000060
9209 9519 3 299000170
9210 9520 3 290000120
9211 9521 3 291000050
9212 9522 3 292000020
9213 9523 4 299000670
9214 9524 4 299000680
9215 9525 4 204000010
9216 9526 4 209000040
9217 9527 5 297000100
9218 9528 5 291000020
9219 9529 5 297000130
9220 9530 5 297000140
9221 9531 5 203000010
9222 9532 5 206000030
9223 9533 3 170004
9224 9534 3 180004
9225 9535 4 140000
9226 9536 5 150010
9227 9537 5 150020
9228 9538 5 150030
9229 9539 5 150040
9230 9541 3 101000050
9231 9542 3 101000060
9232 9543 3 101000080
9233 9544 3 101000040
9234 9545 3 109000060
9235 9546 3 109000070
9236 9547 3 109000080
9237 9548 3 105000060
9238 9549 3 105000070
9239 9550 3 105000080
9240 9551 3 104000050
9241 9552 3 106000050
9242 9553 3 102000060
9243 9554 3 102000070
9244 9555 3 102000080
9245 9556 3 103000050
9246 9557 3 105000050
9247 9558 3 107000060
9248 9559 3 107000070
9249 9560 3 107000080
9250 9561 3 108000050
9251 9562 3 109000050
9252 9563 3 103000060
9253 9564 3 103000070
9254 9565 3 103000080
9255 9566 3 110000050
9256 9567 3 106000060
9257 9568 3 106000070
9258 9569 3 106000080
9259 9570 3 101000070
9260 9571 3 110000060
9261 9572 3 104000060
9262 9573 3 104000070
9263 9574 3 104000080
9264 9575 3 102000050
9265 9576 3 104000170
9266 9577 3 104000260
9267 9578 3 111000010
9268 9579 3 111000020
9269 9580 3 111000030
9270 9581 3 112000020
9271 9582 3 112000030
9272 9583 3 108000060
9273 9584 3 108000070
9274 9585 3 108000080
9275 9586 3 107000050
9276 9587 3 112000010
9277 9588 3 110000070
9278 9589 3 110000080
9279 9590 3 118000020
9280 9591 3 118000030
9281 9592 3 118000040
9282 9593 4 101000090
9283 9594 4 101000100
9284 9595 4 101000110
9285 9596 4 109000100
9286 9597 4 105000100
9287 9598 4 105000110
9288 9599 4 108000090
9289 9600 4 110000090
9290 9601 4 102000100
9291 9602 4 102000110
9292 9603 4 106000090
9293 9604 4 109000090
9294 9605 4 107000100
9295 9606 4 103000090
9296 9607 4 102000090
9297 9608 4 103000100
9298 9609 4 106000100
9299 9610 4 106000110
9300 9611 4 104000090
9301 9612 4 104000100
9302 9613 4 104000110
9303 9614 4 107000090
9304 9615 4 104000180
9305 9616 4 111000040
9306 9617 4 112000040
9307 9618 4 108000100
9308 9619 4 105000090
9309 9620 4 110000100
9310 9621 4 118000050
9311 9622 4 118000060
9312 9623 5 101000120
9313 9624 5 109000110
9314 9625 5 105000120
9315 9626 5 102000120
9316 9627 5 107000110
9317 9628 5 103000120
9318 9629 5 106000120
9319 9630 5 104000120
9320 9631 5 104000190
9321 9632 5 111000060
9322 9633 5 112000060
9323 9634 5 108000110
9324 9635 5 110000110
9325 9636 5 118000070
9326 9637 1 201000010
9327 9638 1 292000010
9328 9639 1 299000040
9329 9640 1 299000070
9330 9641 1 299000110
9331 9642 1 299000120
9332 9643 1 299000140
9333 9644 2 202000010
9334 9645 2 290000010
9335 9646 2 299000010
9336 9647 2 299000150
9337 9648 2 299000190
9338 9649 2 299000200
9339 9650 2 299000210
9340 9651 3 298000050
9341 9652 3 298000060
9342 9653 3 299000060
9343 9654 3 299000170
9344 9655 3 290000120
9345 9656 3 291000050
9346 9657 3 292000020
9347 9658 4 299000670
9348 9659 4 299000680
9349 9660 4 204000010
9350 9661 4 209000040
9351 9662 5 297000100
9352 9663 5 291000020
9353 9664 5 297000130
9354 9665 5 297000140
9355 9666 5 203000010
9356 9667 5 206000030
9357 9668 3 170004
9358 9669 3 180004
9359 9670 4 140000
9360 9671 5 150010
9361 9672 5 150020
9362 9673 5 150030
9363 9674 5 150040
9364 9676 3 101000050
9365 9677 3 101000060
9366 9678 3 101000080
9367 9679 3 101000040
9368 9680 3 109000060
9369 9681 3 109000070
9370 9682 3 109000080
9371 9683 3 105000060
9372 9684 3 105000070
9373 9685 3 105000080
9374 9686 3 104000050
9375 9687 3 106000050
9376 9688 3 102000060
9377 9689 3 102000070
9378 9690 3 102000080
9379 9691 3 103000050
9380 9692 3 105000050
9381 9693 3 107000060
9382 9694 3 107000070
9383 9695 3 107000080
9384 9696 3 108000050
9385 9697 3 109000050
9386 9698 3 103000060
9387 9699 3 103000070
9388 9700 3 103000080
9389 9701 3 110000050
9390 9702 3 106000060
9391 9703 3 106000070
9392 9704 3 106000080
9393 9705 3 101000070
9394 9706 3 110000060
9395 9707 3 104000060
9396 9708 3 104000070
9397 9709 3 104000080
9398 9710 3 102000050
9399 9711 3 104000170
9400 9712 3 104000260
9401 9713 3 111000010
9402 9714 3 111000020
9403 9715 3 111000030
9404 9716 3 112000020
9405 9717 3 112000030
9406 9718 3 108000060
9407 9719 3 108000070
9408 9720 3 108000080
9409 9721 3 107000050
9410 9722 3 112000010
9411 9723 3 110000070
9412 9724 3 110000080
9413 9725 3 118000020
9414 9726 3 118000030
9415 9727 3 118000040
9416 9728 4 101000090
9417 9729 4 101000100
9418 9730 4 101000110
9419 9731 4 109000100
9420 9732 4 105000100
9421 9733 4 105000110
9422 9734 4 108000090
9423 9735 4 110000090
9424 9736 4 102000100
9425 9737 4 102000110
9426 9738 4 106000090
9427 9739 4 109000090
9428 9740 4 107000100
9429 9741 4 103000090
9430 9742 4 102000090
9431 9743 4 103000100
9432 9744 4 106000100
9433 9745 4 106000110
9434 9746 4 104000090
9435 9747 4 104000100
9436 9748 4 104000110
9437 9749 4 107000090
9438 9750 4 104000180
9439 9751 4 111000040
9440 9752 4 112000040
9441 9753 4 108000100
9442 9754 4 105000090
9443 9755 4 110000100
9444 9756 4 118000050
9445 9757 4 118000060
9446 9758 5 101000120
9447 9759 5 109000110
9448 9760 5 105000120
9449 9761 5 102000120
9450 9762 5 107000110
9451 9763 5 103000120
9452 9764 5 106000120
9453 9765 5 104000120
9454 9766 5 104000190
9455 9767 5 111000060
9456 9768 5 112000060
9457 9769 5 108000110
9458 9770 5 110000110
9459 9771 5 118000070
9460 9772 1 201000010
9461 9773 1 292000010
9462 9774 1 299000040
9463 9775 1 299000070
9464 9776 1 299000110
9465 9777 1 299000120
9466 9778 1 299000140
9467 9779 2 202000010
9468 9780 2 290000010
9469 9781 2 299000010
9470 9782 2 299000150
9471 9783 2 299000190
9472 9784 2 299000200
9473 9785 2 299000210
9474 9786 3 298000050
9475 9787 3 298000060
9476 9788 3 299000060
9477 9789 3 299000170
9478 9790 3 290000120
9479 9791 3 291000050
9480 9792 3 292000020
9481 9793 4 299000670
9482 9794 4 299000680
9483 9795 4 204000010
9484 9796 4 209000040
9485 9797 5 297000100
9486 9798 5 291000020
9487 9799 5 297000130
9488 9800 5 297000140
9489 9801 5 203000010
9490 9802 5 206000030
9491 9803 3 170004
9492 9804 3 180004
9493 9805 4 140000
9494 9806 5 150010
9495 9807 5 150020
9496 9808 5 150030
9497 9809 5 150040
9498 9810 5 190000
9499 9811 5 200000
9500 9812 5 210000
9501 9814 3 101000050
9502 9815 3 101000060
9503 9816 3 101000080
9504 9817 3 101000040
9505 9818 3 109000060
9506 9819 3 109000070
9507 9820 3 109000080
9508 9821 3 105000060
9509 9822 3 105000070
9510 9823 3 105000080
9511 9824 3 104000050
9512 9825 3 106000050
9513 9826 4 101000090
9514 9827 4 101000100
9515 9828 4 101000110
9516 9829 4 109000100
9517 9830 4 105000100
9518 9831 4 105000110
9519 9832 4 108000090
9520 9833 4 110000090
9521 9834 5 101000120
9522 9835 5 109000110
9523 9836 5 105000120
9524 9837 1 101000000
9525 9838 2 101000001
9526 9839 3 101000002
9527 9840 4 101000008
9528 9841 5 101000004
9529 9842 1 109000000
9530 9843 2 109000001
9531 9844 3 109000002
9532 9845 4 109000003
9533 9846 5 109000004
9534 9847 3 170004
9535 9848 4 170005
9536 9849 3 180004
9537 9850 4 180005
9538 9851 4 140000
9539 9852 4 150010
9540 9853 4 150020
9541 9854 4 150030
9542 9855 4 150040
9543 9857 3 102000060
9544 9858 3 102000070
9545 9859 3 102000080
9546 9860 3 103000050
9547 9861 3 105000050
9548 9862 3 107000060
9549 9863 3 107000070
9550 9864 3 107000080
9551 9865 3 108000050
9552 9866 3 109000050
9553 9867 3 103000060
9554 9868 3 103000070
9555 9869 3 103000080
9556 9870 3 110000050
9557 9871 4 102000100
9558 9872 4 102000350
9559 9873 4 102000110
9560 9874 4 106000090
9561 9875 4 109000090
9562 9876 4 107000100
9563 9877 4 103000090
9564 9878 4 102000090
9565 9879 4 103000100
9566 9880 5 102000120
9567 9881 5 107000110
9568 9882 5 103000120
9569 9883 1 102000000
9570 9884 2 102000001
9571 9885 3 102000002
9572 9886 4 102000003
9573 9887 5 102000004
9574 9888 1 105000000
9575 9889 2 105000001
9576 9890 3 105000002
9577 9891 4 105000003
9578 9892 5 105000004
9579 9893 1 112000000
9580 9894 2 112000001
9581 9895 3 112000002
9582 9896 4 112000003
9583 9897 5 112000004
9584 9898 4 110024
9585 9899 4 110034
9586 9900 4 110044
9587 9901 4 110054
9588 9902 3 110060
9589 9903 3 110070
9590 9904 3 110080
9591 9905 3 110090
9592 9906 3 110100
9593 9907 3 110110
9594 9908 3 110120
9595 9909 3 110130
9596 9910 3 110140
9597 9911 3 110150
9598 9912 3 110160
9599 9913 3 110170
9600 9914 3 110180
9601 9915 3 110190
9602 9916 3 110200
9603 9917 3 110210
9604 9918 3 110220
9605 9919 3 110230
9606 9920 3 110240
9607 9921 3 110250
9608 9922 3 110260
9609 9923 3 110270
9610 9924 3 110620
9611 9925 3 110670
9612 9926 4 140000
9613 9927 4 150010
9614 9928 4 150020
9615 9929 4 150030
9616 9930 4 150040
9617 9932 3 118000020
9618 9933 3 118000030
9619 9934 3 118000040
9620 9935 3 106000060
9621 9936 3 106000070
9622 9937 3 106000080
9623 9938 3 101000070
9624 9939 3 110000060
9625 9940 3 104000060
9626 9941 3 104000070
9627 9942 3 104000080
9628 9943 3 102000050
9629 9944 3 104000170
9630 9945 3 104000260
9631 9946 4 118000050
9632 9947 4 118000060
9633 9948 4 106000100
9634 9949 4 106000110
9635 9950 4 104000090
9636 9951 4 104000100
9637 9952 4 104000110
9638 9953 4 104000270
9639 9954 4 107000090
9640 9955 4 104000180
9641 9956 5 118000070
9642 9957 5 106000120
9643 9958 5 104000120
9644 9959 5 104000190
9645 9960 1 103000000
9646 9961 2 103000001
9647 9962 3 103000002
9648 9963 4 103000003
9649 9964 5 103000004
9650 9965 1 111000000
9651 9966 2 111000001
9652 9967 3 111000002
9653 9968 4 111000003
9654 9969 5 111000004
9655 9970 1 115000000
9656 9971 2 115000001
9657 9972 3 115000002
9658 9973 4 115000003
9659 9974 5 115000004
9660 9975 4 120024
9661 9976 4 120034
9662 9977 4 120044
9663 9978 4 120054
9664 9979 3 120241
9665 9980 3 120251
9666 9981 3 120261
9667 9982 3 120271
9668 9983 3 120300
9669 9984 3 120310
9670 9985 3 120320
9671 9986 3 120330
9672 9987 3 120340
9673 9988 3 120350
9674 9989 3 120360
9675 9990 3 120370
9676 9991 3 120380
9677 9992 3 120390
9678 9993 3 120400
9679 9994 3 120410
9680 9995 3 120420
9681 9996 3 120430
9682 9997 3 120450
9683 9998 3 120460
9684 9999 3 120550
9685 10000 3 120560
9686 10001 3 120570
9687 10002 3 120990
9688 10003 3 121000
9689 10004 3 121010
9690 10005 3 121020
9691 10006 4 140000
9692 10007 4 150010
9693 10008 4 150020
9694 10009 4 150030
9695 10010 4 150040
9696 10012 3 111000010
9697 10013 3 111000020
9698 10014 3 111000030
9699 10015 3 112000020
9700 10016 3 112000030
9701 10017 3 108000060
9702 10018 3 108000070
9703 10019 3 108000080
9704 10020 3 107000050
9705 10021 3 112000010
9706 10022 3 110000070
9707 10023 3 110000080
9708 10024 4 111000040
9709 10025 4 112000040
9710 10026 4 108000100
9711 10027 4 105000090
9712 10028 4 110000100
9713 10029 5 111000060
9714 10030 5 112000060
9715 10031 5 108000110
9716 10032 5 110000110
9717 10033 1 108000000
9718 10034 2 108000001
9719 10035 3 108000002
9720 10036 4 108000003
9721 10037 5 108000004
9722 10038 1 107000000
9723 10039 2 107000001
9724 10040 3 107000002
9725 10041 4 107000003
9726 10042 5 107000004
9727 10043 1 120000000
9728 10044 2 120000001
9729 10045 3 120000002
9730 10046 4 120000003
9731 10047 5 120000004
9732 10048 4 130024
9733 10049 4 130034
9734 10050 4 130044
9735 10051 4 130054
9736 10052 3 130060
9737 10053 3 130070
9738 10054 3 130080
9739 10055 3 130090
9740 10056 3 130100
9741 10057 3 130110
9742 10058 3 130120
9743 10059 3 130130
9744 10060 3 130140
9745 10061 3 130150
9746 10062 3 130160
9747 10063 3 130170
9748 10064 3 130180
9749 10065 3 130190
9750 10066 3 130200
9751 10067 3 130420
9752 10068 3 130510
9753 10069 3 130520
9754 10070 3 130531
9755 10071 3 130540
9756 10072 3 130660
9757 10073 3 130790
9758 10074 3 130800
9759 10075 3 131130
9760 10076 4 140000
9761 10077 4 150010
9762 10078 4 150020
9763 10079 4 150030
9764 10080 4 150040
9765 10082 3 111000010
9766 10083 3 111000020
9767 10084 3 111000030
9768 10085 3 112000020
9769 10086 3 112000030
9770 10087 3 108000060
9771 10088 3 108000070
9772 10089 3 108000080
9773 10090 3 107000050
9774 10091 3 112000010
9775 10092 3 110000070
9776 10093 3 110000080
9777 10094 4 111000040
9778 10095 4 112000040
9779 10096 4 108000100
9780 10097 4 105000090
9781 10098 4 110000100
9782 10099 5 111000060
9783 10100 5 112000060
9784 10101 5 108000110
9785 10102 5 110000110
9786 10103 1 108000000
9787 10104 2 108000001
9788 10105 3 108000002
9789 10106 4 108000003
9790 10107 5 108000004
9791 10108 1 107000000
9792 10109 2 107000001
9793 10110 3 107000002
9794 10111 4 107000003
9795 10112 5 107000004
9796 10113 1 120000000
9797 10114 2 120000001
9798 10115 3 120000002
9799 10116 4 120000003
9800 10117 5 120000004
9801 10118 3 170004
9802 10119 4 170005
9803 10120 3 180004
9804 10121 4 180005
9805 10122 4 140000
9806 10123 4 150010
9807 10124 4 150020
9808 10125 4 150030
9809 10126 4 150040
9810 10128 3 101000050
9811 10129 3 101000060
9812 10130 3 101000080
9813 10131 3 101000040
9814 10132 3 109000060
9815 10133 3 109000070
9816 10134 3 109000080
9817 10135 3 105000060
9818 10136 3 105000070
9819 10137 3 105000080
9820 10138 3 104000050
9821 10139 3 106000050
9822 10140 4 101000090
9823 10141 4 101000100
9824 10142 4 101000110
9825 10143 4 109000100
9826 10144 4 105000100
9827 10145 4 105000110
9828 10146 4 108000090
9829 10147 4 110000090
9830 10148 5 101000120
9831 10149 5 109000110
9832 10150 5 105000120
9833 10151 1 101000000
9834 10152 2 101000001
9835 10153 3 101000002
9836 10154 4 101000008
9837 10155 5 101000004
9838 10156 1 109000000
9839 10157 2 109000001
9840 10158 3 109000002
9841 10159 4 109000003
9842 10160 5 109000004
9843 10161 4 110024
9844 10162 4 110034
9845 10163 4 110044
9846 10164 4 110054
9847 10165 3 110060
9848 10166 3 110070
9849 10167 3 110080
9850 10168 3 110090
9851 10169 3 110100
9852 10170 3 110110
9853 10171 3 110120
9854 10172 3 110130
9855 10173 3 110140
9856 10174 3 110150
9857 10175 3 110160
9858 10176 3 110170
9859 10177 3 110180
9860 10178 3 110190
9861 10179 3 110200
9862 10180 3 110210
9863 10181 3 110220
9864 10182 3 110230
9865 10183 3 110240
9866 10184 3 110250
9867 10185 3 110260
9868 10186 3 110270
9869 10187 3 110620
9870 10188 3 110670
9871 10189 4 140000
9872 10190 4 150010
9873 10191 4 150020
9874 10192 4 150030
9875 10193 4 150040
9876 10195 3 102000060
9877 10196 3 102000070
9878 10197 3 102000080
9879 10198 3 103000050
9880 10199 3 105000050
9881 10200 3 107000060
9882 10201 3 107000070
9883 10202 3 107000080
9884 10203 3 108000050
9885 10204 3 109000050
9886 10205 3 103000060
9887 10206 3 103000070
9888 10207 3 103000080
9889 10208 3 110000050
9890 10209 4 102000100
9891 10210 4 102000110
9892 10211 4 102000350
9893 10212 4 106000090
9894 10213 4 109000090
9895 10214 4 107000100
9896 10215 4 103000090
9897 10216 4 102000090
9898 10217 4 103000100
9899 10218 5 102000120
9900 10219 5 107000110
9901 10220 5 103000120
9902 10221 1 102000000
9903 10222 2 102000001
9904 10223 3 102000002
9905 10224 4 102000003
9906 10225 5 102000004
9907 10226 1 105000000
9908 10227 2 105000001
9909 10228 3 105000002
9910 10229 4 105000003
9911 10230 5 105000004
9912 10231 1 112000000
9913 10232 2 112000001
9914 10233 3 112000002
9915 10234 4 112000003
9916 10235 5 112000004
9917 10236 4 120024
9918 10237 4 120034
9919 10238 4 120044
9920 10239 4 120054
9921 10240 3 120241
9922 10241 3 120251
9923 10242 3 120261
9924 10243 3 120271
9925 10244 3 120300
9926 10245 3 120310
9927 10246 3 120320
9928 10247 3 120330
9929 10248 3 120340
9930 10249 3 120350
9931 10250 3 120360
9932 10251 3 120370
9933 10252 3 120380
9934 10253 3 120390
9935 10254 3 120400
9936 10255 3 120410
9937 10256 3 120420
9938 10257 3 120430
9939 10258 3 120450
9940 10259 3 120460
9941 10260 3 120550
9942 10261 3 120560
9943 10262 3 120570
9944 10263 3 120990
9945 10264 3 121000
9946 10265 3 121010
9947 10266 3 121020
9948 10267 3 121100
9949 10268 4 140000
9950 10269 4 150010
9951 10270 4 150020
9952 10271 4 150030
9953 10272 4 150040
9954 10274 3 118000020
9955 10275 3 118000030
9956 10276 3 118000040
9957 10277 3 106000060
9958 10278 3 106000070
9959 10279 3 106000080
9960 10280 3 101000070
9961 10281 3 110000060
9962 10282 3 104000060
9963 10283 3 104000070
9964 10284 3 104000080
9965 10285 3 102000050
9966 10286 3 104000170
9967 10287 3 104000260
9968 10288 4 118000050
9969 10289 4 118000060
9970 10290 4 106000100
9971 10291 4 106000110
9972 10292 4 104000090
9973 10293 4 104000100
9974 10294 4 104000110
9975 10295 4 104000270
9976 10296 4 107000090
9977 10297 4 104000180
9978 10298 5 118000070
9979 10299 5 106000120
9980 10300 5 104000120
9981 10301 5 104000190
9982 10302 1 103000000
9983 10303 2 103000001
9984 10304 3 103000002
9985 10305 4 103000003
9986 10306 5 103000004
9987 10307 1 111000000
9988 10308 2 111000001
9989 10309 3 111000002
9990 10310 4 111000003
9991 10311 5 111000004
9992 10312 1 115000000
9993 10313 2 115000001
9994 10314 3 115000002
9995 10315 4 115000003
9996 10316 5 115000004
9997 10317 4 130024
9998 10318 4 130034
9999 10319 4 130044
10000 10320 4 130054
10001 10321 3 130060
10002 10322 3 130070
10003 10323 3 130080
10004 10324 3 130090
10005 10325 3 130100
10006 10326 3 130110
10007 10327 3 130120
10008 10328 3 130130
10009 10329 3 130140
10010 10330 3 130150
10011 10331 3 130160
10012 10332 3 130170
10013 10333 3 130180
10014 10334 3 130190
10015 10335 3 130200
10016 10336 3 130420
10017 10337 3 130510
10018 10338 3 130520
10019 10339 3 130531
10020 10340 3 130540
10021 10341 3 130660
10022 10342 3 130790
10023 10343 3 130800
10024 10344 3 131130
10025 10345 4 140000
10026 10346 4 150010
10027 10347 4 150020
10028 10348 4 150030
10029 10349 4 150040
10030 10351 1 101000010
10031 10352 1 102000010
10032 10353 1 103000010
10033 10354 1 104000010
10034 10355 1 105000010
10035 10356 1 106000010
10036 10357 1 107000010
10037 10358 1 108000010
10038 10359 1 109000010
10039 10360 1 110000010
10040 10361 2 101000020
10041 10362 2 101000030
10042 10363 2 102000020
10043 10364 2 102000030
10044 10365 2 102000040
10045 10366 2 103000020
10046 10367 2 103000030
10047 10368 2 103000040
10048 10369 2 104000020
10049 10370 2 104000030
10050 10371 2 104000040
10051 10372 2 105000020
10052 10373 2 105000030
10053 10374 2 105000040
10054 10375 2 106000020
10055 10376 2 106000030
10056 10377 2 106000040
10057 10378 2 107000020
10058 10379 2 107000030
10059 10380 2 107000040
10060 10381 2 108000020
10061 10382 2 108000030
10062 10383 2 108000040
10063 10384 2 109000020
10064 10385 2 109000030
10065 10386 2 109000040
10066 10387 2 110000020
10067 10388 2 110000030
10068 10389 2 110000040
10069 10390 2 118000010
10070 10391 3 101000050
10071 10392 3 101000060
10072 10393 3 101000080
10073 10394 3 101000040
10074 10395 3 109000060
10075 10396 3 109000070
10076 10397 3 109000080
10077 10398 3 105000060
10078 10399 3 105000070
10079 10400 3 105000080
10080 10401 3 104000050
10081 10402 3 106000050
10082 10403 3 102000060
10083 10404 3 102000070
10084 10405 3 102000080
10085 10406 3 103000050
10086 10407 3 105000050
10087 10408 3 107000060
10088 10409 3 107000070
10089 10410 3 107000080
10090 10411 3 108000050
10091 10412 3 109000050
10092 10413 3 103000060
10093 10414 3 103000070
10094 10415 3 103000080
10095 10416 3 110000050
10096 10417 3 106000060
10097 10418 3 106000070
10098 10419 3 106000080
10099 10420 3 101000070
10100 10421 3 110000060
10101 10422 3 104000060
10102 10423 3 104000070
10103 10424 3 104000080
10104 10425 3 102000050
10105 10426 3 104000170
10106 10427 3 104000260
10107 10428 3 111000010
10108 10429 3 111000020
10109 10430 3 111000030
10110 10431 3 112000020
10111 10432 3 112000030
10112 10433 3 108000060
10113 10434 3 108000070
10114 10435 3 108000080
10115 10436 3 107000050
10116 10437 3 112000010
10117 10438 3 110000070
10118 10439 3 110000080
10119 10440 3 118000020
10120 10441 3 118000030
10121 10442 3 118000040
10122 10443 4 101000090
10123 10444 4 101000100
10124 10445 4 101000110
10125 10446 4 109000100
10126 10447 4 105000100
10127 10448 4 105000110
10128 10449 4 108000090
10129 10450 4 110000090
10130 10451 4 102000100
10131 10452 4 102000110
10132 10453 4 106000090
10133 10454 4 109000090
10134 10455 4 107000100
10135 10456 4 103000090
10136 10457 4 102000090
10137 10458 4 103000100
10138 10459 4 106000100
10139 10460 4 106000110
10140 10461 4 104000090
10141 10462 4 104000100
10142 10463 4 104000110
10143 10464 4 107000090
10144 10465 4 104000180
10145 10466 4 111000040
10146 10467 4 112000040
10147 10468 4 108000100
10148 10469 4 105000090
10149 10470 4 110000100
10150 10471 4 118000050
10151 10472 4 118000060
10152 10473 5 101000120
10153 10474 5 109000110
10154 10475 5 105000120
10155 10476 5 102000120
10156 10477 5 107000110
10157 10478 5 103000120
10158 10479 5 106000120
10159 10480 5 104000120
10160 10481 5 104000190
10161 10482 5 111000060
10162 10483 5 112000060
10163 10484 5 108000110
10164 10485 5 110000110
10165 10486 5 118000070
10166 10487 1 201000010
10167 10488 1 292000010
10168 10489 1 299000040
10169 10490 1 299000070
10170 10491 1 299000110
10171 10492 1 299000120
10172 10493 1 299000140
10173 10494 2 202000010
10174 10495 2 290000010
10175 10496 2 299000010
10176 10497 2 299000150
10177 10498 2 299000190
10178 10499 2 299000200
10179 10500 2 299000210
10180 10501 3 298000050
10181 10502 3 298000060
10182 10503 3 299000060
10183 10504 3 299000170
10184 10505 3 290000120
10185 10506 3 291000050
10186 10507 3 292000020
10187 10508 4 299000670
10188 10509 4 299000680
10189 10510 4 204000010
10190 10511 4 209000040
10191 10512 4 202000070
10192 10513 5 297000100
10193 10514 5 291000020
10194 10515 5 297000130
10195 10516 5 297000140
10196 10517 5 203000010
10197 10518 5 206000030
10198 10519 5 203000050
10199 10520 1 170002
10200 10521 1 180002
10201 10522 2 170003
10202 10523 2 180003
10203 10524 3 170004
10204 10525 3 180004
10205 10526 4 140000
10206 10527 5 150010
10207 10528 5 150020
10208 10529 5 150030
10209 10530 5 150040
10210 10532 1 101000010
10211 10533 1 102000010
10212 10534 1 103000010
10213 10535 1 104000010
10214 10536 1 105000010
10215 10537 1 106000010
10216 10538 1 107000010
10217 10539 1 108000010
10218 10540 1 109000010
10219 10541 1 110000010
10220 10542 2 101000020
10221 10543 2 101000030
10222 10544 2 102000020
10223 10545 2 102000030
10224 10546 2 102000040
10225 10547 2 103000020
10226 10548 2 103000030
10227 10549 2 103000040
10228 10550 2 104000020
10229 10551 2 104000030
10230 10552 2 104000040
10231 10553 2 105000020
10232 10554 2 105000030
10233 10555 2 105000040
10234 10556 2 106000020
10235 10557 2 106000030
10236 10558 2 106000040
10237 10559 2 107000020
10238 10560 2 107000030
10239 10561 2 107000040
10240 10562 2 108000020
10241 10563 2 108000030
10242 10564 2 108000040
10243 10565 2 109000020
10244 10566 2 109000030
10245 10567 2 109000040
10246 10568 2 110000020
10247 10569 2 110000030
10248 10570 2 110000040
10249 10571 2 118000010
10250 10572 3 101000050
10251 10573 3 101000060
10252 10574 3 101000080
10253 10575 3 101000040
10254 10576 3 109000060
10255 10577 3 109000070
10256 10578 3 109000080
10257 10579 3 105000060
10258 10580 3 105000070
10259 10581 3 105000080
10260 10582 3 104000050
10261 10583 3 106000050
10262 10584 3 102000060
10263 10585 3 102000070
10264 10586 3 102000080
10265 10587 3 103000050
10266 10588 3 105000050
10267 10589 3 107000060
10268 10590 3 107000070
10269 10591 3 107000080
10270 10592 3 108000050
10271 10593 3 109000050
10272 10594 3 103000060
10273 10595 3 103000070
10274 10596 3 103000080
10275 10597 3 110000050
10276 10598 3 106000060
10277 10599 3 106000070
10278 10600 3 106000080
10279 10601 3 101000070
10280 10602 3 110000060
10281 10603 3 104000060
10282 10604 3 104000070
10283 10605 3 104000080
10284 10606 3 102000050
10285 10607 3 104000170
10286 10608 3 104000260
10287 10609 3 111000010
10288 10610 3 111000020
10289 10611 3 111000030
10290 10612 3 112000020
10291 10613 3 112000030
10292 10614 3 108000060
10293 10615 3 108000070
10294 10616 3 108000080
10295 10617 3 107000050
10296 10618 3 112000010
10297 10619 3 110000070
10298 10620 3 110000080
10299 10621 3 118000020
10300 10622 3 118000030
10301 10623 3 118000040
10302 10624 4 101000090
10303 10625 4 101000100
10304 10626 4 101000110
10305 10627 4 109000100
10306 10628 4 105000100
10307 10629 4 105000110
10308 10630 4 108000090
10309 10631 4 110000090
10310 10632 4 102000100
10311 10633 4 102000110
10312 10634 4 106000090
10313 10635 4 109000090
10314 10636 4 107000100
10315 10637 4 103000090
10316 10638 4 102000090
10317 10639 4 103000100
10318 10640 4 106000100
10319 10641 4 106000110
10320 10642 4 104000090
10321 10643 4 104000100
10322 10644 4 104000110
10323 10645 4 107000090
10324 10646 4 104000180
10325 10647 4 111000040
10326 10648 4 112000040
10327 10649 4 108000100
10328 10650 4 105000090
10329 10651 4 110000100
10330 10652 4 118000050
10331 10653 4 118000060
10332 10654 5 101000120
10333 10655 5 109000110
10334 10656 5 105000120
10335 10657 5 102000120
10336 10658 5 107000110
10337 10659 5 103000120
10338 10660 5 106000120
10339 10661 5 104000120
10340 10662 5 104000190
10341 10663 5 111000060
10342 10664 5 112000060
10343 10665 5 108000110
10344 10666 5 110000110
10345 10667 5 118000070
10346 10668 1 201000010
10347 10669 1 292000010
10348 10670 1 299000040
10349 10671 1 299000070
10350 10672 1 299000110
10351 10673 1 299000120
10352 10674 1 299000140
10353 10675 2 202000010
10354 10676 2 290000010
10355 10677 2 299000010
10356 10678 2 299000150
10357 10679 2 299000190
10358 10680 2 299000200
10359 10681 2 299000210
10360 10682 3 298000050
10361 10683 3 298000060
10362 10684 3 299000060
10363 10685 3 299000170
10364 10686 3 290000120
10365 10687 3 291000050
10366 10688 3 292000020
10367 10689 4 299000670
10368 10690 4 299000680
10369 10691 4 204000010
10370 10692 4 209000040
10371 10693 4 202000070
10372 10694 5 297000100
10373 10695 5 291000020
10374 10696 5 297000130
10375 10697 5 297000140
10376 10698 5 203000010
10377 10699 5 206000030
10378 10700 5 203000050
10379 10701 2 170003
10380 10702 2 180003
10381 10703 3 170004
10382 10704 3 180004
10383 10705 4 140000
10384 10706 5 150010
10385 10707 5 150020
10386 10708 5 150030
10387 10709 5 150040
10388 10711 3 101000050
10389 10712 3 101000060
10390 10713 3 101000080
10391 10714 3 101000040
10392 10715 3 109000060
10393 10716 3 109000070
10394 10717 3 109000080
10395 10718 3 105000060
10396 10719 3 105000070
10397 10720 3 105000080
10398 10721 3 104000050
10399 10722 3 106000050
10400 10723 3 102000060
10401 10724 3 102000070
10402 10725 3 102000080
10403 10726 3 103000050
10404 10727 3 105000050
10405 10728 3 107000060
10406 10729 3 107000070
10407 10730 3 107000080
10408 10731 3 108000050
10409 10732 3 109000050
10410 10733 3 103000060
10411 10734 3 103000070
10412 10735 3 103000080
10413 10736 3 110000050
10414 10737 3 106000060
10415 10738 3 106000070
10416 10739 3 106000080
10417 10740 3 101000070
10418 10741 3 110000060
10419 10742 3 104000060
10420 10743 3 104000070
10421 10744 3 104000080
10422 10745 3 102000050
10423 10746 3 104000170
10424 10747 3 104000260
10425 10748 3 111000010
10426 10749 3 111000020
10427 10750 3 111000030
10428 10751 3 112000020
10429 10752 3 112000030
10430 10753 3 108000060
10431 10754 3 108000070
10432 10755 3 108000080
10433 10756 3 107000050
10434 10757 3 112000010
10435 10758 3 110000070
10436 10759 3 110000080
10437 10760 3 118000020
10438 10761 3 118000030
10439 10762 3 118000040
10440 10763 4 101000090
10441 10764 4 101000100
10442 10765 4 101000110
10443 10766 4 109000100
10444 10767 4 105000100
10445 10768 4 105000110
10446 10769 4 108000090
10447 10770 4 110000090
10448 10771 4 102000100
10449 10772 4 102000110
10450 10773 4 106000090
10451 10774 4 109000090
10452 10775 4 107000100
10453 10776 4 103000090
10454 10777 4 102000090
10455 10778 4 103000100
10456 10779 4 106000100
10457 10780 4 106000110
10458 10781 4 104000090
10459 10782 4 104000100
10460 10783 4 104000110
10461 10784 4 107000090
10462 10785 4 104000180
10463 10786 4 111000040
10464 10787 4 112000040
10465 10788 4 108000100
10466 10789 4 105000090
10467 10790 4 110000100
10468 10791 4 118000050
10469 10792 4 118000060
10470 10793 5 101000120
10471 10794 5 109000110
10472 10795 5 105000120
10473 10796 5 102000120
10474 10797 5 107000110
10475 10798 5 103000120
10476 10799 5 106000120
10477 10800 5 104000120
10478 10801 5 104000190
10479 10802 5 111000060
10480 10803 5 112000060
10481 10804 5 108000110
10482 10805 5 110000110
10483 10806 5 118000070
10484 10807 1 201000010
10485 10808 1 292000010
10486 10809 1 299000040
10487 10810 1 299000070
10488 10811 1 299000110
10489 10812 1 299000120
10490 10813 1 299000140
10491 10814 2 202000010
10492 10815 2 290000010
10493 10816 2 299000010
10494 10817 2 299000150
10495 10818 2 299000190
10496 10819 2 299000200
10497 10820 2 299000210
10498 10821 3 298000050
10499 10822 3 298000060
10500 10823 3 299000060
10501 10824 3 299000170
10502 10825 3 290000120
10503 10826 3 291000050
10504 10827 3 292000020
10505 10828 4 299000670
10506 10829 4 299000680
10507 10830 4 204000010
10508 10831 4 209000040
10509 10832 4 202000070
10510 10833 5 297000100
10511 10834 5 291000020
10512 10835 5 297000130
10513 10836 5 297000140
10514 10837 5 203000010
10515 10838 5 206000030
10516 10839 5 203000050
10517 10840 3 170004
10518 10841 3 180004
10519 10842 4 140000
10520 10843 5 150010
10521 10844 5 150020
10522 10845 5 150030
10523 10846 5 150040
10524 10848 3 101000050
10525 10849 3 101000060
10526 10850 3 101000080
10527 10851 3 101000040
10528 10852 3 109000060
10529 10853 3 109000070
10530 10854 3 109000080
10531 10855 3 105000060
10532 10856 3 105000070
10533 10857 3 105000080
10534 10858 3 104000050
10535 10859 3 106000050
10536 10860 3 102000060
10537 10861 3 102000070
10538 10862 3 102000080
10539 10863 3 103000050
10540 10864 3 105000050
10541 10865 3 107000060
10542 10866 3 107000070
10543 10867 3 107000080
10544 10868 3 108000050
10545 10869 3 109000050
10546 10870 3 103000060
10547 10871 3 103000070
10548 10872 3 103000080
10549 10873 3 110000050
10550 10874 3 106000060
10551 10875 3 106000070
10552 10876 3 106000080
10553 10877 3 101000070
10554 10878 3 110000060
10555 10879 3 104000060
10556 10880 3 104000070
10557 10881 3 104000080
10558 10882 3 102000050
10559 10883 3 104000170
10560 10884 3 104000260
10561 10885 3 111000010
10562 10886 3 111000020
10563 10887 3 111000030
10564 10888 3 112000020
10565 10889 3 112000030
10566 10890 3 108000060
10567 10891 3 108000070
10568 10892 3 108000080
10569 10893 3 107000050
10570 10894 3 112000010
10571 10895 3 110000070
10572 10896 3 110000080
10573 10897 3 118000020
10574 10898 3 118000030
10575 10899 3 118000040
10576 10900 4 101000090
10577 10901 4 101000100
10578 10902 4 101000110
10579 10903 4 109000100
10580 10904 4 105000100
10581 10905 4 105000110
10582 10906 4 108000090
10583 10907 4 110000090
10584 10908 4 102000100
10585 10909 4 102000110
10586 10910 4 106000090
10587 10911 4 109000090
10588 10912 4 107000100
10589 10913 4 103000090
10590 10914 4 102000090
10591 10915 4 103000100
10592 10916 4 106000100
10593 10917 4 106000110
10594 10918 4 104000090
10595 10919 4 104000100
10596 10920 4 104000110
10597 10921 4 107000090
10598 10922 4 104000180
10599 10923 4 111000040
10600 10924 4 112000040
10601 10925 4 108000100
10602 10926 4 105000090
10603 10927 4 110000100
10604 10928 4 118000050
10605 10929 4 118000060
10606 10930 5 101000120
10607 10931 5 109000110
10608 10932 5 105000120
10609 10933 5 102000120
10610 10934 5 107000110
10611 10935 5 103000120
10612 10936 5 106000120
10613 10937 5 104000120
10614 10938 5 104000190
10615 10939 5 111000060
10616 10940 5 112000060
10617 10941 5 108000110
10618 10942 5 110000110
10619 10943 5 118000070
10620 10944 1 201000010
10621 10945 1 292000010
10622 10946 1 299000040
10623 10947 1 299000070
10624 10948 1 299000110
10625 10949 1 299000120
10626 10950 1 299000140
10627 10951 2 202000010
10628 10952 2 290000010
10629 10953 2 299000010
10630 10954 2 299000150
10631 10955 2 299000190
10632 10956 2 299000200
10633 10957 2 299000210
10634 10958 3 298000050
10635 10959 3 298000060
10636 10960 3 299000060
10637 10961 3 299000170
10638 10962 3 290000120
10639 10963 3 291000050
10640 10964 3 292000020
10641 10965 4 299000670
10642 10966 4 299000680
10643 10967 4 204000010
10644 10968 4 209000040
10645 10969 4 202000070
10646 10970 5 297000100
10647 10971 5 291000020
10648 10972 5 297000130
10649 10973 5 297000140
10650 10974 5 203000010
10651 10975 5 206000030
10652 10976 5 203000050
10653 10977 3 170004
10654 10978 3 180004
10655 10979 4 140000
10656 10980 5 150010
10657 10981 5 150020
10658 10982 5 150030
10659 10983 5 150040
10660 10985 3 101000050
10661 10986 3 101000060
10662 10987 3 101000080
10663 10988 3 101000040
10664 10989 3 109000060
10665 10990 3 109000070
10666 10991 3 109000080
10667 10992 3 105000060
10668 10993 3 105000070
10669 10994 3 105000080
10670 10995 3 104000050
10671 10996 3 106000050
10672 10997 3 102000060
10673 10998 3 102000070
10674 10999 3 102000080
10675 11000 3 103000050
10676 11001 3 105000050
10677 11002 3 107000060
10678 11003 3 107000070
10679 11004 3 107000080
10680 11005 3 108000050
10681 11006 3 109000050
10682 11007 3 103000060
10683 11008 3 103000070
10684 11009 3 103000080
10685 11010 3 110000050
10686 11011 3 106000060
10687 11012 3 106000070
10688 11013 3 106000080
10689 11014 3 101000070
10690 11015 3 110000060
10691 11016 3 104000060
10692 11017 3 104000070
10693 11018 3 104000080
10694 11019 3 102000050
10695 11020 3 104000170
10696 11021 3 104000260
10697 11022 3 111000010
10698 11023 3 111000020
10699 11024 3 111000030
10700 11025 3 112000020
10701 11026 3 112000030
10702 11027 3 108000060
10703 11028 3 108000070
10704 11029 3 108000080
10705 11030 3 107000050
10706 11031 3 112000010
10707 11032 3 110000070
10708 11033 3 110000080
10709 11034 3 118000020
10710 11035 3 118000030
10711 11036 3 118000040
10712 11037 4 101000090
10713 11038 4 101000100
10714 11039 4 101000110
10715 11040 4 109000100
10716 11041 4 105000100
10717 11042 4 105000110
10718 11043 4 108000090
10719 11044 4 110000090
10720 11045 4 102000100
10721 11046 4 102000110
10722 11047 4 106000090
10723 11048 4 109000090
10724 11049 4 107000100
10725 11050 4 103000090
10726 11051 4 102000090
10727 11052 4 103000100
10728 11053 4 106000100
10729 11054 4 106000110
10730 11055 4 104000090
10731 11056 4 104000100
10732 11057 4 104000110
10733 11058 4 107000090
10734 11059 4 104000180
10735 11060 4 111000040
10736 11061 4 112000040
10737 11062 4 108000100
10738 11063 4 105000090
10739 11064 4 110000100
10740 11065 4 118000050
10741 11066 4 118000060
10742 11067 5 101000120
10743 11068 5 109000110
10744 11069 5 105000120
10745 11070 5 102000120
10746 11071 5 107000110
10747 11072 5 103000120
10748 11073 5 106000120
10749 11074 5 104000120
10750 11075 5 104000190
10751 11076 5 111000060
10752 11077 5 112000060
10753 11078 5 108000110
10754 11079 5 110000110
10755 11080 5 118000070
10756 11081 1 201000010
10757 11082 1 292000010
10758 11083 1 299000040
10759 11084 1 299000070
10760 11085 1 299000110
10761 11086 1 299000120
10762 11087 1 299000140
10763 11088 2 202000010
10764 11089 2 290000010
10765 11090 2 299000010
10766 11091 2 299000150
10767 11092 2 299000190
10768 11093 2 299000200
10769 11094 2 299000210
10770 11095 3 298000050
10771 11096 3 298000060
10772 11097 3 299000060
10773 11098 3 299000170
10774 11099 3 290000120
10775 11100 3 291000050
10776 11101 3 292000020
10777 11102 4 299000670
10778 11103 4 299000680
10779 11104 4 204000010
10780 11105 4 209000040
10781 11106 4 202000070
10782 11107 5 297000100
10783 11108 5 291000020
10784 11109 5 297000130
10785 11110 5 297000140
10786 11111 5 203000010
10787 11112 5 206000030
10788 11113 5 203000050
10789 11114 3 170004
10790 11115 3 180004
10791 11116 4 140000
10792 11117 5 150010
10793 11118 5 150020
10794 11119 5 150030
10795 11120 5 150040
10796 11121 5 190000
10797 11122 5 200000
10798 11123 5 210000
10799 11125 3 118000020
10800 11126 3 118000030
10801 11127 3 118000040
10802 11128 3 106000060
10803 11129 3 106000070
10804 11130 3 106000080
10805 11131 3 101000070
10806 11132 3 110000060
10807 11133 3 104000060
10808 11134 3 104000070
10809 11135 3 104000080
10810 11136 3 102000050
10811 11137 3 104000170
10812 11138 3 104000260
10813 11139 4 118000050
10814 11140 4 118000060
10815 11141 4 106000100
10816 11142 4 106000110
10817 11143 4 104000090
10818 11144 4 104000100
10819 11145 4 104000110
10820 11146 4 104000270
10821 11147 4 107000090
10822 11148 4 104000180
10823 11149 5 118000070
10824 11150 5 106000120
10825 11151 5 104000120
10826 11152 5 104000190
10827 11153 1 103000000
10828 11154 2 103000001
10829 11155 3 103000002
10830 11156 4 103000003
10831 11157 5 103000004
10832 11158 1 111000000
10833 11159 2 111000001
10834 11160 3 111000002
10835 11161 4 111000003
10836 11162 5 111000004
10837 11163 1 115000000
10838 11164 2 115000001
10839 11165 3 115000002
10840 11166 4 115000003
10841 11167 5 115000004
10842 11168 3 170004
10843 11169 4 170005
10844 11170 3 180004
10845 11171 4 180005
10846 11172 4 140000
10847 11173 4 150010
10848 11174 4 150020
10849 11175 4 150030
10850 11176 4 150040
10851 11178 3 111000010
10852 11179 3 111000020
10853 11180 3 111000030
10854 11181 3 112000020
10855 11182 3 112000030
10856 11183 3 108000060
10857 11184 3 108000070
10858 11185 3 108000080
10859 11186 3 107000050
10860 11187 3 112000010
10861 11188 3 110000070
10862 11189 3 110000080
10863 11190 4 111000040
10864 11191 4 112000040
10865 11192 4 108000100
10866 11193 4 105000090
10867 11194 4 110000100
10868 11195 5 111000060
10869 11196 5 112000060
10870 11197 5 108000110
10871 11198 5 110000110
10872 11199 1 108000000
10873 11200 2 108000001
10874 11201 3 108000002
10875 11202 4 108000003
10876 11203 5 108000004
10877 11204 1 107000000
10878 11205 2 107000001
10879 11206 3 107000002
10880 11207 4 107000003
10881 11208 5 107000004
10882 11209 1 120000000
10883 11210 2 120000001
10884 11211 3 120000002
10885 11212 4 120000003
10886 11213 5 120000004
10887 11214 4 110024
10888 11215 4 110034
10889 11216 4 110044
10890 11217 4 110054
10891 11218 3 110060
10892 11219 3 110070
10893 11220 3 110080
10894 11221 3 110090
10895 11222 3 110100
10896 11223 3 110110
10897 11224 3 110120
10898 11225 3 110130
10899 11226 3 110140
10900 11227 3 110150
10901 11228 3 110160
10902 11229 3 110170
10903 11230 3 110180
10904 11231 3 110190
10905 11232 3 110200
10906 11233 3 110210
10907 11234 3 110220
10908 11235 3 110230
10909 11236 3 110240
10910 11237 3 110250
10911 11238 3 110260
10912 11239 3 110270
10913 11240 3 110620
10914 11241 3 110670
10915 11242 4 140000
10916 11243 4 150010
10917 11244 4 150020
10918 11245 4 150030
10919 11246 4 150040
10920 11248 3 101000050
10921 11249 3 101000060
10922 11250 3 101000080
10923 11251 3 101000040
10924 11252 3 109000060
10925 11253 3 109000070
10926 11254 3 109000080
10927 11255 3 105000060
10928 11256 3 105000070
10929 11257 3 105000080
10930 11258 3 104000050
10931 11259 3 106000050
10932 11260 4 101000090
10933 11261 4 101000100
10934 11262 4 101000110
10935 11263 4 109000100
10936 11264 4 105000100
10937 11265 4 105000110
10938 11266 4 108000090
10939 11267 4 110000090
10940 11268 5 101000120
10941 11269 5 109000110
10942 11270 5 105000120
10943 11271 1 101000000
10944 11272 2 101000001
10945 11273 3 101000002
10946 11274 4 101000008
10947 11275 5 101000004
10948 11276 1 109000000
10949 11277 2 109000001
10950 11278 3 109000002
10951 11279 4 109000003
10952 11280 5 109000004
10953 11281 4 120024
10954 11282 4 120034
10955 11283 4 120044
10956 11284 4 120054
10957 11285 3 120241
10958 11286 3 120251
10959 11287 3 120261
10960 11288 3 120271
10961 11289 3 120300
10962 11290 3 120310
10963 11291 3 120320
10964 11292 3 120330
10965 11293 3 120340
10966 11294 3 120350
10967 11295 3 120360
10968 11296 3 120370
10969 11297 3 120380
10970 11298 3 120390
10971 11299 3 120400
10972 11300 3 120410
10973 11301 3 120420
10974 11302 3 120430
10975 11303 3 120450
10976 11304 3 120460
10977 11305 3 120550
10978 11306 3 120560
10979 11307 3 120570
10980 11308 3 120990
10981 11309 3 121000
10982 11310 3 121010
10983 11311 3 121020
10984 11312 3 121100
10985 11313 4 140000
10986 11314 4 150010
10987 11315 4 150020
10988 11316 4 150030
10989 11317 4 150040
10990 11319 3 102000060
10991 11320 3 102000070
10992 11321 3 102000080
10993 11322 3 103000050
10994 11323 3 105000050
10995 11324 3 107000060
10996 11325 3 107000070
10997 11326 3 107000080
10998 11327 3 108000050
10999 11328 3 109000050
11000 11329 3 103000060
11001 11330 3 103000070
11002 11331 3 103000080
11003 11332 3 110000050
11004 11333 4 102000100
11005 11334 4 102000110
11006 11335 4 102000350
11007 11336 4 106000090
11008 11337 4 109000090
11009 11338 4 107000100
11010 11339 4 103000090
11011 11340 4 102000090
11012 11341 4 103000100
11013 11342 5 102000120
11014 11343 5 107000110
11015 11344 5 103000120
11016 11345 1 102000000
11017 11346 2 102000001
11018 11347 3 102000002
11019 11348 4 102000003
11020 11349 5 102000004
11021 11350 1 105000000
11022 11351 2 105000001
11023 11352 3 105000002
11024 11353 4 105000003
11025 11354 5 105000004
11026 11355 1 112000000
11027 11356 2 112000001
11028 11357 3 112000002
11029 11358 4 112000003
11030 11359 5 112000004
11031 11360 4 130024
11032 11361 4 130034
11033 11362 4 130044
11034 11363 4 130054
11035 11364 3 130060
11036 11365 3 130070
11037 11366 3 130080
11038 11367 3 130090
11039 11368 3 130100
11040 11369 3 130110
11041 11370 3 130120
11042 11371 3 130130
11043 11372 3 130140
11044 11373 3 130150
11045 11374 3 130160
11046 11375 3 130170
11047 11376 3 130180
11048 11377 3 130190
11049 11378 3 130200
11050 11379 3 130420
11051 11380 3 130510
11052 11381 3 130520
11053 11382 3 130531
11054 11383 3 130540
11055 11384 3 130660
11056 11385 3 130790
11057 11386 3 130800
11058 11387 3 131130
11059 11388 4 140000
11060 11389 4 150010
11061 11390 4 150020
11062 11391 4 150030
11063 11392 4 150040
11064 11394 1 101000010
11065 11395 1 102000010
11066 11396 1 103000010
11067 11397 1 104000010
11068 11398 1 105000010
11069 11399 1 106000010
11070 11400 1 107000010
11071 11401 1 108000010
11072 11402 1 109000010
11073 11403 1 110000010
11074 11404 2 101000020
11075 11405 2 101000030
11076 11406 2 102000020
11077 11407 2 102000030
11078 11408 2 102000040
11079 11409 2 103000020
11080 11410 2 103000030
11081 11411 2 103000040
11082 11412 2 104000020
11083 11413 2 104000030
11084 11414 2 104000040
11085 11415 2 105000020
11086 11416 2 105000030
11087 11417 2 105000040
11088 11418 2 106000020
11089 11419 2 106000030
11090 11420 2 106000040
11091 11421 2 107000020
11092 11422 2 107000030
11093 11423 2 107000040
11094 11424 2 108000020
11095 11425 2 108000030
11096 11426 2 108000040
11097 11427 2 109000020
11098 11428 2 109000030
11099 11429 2 109000040
11100 11430 2 110000020
11101 11431 2 110000030
11102 11432 2 110000040
11103 11433 2 118000010
11104 11434 3 101000050
11105 11435 3 101000060
11106 11436 3 101000080
11107 11437 3 101000040
11108 11438 3 109000060
11109 11439 3 109000070
11110 11440 3 109000080
11111 11441 3 105000060
11112 11442 3 105000070
11113 11443 3 105000080
11114 11444 3 104000050
11115 11445 3 106000050
11116 11446 3 102000060
11117 11447 3 102000070
11118 11448 3 102000080
11119 11449 3 103000050
11120 11450 3 105000050
11121 11451 3 107000060
11122 11452 3 107000070
11123 11453 3 107000080
11124 11454 3 108000050
11125 11455 3 109000050
11126 11456 3 103000060
11127 11457 3 103000070
11128 11458 3 103000080
11129 11459 3 110000050
11130 11460 3 106000060
11131 11461 3 106000070
11132 11462 3 106000080
11133 11463 3 101000070
11134 11464 3 110000060
11135 11465 3 104000060
11136 11466 3 104000070
11137 11467 3 104000080
11138 11468 3 102000050
11139 11469 3 104000170
11140 11470 3 104000260
11141 11471 3 111000010
11142 11472 3 111000020
11143 11473 3 111000030
11144 11474 3 112000020
11145 11475 3 112000030
11146 11476 3 108000060
11147 11477 3 108000070
11148 11478 3 108000080
11149 11479 3 107000050
11150 11480 3 112000010
11151 11481 3 110000070
11152 11482 3 110000080
11153 11483 3 118000020
11154 11484 3 118000030
11155 11485 3 118000040
11156 11486 4 101000090
11157 11487 4 101000100
11158 11488 4 101000110
11159 11489 4 109000100
11160 11490 4 105000100
11161 11491 4 105000110
11162 11492 4 108000090
11163 11493 4 110000090
11164 11494 4 102000100
11165 11495 4 102000110
11166 11496 4 106000090
11167 11497 4 109000090
11168 11498 4 107000100
11169 11499 4 103000090
11170 11500 4 102000090
11171 11501 4 103000100
11172 11502 4 106000100
11173 11503 4 106000110
11174 11504 4 104000090
11175 11505 4 104000100
11176 11506 4 104000110
11177 11507 4 107000090
11178 11508 4 104000180
11179 11509 4 111000040
11180 11510 4 112000040
11181 11511 4 108000100
11182 11512 4 105000090
11183 11513 4 110000100
11184 11514 4 118000050
11185 11515 4 118000060
11186 11516 5 101000120
11187 11517 5 109000110
11188 11518 5 105000120
11189 11519 5 102000120
11190 11520 5 107000110
11191 11521 5 103000120
11192 11522 5 106000120
11193 11523 5 104000120
11194 11524 5 104000190
11195 11525 5 111000060
11196 11526 5 112000060
11197 11527 5 108000110
11198 11528 5 110000110
11199 11529 5 118000070
11200 11530 1 201000010
11201 11531 1 292000010
11202 11532 1 299000040
11203 11533 1 299000070
11204 11534 1 299000110
11205 11535 1 299000120
11206 11536 1 299000140
11207 11537 2 202000010
11208 11538 2 290000010
11209 11539 2 299000010
11210 11540 2 299000150
11211 11541 2 299000190
11212 11542 2 299000200
11213 11543 2 299000210
11214 11544 3 298000050
11215 11545 3 298000060
11216 11546 3 299000060
11217 11547 3 299000170
11218 11548 3 290000120
11219 11549 3 291000050
11220 11550 3 292000020
11221 11551 4 299000670
11222 11552 4 299000680
11223 11553 4 204000010
11224 11554 4 209000040
11225 11555 4 202000070
11226 11556 4 209000070
11227 11557 5 297000100
11228 11558 5 291000020
11229 11559 5 297000130
11230 11560 5 297000140
11231 11561 5 203000010
11232 11562 5 206000030
11233 11563 5 203000050
11234 11564 5 202000090
11235 11565 1 170002
11236 11566 1 180002
11237 11567 2 170003
11238 11568 2 180003
11239 11569 3 170004
11240 11570 3 180004
11241 11571 4 140000
11242 11572 5 150010
11243 11573 5 150020
11244 11574 5 150030
11245 11575 5 150040
11246 11577 1 101000010
11247 11578 1 102000010
11248 11579 1 103000010
11249 11580 1 104000010
11250 11581 1 105000010
11251 11582 1 106000010
11252 11583 1 107000010
11253 11584 1 108000010
11254 11585 1 109000010
11255 11586 1 110000010
11256 11587 2 101000020
11257 11588 2 101000030
11258 11589 2 102000020
11259 11590 2 102000030
11260 11591 2 102000040
11261 11592 2 103000020
11262 11593 2 103000030
11263 11594 2 103000040
11264 11595 2 104000020
11265 11596 2 104000030
11266 11597 2 104000040
11267 11598 2 105000020
11268 11599 2 105000030
11269 11600 2 105000040
11270 11601 2 106000020
11271 11602 2 106000030
11272 11603 2 106000040
11273 11604 2 107000020
11274 11605 2 107000030
11275 11606 2 107000040
11276 11607 2 108000020
11277 11608 2 108000030
11278 11609 2 108000040
11279 11610 2 109000020
11280 11611 2 109000030
11281 11612 2 109000040
11282 11613 2 110000020
11283 11614 2 110000030
11284 11615 2 110000040
11285 11616 2 118000010
11286 11617 3 101000050
11287 11618 3 101000060
11288 11619 3 101000080
11289 11620 3 101000040
11290 11621 3 109000060
11291 11622 3 109000070
11292 11623 3 109000080
11293 11624 3 105000060
11294 11625 3 105000070
11295 11626 3 105000080
11296 11627 3 104000050
11297 11628 3 106000050
11298 11629 3 102000060
11299 11630 3 102000070
11300 11631 3 102000080
11301 11632 3 103000050
11302 11633 3 105000050
11303 11634 3 107000060
11304 11635 3 107000070
11305 11636 3 107000080
11306 11637 3 108000050
11307 11638 3 109000050
11308 11639 3 103000060
11309 11640 3 103000070
11310 11641 3 103000080
11311 11642 3 110000050
11312 11643 3 106000060
11313 11644 3 106000070
11314 11645 3 106000080
11315 11646 3 101000070
11316 11647 3 110000060
11317 11648 3 104000060
11318 11649 3 104000070
11319 11650 3 104000080
11320 11651 3 102000050
11321 11652 3 104000170
11322 11653 3 104000260
11323 11654 3 111000010
11324 11655 3 111000020
11325 11656 3 111000030
11326 11657 3 112000020
11327 11658 3 112000030
11328 11659 3 108000060
11329 11660 3 108000070
11330 11661 3 108000080
11331 11662 3 107000050
11332 11663 3 112000010
11333 11664 3 110000070
11334 11665 3 110000080
11335 11666 3 118000020
11336 11667 3 118000030
11337 11668 3 118000040
11338 11669 4 101000090
11339 11670 4 101000100
11340 11671 4 101000110
11341 11672 4 109000100
11342 11673 4 105000100
11343 11674 4 105000110
11344 11675 4 108000090
11345 11676 4 110000090
11346 11677 4 102000100
11347 11678 4 102000110
11348 11679 4 106000090
11349 11680 4 109000090
11350 11681 4 107000100
11351 11682 4 103000090
11352 11683 4 102000090
11353 11684 4 103000100
11354 11685 4 106000100
11355 11686 4 106000110
11356 11687 4 104000090
11357 11688 4 104000100
11358 11689 4 104000110
11359 11690 4 107000090
11360 11691 4 104000180
11361 11692 4 111000040
11362 11693 4 112000040
11363 11694 4 108000100
11364 11695 4 105000090
11365 11696 4 110000100
11366 11697 4 118000050
11367 11698 4 118000060
11368 11699 5 101000120
11369 11700 5 109000110
11370 11701 5 105000120
11371 11702 5 102000120
11372 11703 5 107000110
11373 11704 5 103000120
11374 11705 5 106000120
11375 11706 5 104000120
11376 11707 5 104000190
11377 11708 5 111000060
11378 11709 5 112000060
11379 11710 5 108000110
11380 11711 5 110000110
11381 11712 5 118000070
11382 11713 1 201000010
11383 11714 1 292000010
11384 11715 1 299000040
11385 11716 1 299000070
11386 11717 1 299000110
11387 11718 1 299000120
11388 11719 1 299000140
11389 11720 2 202000010
11390 11721 2 290000010
11391 11722 2 299000010
11392 11723 2 299000150
11393 11724 2 299000190
11394 11725 2 299000200
11395 11726 2 299000210
11396 11727 3 298000050
11397 11728 3 298000060
11398 11729 3 299000060
11399 11730 3 299000170
11400 11731 3 290000120
11401 11732 3 291000050
11402 11733 3 292000020
11403 11734 4 299000670
11404 11735 4 299000680
11405 11736 4 204000010
11406 11737 4 209000040
11407 11738 4 202000070
11408 11739 4 209000070
11409 11740 5 297000100
11410 11741 5 291000020
11411 11742 5 297000130
11412 11743 5 297000140
11413 11744 5 203000010
11414 11745 5 206000030
11415 11746 5 203000050
11416 11747 5 202000090
11417 11748 2 170003
11418 11749 2 180003
11419 11750 3 170004
11420 11751 3 180004
11421 11752 4 140000
11422 11753 5 150010
11423 11754 5 150020
11424 11755 5 150030
11425 11756 5 150040
11426 11758 3 101000050
11427 11759 3 101000060
11428 11760 3 101000080
11429 11761 3 101000040
11430 11762 3 109000060
11431 11763 3 109000070
11432 11764 3 109000080
11433 11765 3 105000060
11434 11766 3 105000070
11435 11767 3 105000080
11436 11768 3 104000050
11437 11769 3 106000050
11438 11770 3 102000060
11439 11771 3 102000070
11440 11772 3 102000080
11441 11773 3 103000050
11442 11774 3 105000050
11443 11775 3 107000060
11444 11776 3 107000070
11445 11777 3 107000080
11446 11778 3 108000050
11447 11779 3 109000050
11448 11780 3 103000060
11449 11781 3 103000070
11450 11782 3 103000080
11451 11783 3 110000050
11452 11784 3 106000060
11453 11785 3 106000070
11454 11786 3 106000080
11455 11787 3 101000070
11456 11788 3 110000060
11457 11789 3 104000060
11458 11790 3 104000070
11459 11791 3 104000080
11460 11792 3 102000050
11461 11793 3 104000170
11462 11794 3 104000260
11463 11795 3 111000010
11464 11796 3 111000020
11465 11797 3 111000030
11466 11798 3 112000020
11467 11799 3 112000030
11468 11800 3 108000060
11469 11801 3 108000070
11470 11802 3 108000080
11471 11803 3 107000050
11472 11804 3 112000010
11473 11805 3 110000070
11474 11806 3 110000080
11475 11807 3 118000020
11476 11808 3 118000030
11477 11809 3 118000040
11478 11810 4 101000090
11479 11811 4 101000100
11480 11812 4 101000110
11481 11813 4 109000100
11482 11814 4 105000100
11483 11815 4 105000110
11484 11816 4 108000090
11485 11817 4 110000090
11486 11818 4 102000100
11487 11819 4 102000110
11488 11820 4 106000090
11489 11821 4 109000090
11490 11822 4 107000100
11491 11823 4 103000090
11492 11824 4 102000090
11493 11825 4 103000100
11494 11826 4 106000100
11495 11827 4 106000110
11496 11828 4 104000090
11497 11829 4 104000100
11498 11830 4 104000110
11499 11831 4 107000090
11500 11832 4 104000180
11501 11833 4 111000040
11502 11834 4 112000040
11503 11835 4 108000100
11504 11836 4 105000090
11505 11837 4 110000100
11506 11838 4 118000050
11507 11839 4 118000060
11508 11840 5 101000120
11509 11841 5 109000110
11510 11842 5 105000120
11511 11843 5 102000120
11512 11844 5 107000110
11513 11845 5 103000120
11514 11846 5 106000120
11515 11847 5 104000120
11516 11848 5 104000190
11517 11849 5 111000060
11518 11850 5 112000060
11519 11851 5 108000110
11520 11852 5 110000110
11521 11853 5 118000070
11522 11854 1 201000010
11523 11855 1 292000010
11524 11856 1 299000040
11525 11857 1 299000070
11526 11858 1 299000110
11527 11859 1 299000120
11528 11860 1 299000140
11529 11861 2 202000010
11530 11862 2 290000010
11531 11863 2 299000010
11532 11864 2 299000150
11533 11865 2 299000190
11534 11866 2 299000200
11535 11867 2 299000210
11536 11868 3 298000050
11537 11869 3 298000060
11538 11870 3 299000060
11539 11871 3 299000170
11540 11872 3 290000120
11541 11873 3 291000050
11542 11874 3 292000020
11543 11875 4 299000670
11544 11876 4 299000680
11545 11877 4 204000010
11546 11878 4 209000040
11547 11879 4 202000070
11548 11880 4 209000070
11549 11881 5 297000100
11550 11882 5 291000020
11551 11883 5 297000130
11552 11884 5 297000140
11553 11885 5 203000010
11554 11886 5 206000030
11555 11887 5 203000050
11556 11888 5 202000090
11557 11889 3 170004
11558 11890 3 180004
11559 11891 4 140000
11560 11892 5 150010
11561 11893 5 150020
11562 11894 5 150030
11563 11895 5 150040
11564 11897 3 101000050
11565 11898 3 101000060
11566 11899 3 101000080
11567 11900 3 101000040
11568 11901 3 109000060
11569 11902 3 109000070
11570 11903 3 109000080
11571 11904 3 105000060
11572 11905 3 105000070
11573 11906 3 105000080
11574 11907 3 104000050
11575 11908 3 106000050
11576 11909 3 102000060
11577 11910 3 102000070
11578 11911 3 102000080
11579 11912 3 103000050
11580 11913 3 105000050
11581 11914 3 107000060
11582 11915 3 107000070
11583 11916 3 107000080
11584 11917 3 108000050
11585 11918 3 109000050
11586 11919 3 103000060
11587 11920 3 103000070
11588 11921 3 103000080
11589 11922 3 110000050
11590 11923 3 106000060
11591 11924 3 106000070
11592 11925 3 106000080
11593 11926 3 101000070
11594 11927 3 110000060
11595 11928 3 104000060
11596 11929 3 104000070
11597 11930 3 104000080
11598 11931 3 102000050
11599 11932 3 104000170
11600 11933 3 104000260
11601 11934 3 111000010
11602 11935 3 111000020
11603 11936 3 111000030
11604 11937 3 112000020
11605 11938 3 112000030
11606 11939 3 108000060
11607 11940 3 108000070
11608 11941 3 108000080
11609 11942 3 107000050
11610 11943 3 112000010
11611 11944 3 110000070
11612 11945 3 110000080
11613 11946 3 118000020
11614 11947 3 118000030
11615 11948 3 118000040
11616 11949 4 101000090
11617 11950 4 101000100
11618 11951 4 101000110
11619 11952 4 109000100
11620 11953 4 105000100
11621 11954 4 105000110
11622 11955 4 108000090
11623 11956 4 110000090
11624 11957 4 102000100
11625 11958 4 102000110
11626 11959 4 106000090
11627 11960 4 109000090
11628 11961 4 107000100
11629 11962 4 103000090
11630 11963 4 102000090
11631 11964 4 103000100
11632 11965 4 106000100
11633 11966 4 106000110
11634 11967 4 104000090
11635 11968 4 104000100
11636 11969 4 104000110
11637 11970 4 107000090
11638 11971 4 104000180
11639 11972 4 111000040
11640 11973 4 112000040
11641 11974 4 108000100
11642 11975 4 105000090
11643 11976 4 110000100
11644 11977 4 118000050
11645 11978 4 118000060
11646 11979 5 101000120
11647 11980 5 109000110
11648 11981 5 105000120
11649 11982 5 102000120
11650 11983 5 107000110
11651 11984 5 103000120
11652 11985 5 106000120
11653 11986 5 104000120
11654 11987 5 104000190
11655 11988 5 111000060
11656 11989 5 112000060
11657 11990 5 108000110
11658 11991 5 110000110
11659 11992 5 118000070
11660 11993 1 201000010
11661 11994 1 292000010
11662 11995 1 299000040
11663 11996 1 299000070
11664 11997 1 299000110
11665 11998 1 299000120
11666 11999 1 299000140
11667 12000 2 202000010
11668 12001 2 290000010
11669 12002 2 299000010
11670 12003 2 299000150
11671 12004 2 299000190
11672 12005 2 299000200
11673 12006 2 299000210
11674 12007 3 298000050
11675 12008 3 298000060
11676 12009 3 299000060
11677 12010 3 299000170
11678 12011 3 290000120
11679 12012 3 291000050
11680 12013 3 292000020
11681 12014 4 299000670
11682 12015 4 299000680
11683 12016 4 204000010
11684 12017 4 209000040
11685 12018 4 202000070
11686 12019 4 209000070
11687 12020 5 297000100
11688 12021 5 291000020
11689 12022 5 297000130
11690 12023 5 297000140
11691 12024 5 203000010
11692 12025 5 206000030
11693 12026 5 203000050
11694 12027 5 202000090
11695 12028 3 170004
11696 12029 3 180004
11697 12030 4 140000
11698 12031 5 150010
11699 12032 5 150020
11700 12033 5 150030
11701 12034 5 150040
11702 12036 3 101000050
11703 12037 3 101000060
11704 12038 3 101000080
11705 12039 3 101000040
11706 12040 3 109000060
11707 12041 3 109000070
11708 12042 3 109000080
11709 12043 3 105000060
11710 12044 3 105000070
11711 12045 3 105000080
11712 12046 3 104000050
11713 12047 3 106000050
11714 12048 3 102000060
11715 12049 3 102000070
11716 12050 3 102000080
11717 12051 3 103000050
11718 12052 3 105000050
11719 12053 3 107000060
11720 12054 3 107000070
11721 12055 3 107000080
11722 12056 3 108000050
11723 12057 3 109000050
11724 12058 3 103000060
11725 12059 3 103000070
11726 12060 3 103000080
11727 12061 3 110000050
11728 12062 3 106000060
11729 12063 3 106000070
11730 12064 3 106000080
11731 12065 3 101000070
11732 12066 3 110000060
11733 12067 3 104000060
11734 12068 3 104000070
11735 12069 3 104000080
11736 12070 3 102000050
11737 12071 3 104000170
11738 12072 3 104000260
11739 12073 3 111000010
11740 12074 3 111000020
11741 12075 3 111000030
11742 12076 3 112000020
11743 12077 3 112000030
11744 12078 3 108000060
11745 12079 3 108000070
11746 12080 3 108000080
11747 12081 3 107000050
11748 12082 3 112000010
11749 12083 3 110000070
11750 12084 3 110000080
11751 12085 3 118000020
11752 12086 3 118000030
11753 12087 3 118000040
11754 12088 4 101000090
11755 12089 4 101000100
11756 12090 4 101000110
11757 12091 4 109000100
11758 12092 4 105000100
11759 12093 4 105000110
11760 12094 4 108000090
11761 12095 4 110000090
11762 12096 4 102000100
11763 12097 4 102000110
11764 12098 4 106000090
11765 12099 4 109000090
11766 12100 4 107000100
11767 12101 4 103000090
11768 12102 4 102000090
11769 12103 4 103000100
11770 12104 4 106000100
11771 12105 4 106000110
11772 12106 4 104000090
11773 12107 4 104000100
11774 12108 4 104000110
11775 12109 4 107000090
11776 12110 4 104000180
11777 12111 4 111000040
11778 12112 4 112000040
11779 12113 4 108000100
11780 12114 4 105000090
11781 12115 4 110000100
11782 12116 4 118000050
11783 12117 4 118000060
11784 12118 5 101000120
11785 12119 5 109000110
11786 12120 5 105000120
11787 12121 5 102000120
11788 12122 5 107000110
11789 12123 5 103000120
11790 12124 5 106000120
11791 12125 5 104000120
11792 12126 5 104000190
11793 12127 5 111000060
11794 12128 5 112000060
11795 12129 5 108000110
11796 12130 5 110000110
11797 12131 5 118000070
11798 12132 1 201000010
11799 12133 1 292000010
11800 12134 1 299000040
11801 12135 1 299000070
11802 12136 1 299000110
11803 12137 1 299000120
11804 12138 1 299000140
11805 12139 2 202000010
11806 12140 2 290000010
11807 12141 2 299000010
11808 12142 2 299000150
11809 12143 2 299000190
11810 12144 2 299000200
11811 12145 2 299000210
11812 12146 3 298000050
11813 12147 3 298000060
11814 12148 3 299000060
11815 12149 3 299000170
11816 12150 3 290000120
11817 12151 3 291000050
11818 12152 3 292000020
11819 12153 4 299000670
11820 12154 4 299000680
11821 12155 4 204000010
11822 12156 4 209000040
11823 12157 4 202000070
11824 12158 4 209000070
11825 12159 5 297000100
11826 12160 5 291000020
11827 12161 5 297000130
11828 12162 5 297000140
11829 12163 5 203000010
11830 12164 5 206000030
11831 12165 5 203000050
11832 12166 5 202000090
11833 12167 3 170004
11834 12168 3 180004
11835 12169 4 140000
11836 12170 5 150010
11837 12171 5 150020
11838 12172 5 150030
11839 12173 5 150040
11840 12174 5 190000
11841 12175 5 200000
11842 12176 5 210000
11843 12178 1 101000010
11844 12179 1 102000010
11845 12180 1 103000010
11846 12181 1 104000010
11847 12182 1 105000010
11848 12183 1 106000010
11849 12184 1 107000010
11850 12185 1 108000010
11851 12186 1 109000010
11852 12187 1 110000010
11853 12188 2 101000020
11854 12189 2 101000030
11855 12190 2 102000020
11856 12191 2 102000030
11857 12192 2 102000040
11858 12193 2 103000020
11859 12194 2 103000030
11860 12195 2 103000040
11861 12196 2 104000020
11862 12197 2 104000030
11863 12198 2 104000040
11864 12199 2 105000020
11865 12200 2 105000030
11866 12201 2 105000040
11867 12202 2 106000020
11868 12203 2 106000030
11869 12204 2 106000040
11870 12205 2 107000020
11871 12206 2 107000030
11872 12207 2 107000040
11873 12208 2 108000020
11874 12209 2 108000030
11875 12210 2 108000040
11876 12211 2 109000020
11877 12212 2 109000030
11878 12213 2 109000040
11879 12214 2 110000020
11880 12215 2 110000030
11881 12216 2 110000040
11882 12217 2 118000010
11883 12218 3 101000050
11884 12219 3 101000060
11885 12220 3 101000080
11886 12221 3 101000040
11887 12222 3 109000060
11888 12223 3 109000070
11889 12224 3 109000080
11890 12225 3 105000060
11891 12226 3 105000070
11892 12227 3 105000080
11893 12228 3 104000050
11894 12229 3 106000050
11895 12230 3 102000060
11896 12231 3 102000070
11897 12232 3 102000080
11898 12233 3 103000050
11899 12234 3 105000050
11900 12235 3 107000060
11901 12236 3 107000070
11902 12237 3 107000080
11903 12238 3 108000050
11904 12239 3 109000050
11905 12240 3 103000060
11906 12241 3 103000070
11907 12242 3 103000080
11908 12243 3 110000050
11909 12244 3 106000060
11910 12245 3 106000070
11911 12246 3 106000080
11912 12247 3 101000070
11913 12248 3 110000060
11914 12249 3 104000060
11915 12250 3 104000070
11916 12251 3 104000080
11917 12252 3 102000050
11918 12253 3 104000170
11919 12254 3 104000260
11920 12255 3 111000010
11921 12256 3 111000020
11922 12257 3 111000030
11923 12258 3 112000020
11924 12259 3 112000030
11925 12260 3 108000060
11926 12261 3 108000070
11927 12262 3 108000080
11928 12263 3 107000050
11929 12264 3 112000010
11930 12265 3 110000070
11931 12266 3 110000080
11932 12267 3 118000020
11933 12268 3 118000030
11934 12269 3 118000040
11935 12270 4 101000090
11936 12271 4 101000100
11937 12272 4 101000110
11938 12273 4 109000100
11939 12274 4 105000100
11940 12275 4 105000110
11941 12276 4 108000090
11942 12277 4 110000090
11943 12278 4 102000100
11944 12279 4 102000110
11945 12280 4 106000090
11946 12281 4 109000090
11947 12282 4 107000100
11948 12283 4 103000090
11949 12284 4 102000090
11950 12285 4 103000100
11951 12286 4 106000100
11952 12287 4 106000110
11953 12288 4 104000090
11954 12289 4 104000100
11955 12290 4 104000110
11956 12291 4 107000090
11957 12292 4 104000180
11958 12293 4 111000040
11959 12294 4 112000040
11960 12295 4 108000100
11961 12296 4 105000090
11962 12297 4 110000100
11963 12298 4 118000050
11964 12299 4 118000060
11965 12300 5 101000120
11966 12301 5 109000110
11967 12302 5 105000120
11968 12303 5 102000120
11969 12304 5 107000110
11970 12305 5 103000120
11971 12306 5 106000120
11972 12307 5 104000120
11973 12308 5 104000190
11974 12309 5 111000060
11975 12310 5 112000060
11976 12311 5 108000110
11977 12312 5 110000110
11978 12313 5 118000070
11979 12314 1 201000010
11980 12315 1 292000010
11981 12316 1 299000040
11982 12317 1 299000070
11983 12318 1 299000110
11984 12319 1 299000120
11985 12320 1 299000140
11986 12321 2 202000010
11987 12322 2 290000010
11988 12323 2 299000010
11989 12324 2 299000150
11990 12325 2 299000190
11991 12326 2 299000200
11992 12327 2 299000210
11993 12328 3 298000050
11994 12329 3 298000060
11995 12330 3 299000060
11996 12331 3 299000170
11997 12332 3 290000120
11998 12333 3 291000050
11999 12334 3 292000020
12000 12335 4 299000670
12001 12336 4 299000680
12002 12337 4 204000010
12003 12338 4 209000040
12004 12339 4 202000070
12005 12340 4 209000070
12006 12341 4 203000110
12007 12342 5 297000100
12008 12343 5 291000020
12009 12344 5 297000130
12010 12345 5 297000140
12011 12346 5 203000010
12012 12347 5 206000030
12013 12348 5 203000050
12014 12349 5 202000090
12015 12350 5 204000080
12016 12351 1 170002
12017 12352 1 180002
12018 12353 2 170003
12019 12354 2 180003
12020 12355 3 170004
12021 12356 3 180004
12022 12357 4 140000
12023 12358 5 150010
12024 12359 5 150020
12025 12360 5 150030
12026 12361 5 150040
12027 12363 1 101000010
12028 12364 1 102000010
12029 12365 1 103000010
12030 12366 1 104000010
12031 12367 1 105000010
12032 12368 1 106000010
12033 12369 1 107000010
12034 12370 1 108000010
12035 12371 1 109000010
12036 12372 1 110000010
12037 12373 2 101000020
12038 12374 2 101000030
12039 12375 2 102000020
12040 12376 2 102000030
12041 12377 2 102000040
12042 12378 2 103000020
12043 12379 2 103000030
12044 12380 2 103000040
12045 12381 2 104000020
12046 12382 2 104000030
12047 12383 2 104000040
12048 12384 2 105000020
12049 12385 2 105000030
12050 12386 2 105000040
12051 12387 2 106000020
12052 12388 2 106000030
12053 12389 2 106000040
12054 12390 2 107000020
12055 12391 2 107000030
12056 12392 2 107000040
12057 12393 2 108000020
12058 12394 2 108000030
12059 12395 2 108000040
12060 12396 2 109000020
12061 12397 2 109000030
12062 12398 2 109000040
12063 12399 2 110000020
12064 12400 2 110000030
12065 12401 2 110000040
12066 12402 2 118000010
12067 12403 3 101000050
12068 12404 3 101000060
12069 12405 3 101000080
12070 12406 3 101000040
12071 12407 3 109000060
12072 12408 3 109000070
12073 12409 3 109000080
12074 12410 3 105000060
12075 12411 3 105000070
12076 12412 3 105000080
12077 12413 3 104000050
12078 12414 3 106000050
12079 12415 3 102000060
12080 12416 3 102000070
12081 12417 3 102000080
12082 12418 3 103000050
12083 12419 3 105000050
12084 12420 3 107000060
12085 12421 3 107000070
12086 12422 3 107000080
12087 12423 3 108000050
12088 12424 3 109000050
12089 12425 3 103000060
12090 12426 3 103000070
12091 12427 3 103000080
12092 12428 3 110000050
12093 12429 3 106000060
12094 12430 3 106000070
12095 12431 3 106000080
12096 12432 3 101000070
12097 12433 3 110000060
12098 12434 3 104000060
12099 12435 3 104000070
12100 12436 3 104000080
12101 12437 3 102000050
12102 12438 3 104000170
12103 12439 3 104000260
12104 12440 3 111000010
12105 12441 3 111000020
12106 12442 3 111000030
12107 12443 3 112000020
12108 12444 3 112000030
12109 12445 3 108000060
12110 12446 3 108000070
12111 12447 3 108000080
12112 12448 3 107000050
12113 12449 3 112000010
12114 12450 3 110000070
12115 12451 3 110000080
12116 12452 3 118000020
12117 12453 3 118000030
12118 12454 3 118000040
12119 12455 4 101000090
12120 12456 4 101000100
12121 12457 4 101000110
12122 12458 4 109000100
12123 12459 4 105000100
12124 12460 4 105000110
12125 12461 4 108000090
12126 12462 4 110000090
12127 12463 4 102000100
12128 12464 4 102000110
12129 12465 4 106000090
12130 12466 4 109000090
12131 12467 4 107000100
12132 12468 4 103000090
12133 12469 4 102000090
12134 12470 4 103000100
12135 12471 4 106000100
12136 12472 4 106000110
12137 12473 4 104000090
12138 12474 4 104000100
12139 12475 4 104000110
12140 12476 4 107000090
12141 12477 4 104000180
12142 12478 4 111000040
12143 12479 4 112000040
12144 12480 4 108000100
12145 12481 4 105000090
12146 12482 4 110000100
12147 12483 4 118000050
12148 12484 4 118000060
12149 12485 5 101000120
12150 12486 5 109000110
12151 12487 5 105000120
12152 12488 5 102000120
12153 12489 5 107000110
12154 12490 5 103000120
12155 12491 5 106000120
12156 12492 5 104000120
12157 12493 5 104000190
12158 12494 5 111000060
12159 12495 5 112000060
12160 12496 5 108000110
12161 12497 5 110000110
12162 12498 5 118000070
12163 12499 1 201000010
12164 12500 1 292000010
12165 12501 1 299000040
12166 12502 1 299000070
12167 12503 1 299000110
12168 12504 1 299000120
12169 12505 1 299000140
12170 12506 2 202000010
12171 12507 2 290000010
12172 12508 2 299000010
12173 12509 2 299000150
12174 12510 2 299000190
12175 12511 2 299000200
12176 12512 2 299000210
12177 12513 3 298000050
12178 12514 3 298000060
12179 12515 3 299000060
12180 12516 3 299000170
12181 12517 3 290000120
12182 12518 3 291000050
12183 12519 3 292000020
12184 12520 4 299000670
12185 12521 4 299000680
12186 12522 4 204000010
12187 12523 4 209000040
12188 12524 4 202000070
12189 12525 4 209000070
12190 12526 4 203000110
12191 12527 5 297000100
12192 12528 5 291000020
12193 12529 5 297000130
12194 12530 5 297000140
12195 12531 5 203000010
12196 12532 5 206000030
12197 12533 5 203000050
12198 12534 5 202000090
12199 12535 5 204000080
12200 12536 2 170003
12201 12537 2 180003
12202 12538 3 170004
12203 12539 3 180004
12204 12540 4 140000
12205 12541 5 150010
12206 12542 5 150020
12207 12543 5 150030
12208 12544 5 150040
12209 12546 3 101000050
12210 12547 3 101000060
12211 12548 3 101000080
12212 12549 3 101000040
12213 12550 3 109000060
12214 12551 3 109000070
12215 12552 3 109000080
12216 12553 3 105000060
12217 12554 3 105000070
12218 12555 3 105000080
12219 12556 3 104000050
12220 12557 3 106000050
12221 12558 3 102000060
12222 12559 3 102000070
12223 12560 3 102000080
12224 12561 3 103000050
12225 12562 3 105000050
12226 12563 3 107000060
12227 12564 3 107000070
12228 12565 3 107000080
12229 12566 3 108000050
12230 12567 3 109000050
12231 12568 3 103000060
12232 12569 3 103000070
12233 12570 3 103000080
12234 12571 3 110000050
12235 12572 3 106000060
12236 12573 3 106000070
12237 12574 3 106000080
12238 12575 3 101000070
12239 12576 3 110000060
12240 12577 3 104000060
12241 12578 3 104000070
12242 12579 3 104000080
12243 12580 3 102000050
12244 12581 3 104000170
12245 12582 3 104000260
12246 12583 3 111000010
12247 12584 3 111000020
12248 12585 3 111000030
12249 12586 3 112000020
12250 12587 3 112000030
12251 12588 3 108000060
12252 12589 3 108000070
12253 12590 3 108000080
12254 12591 3 107000050
12255 12592 3 112000010
12256 12593 3 110000070
12257 12594 3 110000080
12258 12595 3 118000020
12259 12596 3 118000030
12260 12597 3 118000040
12261 12598 4 101000090
12262 12599 4 101000100
12263 12600 4 101000110
12264 12601 4 109000100
12265 12602 4 105000100
12266 12603 4 105000110
12267 12604 4 108000090
12268 12605 4 110000090
12269 12606 4 102000100
12270 12607 4 102000110
12271 12608 4 106000090
12272 12609 4 109000090
12273 12610 4 107000100
12274 12611 4 103000090
12275 12612 4 102000090
12276 12613 4 103000100
12277 12614 4 106000100
12278 12615 4 106000110
12279 12616 4 104000090
12280 12617 4 104000100
12281 12618 4 104000110
12282 12619 4 107000090
12283 12620 4 104000180
12284 12621 4 111000040
12285 12622 4 112000040
12286 12623 4 108000100
12287 12624 4 105000090
12288 12625 4 110000100
12289 12626 4 118000050
12290 12627 4 118000060
12291 12628 5 101000120
12292 12629 5 109000110
12293 12630 5 105000120
12294 12631 5 102000120
12295 12632 5 107000110
12296 12633 5 103000120
12297 12634 5 106000120
12298 12635 5 104000120
12299 12636 5 104000190
12300 12637 5 111000060
12301 12638 5 112000060
12302 12639 5 108000110
12303 12640 5 110000110
12304 12641 5 118000070
12305 12642 1 201000010
12306 12643 1 292000010
12307 12644 1 299000040
12308 12645 1 299000070
12309 12646 1 299000110
12310 12647 1 299000120
12311 12648 1 299000140
12312 12649 2 202000010
12313 12650 2 290000010
12314 12651 2 299000010
12315 12652 2 299000150
12316 12653 2 299000190
12317 12654 2 299000200
12318 12655 2 299000210
12319 12656 3 298000050
12320 12657 3 298000060
12321 12658 3 299000060
12322 12659 3 299000170
12323 12660 3 290000120
12324 12661 3 291000050
12325 12662 3 292000020
12326 12663 4 299000670
12327 12664 4 299000680
12328 12665 4 204000010
12329 12666 4 209000040
12330 12667 4 202000070
12331 12668 4 209000070
12332 12669 4 203000110
12333 12670 5 297000100
12334 12671 5 291000020
12335 12672 5 297000130
12336 12673 5 297000140
12337 12674 5 203000010
12338 12675 5 206000030
12339 12676 5 203000050
12340 12677 5 202000090
12341 12678 5 204000080
12342 12679 3 170004
12343 12680 3 180004
12344 12681 4 140000
12345 12682 5 150010
12346 12683 5 150020
12347 12684 5 150030
12348 12685 5 150040
12349 12687 3 101000050
12350 12688 3 101000060
12351 12689 3 101000080
12352 12690 3 101000040
12353 12691 3 109000060
12354 12692 3 109000070
12355 12693 3 109000080
12356 12694 3 105000060
12357 12695 3 105000070
12358 12696 3 105000080
12359 12697 3 104000050
12360 12698 3 106000050
12361 12699 3 102000060
12362 12700 3 102000070
12363 12701 3 102000080
12364 12702 3 103000050
12365 12703 3 105000050
12366 12704 3 107000060
12367 12705 3 107000070
12368 12706 3 107000080
12369 12707 3 108000050
12370 12708 3 109000050
12371 12709 3 103000060
12372 12710 3 103000070
12373 12711 3 103000080
12374 12712 3 110000050
12375 12713 3 106000060
12376 12714 3 106000070
12377 12715 3 106000080
12378 12716 3 101000070
12379 12717 3 110000060
12380 12718 3 104000060
12381 12719 3 104000070
12382 12720 3 104000080
12383 12721 3 102000050
12384 12722 3 104000170
12385 12723 3 104000260
12386 12724 3 111000010
12387 12725 3 111000020
12388 12726 3 111000030
12389 12727 3 112000020
12390 12728 3 112000030
12391 12729 3 108000060
12392 12730 3 108000070
12393 12731 3 108000080
12394 12732 3 107000050
12395 12733 3 112000010
12396 12734 3 110000070
12397 12735 3 110000080
12398 12736 3 118000020
12399 12737 3 118000030
12400 12738 3 118000040
12401 12739 4 101000090
12402 12740 4 101000100
12403 12741 4 101000110
12404 12742 4 109000100
12405 12743 4 105000100
12406 12744 4 105000110
12407 12745 4 108000090
12408 12746 4 110000090
12409 12747 4 102000100
12410 12748 4 102000110
12411 12749 4 106000090
12412 12750 4 109000090
12413 12751 4 107000100
12414 12752 4 103000090
12415 12753 4 102000090
12416 12754 4 103000100
12417 12755 4 106000100
12418 12756 4 106000110
12419 12757 4 104000090
12420 12758 4 104000100
12421 12759 4 104000110
12422 12760 4 107000090
12423 12761 4 104000180
12424 12762 4 111000040
12425 12763 4 112000040
12426 12764 4 108000100
12427 12765 4 105000090
12428 12766 4 110000100
12429 12767 4 118000050
12430 12768 4 118000060
12431 12769 5 101000120
12432 12770 5 109000110
12433 12771 5 105000120
12434 12772 5 102000120
12435 12773 5 107000110
12436 12774 5 103000120
12437 12775 5 106000120
12438 12776 5 104000120
12439 12777 5 104000190
12440 12778 5 111000060
12441 12779 5 112000060
12442 12780 5 108000110
12443 12781 5 110000110
12444 12782 5 118000070
12445 12783 1 201000010
12446 12784 1 292000010
12447 12785 1 299000040
12448 12786 1 299000070
12449 12787 1 299000110
12450 12788 1 299000120
12451 12789 1 299000140
12452 12790 2 202000010
12453 12791 2 290000010
12454 12792 2 299000010
12455 12793 2 299000150
12456 12794 2 299000190
12457 12795 2 299000200
12458 12796 2 299000210
12459 12797 3 298000050
12460 12798 3 298000060
12461 12799 3 299000060
12462 12800 3 299000170
12463 12801 3 290000120
12464 12802 3 291000050
12465 12803 3 292000020
12466 12804 4 299000670
12467 12805 4 299000680
12468 12806 4 204000010
12469 12807 4 209000040
12470 12808 4 202000070
12471 12809 4 209000070
12472 12810 4 203000110
12473 12811 5 297000100
12474 12812 5 291000020
12475 12813 5 297000130
12476 12814 5 297000140
12477 12815 5 203000010
12478 12816 5 206000030
12479 12817 5 203000050
12480 12818 5 202000090
12481 12819 5 204000080
12482 12820 3 170004
12483 12821 3 180004
12484 12822 4 140000
12485 12823 5 150010
12486 12824 5 150020
12487 12825 5 150030
12488 12826 5 150040
12489 12828 3 101000050
12490 12829 3 101000060
12491 12830 3 101000080
12492 12831 3 101000040
12493 12832 3 109000060
12494 12833 3 109000070
12495 12834 3 109000080
12496 12835 3 105000060
12497 12836 3 105000070
12498 12837 3 105000080
12499 12838 3 104000050
12500 12839 3 106000050
12501 12840 3 102000060
12502 12841 3 102000070
12503 12842 3 102000080
12504 12843 3 103000050
12505 12844 3 105000050
12506 12845 3 107000060
12507 12846 3 107000070
12508 12847 3 107000080
12509 12848 3 108000050
12510 12849 3 109000050
12511 12850 3 103000060
12512 12851 3 103000070
12513 12852 3 103000080
12514 12853 3 110000050
12515 12854 3 106000060
12516 12855 3 106000070
12517 12856 3 106000080
12518 12857 3 101000070
12519 12858 3 110000060
12520 12859 3 104000060
12521 12860 3 104000070
12522 12861 3 104000080
12523 12862 3 102000050
12524 12863 3 104000170
12525 12864 3 104000260
12526 12865 3 111000010
12527 12866 3 111000020
12528 12867 3 111000030
12529 12868 3 112000020
12530 12869 3 112000030
12531 12870 3 108000060
12532 12871 3 108000070
12533 12872 3 108000080
12534 12873 3 107000050
12535 12874 3 112000010
12536 12875 3 110000070
12537 12876 3 110000080
12538 12877 3 118000020
12539 12878 3 118000030
12540 12879 3 118000040
12541 12880 4 101000090
12542 12881 4 101000100
12543 12882 4 101000110
12544 12883 4 109000100
12545 12884 4 105000100
12546 12885 4 105000110
12547 12886 4 108000090
12548 12887 4 110000090
12549 12888 4 102000100
12550 12889 4 102000110
12551 12890 4 106000090
12552 12891 4 109000090
12553 12892 4 107000100
12554 12893 4 103000090
12555 12894 4 102000090
12556 12895 4 103000100
12557 12896 4 106000100
12558 12897 4 106000110
12559 12898 4 104000090
12560 12899 4 104000100
12561 12900 4 104000110
12562 12901 4 107000090
12563 12902 4 104000180
12564 12903 4 111000040
12565 12904 4 112000040
12566 12905 4 108000100
12567 12906 4 105000090
12568 12907 4 110000100
12569 12908 4 118000050
12570 12909 4 118000060
12571 12910 5 101000120
12572 12911 5 109000110
12573 12912 5 105000120
12574 12913 5 102000120
12575 12914 5 107000110
12576 12915 5 103000120
12577 12916 5 106000120
12578 12917 5 104000120
12579 12918 5 104000190
12580 12919 5 111000060
12581 12920 5 112000060
12582 12921 5 108000110
12583 12922 5 110000110
12584 12923 5 118000070
12585 12924 1 201000010
12586 12925 1 292000010
12587 12926 1 299000040
12588 12927 1 299000070
12589 12928 1 299000110
12590 12929 1 299000120
12591 12930 1 299000140
12592 12931 2 202000010
12593 12932 2 290000010
12594 12933 2 299000010
12595 12934 2 299000150
12596 12935 2 299000190
12597 12936 2 299000200
12598 12937 2 299000210
12599 12938 3 298000050
12600 12939 3 298000060
12601 12940 3 299000060
12602 12941 3 299000170
12603 12942 3 290000120
12604 12943 3 291000050
12605 12944 3 292000020
12606 12945 4 299000670
12607 12946 4 299000680
12608 12947 4 204000010
12609 12948 4 209000040
12610 12949 4 202000070
12611 12950 4 209000070
12612 12951 4 203000110
12613 12952 5 297000100
12614 12953 5 291000020
12615 12954 5 297000130
12616 12955 5 297000140
12617 12956 5 203000010
12618 12957 5 206000030
12619 12958 5 203000050
12620 12959 5 202000090
12621 12960 5 204000080
12622 12961 3 170004
12623 12962 3 180004
12624 12963 4 140000
12625 12964 5 150010
12626 12965 5 150020
12627 12966 5 150030
12628 12967 5 150040
12629 12968 5 190000
12630 12969 5 200000
12631 12970 5 210000
12632 12972 3 102000060
12633 12973 3 102000070
12634 12974 3 102000080
12635 12975 3 103000050
12636 12976 3 105000050
12637 12977 3 107000060
12638 12978 3 107000070
12639 12979 3 107000080
12640 12980 3 108000050
12641 12981 3 109000050
12642 12982 3 103000060
12643 12983 3 103000070
12644 12984 3 103000080
12645 12985 3 110000050
12646 12986 4 102000100
12647 12987 4 102000110
12648 12988 4 102000350
12649 12989 4 106000090
12650 12990 4 109000090
12651 12991 4 107000100
12652 12992 4 103000090
12653 12993 4 102000090
12654 12994 4 103000100
12655 12995 5 102000120
12656 12996 5 107000110
12657 12997 5 103000120
12658 12998 1 102000000
12659 12999 2 102000001
12660 13000 3 102000002
12661 13001 4 102000003
12662 13002 5 102000004
12663 13003 1 105000000
12664 13004 2 105000001
12665 13005 3 105000002
12666 13006 4 105000003
12667 13007 5 105000004
12668 13008 1 112000000
12669 13009 2 112000001
12670 13010 3 112000002
12671 13011 4 112000003
12672 13012 5 112000004
12673 13013 3 170004
12674 13014 4 170005
12675 13015 3 180004
12676 13016 4 180005
12677 13017 4 140000
12678 13018 4 150010
12679 13019 4 150020
12680 13020 4 150030
12681 13021 4 150040
12682 13023 3 118000020
12683 13024 3 118000030
12684 13025 3 118000040
12685 13026 3 106000060
12686 13027 3 106000070
12687 13028 3 106000080
12688 13029 3 101000070
12689 13030 3 110000060
12690 13031 3 104000060
12691 13032 3 104000070
12692 13033 3 104000080
12693 13034 3 102000050
12694 13035 3 104000170
12695 13036 3 104000260
12696 13037 4 118000050
12697 13038 4 118000060
12698 13039 4 106000100
12699 13040 4 106000110
12700 13041 4 104000090
12701 13042 4 104000100
12702 13043 4 104000110
12703 13044 4 104000270
12704 13045 4 107000090
12705 13046 4 104000180
12706 13047 5 118000070
12707 13048 5 106000120
12708 13049 5 104000120
12709 13050 5 104000190
12710 13051 1 103000000
12711 13052 2 103000001
12712 13053 3 103000002
12713 13054 4 103000003
12714 13055 5 103000004
12715 13056 1 111000000
12716 13057 2 111000001
12717 13058 3 111000002
12718 13059 4 111000003
12719 13060 5 111000004
12720 13061 1 115000000
12721 13062 2 115000001
12722 13063 3 115000002
12723 13064 4 115000003
12724 13065 5 115000004
12725 13066 4 110024
12726 13067 4 110034
12727 13068 4 110044
12728 13069 4 110054
12729 13070 3 110060
12730 13071 3 110070
12731 13072 3 110080
12732 13073 3 110090
12733 13074 3 110100
12734 13075 3 110110
12735 13076 3 110120
12736 13077 3 110130
12737 13078 3 110140
12738 13079 3 110150
12739 13080 3 110160
12740 13081 3 110170
12741 13082 3 110180
12742 13083 3 110190
12743 13084 3 110200
12744 13085 3 110210
12745 13086 3 110220
12746 13087 3 110230
12747 13088 3 110240
12748 13089 3 110250
12749 13090 3 110260
12750 13091 3 110270
12751 13092 3 110620
12752 13093 3 110670
12753 13094 4 140000
12754 13095 4 150010
12755 13096 4 150020
12756 13097 4 150030
12757 13098 4 150040
12758 13100 3 111000010
12759 13101 3 111000020
12760 13102 3 111000030
12761 13103 3 112000020
12762 13104 3 112000030
12763 13105 3 108000060
12764 13106 3 108000070
12765 13107 3 108000080
12766 13108 3 107000050
12767 13109 3 112000010
12768 13110 3 110000070
12769 13111 3 110000080
12770 13112 4 111000040
12771 13113 4 112000040
12772 13114 4 108000100
12773 13115 4 105000090
12774 13116 4 110000100
12775 13117 5 111000060
12776 13118 5 112000060
12777 13119 5 108000110
12778 13120 5 110000110
12779 13121 1 108000000
12780 13122 2 108000001
12781 13123 3 108000002
12782 13124 4 108000003
12783 13125 5 108000004
12784 13126 1 107000000
12785 13127 2 107000001
12786 13128 3 107000002
12787 13129 4 107000003
12788 13130 5 107000004
12789 13131 1 120000000
12790 13132 2 120000001
12791 13133 3 120000002
12792 13134 4 120000003
12793 13135 5 120000004
12794 13136 4 120024
12795 13137 4 120034
12796 13138 4 120044
12797 13139 4 120054
12798 13140 3 120241
12799 13141 3 120251
12800 13142 3 120261
12801 13143 3 120271
12802 13144 3 120300
12803 13145 3 120310
12804 13146 3 120320
12805 13147 3 120330
12806 13148 3 120340
12807 13149 3 120350
12808 13150 3 120360
12809 13151 3 120370
12810 13152 3 120380
12811 13153 3 120390
12812 13154 3 120400
12813 13155 3 120410
12814 13156 3 120420
12815 13157 3 120430
12816 13158 3 120450
12817 13159 3 120460
12818 13160 3 120550
12819 13161 3 120560
12820 13162 3 120570
12821 13163 3 120990
12822 13164 3 121000
12823 13165 3 121010
12824 13166 3 121020
12825 13167 3 121100
12826 13168 4 140000
12827 13169 4 150010
12828 13170 4 150020
12829 13171 4 150030
12830 13172 4 150040
12831 13174 3 101000050
12832 13175 3 101000060
12833 13176 3 101000080
12834 13177 3 101000040
12835 13178 3 109000060
12836 13179 3 109000070
12837 13180 3 109000080
12838 13181 3 105000060
12839 13182 3 105000070
12840 13183 3 105000080
12841 13184 3 104000050
12842 13185 3 106000050
12843 13186 4 101000090
12844 13187 4 101000100
12845 13188 4 101000110
12846 13189 4 109000100
12847 13190 4 105000100
12848 13191 4 105000110
12849 13192 4 108000090
12850 13193 4 110000090
12851 13194 5 101000120
12852 13195 5 109000110
12853 13196 5 105000120
12854 13197 1 101000000
12855 13198 2 101000001
12856 13199 3 101000002
12857 13200 4 101000008
12858 13201 5 101000004
12859 13202 1 109000000
12860 13203 2 109000001
12861 13204 3 109000002
12862 13205 4 109000003
12863 13206 5 109000004
12864 13207 4 130024
12865 13208 4 130034
12866 13209 4 130044
12867 13210 4 130054
12868 13211 3 130060
12869 13212 3 130070
12870 13213 3 130080
12871 13214 3 130090
12872 13215 3 130100
12873 13216 3 130110
12874 13217 3 130120
12875 13218 3 130130
12876 13219 3 130140
12877 13220 3 130150
12878 13221 3 130160
12879 13222 3 130170
12880 13223 3 130180
12881 13224 3 130190
12882 13225 3 130200
12883 13226 3 130420
12884 13227 3 130510
12885 13228 3 130520
12886 13229 3 130531
12887 13230 3 130540
12888 13231 3 130660
12889 13232 3 130700
12890 13233 3 130790
12891 13234 3 130800
12892 13235 3 131130
12893 13236 4 140000
12894 13237 4 150010
12895 13238 4 150020
12896 13239 4 150030
12897 13240 4 150040
12898 13242 3 101000050
12899 13243 3 101000060
12900 13244 3 101000080
12901 13245 3 101000040
12902 13246 3 109000060
12903 13247 3 109000070
12904 13248 3 109000080
12905 13249 3 105000060
12906 13250 3 105000070
12907 13251 3 105000080
12908 13252 3 104000050
12909 13253 3 106000050
12910 13254 4 101000090
12911 13255 4 101000100
12912 13256 4 101000110
12913 13257 4 109000100
12914 13258 4 105000100
12915 13259 4 105000110
12916 13260 4 108000090
12917 13261 4 110000090
12918 13262 5 101000120
12919 13263 5 109000110
12920 13264 5 105000120
12921 13265 1 101000000
12922 13266 2 101000001
12923 13267 3 101000002
12924 13268 4 101000008
12925 13269 5 101000004
12926 13270 1 109000000
12927 13271 2 109000001
12928 13272 3 109000002
12929 13273 4 109000003
12930 13274 5 109000004
12931 13275 3 170004
12932 13276 4 170005
12933 13277 3 180004
12934 13278 4 180005
12935 13279 4 140000
12936 13280 4 150010
12937 13281 4 150020
12938 13282 4 150030
12939 13283 4 150040
12940 13285 3 102000060
12941 13286 3 102000070
12942 13287 3 102000080
12943 13288 3 103000050
12944 13289 3 105000050
12945 13290 3 107000060
12946 13291 3 107000070
12947 13292 3 107000080
12948 13293 3 108000050
12949 13294 3 109000050
12950 13295 3 103000060
12951 13296 3 103000070
12952 13297 3 103000080
12953 13298 3 110000050
12954 13299 4 102000100
12955 13300 4 102000110
12956 13301 4 102000350
12957 13302 4 106000090
12958 13303 4 109000090
12959 13304 4 107000100
12960 13305 4 103000090
12961 13306 4 102000090
12962 13307 4 103000100
12963 13308 5 102000120
12964 13309 5 107000110
12965 13310 5 103000120
12966 13311 1 102000000
12967 13312 2 102000001
12968 13313 3 102000002
12969 13314 4 102000003
12970 13315 5 102000004
12971 13316 1 105000000
12972 13317 2 105000001
12973 13318 3 105000002
12974 13319 4 105000003
12975 13320 5 105000004
12976 13321 1 112000000
12977 13322 2 112000001
12978 13323 3 112000002
12979 13324 4 112000003
12980 13325 5 112000004
12981 13326 4 110024
12982 13327 4 110034
12983 13328 4 110044
12984 13329 4 110054
12985 13330 3 110060
12986 13331 3 110070
12987 13332 3 110080
12988 13333 3 110090
12989 13334 3 110100
12990 13335 3 110110
12991 13336 3 110120
12992 13337 3 110130
12993 13338 3 110140
12994 13339 3 110150
12995 13340 3 110160
12996 13341 3 110170
12997 13342 3 110180
12998 13343 3 110190
12999 13344 3 110200
13000 13345 3 110210
13001 13346 3 110220
13002 13347 3 110230
13003 13348 3 110240
13004 13349 3 110250
13005 13350 3 110260
13006 13351 3 110270
13007 13352 3 110620
13008 13353 3 110670
13009 13354 4 140000
13010 13355 4 150010
13011 13356 4 150020
13012 13357 4 150030
13013 13358 4 150040
13014 13360 3 118000020
13015 13361 3 118000030
13016 13362 3 118000040
13017 13363 3 106000060
13018 13364 3 106000070
13019 13365 3 106000080
13020 13366 3 101000070
13021 13367 3 110000060
13022 13368 3 104000060
13023 13369 3 104000070
13024 13370 3 104000080
13025 13371 3 102000050
13026 13372 3 104000170
13027 13373 3 104000260
13028 13374 4 118000050
13029 13375 4 118000060
13030 13376 4 106000100
13031 13377 4 106000110
13032 13378 4 104000090
13033 13379 4 104000100
13034 13380 4 104000110
13035 13381 4 104000270
13036 13382 4 107000090
13037 13383 4 104000180
13038 13384 5 118000070
13039 13385 5 106000120
13040 13386 5 104000120
13041 13387 5 104000190
13042 13388 1 103000000
13043 13389 2 103000001
13044 13390 3 103000002
13045 13391 4 103000003
13046 13392 5 103000004
13047 13393 1 111000000
13048 13394 2 111000001
13049 13395 3 111000002
13050 13396 4 111000003
13051 13397 5 111000004
13052 13398 1 115000000
13053 13399 2 115000001
13054 13400 3 115000002
13055 13401 4 115000003
13056 13402 5 115000004
13057 13403 4 120024
13058 13404 4 120034
13059 13405 4 120044
13060 13406 4 120054
13061 13407 3 120241
13062 13408 3 120251
13063 13409 3 120261
13064 13410 3 120271
13065 13411 3 120300
13066 13412 3 120310
13067 13413 3 120320
13068 13414 3 120330
13069 13415 3 120340
13070 13416 3 120350
13071 13417 3 120360
13072 13418 3 120370
13073 13419 3 120380
13074 13420 3 120390
13075 13421 3 120400
13076 13422 3 120410
13077 13423 3 120420
13078 13424 3 120430
13079 13425 3 120450
13080 13426 3 120460
13081 13427 3 120550
13082 13428 3 120560
13083 13429 3 120570
13084 13430 3 120990
13085 13431 3 121000
13086 13432 3 121010
13087 13433 3 121020
13088 13434 3 121100
13089 13435 4 140000
13090 13436 4 150010
13091 13437 4 150020
13092 13438 4 150030
13093 13439 4 150040
13094 13441 3 111000010
13095 13442 3 111000020
13096 13443 3 111000030
13097 13444 3 112000020
13098 13445 3 112000030
13099 13446 3 108000060
13100 13447 3 108000070
13101 13448 3 108000080
13102 13449 3 107000050
13103 13450 3 112000010
13104 13451 3 110000070
13105 13452 3 110000080
13106 13453 4 111000040
13107 13454 4 112000040
13108 13455 4 108000100
13109 13456 4 105000090
13110 13457 4 110000100
13111 13458 5 111000060
13112 13459 5 112000060
13113 13460 5 108000110
13114 13461 5 110000110
13115 13462 1 108000000
13116 13463 2 108000001
13117 13464 3 108000002
13118 13465 4 108000003
13119 13466 5 108000004
13120 13467 1 107000000
13121 13468 2 107000001
13122 13469 3 107000002
13123 13470 4 107000003
13124 13471 5 107000004
13125 13472 1 120000000
13126 13473 2 120000001
13127 13474 3 120000002
13128 13475 4 120000003
13129 13476 5 120000004
13130 13477 4 130024
13131 13478 4 130034
13132 13479 4 130044
13133 13480 4 130054
13134 13481 3 130060
13135 13482 3 130070
13136 13483 3 130080
13137 13484 3 130090
13138 13485 3 130100
13139 13486 3 130110
13140 13487 3 130120
13141 13488 3 130130
13142 13489 3 130140
13143 13490 3 130150
13144 13491 3 130160
13145 13492 3 130170
13146 13493 3 130180
13147 13494 3 130190
13148 13495 3 130200
13149 13496 3 130420
13150 13497 3 130510
13151 13498 3 130520
13152 13499 3 130531
13153 13500 3 130540
13154 13501 3 130660
13155 13502 3 130700
13156 13503 3 130790
13157 13504 3 130800
13158 13505 3 131130
13159 13506 4 140000
13160 13507 4 150010
13161 13508 4 150020
13162 13509 4 150030
13163 13510 4 150040
13164 13512 1 101000010
13165 13513 1 102000010
13166 13514 1 103000010
13167 13515 1 104000010
13168 13516 1 105000010
13169 13517 1 106000010
13170 13518 1 107000010
13171 13519 1 108000010
13172 13520 1 109000010
13173 13521 1 110000010
13174 13522 2 101000020
13175 13523 2 101000030
13176 13524 2 102000020
13177 13525 2 102000030
13178 13526 2 102000040
13179 13527 2 103000020
13180 13528 2 103000030
13181 13529 2 103000040
13182 13530 2 104000020
13183 13531 2 104000030
13184 13532 2 104000040
13185 13533 2 105000020
13186 13534 2 105000030
13187 13535 2 105000040
13188 13536 2 106000020
13189 13537 2 106000030
13190 13538 2 106000040
13191 13539 2 107000020
13192 13540 2 107000030
13193 13541 2 107000040
13194 13542 2 108000020
13195 13543 2 108000030
13196 13544 2 108000040
13197 13545 2 109000020
13198 13546 2 109000030
13199 13547 2 109000040
13200 13548 2 110000020
13201 13549 2 110000030
13202 13550 2 110000040
13203 13551 2 118000010
13204 13552 3 101000050
13205 13553 3 101000060
13206 13554 3 101000080
13207 13555 3 101000040
13208 13556 3 109000060
13209 13557 3 109000070
13210 13558 3 109000080
13211 13559 3 105000060
13212 13560 3 105000070
13213 13561 3 105000080
13214 13562 3 104000050
13215 13563 3 106000050
13216 13564 3 102000060
13217 13565 3 102000070
13218 13566 3 102000080
13219 13567 3 103000050
13220 13568 3 105000050
13221 13569 3 107000060
13222 13570 3 107000070
13223 13571 3 107000080
13224 13572 3 108000050
13225 13573 3 109000050
13226 13574 3 103000060
13227 13575 3 103000070
13228 13576 3 103000080
13229 13577 3 110000050
13230 13578 3 106000060
13231 13579 3 106000070
13232 13580 3 106000080
13233 13581 3 101000070
13234 13582 3 110000060
13235 13583 3 104000060
13236 13584 3 104000070
13237 13585 3 104000080
13238 13586 3 102000050
13239 13587 3 104000170
13240 13588 3 104000260
13241 13589 3 111000010
13242 13590 3 111000020
13243 13591 3 111000030
13244 13592 3 112000020
13245 13593 3 112000030
13246 13594 3 108000060
13247 13595 3 108000070
13248 13596 3 108000080
13249 13597 3 107000050
13250 13598 3 112000010
13251 13599 3 110000070
13252 13600 3 110000080
13253 13601 3 118000020
13254 13602 3 118000030
13255 13603 3 118000040
13256 13604 4 101000090
13257 13605 4 101000100
13258 13606 4 101000110
13259 13607 4 109000100
13260 13608 4 105000100
13261 13609 4 105000110
13262 13610 4 108000090
13263 13611 4 110000090
13264 13612 4 102000100
13265 13613 4 102000110
13266 13614 4 106000090
13267 13615 4 109000090
13268 13616 4 107000100
13269 13617 4 103000090
13270 13618 4 102000090
13271 13619 4 103000100
13272 13620 4 106000100
13273 13621 4 106000110
13274 13622 4 104000090
13275 13623 4 104000100
13276 13624 4 104000110
13277 13625 4 107000090
13278 13626 4 104000180
13279 13627 4 111000040
13280 13628 4 112000040
13281 13629 4 108000100
13282 13630 4 105000090
13283 13631 4 110000100
13284 13632 4 118000050
13285 13633 4 118000060
13286 13634 5 101000120
13287 13635 5 109000110
13288 13636 5 105000120
13289 13637 5 102000120
13290 13638 5 107000110
13291 13639 5 103000120
13292 13640 5 106000120
13293 13641 5 104000120
13294 13642 5 104000190
13295 13643 5 111000060
13296 13644 5 112000060
13297 13645 5 108000110
13298 13646 5 110000110
13299 13647 5 118000070
13300 13648 1 201000010
13301 13649 1 292000010
13302 13650 1 299000040
13303 13651 1 299000070
13304 13652 1 299000110
13305 13653 1 299000120
13306 13654 1 299000140
13307 13655 2 202000010
13308 13656 2 290000010
13309 13657 2 299000010
13310 13658 2 299000150
13311 13659 2 299000190
13312 13660 2 299000200
13313 13661 2 299000210
13314 13662 3 298000050
13315 13663 3 298000060
13316 13664 3 299000060
13317 13665 3 299000170
13318 13666 3 290000120
13319 13667 3 291000050
13320 13668 3 292000020
13321 13669 4 299000670
13322 13670 4 299000680
13323 13671 4 204000010
13324 13672 4 209000040
13325 13673 4 202000070
13326 13674 4 209000070
13327 13675 4 203000110
13328 13676 4 290000110
13329 13677 5 297000100
13330 13678 5 291000020
13331 13679 5 297000130
13332 13680 5 297000140
13333 13681 5 203000010
13334 13682 5 206000030
13335 13683 5 203000050
13336 13684 5 202000090
13337 13685 5 204000080
13338 13686 5 202000150
13339 13687 1 170002
13340 13688 1 180002
13341 13689 2 170003
13342 13690 2 180003
13343 13691 3 170004
13344 13692 3 180004
13345 13693 4 140000
13346 13694 5 150010
13347 13695 5 150020
13348 13696 5 150030
13349 13697 5 150040
13350 13699 1 101000010
13351 13700 1 102000010
13352 13701 1 103000010
13353 13702 1 104000010
13354 13703 1 105000010
13355 13704 1 106000010
13356 13705 1 107000010
13357 13706 1 108000010
13358 13707 1 109000010
13359 13708 1 110000010
13360 13709 2 101000020
13361 13710 2 101000030
13362 13711 2 102000020
13363 13712 2 102000030
13364 13713 2 102000040
13365 13714 2 103000020
13366 13715 2 103000030
13367 13716 2 103000040
13368 13717 2 104000020
13369 13718 2 104000030
13370 13719 2 104000040
13371 13720 2 105000020
13372 13721 2 105000030
13373 13722 2 105000040
13374 13723 2 106000020
13375 13724 2 106000030
13376 13725 2 106000040
13377 13726 2 107000020
13378 13727 2 107000030
13379 13728 2 107000040
13380 13729 2 108000020
13381 13730 2 108000030
13382 13731 2 108000040
13383 13732 2 109000020
13384 13733 2 109000030
13385 13734 2 109000040
13386 13735 2 110000020
13387 13736 2 110000030
13388 13737 2 110000040
13389 13738 2 118000010
13390 13739 3 101000050
13391 13740 3 101000060
13392 13741 3 101000080
13393 13742 3 101000040
13394 13743 3 109000060
13395 13744 3 109000070
13396 13745 3 109000080
13397 13746 3 105000060
13398 13747 3 105000070
13399 13748 3 105000080
13400 13749 3 104000050
13401 13750 3 106000050
13402 13751 3 102000060
13403 13752 3 102000070
13404 13753 3 102000080
13405 13754 3 103000050
13406 13755 3 105000050
13407 13756 3 107000060
13408 13757 3 107000070
13409 13758 3 107000080
13410 13759 3 108000050
13411 13760 3 109000050
13412 13761 3 103000060
13413 13762 3 103000070
13414 13763 3 103000080
13415 13764 3 110000050
13416 13765 3 106000060
13417 13766 3 106000070
13418 13767 3 106000080
13419 13768 3 101000070
13420 13769 3 110000060
13421 13770 3 104000060
13422 13771 3 104000070
13423 13772 3 104000080
13424 13773 3 102000050
13425 13774 3 104000170
13426 13775 3 104000260
13427 13776 3 111000010
13428 13777 3 111000020
13429 13778 3 111000030
13430 13779 3 112000020
13431 13780 3 112000030
13432 13781 3 108000060
13433 13782 3 108000070
13434 13783 3 108000080
13435 13784 3 107000050
13436 13785 3 112000010
13437 13786 3 110000070
13438 13787 3 110000080
13439 13788 3 118000020
13440 13789 3 118000030
13441 13790 3 118000040
13442 13791 4 101000090
13443 13792 4 101000100
13444 13793 4 101000110
13445 13794 4 109000100
13446 13795 4 105000100
13447 13796 4 105000110
13448 13797 4 108000090
13449 13798 4 110000090
13450 13799 4 102000100
13451 13800 4 102000110
13452 13801 4 106000090
13453 13802 4 109000090
13454 13803 4 107000100
13455 13804 4 103000090
13456 13805 4 102000090
13457 13806 4 103000100
13458 13807 4 106000100
13459 13808 4 106000110
13460 13809 4 104000090
13461 13810 4 104000100
13462 13811 4 104000110
13463 13812 4 107000090
13464 13813 4 104000180
13465 13814 4 111000040
13466 13815 4 112000040
13467 13816 4 108000100
13468 13817 4 105000090
13469 13818 4 110000100
13470 13819 4 118000050
13471 13820 4 118000060
13472 13821 5 101000120
13473 13822 5 109000110
13474 13823 5 105000120
13475 13824 5 102000120
13476 13825 5 107000110
13477 13826 5 103000120
13478 13827 5 106000120
13479 13828 5 104000120
13480 13829 5 104000190
13481 13830 5 111000060
13482 13831 5 112000060
13483 13832 5 108000110
13484 13833 5 110000110
13485 13834 5 118000070
13486 13835 1 201000010
13487 13836 1 292000010
13488 13837 1 299000040
13489 13838 1 299000070
13490 13839 1 299000110
13491 13840 1 299000120
13492 13841 1 299000140
13493 13842 2 202000010
13494 13843 2 290000010
13495 13844 2 299000010
13496 13845 2 299000150
13497 13846 2 299000190
13498 13847 2 299000200
13499 13848 2 299000210
13500 13849 3 298000050
13501 13850 3 298000060
13502 13851 3 299000060
13503 13852 3 299000170
13504 13853 3 290000120
13505 13854 3 291000050
13506 13855 3 292000020
13507 13856 4 299000670
13508 13857 4 299000680
13509 13858 4 204000010
13510 13859 4 209000040
13511 13860 4 202000070
13512 13861 4 209000070
13513 13862 4 203000110
13514 13863 4 290000110
13515 13864 5 297000100
13516 13865 5 291000020
13517 13866 5 297000130
13518 13867 5 297000140
13519 13868 5 203000010
13520 13869 5 206000030
13521 13870 5 203000050
13522 13871 5 202000090
13523 13872 5 204000080
13524 13873 5 202000150
13525 13874 2 170003
13526 13875 2 180003
13527 13876 3 170004
13528 13877 3 180004
13529 13878 4 140000
13530 13879 5 150010
13531 13880 5 150020
13532 13881 5 150030
13533 13882 5 150040
13534 13884 3 101000050
13535 13885 3 101000060
13536 13886 3 101000080
13537 13887 3 101000040
13538 13888 3 109000060
13539 13889 3 109000070
13540 13890 3 109000080
13541 13891 3 105000060
13542 13892 3 105000070
13543 13893 3 105000080
13544 13894 3 104000050
13545 13895 3 106000050
13546 13896 3 102000060
13547 13897 3 102000070
13548 13898 3 102000080
13549 13899 3 103000050
13550 13900 3 105000050
13551 13901 3 107000060
13552 13902 3 107000070
13553 13903 3 107000080
13554 13904 3 108000050
13555 13905 3 109000050
13556 13906 3 103000060
13557 13907 3 103000070
13558 13908 3 103000080
13559 13909 3 110000050
13560 13910 3 106000060
13561 13911 3 106000070
13562 13912 3 106000080
13563 13913 3 101000070
13564 13914 3 110000060
13565 13915 3 104000060
13566 13916 3 104000070
13567 13917 3 104000080
13568 13918 3 102000050
13569 13919 3 104000170
13570 13920 3 104000260
13571 13921 3 111000010
13572 13922 3 111000020
13573 13923 3 111000030
13574 13924 3 112000020
13575 13925 3 112000030
13576 13926 3 108000060
13577 13927 3 108000070
13578 13928 3 108000080
13579 13929 3 107000050
13580 13930 3 112000010
13581 13931 3 110000070
13582 13932 3 110000080
13583 13933 3 118000020
13584 13934 3 118000030
13585 13935 3 118000040
13586 13936 4 101000090
13587 13937 4 101000100
13588 13938 4 101000110
13589 13939 4 109000100
13590 13940 4 105000100
13591 13941 4 105000110
13592 13942 4 108000090
13593 13943 4 110000090
13594 13944 4 102000100
13595 13945 4 102000110
13596 13946 4 106000090
13597 13947 4 109000090
13598 13948 4 107000100
13599 13949 4 103000090
13600 13950 4 102000090
13601 13951 4 103000100
13602 13952 4 106000100
13603 13953 4 106000110
13604 13954 4 104000090
13605 13955 4 104000100
13606 13956 4 104000110
13607 13957 4 107000090
13608 13958 4 104000180
13609 13959 4 111000040
13610 13960 4 112000040
13611 13961 4 108000100
13612 13962 4 105000090
13613 13963 4 110000100
13614 13964 4 118000050
13615 13965 4 118000060
13616 13966 5 101000120
13617 13967 5 109000110
13618 13968 5 105000120
13619 13969 5 102000120
13620 13970 5 107000110
13621 13971 5 103000120
13622 13972 5 106000120
13623 13973 5 104000120
13624 13974 5 104000190
13625 13975 5 111000060
13626 13976 5 112000060
13627 13977 5 108000110
13628 13978 5 110000110
13629 13979 5 118000070
13630 13980 1 201000010
13631 13981 1 292000010
13632 13982 1 299000040
13633 13983 1 299000070
13634 13984 1 299000110
13635 13985 1 299000120
13636 13986 1 299000140
13637 13987 2 202000010
13638 13988 2 290000010
13639 13989 2 299000010
13640 13990 2 299000150
13641 13991 2 299000190
13642 13992 2 299000200
13643 13993 2 299000210
13644 13994 3 298000050
13645 13995 3 298000060
13646 13996 3 299000060
13647 13997 3 299000170
13648 13998 3 290000120
13649 13999 3 291000050
13650 14000 3 292000020
13651 14001 4 299000670
13652 14002 4 299000680
13653 14003 4 204000010
13654 14004 4 209000040
13655 14005 4 202000070
13656 14006 4 209000070
13657 14007 4 203000110
13658 14008 4 290000110
13659 14009 5 297000100
13660 14010 5 291000020
13661 14011 5 297000130
13662 14012 5 297000140
13663 14013 5 203000010
13664 14014 5 206000030
13665 14015 5 203000050
13666 14016 5 202000090
13667 14017 5 204000080
13668 14018 5 202000150
13669 14019 3 170004
13670 14020 3 180004
13671 14021 4 140000
13672 14022 5 150010
13673 14023 5 150020
13674 14024 5 150030
13675 14025 5 150040
13676 14027 3 101000050
13677 14028 3 101000060
13678 14029 3 101000080
13679 14030 3 101000040
13680 14031 3 109000060
13681 14032 3 109000070
13682 14033 3 109000080
13683 14034 3 105000060
13684 14035 3 105000070
13685 14036 3 105000080
13686 14037 3 104000050
13687 14038 3 106000050
13688 14039 3 102000060
13689 14040 3 102000070
13690 14041 3 102000080
13691 14042 3 103000050
13692 14043 3 105000050
13693 14044 3 107000060
13694 14045 3 107000070
13695 14046 3 107000080
13696 14047 3 108000050
13697 14048 3 109000050
13698 14049 3 103000060
13699 14050 3 103000070
13700 14051 3 103000080
13701 14052 3 110000050
13702 14053 3 106000060
13703 14054 3 106000070
13704 14055 3 106000080
13705 14056 3 101000070
13706 14057 3 110000060
13707 14058 3 104000060
13708 14059 3 104000070
13709 14060 3 104000080
13710 14061 3 102000050
13711 14062 3 104000170
13712 14063 3 104000260
13713 14064 3 111000010
13714 14065 3 111000020
13715 14066 3 111000030
13716 14067 3 112000020
13717 14068 3 112000030
13718 14069 3 108000060
13719 14070 3 108000070
13720 14071 3 108000080
13721 14072 3 107000050
13722 14073 3 112000010
13723 14074 3 110000070
13724 14075 3 110000080
13725 14076 3 118000020
13726 14077 3 118000030
13727 14078 3 118000040
13728 14079 4 101000090
13729 14080 4 101000100
13730 14081 4 101000110
13731 14082 4 109000100
13732 14083 4 105000100
13733 14084 4 105000110
13734 14085 4 108000090
13735 14086 4 110000090
13736 14087 4 102000100
13737 14088 4 102000110
13738 14089 4 106000090
13739 14090 4 109000090
13740 14091 4 107000100
13741 14092 4 103000090
13742 14093 4 102000090
13743 14094 4 103000100
13744 14095 4 106000100
13745 14096 4 106000110
13746 14097 4 104000090
13747 14098 4 104000100
13748 14099 4 104000110
13749 14100 4 107000090
13750 14101 4 104000180
13751 14102 4 111000040
13752 14103 4 112000040
13753 14104 4 108000100
13754 14105 4 105000090
13755 14106 4 110000100
13756 14107 4 118000050
13757 14108 4 118000060
13758 14109 5 101000120
13759 14110 5 109000110
13760 14111 5 105000120
13761 14112 5 102000120
13762 14113 5 107000110
13763 14114 5 103000120
13764 14115 5 106000120
13765 14116 5 104000120
13766 14117 5 104000190
13767 14118 5 111000060
13768 14119 5 112000060
13769 14120 5 108000110
13770 14121 5 110000110
13771 14122 5 118000070
13772 14123 1 201000010
13773 14124 1 292000010
13774 14125 1 299000040
13775 14126 1 299000070
13776 14127 1 299000110
13777 14128 1 299000120
13778 14129 1 299000140
13779 14130 2 202000010
13780 14131 2 290000010
13781 14132 2 299000010
13782 14133 2 299000150
13783 14134 2 299000190
13784 14135 2 299000200
13785 14136 2 299000210
13786 14137 3 298000050
13787 14138 3 298000060
13788 14139 3 299000060
13789 14140 3 299000170
13790 14141 3 290000120
13791 14142 3 291000050
13792 14143 3 292000020
13793 14144 4 299000670
13794 14145 4 299000680
13795 14146 4 204000010
13796 14147 4 209000040
13797 14148 4 202000070
13798 14149 4 209000070
13799 14150 4 203000110
13800 14151 4 290000110
13801 14152 5 297000100
13802 14153 5 291000020
13803 14154 5 297000130
13804 14155 5 297000140
13805 14156 5 203000010
13806 14157 5 206000030
13807 14158 5 203000050
13808 14159 5 202000090
13809 14160 5 204000080
13810 14161 5 202000150
13811 14162 3 170004
13812 14163 3 180004
13813 14164 4 140000
13814 14165 5 150010
13815 14166 5 150020
13816 14167 5 150030
13817 14168 5 150040
13818 14170 3 101000050
13819 14171 3 101000060
13820 14172 3 101000080
13821 14173 3 101000040
13822 14174 3 109000060
13823 14175 3 109000070
13824 14176 3 109000080
13825 14177 3 105000060
13826 14178 3 105000070
13827 14179 3 105000080
13828 14180 3 104000050
13829 14181 3 106000050
13830 14182 3 102000060
13831 14183 3 102000070
13832 14184 3 102000080
13833 14185 3 103000050
13834 14186 3 105000050
13835 14187 3 107000060
13836 14188 3 107000070
13837 14189 3 107000080
13838 14190 3 108000050
13839 14191 3 109000050
13840 14192 3 103000060
13841 14193 3 103000070
13842 14194 3 103000080
13843 14195 3 110000050
13844 14196 3 106000060
13845 14197 3 106000070
13846 14198 3 106000080
13847 14199 3 101000070
13848 14200 3 110000060
13849 14201 3 104000060
13850 14202 3 104000070
13851 14203 3 104000080
13852 14204 3 102000050
13853 14205 3 104000170
13854 14206 3 104000260
13855 14207 3 111000010
13856 14208 3 111000020
13857 14209 3 111000030
13858 14210 3 112000020
13859 14211 3 112000030
13860 14212 3 108000060
13861 14213 3 108000070
13862 14214 3 108000080
13863 14215 3 107000050
13864 14216 3 112000010
13865 14217 3 110000070
13866 14218 3 110000080
13867 14219 3 118000020
13868 14220 3 118000030
13869 14221 3 118000040
13870 14222 4 101000090
13871 14223 4 101000100
13872 14224 4 101000110
13873 14225 4 109000100
13874 14226 4 105000100
13875 14227 4 105000110
13876 14228 4 108000090
13877 14229 4 110000090
13878 14230 4 102000100
13879 14231 4 102000110
13880 14232 4 106000090
13881 14233 4 109000090
13882 14234 4 107000100
13883 14235 4 103000090
13884 14236 4 102000090
13885 14237 4 103000100
13886 14238 4 106000100
13887 14239 4 106000110
13888 14240 4 104000090
13889 14241 4 104000100
13890 14242 4 104000110
13891 14243 4 107000090
13892 14244 4 104000180
13893 14245 4 111000040
13894 14246 4 112000040
13895 14247 4 108000100
13896 14248 4 105000090
13897 14249 4 110000100
13898 14250 4 118000050
13899 14251 4 118000060
13900 14252 5 101000120
13901 14253 5 109000110
13902 14254 5 105000120
13903 14255 5 102000120
13904 14256 5 107000110
13905 14257 5 103000120
13906 14258 5 106000120
13907 14259 5 104000120
13908 14260 5 104000190
13909 14261 5 111000060
13910 14262 5 112000060
13911 14263 5 108000110
13912 14264 5 110000110
13913 14265 5 118000070
13914 14266 1 201000010
13915 14267 1 292000010
13916 14268 1 299000040
13917 14269 1 299000070
13918 14270 1 299000110
13919 14271 1 299000120
13920 14272 1 299000140
13921 14273 2 202000010
13922 14274 2 290000010
13923 14275 2 299000010
13924 14276 2 299000150
13925 14277 2 299000190
13926 14278 2 299000200
13927 14279 2 299000210
13928 14280 3 298000050
13929 14281 3 298000060
13930 14282 3 299000060
13931 14283 3 299000170
13932 14284 3 290000120
13933 14285 3 291000050
13934 14286 3 292000020
13935 14287 4 299000670
13936 14288 4 299000680
13937 14289 4 204000010
13938 14290 4 209000040
13939 14291 4 202000070
13940 14292 4 209000070
13941 14293 4 203000110
13942 14294 4 290000110
13943 14295 5 297000100
13944 14296 5 291000020
13945 14297 5 297000130
13946 14298 5 297000140
13947 14299 5 203000010
13948 14300 5 206000030
13949 14301 5 203000050
13950 14302 5 202000090
13951 14303 5 204000080
13952 14304 5 202000150
13953 14305 3 170004
13954 14306 3 180004
13955 14307 4 140000
13956 14308 5 150010
13957 14309 5 150020
13958 14310 5 150030
13959 14311 5 150040
13960 14312 5 190000
13961 14313 5 200000
13962 14314 5 210000
13963 14316 1 101000010
13964 14317 1 102000010
13965 14318 1 103000010
13966 14319 1 104000010
13967 14320 1 105000010
13968 14321 1 106000010
13969 14322 1 107000010
13970 14323 1 108000010
13971 14324 1 109000010
13972 14325 1 110000010
13973 14326 2 101000020
13974 14327 2 101000030
13975 14328 2 102000020
13976 14329 2 102000030
13977 14330 2 102000040
13978 14331 2 103000020
13979 14332 2 103000030
13980 14333 2 103000040
13981 14334 2 104000020
13982 14335 2 104000030
13983 14336 2 104000040
13984 14337 2 105000020
13985 14338 2 105000030
13986 14339 2 105000040
13987 14340 2 106000020
13988 14341 2 106000030
13989 14342 2 106000040
13990 14343 2 107000020
13991 14344 2 107000030
13992 14345 2 107000040
13993 14346 2 108000020
13994 14347 2 108000030
13995 14348 2 108000040
13996 14349 2 109000020
13997 14350 2 109000030
13998 14351 2 109000040
13999 14352 2 110000020
14000 14353 2 110000030
14001 14354 2 110000040
14002 14355 2 118000010
14003 14356 3 101000050
14004 14357 3 101000060
14005 14358 3 101000080
14006 14359 3 101000040
14007 14360 3 109000060
14008 14361 3 109000070
14009 14362 3 109000080
14010 14363 3 105000060
14011 14364 3 105000070
14012 14365 3 105000080
14013 14366 3 104000050
14014 14367 3 106000050
14015 14368 3 102000060
14016 14369 3 102000070
14017 14370 3 102000080
14018 14371 3 103000050
14019 14372 3 105000050
14020 14373 3 107000060
14021 14374 3 107000070
14022 14375 3 107000080
14023 14376 3 108000050
14024 14377 3 109000050
14025 14378 3 103000060
14026 14379 3 103000070
14027 14380 3 103000080
14028 14381 3 110000050
14029 14382 3 106000060
14030 14383 3 106000070
14031 14384 3 106000080
14032 14385 3 101000070
14033 14386 3 110000060
14034 14387 3 104000060
14035 14388 3 104000070
14036 14389 3 104000080
14037 14390 3 102000050
14038 14391 3 104000170
14039 14392 3 104000260
14040 14393 3 111000010
14041 14394 3 111000020
14042 14395 3 111000030
14043 14396 3 112000020
14044 14397 3 112000030
14045 14398 3 108000060
14046 14399 3 108000070
14047 14400 3 108000080
14048 14401 3 107000050
14049 14402 3 112000010
14050 14403 3 110000070
14051 14404 3 110000080
14052 14405 3 118000020
14053 14406 3 118000030
14054 14407 3 118000040
14055 14408 4 101000090
14056 14409 4 101000100
14057 14410 4 101000110
14058 14411 4 109000100
14059 14412 4 105000100
14060 14413 4 105000110
14061 14414 4 108000090
14062 14415 4 110000090
14063 14416 4 102000100
14064 14417 4 102000110
14065 14418 4 106000090
14066 14419 4 109000090
14067 14420 4 107000100
14068 14421 4 103000090
14069 14422 4 102000090
14070 14423 4 103000100
14071 14424 4 106000100
14072 14425 4 106000110
14073 14426 4 104000090
14074 14427 4 104000100
14075 14428 4 104000110
14076 14429 4 107000090
14077 14430 4 104000180
14078 14431 4 111000040
14079 14432 4 112000040
14080 14433 4 108000100
14081 14434 4 105000090
14082 14435 4 110000100
14083 14436 4 118000050
14084 14437 4 118000060
14085 14438 5 101000120
14086 14439 5 109000110
14087 14440 5 105000120
14088 14441 5 102000120
14089 14442 5 107000110
14090 14443 5 103000120
14091 14444 5 106000120
14092 14445 5 104000120
14093 14446 5 104000190
14094 14447 5 111000060
14095 14448 5 112000060
14096 14449 5 108000110
14097 14450 5 110000110
14098 14451 5 118000070
14099 14452 1 201000010
14100 14453 1 292000010
14101 14454 1 299000040
14102 14455 1 299000070
14103 14456 1 299000110
14104 14457 1 299000120
14105 14458 1 299000140
14106 14459 2 202000010
14107 14460 2 290000010
14108 14461 2 299000010
14109 14462 2 299000150
14110 14463 2 299000190
14111 14464 2 299000200
14112 14465 2 299000210
14113 14466 3 298000050
14114 14467 3 298000060
14115 14468 3 299000060
14116 14469 3 299000170
14117 14470 3 290000120
14118 14471 3 291000050
14119 14472 3 292000020
14120 14473 4 299000670
14121 14474 4 299000680
14122 14475 4 204000010
14123 14476 4 209000040
14124 14477 4 202000070
14125 14478 4 209000070
14126 14479 4 203000110
14127 14480 4 290000110
14128 14481 4 206000110
14129 14482 5 297000100
14130 14483 5 291000020
14131 14484 5 297000130
14132 14485 5 297000140
14133 14486 5 203000010
14134 14487 5 206000030
14135 14488 5 203000050
14136 14489 5 202000090
14137 14490 5 204000080
14138 14491 5 202000150
14139 14492 5 204000100
14140 14493 1 170002
14141 14494 1 180002
14142 14495 2 170003
14143 14496 2 180003
14144 14497 3 170004
14145 14498 3 180004
14146 14499 4 140000
14147 14500 5 150010
14148 14501 5 150020
14149 14502 5 150030
14150 14503 5 150040
14151 14505 1 101000010
14152 14506 1 102000010
14153 14507 1 103000010
14154 14508 1 104000010
14155 14509 1 105000010
14156 14510 1 106000010
14157 14511 1 107000010
14158 14512 1 108000010
14159 14513 1 109000010
14160 14514 1 110000010
14161 14515 2 101000020
14162 14516 2 101000030
14163 14517 2 102000020
14164 14518 2 102000030
14165 14519 2 102000040
14166 14520 2 103000020
14167 14521 2 103000030
14168 14522 2 103000040
14169 14523 2 104000020
14170 14524 2 104000030
14171 14525 2 104000040
14172 14526 2 105000020
14173 14527 2 105000030
14174 14528 2 105000040
14175 14529 2 106000020
14176 14530 2 106000030
14177 14531 2 106000040
14178 14532 2 107000020
14179 14533 2 107000030
14180 14534 2 107000040
14181 14535 2 108000020
14182 14536 2 108000030
14183 14537 2 108000040
14184 14538 2 109000020
14185 14539 2 109000030
14186 14540 2 109000040
14187 14541 2 110000020
14188 14542 2 110000030
14189 14543 2 110000040
14190 14544 2 118000010
14191 14545 3 101000050
14192 14546 3 101000060
14193 14547 3 101000080
14194 14548 3 101000040
14195 14549 3 109000060
14196 14550 3 109000070
14197 14551 3 109000080
14198 14552 3 105000060
14199 14553 3 105000070
14200 14554 3 105000080
14201 14555 3 104000050
14202 14556 3 106000050
14203 14557 3 102000060
14204 14558 3 102000070
14205 14559 3 102000080
14206 14560 3 103000050
14207 14561 3 105000050
14208 14562 3 107000060
14209 14563 3 107000070
14210 14564 3 107000080
14211 14565 3 108000050
14212 14566 3 109000050
14213 14567 3 103000060
14214 14568 3 103000070
14215 14569 3 103000080
14216 14570 3 110000050
14217 14571 3 106000060
14218 14572 3 106000070
14219 14573 3 106000080
14220 14574 3 101000070
14221 14575 3 110000060
14222 14576 3 104000060
14223 14577 3 104000070
14224 14578 3 104000080
14225 14579 3 102000050
14226 14580 3 104000170
14227 14581 3 104000260
14228 14582 3 111000010
14229 14583 3 111000020
14230 14584 3 111000030
14231 14585 3 112000020
14232 14586 3 112000030
14233 14587 3 108000060
14234 14588 3 108000070
14235 14589 3 108000080
14236 14590 3 107000050
14237 14591 3 112000010
14238 14592 3 110000070
14239 14593 3 110000080
14240 14594 3 118000020
14241 14595 3 118000030
14242 14596 3 118000040
14243 14597 4 101000090
14244 14598 4 101000100
14245 14599 4 101000110
14246 14600 4 109000100
14247 14601 4 105000100
14248 14602 4 105000110
14249 14603 4 108000090
14250 14604 4 110000090
14251 14605 4 102000100
14252 14606 4 102000110
14253 14607 4 106000090
14254 14608 4 109000090
14255 14609 4 107000100
14256 14610 4 103000090
14257 14611 4 102000090
14258 14612 4 103000100
14259 14613 4 106000100
14260 14614 4 106000110
14261 14615 4 104000090
14262 14616 4 104000100
14263 14617 4 104000110
14264 14618 4 107000090
14265 14619 4 104000180
14266 14620 4 111000040
14267 14621 4 112000040
14268 14622 4 108000100
14269 14623 4 105000090
14270 14624 4 110000100
14271 14625 4 118000050
14272 14626 4 118000060
14273 14627 5 101000120
14274 14628 5 109000110
14275 14629 5 105000120
14276 14630 5 102000120
14277 14631 5 107000110
14278 14632 5 103000120
14279 14633 5 106000120
14280 14634 5 104000120
14281 14635 5 104000190
14282 14636 5 111000060
14283 14637 5 112000060
14284 14638 5 108000110
14285 14639 5 110000110
14286 14640 5 118000070
14287 14641 1 201000010
14288 14642 1 292000010
14289 14643 1 299000040
14290 14644 1 299000070
14291 14645 1 299000110
14292 14646 1 299000120
14293 14647 1 299000140
14294 14648 2 202000010
14295 14649 2 290000010
14296 14650 2 299000010
14297 14651 2 299000150
14298 14652 2 299000190
14299 14653 2 299000200
14300 14654 2 299000210
14301 14655 3 298000050
14302 14656 3 298000060
14303 14657 3 299000060
14304 14658 3 299000170
14305 14659 3 290000120
14306 14660 3 291000050
14307 14661 3 292000020
14308 14662 4 299000670
14309 14663 4 299000680
14310 14664 4 204000010
14311 14665 4 209000040
14312 14666 4 202000070
14313 14667 4 209000070
14314 14668 4 203000110
14315 14669 4 290000110
14316 14670 4 206000110
14317 14671 5 297000100
14318 14672 5 291000020
14319 14673 5 297000130
14320 14674 5 297000140
14321 14675 5 203000010
14322 14676 5 206000030
14323 14677 5 203000050
14324 14678 5 202000090
14325 14679 5 204000080
14326 14680 5 202000150
14327 14681 5 204000100
14328 14682 2 170003
14329 14683 2 180003
14330 14684 3 170004
14331 14685 3 180004
14332 14686 4 140000
14333 14687 5 150010
14334 14688 5 150020
14335 14689 5 150030
14336 14690 5 150040
14337 14692 3 101000050
14338 14693 3 101000060
14339 14694 3 101000080
14340 14695 3 101000040
14341 14696 3 109000060
14342 14697 3 109000070
14343 14698 3 109000080
14344 14699 3 105000060
14345 14700 3 105000070
14346 14701 3 105000080
14347 14702 3 104000050
14348 14703 3 106000050
14349 14704 3 102000060
14350 14705 3 102000070
14351 14706 3 102000080
14352 14707 3 103000050
14353 14708 3 105000050
14354 14709 3 107000060
14355 14710 3 107000070
14356 14711 3 107000080
14357 14712 3 108000050
14358 14713 3 109000050
14359 14714 3 103000060
14360 14715 3 103000070
14361 14716 3 103000080
14362 14717 3 110000050
14363 14718 3 106000060
14364 14719 3 106000070
14365 14720 3 106000080
14366 14721 3 101000070
14367 14722 3 110000060
14368 14723 3 104000060
14369 14724 3 104000070
14370 14725 3 104000080
14371 14726 3 102000050
14372 14727 3 104000170
14373 14728 3 104000260
14374 14729 3 111000010
14375 14730 3 111000020
14376 14731 3 111000030
14377 14732 3 112000020
14378 14733 3 112000030
14379 14734 3 108000060
14380 14735 3 108000070
14381 14736 3 108000080
14382 14737 3 107000050
14383 14738 3 112000010
14384 14739 3 110000070
14385 14740 3 110000080
14386 14741 3 118000020
14387 14742 3 118000030
14388 14743 3 118000040
14389 14744 4 101000090
14390 14745 4 101000100
14391 14746 4 101000110
14392 14747 4 109000100
14393 14748 4 105000100
14394 14749 4 105000110
14395 14750 4 108000090
14396 14751 4 110000090
14397 14752 4 102000100
14398 14753 4 102000110
14399 14754 4 106000090
14400 14755 4 109000090
14401 14756 4 107000100
14402 14757 4 103000090
14403 14758 4 102000090
14404 14759 4 103000100
14405 14760 4 106000100
14406 14761 4 106000110
14407 14762 4 104000090
14408 14763 4 104000100
14409 14764 4 104000110
14410 14765 4 107000090
14411 14766 4 104000180
14412 14767 4 111000040
14413 14768 4 112000040
14414 14769 4 108000100
14415 14770 4 105000090
14416 14771 4 110000100
14417 14772 4 118000050
14418 14773 4 118000060
14419 14774 5 101000120
14420 14775 5 109000110
14421 14776 5 105000120
14422 14777 5 102000120
14423 14778 5 107000110
14424 14779 5 103000120
14425 14780 5 106000120
14426 14781 5 104000120
14427 14782 5 104000190
14428 14783 5 111000060
14429 14784 5 112000060
14430 14785 5 108000110
14431 14786 5 110000110
14432 14787 5 118000070
14433 14788 1 201000010
14434 14789 1 292000010
14435 14790 1 299000040
14436 14791 1 299000070
14437 14792 1 299000110
14438 14793 1 299000120
14439 14794 1 299000140
14440 14795 2 202000010
14441 14796 2 290000010
14442 14797 2 299000010
14443 14798 2 299000150
14444 14799 2 299000190
14445 14800 2 299000200
14446 14801 2 299000210
14447 14802 3 298000050
14448 14803 3 298000060
14449 14804 3 299000060
14450 14805 3 299000170
14451 14806 3 290000120
14452 14807 3 291000050
14453 14808 3 292000020
14454 14809 4 299000670
14455 14810 4 299000680
14456 14811 4 204000010
14457 14812 4 209000040
14458 14813 4 202000070
14459 14814 4 209000070
14460 14815 4 203000110
14461 14816 4 290000110
14462 14817 4 206000110
14463 14818 5 297000100
14464 14819 5 291000020
14465 14820 5 297000130
14466 14821 5 297000140
14467 14822 5 203000010
14468 14823 5 206000030
14469 14824 5 203000050
14470 14825 5 202000090
14471 14826 5 204000080
14472 14827 5 202000150
14473 14828 5 204000100
14474 14829 3 170004
14475 14830 3 180004
14476 14831 4 140000
14477 14832 5 150010
14478 14833 5 150020
14479 14834 5 150030
14480 14835 5 150040
14481 14837 3 101000050
14482 14838 3 101000060
14483 14839 3 101000080
14484 14840 3 101000040
14485 14841 3 109000060
14486 14842 3 109000070
14487 14843 3 109000080
14488 14844 3 105000060
14489 14845 3 105000070
14490 14846 3 105000080
14491 14847 3 104000050
14492 14848 3 106000050
14493 14849 3 102000060
14494 14850 3 102000070
14495 14851 3 102000080
14496 14852 3 103000050
14497 14853 3 105000050
14498 14854 3 107000060
14499 14855 3 107000070
14500 14856 3 107000080
14501 14857 3 108000050
14502 14858 3 109000050
14503 14859 3 103000060
14504 14860 3 103000070
14505 14861 3 103000080
14506 14862 3 110000050
14507 14863 3 106000060
14508 14864 3 106000070
14509 14865 3 106000080
14510 14866 3 101000070
14511 14867 3 110000060
14512 14868 3 104000060
14513 14869 3 104000070
14514 14870 3 104000080
14515 14871 3 102000050
14516 14872 3 104000170
14517 14873 3 104000260
14518 14874 3 111000010
14519 14875 3 111000020
14520 14876 3 111000030
14521 14877 3 112000020
14522 14878 3 112000030
14523 14879 3 108000060
14524 14880 3 108000070
14525 14881 3 108000080
14526 14882 3 107000050
14527 14883 3 112000010
14528 14884 3 110000070
14529 14885 3 110000080
14530 14886 3 118000020
14531 14887 3 118000030
14532 14888 3 118000040
14533 14889 4 101000090
14534 14890 4 101000100
14535 14891 4 101000110
14536 14892 4 109000100
14537 14893 4 105000100
14538 14894 4 105000110
14539 14895 4 108000090
14540 14896 4 110000090
14541 14897 4 102000100
14542 14898 4 102000110
14543 14899 4 106000090
14544 14900 4 109000090
14545 14901 4 107000100
14546 14902 4 103000090
14547 14903 4 102000090
14548 14904 4 103000100
14549 14905 4 106000100
14550 14906 4 106000110
14551 14907 4 104000090
14552 14908 4 104000100
14553 14909 4 104000110
14554 14910 4 107000090
14555 14911 4 104000180
14556 14912 4 111000040
14557 14913 4 112000040
14558 14914 4 108000100
14559 14915 4 105000090
14560 14916 4 110000100
14561 14917 4 118000050
14562 14918 4 118000060
14563 14919 5 101000120
14564 14920 5 109000110
14565 14921 5 105000120
14566 14922 5 102000120
14567 14923 5 107000110
14568 14924 5 103000120
14569 14925 5 106000120
14570 14926 5 104000120
14571 14927 5 104000190
14572 14928 5 111000060
14573 14929 5 112000060
14574 14930 5 108000110
14575 14931 5 110000110
14576 14932 5 118000070
14577 14933 1 201000010
14578 14934 1 292000010
14579 14935 1 299000040
14580 14936 1 299000070
14581 14937 1 299000110
14582 14938 1 299000120
14583 14939 1 299000140
14584 14940 2 202000010
14585 14941 2 290000010
14586 14942 2 299000010
14587 14943 2 299000150
14588 14944 2 299000190
14589 14945 2 299000200
14590 14946 2 299000210
14591 14947 3 298000050
14592 14948 3 298000060
14593 14949 3 299000060
14594 14950 3 299000170
14595 14951 3 290000120
14596 14952 3 291000050
14597 14953 3 292000020
14598 14954 4 299000670
14599 14955 4 299000680
14600 14956 4 204000010
14601 14957 4 209000040
14602 14958 4 202000070
14603 14959 4 209000070
14604 14960 4 203000110
14605 14961 4 290000110
14606 14962 4 206000110
14607 14963 5 297000100
14608 14964 5 291000020
14609 14965 5 297000130
14610 14966 5 297000140
14611 14967 5 203000010
14612 14968 5 206000030
14613 14969 5 203000050
14614 14970 5 202000090
14615 14971 5 204000080
14616 14972 5 202000150
14617 14973 5 204000100
14618 14974 3 170004
14619 14975 3 180004
14620 14976 4 140000
14621 14977 5 150010
14622 14978 5 150020
14623 14979 5 150030
14624 14980 5 150040
14625 14982 3 101000050
14626 14983 3 101000060
14627 14984 3 101000080
14628 14985 3 101000040
14629 14986 3 109000060
14630 14987 3 109000070
14631 14988 3 109000080
14632 14989 3 105000060
14633 14990 3 105000070
14634 14991 3 105000080
14635 14992 3 104000050
14636 14993 3 106000050
14637 14994 3 102000060
14638 14995 3 102000070
14639 14996 3 102000080
14640 14997 3 103000050
14641 14998 3 105000050
14642 14999 3 107000060
14643 15000 3 107000070
14644 15001 3 107000080
14645 15002 3 108000050
14646 15003 3 109000050
14647 15004 3 103000060
14648 15005 3 103000070
14649 15006 3 103000080
14650 15007 3 110000050
14651 15008 3 106000060
14652 15009 3 106000070
14653 15010 3 106000080
14654 15011 3 101000070
14655 15012 3 110000060
14656 15013 3 104000060
14657 15014 3 104000070
14658 15015 3 104000080
14659 15016 3 102000050
14660 15017 3 104000170
14661 15018 3 104000260
14662 15019 3 111000010
14663 15020 3 111000020
14664 15021 3 111000030
14665 15022 3 112000020
14666 15023 3 112000030
14667 15024 3 108000060
14668 15025 3 108000070
14669 15026 3 108000080
14670 15027 3 107000050
14671 15028 3 112000010
14672 15029 3 110000070
14673 15030 3 110000080
14674 15031 3 118000020
14675 15032 3 118000030
14676 15033 3 118000040
14677 15034 4 101000090
14678 15035 4 101000100
14679 15036 4 101000110
14680 15037 4 109000100
14681 15038 4 105000100
14682 15039 4 105000110
14683 15040 4 108000090
14684 15041 4 110000090
14685 15042 4 102000100
14686 15043 4 102000110
14687 15044 4 106000090
14688 15045 4 109000090
14689 15046 4 107000100
14690 15047 4 103000090
14691 15048 4 102000090
14692 15049 4 103000100
14693 15050 4 106000100
14694 15051 4 106000110
14695 15052 4 104000090
14696 15053 4 104000100
14697 15054 4 104000110
14698 15055 4 107000090
14699 15056 4 104000180
14700 15057 4 111000040
14701 15058 4 112000040
14702 15059 4 108000100
14703 15060 4 105000090
14704 15061 4 110000100
14705 15062 4 118000050
14706 15063 4 118000060
14707 15064 5 101000120
14708 15065 5 109000110
14709 15066 5 105000120
14710 15067 5 102000120
14711 15068 5 107000110
14712 15069 5 103000120
14713 15070 5 106000120
14714 15071 5 104000120
14715 15072 5 104000190
14716 15073 5 111000060
14717 15074 5 112000060
14718 15075 5 108000110
14719 15076 5 110000110
14720 15077 5 118000070
14721 15078 1 201000010
14722 15079 1 292000010
14723 15080 1 299000040
14724 15081 1 299000070
14725 15082 1 299000110
14726 15083 1 299000120
14727 15084 1 299000140
14728 15085 2 202000010
14729 15086 2 290000010
14730 15087 2 299000010
14731 15088 2 299000150
14732 15089 2 299000190
14733 15090 2 299000200
14734 15091 2 299000210
14735 15092 3 298000050
14736 15093 3 298000060
14737 15094 3 299000060
14738 15095 3 299000170
14739 15096 3 290000120
14740 15097 3 291000050
14741 15098 3 292000020
14742 15099 4 299000670
14743 15100 4 299000680
14744 15101 4 204000010
14745 15102 4 209000040
14746 15103 4 202000070
14747 15104 4 209000070
14748 15105 4 203000110
14749 15106 4 290000110
14750 15107 4 206000110
14751 15108 5 297000100
14752 15109 5 291000020
14753 15110 5 297000130
14754 15111 5 297000140
14755 15112 5 203000010
14756 15113 5 206000030
14757 15114 5 203000050
14758 15115 5 202000090
14759 15116 5 204000080
14760 15117 5 202000150
14761 15118 5 204000100
14762 15119 3 170004
14763 15120 3 180004
14764 15121 4 140000
14765 15122 5 150010
14766 15123 5 150020
14767 15124 5 150030
14768 15125 5 150040
14769 15126 5 190000
14770 15127 5 200000
14771 15128 5 210000
14772 15130 3 111000010
14773 15131 3 111000020
14774 15132 3 111000030
14775 15133 3 112000020
14776 15134 3 112000030
14777 15135 3 108000060
14778 15136 3 108000070
14779 15137 3 108000080
14780 15138 3 107000050
14781 15139 3 112000010
14782 15140 3 110000070
14783 15141 3 110000080
14784 15142 4 111000040
14785 15143 4 112000040
14786 15144 4 108000100
14787 15145 4 105000090
14788 15146 4 110000100
14789 15147 5 111000060
14790 15148 5 112000060
14791 15149 5 108000110
14792 15150 5 110000110
14793 15151 1 108000000
14794 15152 2 108000001
14795 15153 3 108000002
14796 15154 4 108000003
14797 15155 5 108000004
14798 15156 1 107000000
14799 15157 2 107000001
14800 15158 3 107000002
14801 15159 4 107000003
14802 15160 5 107000004
14803 15161 1 120000000
14804 15162 2 120000001
14805 15163 3 120000002
14806 15164 4 120000003
14807 15165 5 120000004
14808 15166 3 170004
14809 15167 4 170005
14810 15168 3 180004
14811 15169 4 180005
14812 15170 4 140000
14813 15171 4 150010
14814 15172 4 150020
14815 15173 4 150030
14816 15174 4 150040
14817 15176 3 101000050
14818 15177 3 101000060
14819 15178 3 101000080
14820 15179 3 101000040
14821 15180 3 109000060
14822 15181 3 109000070
14823 15182 3 109000080
14824 15183 3 105000060
14825 15184 3 105000070
14826 15185 3 105000080
14827 15186 3 104000050
14828 15187 3 106000050
14829 15188 4 101000090
14830 15189 4 101000100
14831 15190 4 101000110
14832 15191 4 109000100
14833 15192 4 105000100
14834 15193 4 105000110
14835 15194 4 108000090
14836 15195 4 110000090
14837 15196 5 101000120
14838 15197 5 109000110
14839 15198 5 105000120
14840 15199 1 101000000
14841 15200 2 101000001
14842 15201 3 101000002
14843 15202 4 101000008
14844 15203 5 101000004
14845 15204 1 109000000
14846 15205 2 109000001
14847 15206 3 109000002
14848 15207 4 109000003
14849 15208 5 109000004
14850 15209 4 110024
14851 15210 4 110034
14852 15211 4 110044
14853 15212 4 110054
14854 15213 3 110060
14855 15214 3 110070
14856 15215 3 110080
14857 15216 3 110090
14858 15217 3 110100
14859 15218 3 110110
14860 15219 3 110120
14861 15220 3 110130
14862 15221 3 110140
14863 15222 3 110150
14864 15223 3 110160
14865 15224 3 110170
14866 15225 3 110180
14867 15226 3 110190
14868 15227 3 110200
14869 15228 3 110210
14870 15229 3 110220
14871 15230 3 110230
14872 15231 3 110240
14873 15232 3 110250
14874 15233 3 110260
14875 15234 3 110270
14876 15235 3 110620
14877 15236 3 110670
14878 15237 4 140000
14879 15238 4 150010
14880 15239 4 150020
14881 15240 4 150030
14882 15241 4 150040
14883 15243 3 102000060
14884 15244 3 102000070
14885 15245 3 102000080
14886 15246 3 103000050
14887 15247 3 105000050
14888 15248 3 107000060
14889 15249 3 107000070
14890 15250 3 107000080
14891 15251 3 108000050
14892 15252 3 109000050
14893 15253 3 103000060
14894 15254 3 103000070
14895 15255 3 103000080
14896 15256 3 110000050
14897 15257 4 102000100
14898 15258 4 102000110
14899 15259 4 102000350
14900 15260 4 106000090
14901 15261 4 109000090
14902 15262 4 107000100
14903 15263 4 103000090
14904 15264 4 102000090
14905 15265 4 103000100
14906 15266 5 102000120
14907 15267 5 107000110
14908 15268 5 103000120
14909 15269 1 102000000
14910 15270 2 102000001
14911 15271 3 102000002
14912 15272 4 102000003
14913 15273 5 102000004
14914 15274 1 105000000
14915 15275 2 105000001
14916 15276 3 105000002
14917 15277 4 105000003
14918 15278 5 105000004
14919 15279 1 112000000
14920 15280 2 112000001
14921 15281 3 112000002
14922 15282 4 112000003
14923 15283 5 112000004
14924 15284 4 120024
14925 15285 4 120034
14926 15286 4 120044
14927 15287 4 120054
14928 15288 3 120241
14929 15289 3 120251
14930 15290 3 120261
14931 15291 3 120271
14932 15292 3 120300
14933 15293 3 120310
14934 15294 3 120320
14935 15295 3 120330
14936 15296 3 120340
14937 15297 3 120350
14938 15298 3 120360
14939 15299 3 120370
14940 15300 3 120380
14941 15301 3 120390
14942 15302 3 120400
14943 15303 3 120410
14944 15304 3 120420
14945 15305 3 120430
14946 15306 3 120450
14947 15307 3 120460
14948 15308 3 120550
14949 15309 3 120560
14950 15310 3 120570
14951 15311 3 120990
14952 15312 3 121000
14953 15313 3 121010
14954 15314 3 121020
14955 15315 3 121100
14956 15316 4 140000
14957 15317 4 150010
14958 15318 4 150020
14959 15319 4 150030
14960 15320 4 150040
14961 15322 3 118000020
14962 15323 3 118000030
14963 15324 3 118000040
14964 15325 3 106000060
14965 15326 3 106000070
14966 15327 3 106000080
14967 15328 3 101000070
14968 15329 3 110000060
14969 15330 3 104000060
14970 15331 3 104000070
14971 15332 3 104000080
14972 15333 3 102000050
14973 15334 3 104000170
14974 15335 3 104000260
14975 15336 4 118000050
14976 15337 4 118000060
14977 15338 4 106000100
14978 15339 4 106000110
14979 15340 4 104000090
14980 15341 4 104000100
14981 15342 4 104000110
14982 15343 4 104000270
14983 15344 4 107000090
14984 15345 4 104000180
14985 15346 5 118000070
14986 15347 5 106000120
14987 15348 5 104000120
14988 15349 5 104000190
14989 15350 1 103000000
14990 15351 2 103000001
14991 15352 3 103000002
14992 15353 4 103000003
14993 15354 5 103000004
14994 15355 1 111000000
14995 15356 2 111000001
14996 15357 3 111000002
14997 15358 4 111000003
14998 15359 5 111000004
14999 15360 1 115000000
15000 15361 2 115000001
15001 15362 3 115000002
15002 15363 4 115000003
15003 15364 5 115000004
15004 15365 4 130024
15005 15366 4 130034
15006 15367 4 130044
15007 15368 4 130054
15008 15369 3 130060
15009 15370 3 130070
15010 15371 3 130080
15011 15372 3 130090
15012 15373 3 130100
15013 15374 3 130110
15014 15375 3 130120
15015 15376 3 130130
15016 15377 3 130140
15017 15378 3 130150
15018 15379 3 130160
15019 15380 3 130170
15020 15381 3 130180
15021 15382 3 130190
15022 15383 3 130200
15023 15384 3 130420
15024 15385 3 130510
15025 15386 3 130520
15026 15387 3 130531
15027 15388 3 130540
15028 15389 3 130660
15029 15390 3 130700
15030 15391 3 130790
15031 15392 3 130800
15032 15393 3 131130
15033 15394 4 140000
15034 15395 4 150010
15035 15396 4 150020
15036 15397 4 150030
15037 15398 4 150040
15038 15400 1 101000010
15039 15401 1 102000010
15040 15402 1 103000010
15041 15403 1 104000010
15042 15404 1 105000010
15043 15405 1 106000010
15044 15406 1 107000010
15045 15407 1 108000010
15046 15408 1 109000010
15047 15409 1 110000010
15048 15410 2 101000020
15049 15411 2 101000030
15050 15412 2 102000020
15051 15413 2 102000030
15052 15414 2 102000040
15053 15415 2 103000020
15054 15416 2 103000030
15055 15417 2 103000040
15056 15418 2 104000020
15057 15419 2 104000030
15058 15420 2 104000040
15059 15421 2 105000020
15060 15422 2 105000030
15061 15423 2 105000040
15062 15424 2 106000020
15063 15425 2 106000030
15064 15426 2 106000040
15065 15427 2 107000020
15066 15428 2 107000030
15067 15429 2 107000040
15068 15430 2 108000020
15069 15431 2 108000030
15070 15432 2 108000040
15071 15433 2 109000020
15072 15434 2 109000030
15073 15435 2 109000040
15074 15436 2 110000020
15075 15437 2 110000030
15076 15438 2 110000040
15077 15439 2 118000010
15078 15440 3 101000050
15079 15441 3 101000060
15080 15442 3 101000080
15081 15443 3 101000040
15082 15444 3 109000060
15083 15445 3 109000070
15084 15446 3 109000080
15085 15447 3 105000060
15086 15448 3 105000070
15087 15449 3 105000080
15088 15450 3 104000050
15089 15451 3 106000050
15090 15452 3 102000060
15091 15453 3 102000070
15092 15454 3 102000080
15093 15455 3 103000050
15094 15456 3 105000050
15095 15457 3 107000060
15096 15458 3 107000070
15097 15459 3 107000080
15098 15460 3 108000050
15099 15461 3 109000050
15100 15462 3 103000060
15101 15463 3 103000070
15102 15464 3 103000080
15103 15465 3 110000050
15104 15466 3 106000060
15105 15467 3 106000070
15106 15468 3 106000080
15107 15469 3 101000070
15108 15470 3 110000060
15109 15471 3 104000060
15110 15472 3 104000070
15111 15473 3 104000080
15112 15474 3 102000050
15113 15475 3 104000170
15114 15476 3 104000260
15115 15477 3 111000010
15116 15478 3 111000020
15117 15479 3 111000030
15118 15480 3 112000020
15119 15481 3 112000030
15120 15482 3 108000060
15121 15483 3 108000070
15122 15484 3 108000080
15123 15485 3 107000050
15124 15486 3 112000010
15125 15487 3 110000070
15126 15488 3 110000080
15127 15489 3 118000020
15128 15490 3 118000030
15129 15491 3 118000040
15130 15492 4 101000090
15131 15493 4 101000100
15132 15494 4 101000110
15133 15495 4 109000100
15134 15496 4 105000100
15135 15497 4 105000110
15136 15498 4 108000090
15137 15499 4 110000090
15138 15500 4 102000100
15139 15501 4 102000110
15140 15502 4 106000090
15141 15503 4 109000090
15142 15504 4 107000100
15143 15505 4 103000090
15144 15506 4 102000090
15145 15507 4 103000100
15146 15508 4 106000100
15147 15509 4 106000110
15148 15510 4 104000090
15149 15511 4 104000100
15150 15512 4 104000110
15151 15513 4 107000090
15152 15514 4 104000180
15153 15515 4 111000040
15154 15516 4 112000040
15155 15517 4 108000100
15156 15518 4 105000090
15157 15519 4 110000100
15158 15520 4 118000050
15159 15521 4 118000060
15160 15522 5 101000120
15161 15523 5 109000110
15162 15524 5 105000120
15163 15525 5 102000120
15164 15526 5 107000110
15165 15527 5 103000120
15166 15528 5 106000120
15167 15529 5 104000120
15168 15530 5 104000190
15169 15531 5 111000060
15170 15532 5 112000060
15171 15533 5 108000110
15172 15534 5 110000110
15173 15535 5 118000070
15174 15536 1 201000010
15175 15537 1 292000010
15176 15538 1 299000040
15177 15539 1 299000070
15178 15540 1 299000110
15179 15541 1 299000120
15180 15542 1 299000140
15181 15543 2 202000010
15182 15544 2 290000010
15183 15545 2 299000010
15184 15546 2 299000150
15185 15547 2 299000190
15186 15548 2 299000200
15187 15549 2 299000210
15188 15550 3 298000050
15189 15551 3 298000060
15190 15552 3 299000060
15191 15553 3 299000170
15192 15554 3 290000120
15193 15555 3 291000050
15194 15556 3 292000020
15195 15557 4 299000670
15196 15558 4 299000680
15197 15559 4 204000010
15198 15560 4 209000040
15199 15561 4 202000070
15200 15562 4 209000070
15201 15563 4 203000110
15202 15564 4 290000110
15203 15565 4 206000110
15204 15566 4 209000160
15205 15567 5 297000100
15206 15568 5 291000020
15207 15569 5 297000130
15208 15570 5 297000140
15209 15571 5 203000010
15210 15572 5 206000030
15211 15573 5 203000050
15212 15574 5 202000090
15213 15575 5 204000080
15214 15576 5 202000150
15215 15577 5 204000100
15216 15578 5 206000170
15217 15579 1 170002
15218 15580 1 180002
15219 15581 2 170003
15220 15582 2 180003
15221 15583 3 170004
15222 15584 3 180004
15223 15585 4 140000
15224 15586 5 150010
15225 15587 5 150020
15226 15588 5 150030
15227 15589 5 150040
15228 15591 1 101000010
15229 15592 1 102000010
15230 15593 1 103000010
15231 15594 1 104000010
15232 15595 1 105000010
15233 15596 1 106000010
15234 15597 1 107000010
15235 15598 1 108000010
15236 15599 1 109000010
15237 15600 1 110000010
15238 15601 2 101000020
15239 15602 2 101000030
15240 15603 2 102000020
15241 15604 2 102000030
15242 15605 2 102000040
15243 15606 2 103000020
15244 15607 2 103000030
15245 15608 2 103000040
15246 15609 2 104000020
15247 15610 2 104000030
15248 15611 2 104000040
15249 15612 2 105000020
15250 15613 2 105000030
15251 15614 2 105000040
15252 15615 2 106000020
15253 15616 2 106000030
15254 15617 2 106000040
15255 15618 2 107000020
15256 15619 2 107000030
15257 15620 2 107000040
15258 15621 2 108000020
15259 15622 2 108000030
15260 15623 2 108000040
15261 15624 2 109000020
15262 15625 2 109000030
15263 15626 2 109000040
15264 15627 2 110000020
15265 15628 2 110000030
15266 15629 2 110000040
15267 15630 2 118000010
15268 15631 3 101000050
15269 15632 3 101000060
15270 15633 3 101000080
15271 15634 3 101000040
15272 15635 3 109000060
15273 15636 3 109000070
15274 15637 3 109000080
15275 15638 3 105000060
15276 15639 3 105000070
15277 15640 3 105000080
15278 15641 3 104000050
15279 15642 3 106000050
15280 15643 3 102000060
15281 15644 3 102000070
15282 15645 3 102000080
15283 15646 3 103000050
15284 15647 3 105000050
15285 15648 3 107000060
15286 15649 3 107000070
15287 15650 3 107000080
15288 15651 3 108000050
15289 15652 3 109000050
15290 15653 3 103000060
15291 15654 3 103000070
15292 15655 3 103000080
15293 15656 3 110000050
15294 15657 3 106000060
15295 15658 3 106000070
15296 15659 3 106000080
15297 15660 3 101000070
15298 15661 3 110000060
15299 15662 3 104000060
15300 15663 3 104000070
15301 15664 3 104000080
15302 15665 3 102000050
15303 15666 3 104000170
15304 15667 3 104000260
15305 15668 3 111000010
15306 15669 3 111000020
15307 15670 3 111000030
15308 15671 3 112000020
15309 15672 3 112000030
15310 15673 3 108000060
15311 15674 3 108000070
15312 15675 3 108000080
15313 15676 3 107000050
15314 15677 3 112000010
15315 15678 3 110000070
15316 15679 3 110000080
15317 15680 3 118000020
15318 15681 3 118000030
15319 15682 3 118000040
15320 15683 4 101000090
15321 15684 4 101000100
15322 15685 4 101000110
15323 15686 4 109000100
15324 15687 4 105000100
15325 15688 4 105000110
15326 15689 4 108000090
15327 15690 4 110000090
15328 15691 4 102000100
15329 15692 4 102000110
15330 15693 4 106000090
15331 15694 4 109000090
15332 15695 4 107000100
15333 15696 4 103000090
15334 15697 4 102000090
15335 15698 4 103000100
15336 15699 4 106000100
15337 15700 4 106000110
15338 15701 4 104000090
15339 15702 4 104000100
15340 15703 4 104000110
15341 15704 4 107000090
15342 15705 4 104000180
15343 15706 4 111000040
15344 15707 4 112000040
15345 15708 4 108000100
15346 15709 4 105000090
15347 15710 4 110000100
15348 15711 4 118000050
15349 15712 4 118000060
15350 15713 5 101000120
15351 15714 5 109000110
15352 15715 5 105000120
15353 15716 5 102000120
15354 15717 5 107000110
15355 15718 5 103000120
15356 15719 5 106000120
15357 15720 5 104000120
15358 15721 5 104000190
15359 15722 5 111000060
15360 15723 5 112000060
15361 15724 5 108000110
15362 15725 5 110000110
15363 15726 5 118000070
15364 15727 1 201000010
15365 15728 1 292000010
15366 15729 1 299000040
15367 15730 1 299000070
15368 15731 1 299000110
15369 15732 1 299000120
15370 15733 1 299000140
15371 15734 2 202000010
15372 15735 2 290000010
15373 15736 2 299000010
15374 15737 2 299000150
15375 15738 2 299000190
15376 15739 2 299000200
15377 15740 2 299000210
15378 15741 3 298000050
15379 15742 3 298000060
15380 15743 3 299000060
15381 15744 3 299000170
15382 15745 3 290000120
15383 15746 3 291000050
15384 15747 3 292000020
15385 15748 4 299000670
15386 15749 4 299000680
15387 15750 4 204000010
15388 15751 4 209000040
15389 15752 4 202000070
15390 15753 4 209000070
15391 15754 4 203000110
15392 15755 4 290000110
15393 15756 4 206000110
15394 15757 4 209000160
15395 15758 5 297000100
15396 15759 5 291000020
15397 15760 5 297000130
15398 15761 5 297000140
15399 15762 5 203000010
15400 15763 5 206000030
15401 15764 5 203000050
15402 15765 5 202000090
15403 15766 5 204000080
15404 15767 5 202000150
15405 15768 5 204000100
15406 15769 5 206000170
15407 15770 2 170003
15408 15771 2 180003
15409 15772 3 170004
15410 15773 3 180004
15411 15774 4 140000
15412 15775 5 150010
15413 15776 5 150020
15414 15777 5 150030
15415 15778 5 150040
15416 15780 3 101000050
15417 15781 3 101000060
15418 15782 3 101000080
15419 15783 3 101000040
15420 15784 3 109000060
15421 15785 3 109000070
15422 15786 3 109000080
15423 15787 3 105000060
15424 15788 3 105000070
15425 15789 3 105000080
15426 15790 3 104000050
15427 15791 3 106000050
15428 15792 3 102000060
15429 15793 3 102000070
15430 15794 3 102000080
15431 15795 3 103000050
15432 15796 3 105000050
15433 15797 3 107000060
15434 15798 3 107000070
15435 15799 3 107000080
15436 15800 3 108000050
15437 15801 3 109000050
15438 15802 3 103000060
15439 15803 3 103000070
15440 15804 3 103000080
15441 15805 3 110000050
15442 15806 3 106000060
15443 15807 3 106000070
15444 15808 3 106000080
15445 15809 3 101000070
15446 15810 3 110000060
15447 15811 3 104000060
15448 15812 3 104000070
15449 15813 3 104000080
15450 15814 3 102000050
15451 15815 3 104000170
15452 15816 3 104000260
15453 15817 3 111000010
15454 15818 3 111000020
15455 15819 3 111000030
15456 15820 3 112000020
15457 15821 3 112000030
15458 15822 3 108000060
15459 15823 3 108000070
15460 15824 3 108000080
15461 15825 3 107000050
15462 15826 3 112000010
15463 15827 3 110000070
15464 15828 3 110000080
15465 15829 3 118000020
15466 15830 3 118000030
15467 15831 3 118000040
15468 15832 4 101000090
15469 15833 4 101000100
15470 15834 4 101000110
15471 15835 4 109000100
15472 15836 4 105000100
15473 15837 4 105000110
15474 15838 4 108000090
15475 15839 4 110000090
15476 15840 4 102000100
15477 15841 4 102000110
15478 15842 4 106000090
15479 15843 4 109000090
15480 15844 4 107000100
15481 15845 4 103000090
15482 15846 4 102000090
15483 15847 4 103000100
15484 15848 4 106000100
15485 15849 4 106000110
15486 15850 4 104000090
15487 15851 4 104000100
15488 15852 4 104000110
15489 15853 4 107000090
15490 15854 4 104000180
15491 15855 4 111000040
15492 15856 4 112000040
15493 15857 4 108000100
15494 15858 4 105000090
15495 15859 4 110000100
15496 15860 4 118000050
15497 15861 4 118000060
15498 15862 5 101000120
15499 15863 5 109000110
15500 15864 5 105000120
15501 15865 5 102000120
15502 15866 5 107000110
15503 15867 5 103000120
15504 15868 5 106000120
15505 15869 5 104000120
15506 15870 5 104000190
15507 15871 5 111000060
15508 15872 5 112000060
15509 15873 5 108000110
15510 15874 5 110000110
15511 15875 5 118000070
15512 15876 1 201000010
15513 15877 1 292000010
15514 15878 1 299000040
15515 15879 1 299000070
15516 15880 1 299000110
15517 15881 1 299000120
15518 15882 1 299000140
15519 15883 2 202000010
15520 15884 2 290000010
15521 15885 2 299000010
15522 15886 2 299000150
15523 15887 2 299000190
15524 15888 2 299000200
15525 15889 2 299000210
15526 15890 3 298000050
15527 15891 3 298000060
15528 15892 3 299000060
15529 15893 3 299000170
15530 15894 3 290000120
15531 15895 3 291000050
15532 15896 3 292000020
15533 15897 4 299000670
15534 15898 4 299000680
15535 15899 4 204000010
15536 15900 4 209000040
15537 15901 4 202000070
15538 15902 4 209000070
15539 15903 4 203000110
15540 15904 4 290000110
15541 15905 4 206000110
15542 15906 4 209000160
15543 15907 5 297000100
15544 15908 5 291000020
15545 15909 5 297000130
15546 15910 5 297000140
15547 15911 5 203000010
15548 15912 5 206000030
15549 15913 5 203000050
15550 15914 5 202000090
15551 15915 5 204000080
15552 15916 5 202000150
15553 15917 5 204000100
15554 15918 5 206000170
15555 15919 3 170004
15556 15920 3 180004
15557 15921 4 140000
15558 15922 5 150010
15559 15923 5 150020
15560 15924 5 150030
15561 15925 5 150040
15562 15927 3 101000050
15563 15928 3 101000060
15564 15929 3 101000080
15565 15930 3 101000040
15566 15931 3 109000060
15567 15932 3 109000070
15568 15933 3 109000080
15569 15934 3 105000060
15570 15935 3 105000070
15571 15936 3 105000080
15572 15937 3 104000050
15573 15938 3 106000050
15574 15939 3 102000060
15575 15940 3 102000070
15576 15941 3 102000080
15577 15942 3 103000050
15578 15943 3 105000050
15579 15944 3 107000060
15580 15945 3 107000070
15581 15946 3 107000080
15582 15947 3 108000050
15583 15948 3 109000050
15584 15949 3 103000060
15585 15950 3 103000070
15586 15951 3 103000080
15587 15952 3 110000050
15588 15953 3 106000060
15589 15954 3 106000070
15590 15955 3 106000080
15591 15956 3 101000070
15592 15957 3 110000060
15593 15958 3 104000060
15594 15959 3 104000070
15595 15960 3 104000080
15596 15961 3 102000050
15597 15962 3 104000170
15598 15963 3 104000260
15599 15964 3 111000010
15600 15965 3 111000020
15601 15966 3 111000030
15602 15967 3 112000020
15603 15968 3 112000030
15604 15969 3 108000060
15605 15970 3 108000070
15606 15971 3 108000080
15607 15972 3 107000050
15608 15973 3 112000010
15609 15974 3 110000070
15610 15975 3 110000080
15611 15976 3 118000020
15612 15977 3 118000030
15613 15978 3 118000040
15614 15979 4 101000090
15615 15980 4 101000100
15616 15981 4 101000110
15617 15982 4 109000100
15618 15983 4 105000100
15619 15984 4 105000110
15620 15985 4 108000090
15621 15986 4 110000090
15622 15987 4 102000100
15623 15988 4 102000110
15624 15989 4 106000090
15625 15990 4 109000090
15626 15991 4 107000100
15627 15992 4 103000090
15628 15993 4 102000090
15629 15994 4 103000100
15630 15995 4 106000100
15631 15996 4 106000110
15632 15997 4 104000090
15633 15998 4 104000100
15634 15999 4 104000110
15635 16000 4 107000090
15636 16001 4 104000180
15637 16002 4 111000040
15638 16003 4 112000040
15639 16004 4 108000100
15640 16005 4 105000090
15641 16006 4 110000100
15642 16007 4 118000050
15643 16008 4 118000060
15644 16009 5 101000120
15645 16010 5 109000110
15646 16011 5 105000120
15647 16012 5 102000120
15648 16013 5 107000110
15649 16014 5 103000120
15650 16015 5 106000120
15651 16016 5 104000120
15652 16017 5 104000190
15653 16018 5 111000060
15654 16019 5 112000060
15655 16020 5 108000110
15656 16021 5 110000110
15657 16022 5 118000070
15658 16023 1 201000010
15659 16024 1 292000010
15660 16025 1 299000040
15661 16026 1 299000070
15662 16027 1 299000110
15663 16028 1 299000120
15664 16029 1 299000140
15665 16030 2 202000010
15666 16031 2 290000010
15667 16032 2 299000010
15668 16033 2 299000150
15669 16034 2 299000190
15670 16035 2 299000200
15671 16036 2 299000210
15672 16037 3 298000050
15673 16038 3 298000060
15674 16039 3 299000060
15675 16040 3 299000170
15676 16041 3 290000120
15677 16042 3 291000050
15678 16043 3 292000020
15679 16044 4 299000670
15680 16045 4 299000680
15681 16046 4 204000010
15682 16047 4 209000040
15683 16048 4 202000070
15684 16049 4 209000070
15685 16050 4 203000110
15686 16051 4 290000110
15687 16052 4 206000110
15688 16053 4 209000160
15689 16054 5 297000100
15690 16055 5 291000020
15691 16056 5 297000130
15692 16057 5 297000140
15693 16058 5 203000010
15694 16059 5 206000030
15695 16060 5 203000050
15696 16061 5 202000090
15697 16062 5 204000080
15698 16063 5 202000150
15699 16064 5 204000100
15700 16065 5 206000170
15701 16066 3 170004
15702 16067 3 180004
15703 16068 4 140000
15704 16069 5 150010
15705 16070 5 150020
15706 16071 5 150030
15707 16072 5 150040
15708 16074 3 101000050
15709 16075 3 101000060
15710 16076 3 101000080
15711 16077 3 101000040
15712 16078 3 109000060
15713 16079 3 109000070
15714 16080 3 109000080
15715 16081 3 105000060
15716 16082 3 105000070
15717 16083 3 105000080
15718 16084 3 104000050
15719 16085 3 106000050
15720 16086 3 102000060
15721 16087 3 102000070
15722 16088 3 102000080
15723 16089 3 103000050
15724 16090 3 105000050
15725 16091 3 107000060
15726 16092 3 107000070
15727 16093 3 107000080
15728 16094 3 108000050
15729 16095 3 109000050
15730 16096 3 103000060
15731 16097 3 103000070
15732 16098 3 103000080
15733 16099 3 110000050
15734 16100 3 106000060
15735 16101 3 106000070
15736 16102 3 106000080
15737 16103 3 101000070
15738 16104 3 110000060
15739 16105 3 104000060
15740 16106 3 104000070
15741 16107 3 104000080
15742 16108 3 102000050
15743 16109 3 104000170
15744 16110 3 104000260
15745 16111 3 111000010
15746 16112 3 111000020
15747 16113 3 111000030
15748 16114 3 112000020
15749 16115 3 112000030
15750 16116 3 108000060
15751 16117 3 108000070
15752 16118 3 108000080
15753 16119 3 107000050
15754 16120 3 112000010
15755 16121 3 110000070
15756 16122 3 110000080
15757 16123 3 118000020
15758 16124 3 118000030
15759 16125 3 118000040
15760 16126 4 101000090
15761 16127 4 101000100
15762 16128 4 101000110
15763 16129 4 109000100
15764 16130 4 105000100
15765 16131 4 105000110
15766 16132 4 108000090
15767 16133 4 110000090
15768 16134 4 102000100
15769 16135 4 102000110
15770 16136 4 106000090
15771 16137 4 109000090
15772 16138 4 107000100
15773 16139 4 103000090
15774 16140 4 102000090
15775 16141 4 103000100
15776 16142 4 106000100
15777 16143 4 106000110
15778 16144 4 104000090
15779 16145 4 104000100
15780 16146 4 104000110
15781 16147 4 107000090
15782 16148 4 104000180
15783 16149 4 111000040
15784 16150 4 112000040
15785 16151 4 108000100
15786 16152 4 105000090
15787 16153 4 110000100
15788 16154 4 118000050
15789 16155 4 118000060
15790 16156 5 101000120
15791 16157 5 109000110
15792 16158 5 105000120
15793 16159 5 102000120
15794 16160 5 107000110
15795 16161 5 103000120
15796 16162 5 106000120
15797 16163 5 104000120
15798 16164 5 104000190
15799 16165 5 111000060
15800 16166 5 112000060
15801 16167 5 108000110
15802 16168 5 110000110
15803 16169 5 118000070
15804 16170 1 201000010
15805 16171 1 292000010
15806 16172 1 299000040
15807 16173 1 299000070
15808 16174 1 299000110
15809 16175 1 299000120
15810 16176 1 299000140
15811 16177 2 202000010
15812 16178 2 290000010
15813 16179 2 299000010
15814 16180 2 299000150
15815 16181 2 299000190
15816 16182 2 299000200
15817 16183 2 299000210
15818 16184 3 298000050
15819 16185 3 298000060
15820 16186 3 299000060
15821 16187 3 299000170
15822 16188 3 290000120
15823 16189 3 291000050
15824 16190 3 292000020
15825 16191 4 299000670
15826 16192 4 299000680
15827 16193 4 204000010
15828 16194 4 209000040
15829 16195 4 202000070
15830 16196 4 209000070
15831 16197 4 203000110
15832 16198 4 290000110
15833 16199 4 206000110
15834 16200 4 209000160
15835 16201 5 297000100
15836 16202 5 291000020
15837 16203 5 297000130
15838 16204 5 297000140
15839 16205 5 203000010
15840 16206 5 206000030
15841 16207 5 203000050
15842 16208 5 202000090
15843 16209 5 204000080
15844 16210 5 202000150
15845 16211 5 204000100
15846 16212 5 206000170
15847 16213 3 170004
15848 16214 3 180004
15849 16215 4 140000
15850 16216 5 150010
15851 16217 5 150020
15852 16218 5 150030
15853 16219 5 150040
15854 16220 5 190000
15855 16221 5 200000
15856 16222 5 210000
15857 16224 1 101000010
15858 16225 1 102000010
15859 16226 1 103000010
15860 16227 1 104000010
15861 16228 1 105000010
15862 16229 1 106000010
15863 16230 1 107000010
15864 16231 1 108000010
15865 16232 1 109000010
15866 16233 1 110000010
15867 16234 2 101000020
15868 16235 2 101000030
15869 16236 2 102000020
15870 16237 2 102000030
15871 16238 2 102000040
15872 16239 2 103000020
15873 16240 2 103000030
15874 16241 2 103000040
15875 16242 2 104000020
15876 16243 2 104000030
15877 16244 2 104000040
15878 16245 2 105000020
15879 16246 2 105000030
15880 16247 2 105000040
15881 16248 2 106000020
15882 16249 2 106000030
15883 16250 2 106000040
15884 16251 2 107000020
15885 16252 2 107000030
15886 16253 2 107000040
15887 16254 2 108000020
15888 16255 2 108000030
15889 16256 2 108000040
15890 16257 2 109000020
15891 16258 2 109000030
15892 16259 2 109000040
15893 16260 2 110000020
15894 16261 2 110000030
15895 16262 2 110000040
15896 16263 2 118000010
15897 16264 3 101000050
15898 16265 3 101000060
15899 16266 3 101000080
15900 16267 3 101000040
15901 16268 3 109000060
15902 16269 3 109000070
15903 16270 3 109000080
15904 16271 3 105000060
15905 16272 3 105000070
15906 16273 3 105000080
15907 16274 3 104000050
15908 16275 3 106000050
15909 16276 3 102000060
15910 16277 3 102000070
15911 16278 3 102000080
15912 16279 3 103000050
15913 16280 3 105000050
15914 16281 3 107000060
15915 16282 3 107000070
15916 16283 3 107000080
15917 16284 3 108000050
15918 16285 3 109000050
15919 16286 3 103000060
15920 16287 3 103000070
15921 16288 3 103000080
15922 16289 3 110000050
15923 16290 3 106000060
15924 16291 3 106000070
15925 16292 3 106000080
15926 16293 3 101000070
15927 16294 3 110000060
15928 16295 3 104000060
15929 16296 3 104000070
15930 16297 3 104000080
15931 16298 3 102000050
15932 16299 3 104000170
15933 16300 3 104000260
15934 16301 3 111000010
15935 16302 3 111000020
15936 16303 3 111000030
15937 16304 3 112000020
15938 16305 3 112000030
15939 16306 3 108000060
15940 16307 3 108000070
15941 16308 3 108000080
15942 16309 3 107000050
15943 16310 3 112000010
15944 16311 3 110000070
15945 16312 3 110000080
15946 16313 3 118000020
15947 16314 3 118000030
15948 16315 3 118000040
15949 16316 4 101000090
15950 16317 4 101000100
15951 16318 4 101000110
15952 16319 4 109000100
15953 16320 4 105000100
15954 16321 4 105000110
15955 16322 4 108000090
15956 16323 4 110000090
15957 16324 4 102000100
15958 16325 4 102000110
15959 16326 4 106000090
15960 16327 4 109000090
15961 16328 4 107000100
15962 16329 4 103000090
15963 16330 4 102000090
15964 16331 4 103000100
15965 16332 4 106000100
15966 16333 4 106000110
15967 16334 4 104000090
15968 16335 4 104000100
15969 16336 4 104000110
15970 16337 4 107000090
15971 16338 4 104000180
15972 16339 4 111000040
15973 16340 4 112000040
15974 16341 4 108000100
15975 16342 4 105000090
15976 16343 4 110000100
15977 16344 4 118000050
15978 16345 4 118000060
15979 16346 5 101000120
15980 16347 5 109000110
15981 16348 5 105000120
15982 16349 5 102000120
15983 16350 5 107000110
15984 16351 5 103000120
15985 16352 5 106000120
15986 16353 5 104000120
15987 16354 5 104000190
15988 16355 5 111000060
15989 16356 5 112000060
15990 16357 5 108000110
15991 16358 5 110000110
15992 16359 5 118000070
15993 16360 1 201000010
15994 16361 1 292000010
15995 16362 1 299000040
15996 16363 1 299000070
15997 16364 1 299000110
15998 16365 1 299000120
15999 16366 1 299000140
16000 16367 2 202000010
16001 16368 2 290000010
16002 16369 2 299000010
16003 16370 2 299000150
16004 16371 2 299000190
16005 16372 2 299000200
16006 16373 2 299000210
16007 16374 3 298000050
16008 16375 3 298000060
16009 16376 3 299000060
16010 16377 3 299000170
16011 16378 3 290000120
16012 16379 3 291000050
16013 16380 3 292000020
16014 16381 4 299000670
16015 16382 4 299000680
16016 16383 4 204000010
16017 16384 4 209000040
16018 16385 4 202000070
16019 16386 4 209000070
16020 16387 4 203000110
16021 16388 4 290000110
16022 16389 4 206000110
16023 16390 4 209000160
16024 16391 4 209000190
16025 16392 5 297000100
16026 16393 5 291000020
16027 16394 5 297000130
16028 16395 5 297000140
16029 16396 5 203000010
16030 16397 5 206000030
16031 16398 5 203000050
16032 16399 5 202000090
16033 16400 5 204000080
16034 16401 5 202000150
16035 16402 5 204000100
16036 16403 5 206000170
16037 16404 5 204000200
16038 16405 1 170002
16039 16406 1 180002
16040 16407 2 170003
16041 16408 2 180003
16042 16409 3 170004
16043 16410 3 180004
16044 16411 4 140000
16045 16412 5 150010
16046 16413 5 150020
16047 16414 5 150030
16048 16415 5 150040
16049 16417 1 101000010
16050 16418 1 102000010
16051 16419 1 103000010
16052 16420 1 104000010
16053 16421 1 105000010
16054 16422 1 106000010
16055 16423 1 107000010
16056 16424 1 108000010
16057 16425 1 109000010
16058 16426 1 110000010
16059 16427 2 101000020
16060 16428 2 101000030
16061 16429 2 102000020
16062 16430 2 102000030
16063 16431 2 102000040
16064 16432 2 103000020
16065 16433 2 103000030
16066 16434 2 103000040
16067 16435 2 104000020
16068 16436 2 104000030
16069 16437 2 104000040
16070 16438 2 105000020
16071 16439 2 105000030
16072 16440 2 105000040
16073 16441 2 106000020
16074 16442 2 106000030
16075 16443 2 106000040
16076 16444 2 107000020
16077 16445 2 107000030
16078 16446 2 107000040
16079 16447 2 108000020
16080 16448 2 108000030
16081 16449 2 108000040
16082 16450 2 109000020
16083 16451 2 109000030
16084 16452 2 109000040
16085 16453 2 110000020
16086 16454 2 110000030
16087 16455 2 110000040
16088 16456 2 118000010
16089 16457 3 101000050
16090 16458 3 101000060
16091 16459 3 101000080
16092 16460 3 101000040
16093 16461 3 109000060
16094 16462 3 109000070
16095 16463 3 109000080
16096 16464 3 105000060
16097 16465 3 105000070
16098 16466 3 105000080
16099 16467 3 104000050
16100 16468 3 106000050
16101 16469 3 102000060
16102 16470 3 102000070
16103 16471 3 102000080
16104 16472 3 103000050
16105 16473 3 105000050
16106 16474 3 107000060
16107 16475 3 107000070
16108 16476 3 107000080
16109 16477 3 108000050
16110 16478 3 109000050
16111 16479 3 103000060
16112 16480 3 103000070
16113 16481 3 103000080
16114 16482 3 110000050
16115 16483 3 106000060
16116 16484 3 106000070
16117 16485 3 106000080
16118 16486 3 101000070
16119 16487 3 110000060
16120 16488 3 104000060
16121 16489 3 104000070
16122 16490 3 104000080
16123 16491 3 102000050
16124 16492 3 104000170
16125 16493 3 104000260
16126 16494 3 111000010
16127 16495 3 111000020
16128 16496 3 111000030
16129 16497 3 112000020
16130 16498 3 112000030
16131 16499 3 108000060
16132 16500 3 108000070
16133 16501 3 108000080
16134 16502 3 107000050
16135 16503 3 112000010
16136 16504 3 110000070
16137 16505 3 110000080
16138 16506 3 118000020
16139 16507 3 118000030
16140 16508 3 118000040
16141 16509 4 101000090
16142 16510 4 101000100
16143 16511 4 101000110
16144 16512 4 109000100
16145 16513 4 105000100
16146 16514 4 105000110
16147 16515 4 108000090
16148 16516 4 110000090
16149 16517 4 102000100
16150 16518 4 102000110
16151 16519 4 106000090
16152 16520 4 109000090
16153 16521 4 107000100
16154 16522 4 103000090
16155 16523 4 102000090
16156 16524 4 103000100
16157 16525 4 106000100
16158 16526 4 106000110
16159 16527 4 104000090
16160 16528 4 104000100
16161 16529 4 104000110
16162 16530 4 107000090
16163 16531 4 104000180
16164 16532 4 111000040
16165 16533 4 112000040
16166 16534 4 108000100
16167 16535 4 105000090
16168 16536 4 110000100
16169 16537 4 118000050
16170 16538 4 118000060
16171 16539 5 101000120
16172 16540 5 109000110
16173 16541 5 105000120
16174 16542 5 102000120
16175 16543 5 107000110
16176 16544 5 103000120
16177 16545 5 106000120
16178 16546 5 104000120
16179 16547 5 104000190
16180 16548 5 111000060
16181 16549 5 112000060
16182 16550 5 108000110
16183 16551 5 110000110
16184 16552 5 118000070
16185 16553 1 201000010
16186 16554 1 292000010
16187 16555 1 299000040
16188 16556 1 299000070
16189 16557 1 299000110
16190 16558 1 299000120
16191 16559 1 299000140
16192 16560 2 202000010
16193 16561 2 290000010
16194 16562 2 299000010
16195 16563 2 299000150
16196 16564 2 299000190
16197 16565 2 299000200
16198 16566 2 299000210
16199 16567 3 298000050
16200 16568 3 298000060
16201 16569 3 299000060
16202 16570 3 299000170
16203 16571 3 290000120
16204 16572 3 291000050
16205 16573 3 292000020
16206 16574 4 299000670
16207 16575 4 299000680
16208 16576 4 204000010
16209 16577 4 209000040
16210 16578 4 202000070
16211 16579 4 209000070
16212 16580 4 203000110
16213 16581 4 290000110
16214 16582 4 206000110
16215 16583 4 209000160
16216 16584 4 209000190
16217 16585 5 297000100
16218 16586 5 291000020
16219 16587 5 297000130
16220 16588 5 297000140
16221 16589 5 203000010
16222 16590 5 206000030
16223 16591 5 203000050
16224 16592 5 202000090
16225 16593 5 204000080
16226 16594 5 202000150
16227 16595 5 204000100
16228 16596 5 206000170
16229 16597 5 204000200
16230 16598 2 170003
16231 16599 2 180003
16232 16600 3 170004
16233 16601 3 180004
16234 16602 4 140000
16235 16603 5 150010
16236 16604 5 150020
16237 16605 5 150030
16238 16606 5 150040
16239 16608 3 101000050
16240 16609 3 101000060
16241 16610 3 101000080
16242 16611 3 101000040
16243 16612 3 109000060
16244 16613 3 109000070
16245 16614 3 109000080
16246 16615 3 105000060
16247 16616 3 105000070
16248 16617 3 105000080
16249 16618 3 104000050
16250 16619 3 106000050
16251 16620 3 102000060
16252 16621 3 102000070
16253 16622 3 102000080
16254 16623 3 103000050
16255 16624 3 105000050
16256 16625 3 107000060
16257 16626 3 107000070
16258 16627 3 107000080
16259 16628 3 108000050
16260 16629 3 109000050
16261 16630 3 103000060
16262 16631 3 103000070
16263 16632 3 103000080
16264 16633 3 110000050
16265 16634 3 106000060
16266 16635 3 106000070
16267 16636 3 106000080
16268 16637 3 101000070
16269 16638 3 110000060
16270 16639 3 104000060
16271 16640 3 104000070
16272 16641 3 104000080
16273 16642 3 102000050
16274 16643 3 104000170
16275 16644 3 104000260
16276 16645 3 111000010
16277 16646 3 111000020
16278 16647 3 111000030
16279 16648 3 112000020
16280 16649 3 112000030
16281 16650 3 108000060
16282 16651 3 108000070
16283 16652 3 108000080
16284 16653 3 107000050
16285 16654 3 112000010
16286 16655 3 110000070
16287 16656 3 110000080
16288 16657 3 118000020
16289 16658 3 118000030
16290 16659 3 118000040
16291 16660 4 101000090
16292 16661 4 101000100
16293 16662 4 101000110
16294 16663 4 109000100
16295 16664 4 105000100
16296 16665 4 105000110
16297 16666 4 108000090
16298 16667 4 110000090
16299 16668 4 102000100
16300 16669 4 102000110
16301 16670 4 106000090
16302 16671 4 109000090
16303 16672 4 107000100
16304 16673 4 103000090
16305 16674 4 102000090
16306 16675 4 103000100
16307 16676 4 106000100
16308 16677 4 106000110
16309 16678 4 104000090
16310 16679 4 104000100
16311 16680 4 104000110
16312 16681 4 107000090
16313 16682 4 104000180
16314 16683 4 111000040
16315 16684 4 112000040
16316 16685 4 108000100
16317 16686 4 105000090
16318 16687 4 110000100
16319 16688 4 118000050
16320 16689 4 118000060
16321 16690 5 101000120
16322 16691 5 109000110
16323 16692 5 105000120
16324 16693 5 102000120
16325 16694 5 107000110
16326 16695 5 103000120
16327 16696 5 106000120
16328 16697 5 104000120
16329 16698 5 104000190
16330 16699 5 111000060
16331 16700 5 112000060
16332 16701 5 108000110
16333 16702 5 110000110
16334 16703 5 118000070
16335 16704 1 201000010
16336 16705 1 292000010
16337 16706 1 299000040
16338 16707 1 299000070
16339 16708 1 299000110
16340 16709 1 299000120
16341 16710 1 299000140
16342 16711 2 202000010
16343 16712 2 290000010
16344 16713 2 299000010
16345 16714 2 299000150
16346 16715 2 299000190
16347 16716 2 299000200
16348 16717 2 299000210
16349 16718 3 298000050
16350 16719 3 298000060
16351 16720 3 299000060
16352 16721 3 299000170
16353 16722 3 290000120
16354 16723 3 291000050
16355 16724 3 292000020
16356 16725 4 299000670
16357 16726 4 299000680
16358 16727 4 204000010
16359 16728 4 209000040
16360 16729 4 202000070
16361 16730 4 209000070
16362 16731 4 203000110
16363 16732 4 290000110
16364 16733 4 206000110
16365 16734 4 209000160
16366 16735 4 209000190
16367 16736 5 297000100
16368 16737 5 291000020
16369 16738 5 297000130
16370 16739 5 297000140
16371 16740 5 203000010
16372 16741 5 206000030
16373 16742 5 203000050
16374 16743 5 202000090
16375 16744 5 204000080
16376 16745 5 202000150
16377 16746 5 204000100
16378 16747 5 206000170
16379 16748 5 204000200
16380 16749 3 170004
16381 16750 3 180004
16382 16751 4 140000
16383 16752 5 150010
16384 16753 5 150020
16385 16754 5 150030
16386 16755 5 150040
16387 16757 3 101000050
16388 16758 3 101000060
16389 16759 3 101000080
16390 16760 3 101000040
16391 16761 3 109000060
16392 16762 3 109000070
16393 16763 3 109000080
16394 16764 3 105000060
16395 16765 3 105000070
16396 16766 3 105000080
16397 16767 3 104000050
16398 16768 3 106000050
16399 16769 3 102000060
16400 16770 3 102000070
16401 16771 3 102000080
16402 16772 3 103000050
16403 16773 3 105000050
16404 16774 3 107000060
16405 16775 3 107000070
16406 16776 3 107000080
16407 16777 3 108000050
16408 16778 3 109000050
16409 16779 3 103000060
16410 16780 3 103000070
16411 16781 3 103000080
16412 16782 3 110000050
16413 16783 3 106000060
16414 16784 3 106000070
16415 16785 3 106000080
16416 16786 3 101000070
16417 16787 3 110000060
16418 16788 3 104000060
16419 16789 3 104000070
16420 16790 3 104000080
16421 16791 3 102000050
16422 16792 3 104000170
16423 16793 3 104000260
16424 16794 3 111000010
16425 16795 3 111000020
16426 16796 3 111000030
16427 16797 3 112000020
16428 16798 3 112000030
16429 16799 3 108000060
16430 16800 3 108000070
16431 16801 3 108000080
16432 16802 3 107000050
16433 16803 3 112000010
16434 16804 3 110000070
16435 16805 3 110000080
16436 16806 3 118000020
16437 16807 3 118000030
16438 16808 3 118000040
16439 16809 4 101000090
16440 16810 4 101000100
16441 16811 4 101000110
16442 16812 4 109000100
16443 16813 4 105000100
16444 16814 4 105000110
16445 16815 4 108000090
16446 16816 4 110000090
16447 16817 4 102000100
16448 16818 4 102000110
16449 16819 4 106000090
16450 16820 4 109000090
16451 16821 4 107000100
16452 16822 4 103000090
16453 16823 4 102000090
16454 16824 4 103000100
16455 16825 4 106000100
16456 16826 4 106000110
16457 16827 4 104000090
16458 16828 4 104000100
16459 16829 4 104000110
16460 16830 4 107000090
16461 16831 4 104000180
16462 16832 4 111000040
16463 16833 4 112000040
16464 16834 4 108000100
16465 16835 4 105000090
16466 16836 4 110000100
16467 16837 4 118000050
16468 16838 4 118000060
16469 16839 5 101000120
16470 16840 5 109000110
16471 16841 5 105000120
16472 16842 5 102000120
16473 16843 5 107000110
16474 16844 5 103000120
16475 16845 5 106000120
16476 16846 5 104000120
16477 16847 5 104000190
16478 16848 5 111000060
16479 16849 5 112000060
16480 16850 5 108000110
16481 16851 5 110000110
16482 16852 5 118000070
16483 16853 1 201000010
16484 16854 1 292000010
16485 16855 1 299000040
16486 16856 1 299000070
16487 16857 1 299000110
16488 16858 1 299000120
16489 16859 1 299000140
16490 16860 2 202000010
16491 16861 2 290000010
16492 16862 2 299000010
16493 16863 2 299000150
16494 16864 2 299000190
16495 16865 2 299000200
16496 16866 2 299000210
16497 16867 3 298000050
16498 16868 3 298000060
16499 16869 3 299000060
16500 16870 3 299000170
16501 16871 3 290000120
16502 16872 3 291000050
16503 16873 3 292000020
16504 16874 4 299000670
16505 16875 4 299000680
16506 16876 4 204000010
16507 16877 4 209000040
16508 16878 4 202000070
16509 16879 4 209000070
16510 16880 4 203000110
16511 16881 4 290000110
16512 16882 4 206000110
16513 16883 4 209000160
16514 16884 4 209000190
16515 16885 5 297000100
16516 16886 5 291000020
16517 16887 5 297000130
16518 16888 5 297000140
16519 16889 5 203000010
16520 16890 5 206000030
16521 16891 5 203000050
16522 16892 5 202000090
16523 16893 5 204000080
16524 16894 5 202000150
16525 16895 5 204000100
16526 16896 5 206000170
16527 16897 5 204000200
16528 16898 3 170004
16529 16899 3 180004
16530 16900 4 140000
16531 16901 5 150010
16532 16902 5 150020
16533 16903 5 150030
16534 16904 5 150040
16535 16906 3 101000050
16536 16907 3 101000060
16537 16908 3 101000080
16538 16909 3 101000040
16539 16910 3 109000060
16540 16911 3 109000070
16541 16912 3 109000080
16542 16913 3 105000060
16543 16914 3 105000070
16544 16915 3 105000080
16545 16916 3 104000050
16546 16917 3 106000050
16547 16918 3 102000060
16548 16919 3 102000070
16549 16920 3 102000080
16550 16921 3 103000050
16551 16922 3 105000050
16552 16923 3 107000060
16553 16924 3 107000070
16554 16925 3 107000080
16555 16926 3 108000050
16556 16927 3 109000050
16557 16928 3 103000060
16558 16929 3 103000070
16559 16930 3 103000080
16560 16931 3 110000050
16561 16932 3 106000060
16562 16933 3 106000070
16563 16934 3 106000080
16564 16935 3 101000070
16565 16936 3 110000060
16566 16937 3 104000060
16567 16938 3 104000070
16568 16939 3 104000080
16569 16940 3 102000050
16570 16941 3 104000170
16571 16942 3 104000260
16572 16943 3 111000010
16573 16944 3 111000020
16574 16945 3 111000030
16575 16946 3 112000020
16576 16947 3 112000030
16577 16948 3 108000060
16578 16949 3 108000070
16579 16950 3 108000080
16580 16951 3 107000050
16581 16952 3 112000010
16582 16953 3 110000070
16583 16954 3 110000080
16584 16955 3 118000020
16585 16956 3 118000030
16586 16957 3 118000040
16587 16958 4 101000090
16588 16959 4 101000100
16589 16960 4 101000110
16590 16961 4 109000100
16591 16962 4 105000100
16592 16963 4 105000110
16593 16964 4 108000090
16594 16965 4 110000090
16595 16966 4 102000100
16596 16967 4 102000110
16597 16968 4 106000090
16598 16969 4 109000090
16599 16970 4 107000100
16600 16971 4 103000090
16601 16972 4 102000090
16602 16973 4 103000100
16603 16974 4 106000100
16604 16975 4 106000110
16605 16976 4 104000090
16606 16977 4 104000100
16607 16978 4 104000110
16608 16979 4 107000090
16609 16980 4 104000180
16610 16981 4 111000040
16611 16982 4 112000040
16612 16983 4 108000100
16613 16984 4 105000090
16614 16985 4 110000100
16615 16986 4 118000050
16616 16987 4 118000060
16617 16988 5 101000120
16618 16989 5 109000110
16619 16990 5 105000120
16620 16991 5 102000120
16621 16992 5 107000110
16622 16993 5 103000120
16623 16994 5 106000120
16624 16995 5 104000120
16625 16996 5 104000190
16626 16997 5 111000060
16627 16998 5 112000060
16628 16999 5 108000110
16629 17000 5 110000110
16630 17001 5 118000070
16631 17002 1 201000010
16632 17003 1 292000010
16633 17004 1 299000040
16634 17005 1 299000070
16635 17006 1 299000110
16636 17007 1 299000120
16637 17008 1 299000140
16638 17009 2 202000010
16639 17010 2 290000010
16640 17011 2 299000010
16641 17012 2 299000150
16642 17013 2 299000190
16643 17014 2 299000200
16644 17015 2 299000210
16645 17016 3 298000050
16646 17017 3 298000060
16647 17018 3 299000060
16648 17019 3 299000170
16649 17020 3 290000120
16650 17021 3 291000050
16651 17022 3 292000020
16652 17023 4 299000670
16653 17024 4 299000680
16654 17025 4 204000010
16655 17026 4 209000040
16656 17027 4 202000070
16657 17028 4 209000070
16658 17029 4 203000110
16659 17030 4 290000110
16660 17031 4 206000110
16661 17032 4 209000160
16662 17033 4 209000190
16663 17034 5 297000100
16664 17035 5 291000020
16665 17036 5 297000130
16666 17037 5 297000140
16667 17038 5 203000010
16668 17039 5 206000030
16669 17040 5 203000050
16670 17041 5 202000090
16671 17042 5 204000080
16672 17043 5 202000150
16673 17044 5 204000100
16674 17045 5 206000170
16675 17046 5 204000200
16676 17047 3 170004
16677 17048 3 180004
16678 17049 4 140000
16679 17050 5 150010
16680 17051 5 150020
16681 17052 5 150030
16682 17053 5 150040
16683 17054 5 190000
16684 17055 5 200000
16685 17057 3 118000020
16686 17058 3 118000030
16687 17059 3 118000040
16688 17060 3 106000060
16689 17061 3 106000070
16690 17062 3 106000080
16691 17063 3 101000070
16692 17064 3 110000060
16693 17065 3 104000060
16694 17066 3 104000070
16695 17067 3 104000080
16696 17068 3 102000050
16697 17069 3 104000170
16698 17070 3 104000260
16699 17071 4 118000050
16700 17072 4 118000060
16701 17073 4 106000100
16702 17074 4 106000110
16703 17075 4 104000090
16704 17076 4 104000100
16705 17077 4 104000110
16706 17078 4 104000270
16707 17079 4 107000090
16708 17080 4 104000180
16709 17081 5 118000070
16710 17082 5 106000120
16711 17083 5 104000120
16712 17084 5 104000190
16713 17085 1 103000000
16714 17086 2 103000001
16715 17087 3 103000002
16716 17088 4 103000003
16717 17089 5 103000004
16718 17090 1 111000000
16719 17091 2 111000001
16720 17092 3 111000002
16721 17093 4 111000003
16722 17094 5 111000004
16723 17095 1 115000000
16724 17096 2 115000001
16725 17097 3 115000002
16726 17098 4 115000003
16727 17099 5 115000004
16728 17100 3 170004
16729 17101 4 170005
16730 17102 3 180004
16731 17103 4 180005
16732 17104 4 140000
16733 17105 4 150010
16734 17106 4 150020
16735 17107 4 150030
16736 17108 4 150040
16737 17110 3 111000010
16738 17111 3 111000020
16739 17112 3 111000030
16740 17113 3 112000020
16741 17114 3 112000030
16742 17115 3 108000060
16743 17116 3 108000070
16744 17117 3 108000080
16745 17118 3 107000050
16746 17119 3 112000010
16747 17120 3 110000070
16748 17121 3 110000080
16749 17122 4 111000040
16750 17123 4 112000040
16751 17124 4 108000100
16752 17125 4 105000090
16753 17126 4 110000100
16754 17127 5 111000060
16755 17128 5 112000060
16756 17129 5 108000110
16757 17130 5 110000110
16758 17131 1 108000000
16759 17132 2 108000001
16760 17133 3 108000002
16761 17134 4 108000003
16762 17135 5 108000004
16763 17136 1 107000000
16764 17137 2 107000001
16765 17138 3 107000002
16766 17139 4 107000003
16767 17140 5 107000004
16768 17141 1 120000000
16769 17142 2 120000001
16770 17143 3 120000002
16771 17144 4 120000003
16772 17145 5 120000004
16773 17146 4 110024
16774 17147 4 110034
16775 17148 4 110044
16776 17149 4 110054
16777 17150 3 110060
16778 17151 3 110070
16779 17152 3 110080
16780 17153 3 110090
16781 17154 3 110100
16782 17155 3 110110
16783 17156 3 110120
16784 17157 3 110130
16785 17158 3 110140
16786 17159 3 110150
16787 17160 3 110160
16788 17161 3 110170
16789 17162 3 110180
16790 17163 3 110190
16791 17164 3 110200
16792 17165 3 110210
16793 17166 3 110220
16794 17167 3 110230
16795 17168 3 110240
16796 17169 3 110250
16797 17170 3 110260
16798 17171 3 110270
16799 17172 3 110620
16800 17173 3 110670
16801 17174 4 140000
16802 17175 4 150010
16803 17176 4 150020
16804 17177 4 150030
16805 17178 4 150040
16806 17180 3 101000050
16807 17181 3 101000060
16808 17182 3 101000080
16809 17183 3 101000040
16810 17184 3 109000060
16811 17185 3 109000070
16812 17186 3 109000080
16813 17187 3 105000060
16814 17188 3 105000070
16815 17189 3 105000080
16816 17190 3 104000050
16817 17191 3 106000050
16818 17192 4 101000090
16819 17193 4 101000100
16820 17194 4 101000110
16821 17195 4 109000100
16822 17196 4 105000100
16823 17197 4 105000110
16824 17198 4 108000090
16825 17199 4 110000090
16826 17200 5 101000120
16827 17201 5 109000110
16828 17202 5 105000120
16829 17203 1 101000000
16830 17204 2 101000001
16831 17205 3 101000002
16832 17206 4 101000008
16833 17207 5 101000004
16834 17208 1 109000000
16835 17209 2 109000001
16836 17210 3 109000002
16837 17211 4 109000003
16838 17212 5 109000004
16839 17213 4 120024
16840 17214 4 120034
16841 17215 4 120044
16842 17216 4 120054
16843 17217 3 120241
16844 17218 3 120251
16845 17219 3 120261
16846 17220 3 120271
16847 17221 3 120300
16848 17222 3 120310
16849 17223 3 120320
16850 17224 3 120330
16851 17225 3 120340
16852 17226 3 120350
16853 17227 3 120360
16854 17228 3 120370
16855 17229 3 120380
16856 17230 3 120390
16857 17231 3 120400
16858 17232 3 120410
16859 17233 3 120420
16860 17234 3 120430
16861 17235 3 120450
16862 17236 3 120460
16863 17237 3 120550
16864 17238 3 120560
16865 17239 3 120570
16866 17240 3 120990
16867 17241 3 121000
16868 17242 3 121010
16869 17243 3 121020
16870 17244 3 121100
16871 17245 4 140000
16872 17246 4 150010
16873 17247 4 150020
16874 17248 4 150030
16875 17249 4 150040
16876 17251 3 102000060
16877 17252 3 102000070
16878 17253 3 102000080
16879 17254 3 103000050
16880 17255 3 105000050
16881 17256 3 107000060
16882 17257 3 107000070
16883 17258 3 107000080
16884 17259 3 108000050
16885 17260 3 109000050
16886 17261 3 103000060
16887 17262 3 103000070
16888 17263 3 103000080
16889 17264 3 110000050
16890 17265 4 102000100
16891 17266 4 102000110
16892 17267 4 102000350
16893 17268 4 106000090
16894 17269 4 109000090
16895 17270 4 107000100
16896 17271 4 103000090
16897 17272 4 102000090
16898 17273 4 103000100
16899 17274 5 102000120
16900 17275 5 107000110
16901 17276 5 103000120
16902 17277 1 102000000
16903 17278 2 102000001
16904 17279 3 102000002
16905 17280 4 102000003
16906 17281 5 102000004
16907 17282 1 105000000
16908 17283 2 105000001
16909 17284 3 105000002
16910 17285 4 105000003
16911 17286 5 105000004
16912 17287 1 112000000
16913 17288 2 112000001
16914 17289 3 112000002
16915 17290 4 112000003
16916 17291 5 112000004
16917 17292 4 130024
16918 17293 4 130034
16919 17294 4 130044
16920 17295 4 130054
16921 17296 3 130060
16922 17297 3 130070
16923 17298 3 130080
16924 17299 3 130090
16925 17300 3 130100
16926 17301 3 130110
16927 17302 3 130120
16928 17303 3 130130
16929 17304 3 130140
16930 17305 3 130150
16931 17306 3 130160
16932 17307 3 130170
16933 17308 3 130180
16934 17309 3 130190
16935 17310 3 130200
16936 17311 3 130420
16937 17312 3 130510
16938 17313 3 130520
16939 17314 3 130531
16940 17315 3 130540
16941 17316 3 130660
16942 17317 3 130700
16943 17318 3 130790
16944 17319 3 130800
16945 17320 3 131130
16946 17321 4 140000
16947 17322 4 150010
16948 17323 4 150020
16949 17324 4 150030
16950 17325 4 150040
16951 17327 4 101000250
16952 17328 4 102000260
16953 17329 4 103000220
16954 17330 4 104000250
16955 17331 4 105000210
16956 17332 4 106000210
16957 17333 4 107000140
16958 17334 4 108000150
16959 17335 4 109000230
16960 17336 4 110000170
16961 17337 4 111000140
16962 17338 4 112000110
16963 17339 4 118000140
16964 17340 5 101000300
16965 17341 5 102000360
16966 17342 5 103000310
16967 17343 5 104000370
16968 17344 5 109000290
16969 17345 5 101000310
16970 17346 5 102000410
16971 17347 1 201000010
16972 17348 1 292000010
16973 17349 1 299000040
16974 17350 1 299000070
16975 17351 1 299000110
16976 17352 1 299000120
16977 17353 1 299000140
16978 17354 2 202000010
16979 17355 2 290000010
16980 17356 2 299000010
16981 17357 2 299000150
16982 17358 2 299000190
16983 17359 2 299000200
16984 17360 2 299000210
16985 17361 3 290000120
16986 17362 3 291000050
16987 17363 3 292000020
16988 17364 3 298000050
16989 17365 3 298000060
16990 17366 3 299000060
16991 17367 3 299000170
16992 17368 4 201000170
16993 17369 4 202000070
16994 17370 4 202000370
16995 17371 4 202000400
16996 17372 4 202000440
16997 17373 4 203000110
16998 17374 4 203000270
16999 17375 4 203000350
17000 17376 4 204000010
17001 17377 4 204000370
17002 17378 4 205000220
17003 17379 4 206000110
17004 17380 4 206000240
17005 17381 4 206000270
17006 17382 4 209000040
17007 17383 4 209000070
17008 17384 4 209000160
17009 17385 4 209000190
17010 17386 4 209000240
17011 17387 4 215000150
17012 17388 4 290000110
17013 17389 4 290000130
17014 17390 4 298000120
17015 17391 4 299000670
17016 17392 4 299000680
17017 17393 4 201000090
17018 17394 4 202000160
17019 17395 4 203000150
17020 17396 4 204000110
17021 17397 4 205000110
17022 17398 4 206000120
17023 17399 4 211000060
17024 17400 4 212000050
17025 17401 4 299000440
17026 17402 4 299000450
17027 17403 4 299000460
17028 17404 4 299000470
17029 17405 4 299000480
17030 17406 4 299000550
17031 17407 4 299000560
17032 17408 4 299000570
17033 17409 4 299000580
17034 17410 4 299000590
17035 17411 4 299000600
17036 17412 4 299000610
17037 17413 4 299000620
17038 17414 4 299000630
17039 17415 4 299000640
17040 17416 4 299000650
17041 17417 4 299000230
17042 17418 4 299000240
17043 17419 4 299000250
17044 17420 4 299000260
17045 17421 4 299000270
17046 17422 4 299000280
17047 17423 4 299000290
17048 17424 4 299000300
17049 17425 4 299000310
17050 17426 4 299000320
17051 17427 4 299000330
17052 17428 4 299000340
17053 17429 4 299000350
17054 17430 4 299000360
17055 17431 4 299000370
17056 17432 4 299000380
17057 17433 4 299000390
17058 17434 4 299000400
17059 17435 4 215000050
17060 17436 4 216000060
17061 17437 4 217000020
17062 17438 4 218000030
17063 17439 4 299000500
17064 17440 4 299000510
17065 17441 4 299000520
17066 17442 4 299000530
17067 17443 4 299000540
17068 17444 4 299000660
17069 17445 5 202000090
17070 17446 5 202000150
17071 17447 5 203000010
17072 17448 5 203000050
17073 17449 5 203000260
17074 17450 5 204000080
17075 17451 5 204000100
17076 17452 5 204000200
17077 17453 5 204000270
17078 17454 5 206000030
17079 17455 5 206000170
17080 17456 5 209000320
17081 17457 5 220000080
17082 17458 5 290000160
17083 17459 5 291000020
17084 17460 5 297000100
17085 17461 5 297000130
17086 17462 5 297000140
17087 17463 5 298000110
17088 17464 5 202000290
17089 17465 5 203000240
17090 17466 5 204000210
17091 17467 5 205000150
17092 17468 5 206000200
17093 17469 5 211000090
17094 17470 5 212000060
17095 17471 5 299000800
17096 17472 5 299000810
17097 17473 5 299000820
17098 17474 5 299000840
17099 17475 5 299000850
17100 17476 5 299000860
17101 17477 5 299000870
17102 17478 5 299000880
17103 17479 5 299000890
17104 17480 5 201000120
17105 17481 5 202000240
17106 17482 5 211000080
17107 17483 5 299000730
17108 17484 5 299000740
17109 17485 5 299000750
17110 17486 5 299000760
17111 17487 5 299000770
17112 17488 5 201000130
17113 17489 5 299000830
17114 17490 5 202000280
17115 17491 5 204000220
17116 17492 5 201000150
17117 17493 5 202000350
17118 17494 5 205000200
17119 17495 5 299001050
17120 17496 5 299001060
17121 17497 5 201000200
17122 17498 5 202000430
17123 17499 5 211000150
17124 17500 5 299001170
17125 17501 5 299001180
17126 17502 5 202000270
17127 17503 5 206000190
17128 17504 5 220000060
17129 17505 5 201000140
17130 17506 5 203000230
17131 17507 5 205000160
17132 17508 5 204000230
17133 17509 5 209000200
17134 17510 5 299000900
17135 17511 5 202000340
17136 17512 5 203000280
17137 17513 5 205000190
17138 17514 5 208000040
17139 17515 5 211000110
17140 17516 5 220000070
17141 17517 5 202000420
17142 17518 5 203000340
17143 17519 5 204000360
17144 17520 5 211000140
17145 17521 5 212000090
17146 17522 5 299000920
17147 17523 5 299000930
17148 17524 5 299000940
17149 17525 5 299000950
17150 17526 5 299000960
17151 17527 5 298000130
17152 17528 5 202000380
17153 17529 5 203000300
17154 17530 5 204000320
17155 17531 5 205000230
17156 17532 5 206000250
17157 17533 5 209000280
17158 17534 5 210000030
17159 17535 5 211000120
17160 17536 5 212000070
17161 17537 5 215000130
17162 17538 5 216000130
17163 17539 5 217000080
17164 17540 5 218000090
17165 17541 5 299001070
17166 17542 5 299001080
17167 17543 5 299001090
17168 17544 5 215000120
17169 17545 5 202000390
17170 17546 5 203000310
17171 17547 5 204000330
17172 17548 5 205000240
17173 17549 5 206000260
17174 17550 5 209000290
17175 17551 5 210000040
17176 17552 5 211000130
17177 17553 5 212000080
17178 17554 5 215000140
17179 17555 5 216000140
17180 17556 5 217000090
17181 17557 5 218000100
17182 17558 5 220000090
17183 17559 5 299001100
17184 17560 5 299001110
17185 17561 5 299001120
17186 17562 5 299001130
17187 17563 5 299001140
17188 17564 5 299001150
17189 17565 5 299000430
17190 17566 5 299000690
17191 17567 5 299000710
17192 17568 5 299000720
17193 17569 5 215000100
17194 17570 5 216000090
17195 17571 5 217000070
17196 17572 5 218000080
17197 17573 5 299000970
17198 17574 5 299000980
17199 17575 5 299000990
17200 17576 5 299001000
17201 17577 5 299001010
17202 17578 5 299001020
17203 17579 5 299001030
17204 17580 5 299001040
17205 17581 3 101000006
17206 17582 3 103000005
17207 17583 4 101000003
17208 17584 4 102000005
17209 17585 4 107000005
17210 17586 4 112000006
17211 17587 5 101000009
17212 17588 5 101000011
17213 17589 5 101000012
17214 17590 5 101000013
17215 17591 5 101000014
17216 17592 5 101000015
17217 17593 5 101000016
17218 17594 5 101000017
17219 17595 5 101000018
17220 17596 5 102000008
17221 17597 5 102000009
17222 17598 5 107000007
17223 17599 5 109000008
17224 17600 5 111000007
17225 17601 5 111000008
17226 17602 5 112000008
17227 17603 5 120000008
17228 17605 2 118000010
17229 17606 3 118000020
17230 17607 3 118000030
17231 17608 3 118000040
17232 17609 4 118000050
17233 17610 4 118000060
17234 17611 5 118000070
17235 17612 1 101000000
17236 17613 3 101000006
17237 17614 3 103000005
17238 17615 4 101000003
17239 17616 4 102000005
17240 17617 4 107000005
17241 17618 4 112000006
17242 17619 5 101000009
17243 17620 5 101000011
17244 17621 5 101000012
17245 17622 5 101000013
17246 17623 5 101000014
17247 17624 5 101000015
17248 17625 5 101000016
17249 17626 5 101000017
17250 17627 5 101000018
17251 17628 5 102000008
17252 17629 5 102000009
17253 17630 5 107000007
17254 17631 5 109000008
17255 17632 5 111000007
17256 17633 5 111000008
17257 17634 5 112000008
17258 17635 5 120000008
17259 17636 3 110540
17260 17637 3 110680
17261 17638 3 110790
17262 17639 3 110800
17263 17640 3 120440
17264 17641 5 110055
17265 17642 5 110241
17266 17643 5 110251
17267 17644 5 110261
17268 17645 5 110271
17269 17646 5 110730
17270 17647 5 111020
17271 17648 5 111100
17272 17649 5 111160
17273 17650 5 120551
17274 17651 5 121160

12
titles/sao/database.py Normal file
View File

@ -0,0 +1,12 @@
from core.data import Data
from core.config import CoreConfig
from .schema import *
class SaoData(Data):
def __init__(self, cfg: CoreConfig) -> None:
super().__init__(cfg)
self.profile = SaoProfileData(cfg, self.session)
self.static = SaoStaticData(cfg, self.session)

View File

@ -0,0 +1 @@
from titles.sao.handlers.base import *

2213
titles/sao/handlers/base.py Normal file

File diff suppressed because it is too large Load Diff

116
titles/sao/index.py Normal file
View File

@ -0,0 +1,116 @@
from typing import Tuple
from twisted.web.http import Request
from twisted.web import resource
import json, ast
from datetime import datetime
import yaml
import logging, coloredlogs
from logging.handlers import TimedRotatingFileHandler
import inflection
from os import path
from core import CoreConfig, Utils
from titles.sao.config import SaoConfig
from titles.sao.const import SaoConstants
from titles.sao.base import SaoBase
from titles.sao.handlers.base import *
class SaoServlet(resource.Resource):
def __init__(self, core_cfg: CoreConfig, cfg_dir: str) -> None:
self.isLeaf = True
self.core_cfg = core_cfg
self.config_dir = cfg_dir
self.game_cfg = SaoConfig()
if path.exists(f"{cfg_dir}/sao.yaml"):
self.game_cfg.update(yaml.safe_load(open(f"{cfg_dir}/sao.yaml")))
self.logger = logging.getLogger("sao")
if not hasattr(self.logger, "inited"):
log_fmt_str = "[%(asctime)s] SAO | %(levelname)s | %(message)s"
log_fmt = logging.Formatter(log_fmt_str)
fileHandler = TimedRotatingFileHandler(
"{0}/{1}.log".format(self.core_cfg.server.log_dir, "sao"),
encoding="utf8",
when="d",
backupCount=10,
)
fileHandler.setFormatter(log_fmt)
consoleHandler = logging.StreamHandler()
consoleHandler.setFormatter(log_fmt)
self.logger.addHandler(fileHandler)
self.logger.addHandler(consoleHandler)
self.logger.setLevel(self.game_cfg.server.loglevel)
coloredlogs.install(
level=self.game_cfg.server.loglevel, logger=self.logger, fmt=log_fmt_str
)
self.logger.inited = True
self.base = SaoBase(core_cfg, self.game_cfg)
@classmethod
def get_allnet_info(
cls, game_code: str, core_cfg: CoreConfig, cfg_dir: str
) -> Tuple[bool, str, str]:
game_cfg = SaoConfig()
if path.exists(f"{cfg_dir}/{SaoConstants.CONFIG_NAME}"):
game_cfg.update(
yaml.safe_load(open(f"{cfg_dir}/{SaoConstants.CONFIG_NAME}"))
)
if not game_cfg.server.enable:
return (False, "", "")
return (
True,
f"http://{game_cfg.server.hostname}:{game_cfg.server.port}/{game_code}/$v/",
f"{game_cfg.server.hostname}/SDEW/$v/",
)
@classmethod
def get_mucha_info(
cls, core_cfg: CoreConfig, cfg_dir: str
) -> Tuple[bool, str, str]:
game_cfg = SaoConfig()
if path.exists(f"{cfg_dir}/{SaoConstants.CONFIG_NAME}"):
game_cfg.update(
yaml.safe_load(open(f"{cfg_dir}/{SaoConstants.CONFIG_NAME}"))
)
if not game_cfg.server.enable:
return (False, "")
return (True, "SAO1")
def setup(self) -> None:
pass
def render_POST(
self, request: Request, version: int = 0, endpoints: str = ""
) -> bytes:
req_url = request.uri.decode()
if req_url == "/matching":
self.logger.info("Matching request")
request.responseHeaders.addRawHeader(b"content-type", b"text/html; charset=utf-8")
sao_request = request.content.getvalue().hex()
handler = getattr(self.base, f"handle_{sao_request[:4]}", None)
if handler is None:
self.logger.info(f"Generic Handler for {req_url} - {sao_request[:4]}")
self.logger.debug(f"Request: {request.content.getvalue().hex()}")
resp = SaoNoopResponse(int.from_bytes(bytes.fromhex(sao_request[:4]), "big")+1)
self.logger.debug(f"Response: {resp.make().hex()}")
return resp.make()
self.logger.info(f"Handler {req_url} - {sao_request[:4]} request")
self.logger.debug(f"Request: {request.content.getvalue().hex()}")
self.logger.debug(f"Response: {handler(sao_request).hex()}")
return handler(sao_request)

254
titles/sao/read.py Normal file
View File

@ -0,0 +1,254 @@
from typing import Optional, Dict, List
from os import walk, path
import urllib
import csv
from read import BaseReader
from core.config import CoreConfig
from titles.sao.database import SaoData
from titles.sao.const import SaoConstants
class SaoReader(BaseReader):
def __init__(
self,
config: CoreConfig,
version: int,
bin_arg: Optional[str],
opt_arg: Optional[str],
extra: Optional[str],
) -> None:
super().__init__(config, version, bin_arg, opt_arg, extra)
self.data = SaoData(config)
try:
self.logger.info(
f"Start importer for {SaoConstants.game_ver_to_string(version)}"
)
except IndexError:
self.logger.error(f"Invalid project SAO version {version}")
exit(1)
def read(self) -> None:
pull_bin_ram = True
if not path.exists(f"{self.bin_dir}"):
self.logger.warn(f"Couldn't find csv file in {self.bin_dir}, skipping")
pull_bin_ram = False
if pull_bin_ram:
self.read_csv(f"{self.bin_dir}")
def read_csv(self, bin_dir: str) -> None:
self.logger.info(f"Read csv from {bin_dir}")
self.logger.info("Now reading QuestScene.csv")
try:
fullPath = bin_dir + "/QuestScene.csv"
with open(fullPath, encoding="UTF-8") as fp:
reader = csv.DictReader(fp)
for row in reader:
questSceneId = row["QuestSceneId"]
sortNo = row["SortNo"]
name = row["Name"]
enabled = True
self.logger.info(f"Added quest {questSceneId} | Name: {name}")
try:
self.data.static.put_quest(
questSceneId,
0,
sortNo,
name,
enabled
)
except Exception as err:
print(err)
except:
self.logger.warn(f"Couldn't read csv file in {self.bin_dir}, skipping")
self.logger.info("Now reading HeroLog.csv")
try:
fullPath = bin_dir + "/HeroLog.csv"
with open(fullPath, encoding="UTF-8") as fp:
reader = csv.DictReader(fp)
for row in reader:
heroLogId = row["HeroLogId"]
name = row["Name"]
nickname = row["Nickname"]
rarity = row["Rarity"]
skillTableSubId = row["SkillTableSubId"]
awakeningExp = row["AwakeningExp"]
flavorText = row["FlavorText"]
enabled = True
self.logger.info(f"Added hero {heroLogId} | Name: {name}")
try:
self.data.static.put_hero(
0,
heroLogId,
name,
nickname,
rarity,
skillTableSubId,
awakeningExp,
flavorText,
enabled
)
except Exception as err:
print(err)
except:
self.logger.warn(f"Couldn't read csv file in {self.bin_dir}, skipping")
self.logger.info("Now reading Equipment.csv")
try:
fullPath = bin_dir + "/Equipment.csv"
with open(fullPath, encoding="UTF-8") as fp:
reader = csv.DictReader(fp)
for row in reader:
equipmentId = row["EquipmentId"]
equipmentType = row["EquipmentType"]
weaponTypeId = row["WeaponTypeId"]
name = row["Name"]
rarity = row["Rarity"]
flavorText = row["FlavorText"]
enabled = True
self.logger.info(f"Added equipment {equipmentId} | Name: {name}")
try:
self.data.static.put_equipment(
0,
equipmentId,
name,
equipmentType,
weaponTypeId,
rarity,
flavorText,
enabled
)
except Exception as err:
print(err)
except:
self.logger.warn(f"Couldn't read csv file in {self.bin_dir}, skipping")
self.logger.info("Now reading Item.csv")
try:
fullPath = bin_dir + "/Item.csv"
with open(fullPath, encoding="UTF-8") as fp:
reader = csv.DictReader(fp)
for row in reader:
itemId = row["ItemId"]
itemTypeId = row["ItemTypeId"]
name = row["Name"]
rarity = row["Rarity"]
flavorText = row["FlavorText"]
enabled = True
self.logger.info(f"Added item {itemId} | Name: {name}")
try:
self.data.static.put_item(
0,
itemId,
name,
itemTypeId,
rarity,
flavorText,
enabled
)
except Exception as err:
print(err)
except:
self.logger.warn(f"Couldn't read csv file in {self.bin_dir}, skipping")
self.logger.info("Now reading SupportLog.csv")
try:
fullPath = bin_dir + "/SupportLog.csv"
with open(fullPath, encoding="UTF-8") as fp:
reader = csv.DictReader(fp)
for row in reader:
supportLogId = row["SupportLogId"]
charaId = row["CharaId"]
name = row["Name"]
rarity = row["Rarity"]
salePrice = row["SalePrice"]
skillName = row["SkillName"]
enabled = True
self.logger.info(f"Added support log {supportLogId} | Name: {name}")
try:
self.data.static.put_support_log(
0,
supportLogId,
charaId,
name,
rarity,
salePrice,
skillName,
enabled
)
except Exception as err:
print(err)
except:
self.logger.warn(f"Couldn't read csv file in {self.bin_dir}, skipping")
self.logger.info("Now reading Title.csv")
try:
fullPath = bin_dir + "/Title.csv"
with open(fullPath, encoding="UTF-8") as fp:
reader = csv.DictReader(fp)
for row in reader:
titleId = row["TitleId"]
displayName = row["DisplayName"]
requirement = row["Requirement"]
rank = row["Rank"]
imageFilePath = row["ImageFilePath"]
enabled = True
self.logger.info(f"Added title {titleId} | Name: {displayName}")
if len(titleId) > 5:
try:
self.data.static.put_title(
0,
titleId,
displayName,
requirement,
rank,
imageFilePath,
enabled
)
except Exception as err:
print(err)
elif len(titleId) < 6: # current server code cannot have multiple lengths for the id
continue
except:
self.logger.warn(f"Couldn't read csv file in {self.bin_dir}, skipping")
self.logger.info("Now reading RareDropTable.csv")
try:
fullPath = bin_dir + "/RareDropTable.csv"
with open(fullPath, encoding="UTF-8") as fp:
reader = csv.DictReader(fp)
for row in reader:
questRareDropId = row["QuestRareDropId"]
commonRewardId = row["CommonRewardId"]
enabled = True
self.logger.info(f"Added rare drop {questRareDropId} | Reward: {commonRewardId}")
try:
self.data.static.put_rare_drop(
0,
questRareDropId,
commonRewardId,
enabled
)
except Exception as err:
print(err)
except:
self.logger.warn(f"Couldn't read csv file in {self.bin_dir}, skipping")

View File

@ -0,0 +1,3 @@
from .profile import SaoProfileData
from .static import SaoStaticData
from .item import SaoItemData

458
titles/sao/schema/item.py Normal file
View File

@ -0,0 +1,458 @@
from typing import Optional, Dict, List
from sqlalchemy import Table, Column, UniqueConstraint, PrimaryKeyConstraint, and_, case
from sqlalchemy.types import Integer, String, TIMESTAMP, Boolean
from sqlalchemy.schema import ForeignKey
from sqlalchemy.sql import func, select, update, delete
from sqlalchemy.engine import Row
from sqlalchemy.dialects.mysql import insert
from core.data.schema import BaseData, metadata
equipment_data = Table(
"sao_equipment_data",
metadata,
Column("id", Integer, primary_key=True, nullable=False),
Column(
"user",
ForeignKey("aime_user.id", ondelete="cascade", onupdate="cascade"),
nullable=False,
),
Column("equipment_id", Integer, nullable=False),
Column("enhancement_value", Integer, nullable=False),
Column("enhancement_exp", Integer, nullable=False),
Column("awakening_exp", Integer, nullable=False),
Column("awakening_stage", Integer, nullable=False),
Column("possible_awakening_flag", Integer, nullable=False),
Column("get_date", TIMESTAMP, nullable=False, server_default=func.now()),
UniqueConstraint("user", "equipment_id", name="sao_equipment_data_uk"),
mysql_charset="utf8mb4",
)
item_data = Table(
"sao_item_data",
metadata,
Column("id", Integer, primary_key=True, nullable=False),
Column(
"user",
ForeignKey("aime_user.id", ondelete="cascade", onupdate="cascade"),
nullable=False,
),
Column("item_id", Integer, nullable=False),
Column("get_date", TIMESTAMP, nullable=False, server_default=func.now()),
UniqueConstraint("user", "item_id", name="sao_item_data_uk"),
mysql_charset="utf8mb4",
)
hero_log_data = Table(
"sao_hero_log_data",
metadata,
Column("id", Integer, primary_key=True, nullable=False),
Column(
"user",
ForeignKey("aime_user.id", ondelete="cascade", onupdate="cascade"),
nullable=False,
),
Column("user_hero_log_id", Integer, nullable=False),
Column("log_level", Integer, nullable=False),
Column("log_exp", Integer, nullable=False),
Column("main_weapon", Integer, nullable=False),
Column("sub_equipment", Integer, nullable=False),
Column("skill_slot1_skill_id", Integer, nullable=False),
Column("skill_slot2_skill_id", Integer, nullable=False),
Column("skill_slot3_skill_id", Integer, nullable=False),
Column("skill_slot4_skill_id", Integer, nullable=False),
Column("skill_slot5_skill_id", Integer, nullable=False),
Column("get_date", TIMESTAMP, nullable=False, server_default=func.now()),
UniqueConstraint("user", "user_hero_log_id", name="sao_hero_log_data_uk"),
mysql_charset="utf8mb4",
)
hero_party = Table(
"sao_hero_party",
metadata,
Column("id", Integer, primary_key=True, nullable=False),
Column(
"user",
ForeignKey("aime_user.id", ondelete="cascade", onupdate="cascade"),
nullable=False,
),
Column("user_party_team_id", Integer, nullable=False),
Column("user_hero_log_id_1", Integer, nullable=False),
Column("user_hero_log_id_2", Integer, nullable=False),
Column("user_hero_log_id_3", Integer, nullable=False),
UniqueConstraint("user", "user_party_team_id", name="sao_hero_party_uk"),
mysql_charset="utf8mb4",
)
quest = Table(
"sao_player_quest",
metadata,
Column("id", Integer, primary_key=True, nullable=False),
Column(
"user",
ForeignKey("aime_user.id", ondelete="cascade", onupdate="cascade"),
nullable=False,
),
Column("episode_id", Integer, nullable=False),
Column("quest_clear_flag", Boolean, nullable=False),
Column("clear_time", Integer, nullable=False),
Column("combo_num", Integer, nullable=False),
Column("total_damage", Integer, nullable=False),
Column("concurrent_destroying_num", Integer, nullable=False),
Column("play_date", TIMESTAMP, nullable=False, server_default=func.now()),
UniqueConstraint("user", "episode_id", name="sao_player_quest_uk"),
mysql_charset="utf8mb4",
)
sessions = Table(
"sao_play_sessions",
metadata,
Column("id", Integer, primary_key=True, nullable=False),
Column(
"user",
ForeignKey("aime_user.id", ondelete="cascade", onupdate="cascade"),
nullable=False,
),
Column("user_party_team_id", Integer, nullable=False),
Column("episode_id", Integer, nullable=False),
Column("play_mode", Integer, nullable=False),
Column("quest_drop_boost_apply_flag", Integer, nullable=False),
Column("play_date", TIMESTAMP, nullable=False, server_default=func.now()),
UniqueConstraint("user", "user_party_team_id", "play_date", name="sao_play_sessions_uk"),
mysql_charset="utf8mb4",
)
class SaoItemData(BaseData):
def create_session(self, user_id: int, user_party_team_id: int, episode_id: int, play_mode: int, quest_drop_boost_apply_flag: int) -> Optional[int]:
sql = insert(sessions).values(
user=user_id,
user_party_team_id=user_party_team_id,
episode_id=episode_id,
play_mode=play_mode,
quest_drop_boost_apply_flag=quest_drop_boost_apply_flag
)
conflict = sql.on_duplicate_key_update(user=user_id)
result = self.execute(conflict)
if result is None:
self.logger.error(f"Failed to create SAO session for user {user_id}!")
return None
return result.lastrowid
def put_item(self, user_id: int, item_id: int) -> Optional[int]:
sql = insert(item_data).values(
user=user_id,
item_id=item_id,
)
conflict = sql.on_duplicate_key_update(
item_id=item_id,
)
result = self.execute(conflict)
if result is None:
self.logger.error(
f"{__name__} failed to insert item! user: {user_id}, item_id: {item_id}"
)
return None
return result.lastrowid
def put_equipment_data(self, user_id: int, equipment_id: int, enhancement_value: int, enhancement_exp: int, awakening_exp: int, awakening_stage: int, possible_awakening_flag: int) -> Optional[int]:
sql = insert(equipment_data).values(
user=user_id,
equipment_id=equipment_id,
enhancement_value=enhancement_value,
enhancement_exp=enhancement_exp,
awakening_exp=awakening_exp,
awakening_stage=awakening_stage,
possible_awakening_flag=possible_awakening_flag,
)
conflict = sql.on_duplicate_key_update(
enhancement_value=enhancement_value,
enhancement_exp=enhancement_exp,
awakening_exp=awakening_exp,
awakening_stage=awakening_stage,
possible_awakening_flag=possible_awakening_flag,
)
result = self.execute(conflict)
if result is None:
self.logger.error(
f"{__name__} failed to insert equipment! user: {user_id}, equipment_id: {equipment_id}"
)
return None
return result.lastrowid
def put_hero_log(self, user_id: int, user_hero_log_id: int, log_level: int, log_exp: int, main_weapon: int, sub_equipment: int, skill_slot1_skill_id: int, skill_slot2_skill_id: int, skill_slot3_skill_id: int, skill_slot4_skill_id: int, skill_slot5_skill_id: int) -> Optional[int]:
sql = insert(hero_log_data).values(
user=user_id,
user_hero_log_id=user_hero_log_id,
log_level=log_level,
log_exp=log_exp,
main_weapon=main_weapon,
sub_equipment=sub_equipment,
skill_slot1_skill_id=skill_slot1_skill_id,
skill_slot2_skill_id=skill_slot2_skill_id,
skill_slot3_skill_id=skill_slot3_skill_id,
skill_slot4_skill_id=skill_slot4_skill_id,
skill_slot5_skill_id=skill_slot5_skill_id,
)
conflict = sql.on_duplicate_key_update(
log_level=log_level,
log_exp=log_exp,
main_weapon=main_weapon,
sub_equipment=sub_equipment,
skill_slot1_skill_id=skill_slot1_skill_id,
skill_slot2_skill_id=skill_slot2_skill_id,
skill_slot3_skill_id=skill_slot3_skill_id,
skill_slot4_skill_id=skill_slot4_skill_id,
skill_slot5_skill_id=skill_slot5_skill_id,
)
result = self.execute(conflict)
if result is None:
self.logger.error(
f"{__name__} failed to insert hero! user: {user_id}, user_hero_log_id: {user_hero_log_id}"
)
return None
return result.lastrowid
def put_hero_party(self, user_id: int, user_party_team_id: int, user_hero_log_id_1: int, user_hero_log_id_2: int, user_hero_log_id_3: int) -> Optional[int]:
sql = insert(hero_party).values(
user=user_id,
user_party_team_id=user_party_team_id,
user_hero_log_id_1=user_hero_log_id_1,
user_hero_log_id_2=user_hero_log_id_2,
user_hero_log_id_3=user_hero_log_id_3,
)
conflict = sql.on_duplicate_key_update(
user_hero_log_id_1=user_hero_log_id_1,
user_hero_log_id_2=user_hero_log_id_2,
user_hero_log_id_3=user_hero_log_id_3,
)
result = self.execute(conflict)
if result is None:
self.logger.error(
f"{__name__} failed to insert hero party! user: {user_id}, user_party_team_id: {user_party_team_id}"
)
return None
return result.lastrowid
def put_player_quest(self, user_id: int, episode_id: int, quest_clear_flag: bool, clear_time: int, combo_num: int, total_damage: int, concurrent_destroying_num: int) -> Optional[int]:
sql = insert(quest).values(
user=user_id,
episode_id=episode_id,
quest_clear_flag=quest_clear_flag,
clear_time=clear_time,
combo_num=combo_num,
total_damage=total_damage,
concurrent_destroying_num=concurrent_destroying_num
)
conflict = sql.on_duplicate_key_update(
quest_clear_flag=quest_clear_flag,
clear_time=clear_time,
combo_num=combo_num,
total_damage=total_damage,
concurrent_destroying_num=concurrent_destroying_num
)
result = self.execute(conflict)
if result is None:
self.logger.error(
f"{__name__} failed to insert quest! user: {user_id}, episode_id: {episode_id}"
)
return None
return result.lastrowid
def get_user_equipment(self, user_id: int, equipment_id: int) -> Optional[Dict]:
sql = equipment_data.select(equipment_data.c.user == user_id and equipment_data.c.equipment_id == equipment_id)
result = self.execute(sql)
if result is None:
return None
return result.fetchone()
def get_user_equipments(
self, user_id: int
) -> Optional[List[Row]]:
"""
A catch-all equipments lookup given a profile
"""
sql = equipment_data.select(
and_(
equipment_data.c.user == user_id,
)
)
result = self.execute(sql)
if result is None:
return None
return result.fetchall()
def get_user_items(
self, user_id: int
) -> Optional[List[Row]]:
"""
A catch-all items lookup given a profile
"""
sql = item_data.select(
and_(
item_data.c.user == user_id,
)
)
result = self.execute(sql)
if result is None:
return None
return result.fetchall()
def get_hero_log(
self, user_id: int, user_hero_log_id: int = None
) -> Optional[List[Row]]:
"""
A catch-all hero lookup given a profile and user_party_team_id and ID specifiers
"""
sql = hero_log_data.select(
and_(
hero_log_data.c.user == user_id,
hero_log_data.c.user_hero_log_id == user_hero_log_id if user_hero_log_id is not None else True,
)
)
result = self.execute(sql)
if result is None:
return None
return result.fetchone()
def get_hero_logs(
self, user_id: int
) -> Optional[List[Row]]:
"""
A catch-all hero lookup given a profile
"""
sql = hero_log_data.select(
and_(
hero_log_data.c.user == user_id,
)
)
result = self.execute(sql)
if result is None:
return None
return result.fetchall()
def get_hero_party(
self, user_id: int, user_party_team_id: int = None
) -> Optional[List[Row]]:
sql = hero_party.select(
and_(
hero_party.c.user == user_id,
hero_party.c.user_party_team_id == user_party_team_id if user_party_team_id is not None else True,
)
)
result = self.execute(sql)
if result is None:
return None
return result.fetchone()
def get_quest_log(
self, user_id: int, episode_id: int = None
) -> Optional[List[Row]]:
"""
A catch-all quest lookup given a profile and episode_id
"""
sql = quest.select(
and_(
quest.c.user == user_id,
quest.c.episode_id == episode_id if episode_id is not None else True,
)
)
result = self.execute(sql)
if result is None:
return None
return result.fetchone()
def get_quest_logs(
self, user_id: int
) -> Optional[List[Row]]:
"""
A catch-all quest lookup given a profile
"""
sql = quest.select(
and_(
quest.c.user == user_id,
)
)
result = self.execute(sql)
if result is None:
return None
return result.fetchall()
def get_session(
self, user_id: int = None
) -> Optional[List[Row]]:
sql = sessions.select(
and_(
sessions.c.user == user_id,
)
).order_by(
sessions.c.play_date.asc()
)
result = self.execute(sql)
if result is None:
return None
return result.fetchone()
def remove_hero_log(self, user_id: int, user_hero_log_id: int) -> None:
sql = hero_log_data.delete(
and_(
hero_log_data.c.user == user_id,
hero_log_data.c.user_hero_log_id == user_hero_log_id,
)
)
result = self.execute(sql)
if result is None:
self.logger.error(
f"{__name__} failed to remove hero log! profile: {user_id}, user_hero_log_id: {user_hero_log_id}"
)
return None
def remove_equipment(self, user_id: int, equipment_id: int) -> None:
sql = equipment_data.delete(
and_(equipment_data.c.user == user_id, equipment_data.c.equipment_id == equipment_id)
)
result = self.execute(sql)
if result is None:
self.logger.error(
f"{__name__} failed to remove equipment! profile: {user_id}, equipment_id: {equipment_id}"
)
return None
def remove_item(self, user_id: int, item_id: int) -> None:
sql = item_data.delete(
and_(item_data.c.user == user_id, item_data.c.item_id == item_id)
)
result = self.execute(sql)
if result is None:
self.logger.error(
f"{__name__} failed to remove item! profile: {user_id}, item_id: {item_id}"
)
return None

View File

@ -0,0 +1,80 @@
from typing import Optional, Dict, List
from sqlalchemy import Table, Column, UniqueConstraint, PrimaryKeyConstraint, and_, case
from sqlalchemy.types import Integer, String, TIMESTAMP, Boolean, JSON
from sqlalchemy.schema import ForeignKey
from sqlalchemy.sql import func, select, update, delete
from sqlalchemy.engine import Row
from sqlalchemy.dialects.mysql import insert
from core.data.schema import BaseData, metadata
from ..const import SaoConstants
profile = Table(
"sao_profile",
metadata,
Column("id", Integer, primary_key=True, nullable=False),
Column(
"user",
ForeignKey("aime_user.id", ondelete="cascade", onupdate="cascade"),
nullable=False,
unique=True,
),
Column("user_type", Integer, server_default="1"),
Column("nick_name", String(16), server_default="PLAYER"),
Column("rank_num", Integer, server_default="1"),
Column("rank_exp", Integer, server_default="0"),
Column("own_col", Integer, server_default="0"),
Column("own_vp", Integer, server_default="0"),
Column("own_yui_medal", Integer, server_default="0"),
Column("setting_title_id", Integer, server_default="20005"),
)
class SaoProfileData(BaseData):
def create_profile(self, user_id: int) -> Optional[int]:
sql = insert(profile).values(user=user_id)
conflict = sql.on_duplicate_key_update(user=user_id)
result = self.execute(conflict)
if result is None:
self.logger.error(f"Failed to create SAO profile for user {user_id}!")
return None
return result.lastrowid
def put_profile(self, user_id: int, user_type: int, nick_name: str, rank_num: int, rank_exp: int, own_col: int, own_vp: int, own_yui_medal: int, setting_title_id: int) -> Optional[int]:
sql = insert(profile).values(
user=user_id,
user_type=user_type,
nick_name=nick_name,
rank_num=rank_num,
rank_exp=rank_exp,
own_col=own_col,
own_vp=own_vp,
own_yui_medal=own_yui_medal,
setting_title_id=setting_title_id
)
conflict = sql.on_duplicate_key_update(
rank_num=rank_num,
rank_exp=rank_exp,
own_col=own_col,
own_vp=own_vp,
own_yui_medal=own_yui_medal,
setting_title_id=setting_title_id
)
result = self.execute(conflict)
if result is None:
self.logger.error(
f"{__name__} failed to insert profile! user: {user_id}"
)
return None
print(result.lastrowid)
return result.lastrowid
def get_profile(self, user_id: int) -> Optional[Row]:
sql = profile.select(profile.c.user == user_id)
result = self.execute(sql)
if result is None:
return None
return result.fetchone()

360
titles/sao/schema/static.py Normal file
View File

@ -0,0 +1,360 @@
from typing import Dict, List, Optional
from sqlalchemy import Table, Column, UniqueConstraint, PrimaryKeyConstraint, and_
from sqlalchemy.types import Integer, String, TIMESTAMP, Boolean, JSON, Float
from sqlalchemy.engine.base import Connection
from sqlalchemy.engine import Row
from sqlalchemy.schema import ForeignKey
from sqlalchemy.sql import func, select
from sqlalchemy.dialects.mysql import insert
from core.data.schema import BaseData, metadata
quest = Table(
"sao_static_quest",
metadata,
Column("id", Integer, primary_key=True, nullable=False),
Column("version", Integer),
Column("questSceneId", Integer),
Column("sortNo", Integer),
Column("name", String(255)),
Column("enabled", Boolean),
UniqueConstraint(
"version", "questSceneId", name="sao_static_quest_uk"
),
mysql_charset="utf8mb4",
)
hero = Table(
"sao_static_hero_list",
metadata,
Column("id", Integer, primary_key=True, nullable=False),
Column("version", Integer),
Column("heroLogId", Integer),
Column("name", String(255)),
Column("nickname", String(255)),
Column("rarity", Integer),
Column("skillTableSubId", Integer),
Column("awakeningExp", Integer),
Column("flavorText", String(255)),
Column("enabled", Boolean),
UniqueConstraint(
"version", "heroLogId", name="sao_static_hero_list_uk"
),
mysql_charset="utf8mb4",
)
equipment = Table(
"sao_static_equipment_list",
metadata,
Column("id", Integer, primary_key=True, nullable=False),
Column("version", Integer),
Column("equipmentId", Integer),
Column("equipmentType", Integer),
Column("weaponTypeId", Integer),
Column("name", String(255)),
Column("rarity", Integer),
Column("flavorText", String(255)),
Column("enabled", Boolean),
UniqueConstraint(
"version", "equipmentId", name="sao_static_equipment_list_uk"
),
mysql_charset="utf8mb4",
)
item = Table(
"sao_static_item_list",
metadata,
Column("id", Integer, primary_key=True, nullable=False),
Column("version", Integer),
Column("itemId", Integer),
Column("itemTypeId", Integer),
Column("name", String(255)),
Column("rarity", Integer),
Column("flavorText", String(255)),
Column("enabled", Boolean),
UniqueConstraint(
"version", "itemId", name="sao_static_item_list_uk"
),
mysql_charset="utf8mb4",
)
support = Table(
"sao_static_support_log_list",
metadata,
Column("id", Integer, primary_key=True, nullable=False),
Column("version", Integer),
Column("supportLogId", Integer),
Column("charaId", Integer),
Column("name", String(255)),
Column("rarity", Integer),
Column("salePrice", Integer),
Column("skillName", String(255)),
Column("enabled", Boolean),
UniqueConstraint(
"version", "supportLogId", name="sao_static_support_log_list_uk"
),
mysql_charset="utf8mb4",
)
rare_drop = Table(
"sao_static_rare_drop_list",
metadata,
Column("id", Integer, primary_key=True, nullable=False),
Column("version", Integer),
Column("questRareDropId", Integer),
Column("commonRewardId", Integer),
Column("enabled", Boolean),
UniqueConstraint(
"version", "questRareDropId", "commonRewardId", name="sao_static_rare_drop_list_uk"
),
mysql_charset="utf8mb4",
)
title = Table(
"sao_static_title_list",
metadata,
Column("id", Integer, primary_key=True, nullable=False),
Column("version", Integer),
Column("titleId", Integer),
Column("displayName", String(255)),
Column("requirement", Integer),
Column("rank", Integer),
Column("imageFilePath", String(255)),
Column("enabled", Boolean),
UniqueConstraint(
"version", "titleId", name="sao_static_title_list_uk"
),
mysql_charset="utf8mb4",
)
class SaoStaticData(BaseData):
def put_quest( self, questSceneId: int, version: int, sortNo: int, name: str, enabled: bool ) -> Optional[int]:
sql = insert(quest).values(
questSceneId=questSceneId,
version=version,
sortNo=sortNo,
name=name,
tutorial=tutorial,
)
conflict = sql.on_duplicate_key_update(
name=name, questSceneId=questSceneId, version=version
)
result = self.execute(conflict)
if result is None:
return None
return result.lastrowid
def put_hero( self, version: int, heroLogId: int, name: str, nickname: str, rarity: int, skillTableSubId: int, awakeningExp: int, flavorText: str, enabled: bool ) -> Optional[int]:
sql = insert(hero).values(
version=version,
heroLogId=heroLogId,
name=name,
nickname=nickname,
rarity=rarity,
skillTableSubId=skillTableSubId,
awakeningExp=awakeningExp,
flavorText=flavorText,
enabled=enabled
)
conflict = sql.on_duplicate_key_update(
name=name, heroLogId=heroLogId
)
result = self.execute(conflict)
if result is None:
return None
return result.lastrowid
def put_equipment( self, version: int, equipmentId: int, name: str, equipmentType: int, weaponTypeId:int, rarity: int, flavorText: str, enabled: bool ) -> Optional[int]:
sql = insert(equipment).values(
version=version,
equipmentId=equipmentId,
name=name,
equipmentType=equipmentType,
weaponTypeId=weaponTypeId,
rarity=rarity,
flavorText=flavorText,
enabled=enabled
)
conflict = sql.on_duplicate_key_update(
name=name, equipmentId=equipmentId
)
result = self.execute(conflict)
if result is None:
return None
return result.lastrowid
def put_item( self, version: int, itemId: int, name: str, itemTypeId: int, rarity: int, flavorText: str, enabled: bool ) -> Optional[int]:
sql = insert(item).values(
version=version,
itemId=itemId,
name=name,
itemTypeId=itemTypeId,
rarity=rarity,
flavorText=flavorText,
enabled=enabled
)
conflict = sql.on_duplicate_key_update(
name=name, itemId=itemId
)
result = self.execute(conflict)
if result is None:
return None
return result.lastrowid
def put_support_log( self, version: int, supportLogId: int, charaId: int, name: str, rarity: int, salePrice: int, skillName: str, enabled: bool ) -> Optional[int]:
sql = insert(support).values(
version=version,
supportLogId=supportLogId,
charaId=charaId,
name=name,
rarity=rarity,
salePrice=salePrice,
skillName=skillName,
enabled=enabled
)
conflict = sql.on_duplicate_key_update(
name=name, supportLogId=supportLogId
)
result = self.execute(conflict)
if result is None:
return None
return result.lastrowid
def put_rare_drop( self, version: int, questRareDropId: int, commonRewardId: int, enabled: bool ) -> Optional[int]:
sql = insert(rare_drop).values(
version=version,
questRareDropId=questRareDropId,
commonRewardId=commonRewardId,
enabled=enabled,
)
conflict = sql.on_duplicate_key_update(
questRareDropId=questRareDropId, commonRewardId=commonRewardId, version=version
)
result = self.execute(conflict)
if result is None:
return None
return result.lastrowid
def put_title( self, version: int, titleId: int, displayName: str, requirement: int, rank: int, imageFilePath: str, enabled: bool ) -> Optional[int]:
sql = insert(title).values(
version=version,
titleId=titleId,
displayName=displayName,
requirement=requirement,
rank=rank,
imageFilePath=imageFilePath,
enabled=enabled
)
conflict = sql.on_duplicate_key_update(
displayName=displayName, titleId=titleId
)
result = self.execute(conflict)
if result is None:
return None
return result.lastrowid
def get_quests_ids(self, version: int, enabled: bool) -> Optional[List[Dict]]:
sql = quest.select(quest.c.version == version and quest.c.enabled == enabled).order_by(
quest.c.questSceneId.asc()
)
result = self.execute(sql)
if result is None:
return None
return [list[2] for list in result.fetchall()]
def get_hero_id(self, heroLogId: int) -> Optional[Dict]:
sql = hero.select(hero.c.heroLogId == heroLogId)
result = self.execute(sql)
if result is None:
return None
return result.fetchone()
def get_hero_ids(self, version: int, enabled: bool) -> Optional[List[Dict]]:
sql = hero.select(hero.c.version == version and hero.c.enabled == enabled).order_by(
hero.c.heroLogId.asc()
)
result = self.execute(sql)
if result is None:
return None
return [list[2] for list in result.fetchall()]
def get_equipment_id(self, equipmentId: int) -> Optional[Dict]:
sql = equipment.select(equipment.c.equipmentId == equipmentId)
result = self.execute(sql)
if result is None:
return None
return result.fetchone()
def get_equipment_ids(self, version: int, enabled: bool) -> Optional[List[Dict]]:
sql = equipment.select(equipment.c.version == version and equipment.c.enabled == enabled).order_by(
equipment.c.equipmentId.asc()
)
result = self.execute(sql)
if result is None:
return None
return [list[2] for list in result.fetchall()]
def get_item_id(self, itemId: int) -> Optional[Dict]:
sql = item.select(item.c.itemId == itemId)
result = self.execute(sql)
if result is None:
return None
return result.fetchone()
def get_rare_drop_id(self, questRareDropId: int) -> Optional[Dict]:
sql = rare_drop.select(rare_drop.c.questRareDropId == questRareDropId)
result = self.execute(sql)
if result is None:
return None
return result.fetchone()
def get_item_ids(self, version: int, enabled: bool) -> Optional[List[Dict]]:
sql = item.select(item.c.version == version and item.c.enabled == enabled).order_by(
item.c.itemId.asc()
)
result = self.execute(sql)
if result is None:
return None
return [list[2] for list in result.fetchall()]
def get_support_log_ids(self, version: int, enabled: bool) -> Optional[List[Dict]]:
sql = support.select(support.c.version == version and support.c.enabled == enabled).order_by(
support.c.supportLogId.asc()
)
result = self.execute(sql)
if result is None:
return None
return [list[2] for list in result.fetchall()]
def get_title_ids(self, version: int, enabled: bool) -> Optional[List[Dict]]:
sql = title.select(title.c.version == version and title.c.enabled == enabled).order_by(
title.c.titleId.asc()
)
result = self.execute(sql)
if result is None:
return None
return [list[2] for list in result.fetchall()]

View File

@ -624,10 +624,10 @@ class WaccaBase:
current_wp = profile["wp"] current_wp = profile["wp"]
tickets = self.data.item.get_tickets(user_id) tickets = self.data.item.get_tickets(user_id)
new_tickets = [] new_tickets: List[TicketItem] = []
for ticket in tickets: for ticket in tickets:
new_tickets.append([ticket["id"], ticket["ticket_id"], 9999999999]) new_tickets.append(TicketItem(ticket["id"], ticket["ticket_id"], 9999999999))
for item in req.itemsUsed: for item in req.itemsUsed:
if ( if (
@ -645,11 +645,11 @@ class WaccaBase:
and not self.game_config.mods.infinite_tickets and not self.game_config.mods.infinite_tickets
): ):
for x in range(len(new_tickets)): for x in range(len(new_tickets)):
if new_tickets[x][1] == item.itemId: if new_tickets[x].ticketId == item.itemId:
self.logger.debug( self.logger.debug(
f"Remove ticket ID {new_tickets[x][0]} type {new_tickets[x][1]} from {user_id}" f"Remove ticket ID {new_tickets[x].userTicketId} type {new_tickets[x].ticketId} from {user_id}"
) )
self.data.item.spend_ticket(new_tickets[x][0]) self.data.item.spend_ticket(new_tickets[x].userTicketId)
new_tickets.pop(x) new_tickets.pop(x)
break break
@ -1074,17 +1074,17 @@ class WaccaBase:
old_score = self.data.score.get_best_score( old_score = self.data.score.get_best_score(
user_id, item.itemId, item.quantity user_id, item.itemId, item.quantity
) )
if not old_score: if not old_score:
self.data.score.put_best_score( self.data.score.put_best_score(
user_id, user_id,
item.itemId, item.itemId,
item.quantity, item.quantity,
0, 0,
[0] * 5, [0] * 5,
[0] * 13, [0] * 13,
0, 0,
0, 0,
) )
if item.quantity == 0: if item.quantity == 0:
item.quantity = WaccaConstants.Difficulty.HARD.value item.quantity = WaccaConstants.Difficulty.HARD.value

View File

@ -2,8 +2,9 @@ import yaml
import jinja2 import jinja2
from twisted.web.http import Request from twisted.web.http import Request
from os import path from os import path
from twisted.web.server import Session
from core.frontend import FE_Base from core.frontend import FE_Base, IUserSession
from core.config import CoreConfig from core.config import CoreConfig
from titles.wacca.database import WaccaData from titles.wacca.database import WaccaData
from titles.wacca.config import WaccaConfig from titles.wacca.config import WaccaConfig
@ -27,7 +28,11 @@ class WaccaFrontend(FE_Base):
template = self.environment.get_template( template = self.environment.get_template(
"titles/wacca/frontend/wacca_index.jinja" "titles/wacca/frontend/wacca_index.jinja"
) )
sesh: Session = request.getSession()
usr_sesh = IUserSession(sesh)
return template.render( return template.render(
title=f"{self.core_config.server.name} | {self.nav_name}", title=f"{self.core_config.server.name} | {self.nav_name}",
game_list=self.environment.globals["game_list"], game_list=self.environment.globals["game_list"],
sesh=vars(usr_sesh)
).encode("utf-16") ).encode("utf-16")

View File

@ -93,13 +93,10 @@ class UserMusicUnlockRequest(BaseRequest):
class UserMusicUnlockResponse(BaseResponse): class UserMusicUnlockResponse(BaseResponse):
def __init__(self, current_wp: int = 0, tickets_remaining: List = []) -> None: def __init__(self, current_wp: int = 0, tickets_remaining: List[TicketItem] = []) -> None:
super().__init__() super().__init__()
self.wp = current_wp self.wp = current_wp
self.tickets: List[TicketItem] = [] self.tickets = tickets_remaining
for ticket in tickets_remaining:
self.tickets.append(TicketItem(ticket[0], ticket[1], ticket[2]))
def make(self) -> Dict: def make(self) -> Dict:
tickets = [] tickets = []