├── README.md ├── data ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── dataset.cpython-36.pyc ├── dataset.py ├── feature_sizes.txt ├── raw │ ├── test.txt │ └── train.txt ├── test.txt └── train.txt ├── main.py ├── model ├── DeepFM.py ├── __init__.py └── __pycache__ │ ├── DeepFM.cpython-36.pyc │ ├── DeepFM_hy.cpython-36.pyc │ └── __init__.cpython-36.pyc └── utils ├── __init__.py └── datapreprocess.py /README.md: -------------------------------------------------------------------------------- 1 | # Pytorch_DeepFM 2 | DeepFM for CTR prediction problem (pytorch 1.0) 3 | ## 详见地址:https://zhuanlan.zhihu.com/p/84526966 4 | -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyfred/Pytorch_DeepFM/e1cb5a3f70ede9e22780d9cff1815a41728cf1c2/data/__init__.py -------------------------------------------------------------------------------- /data/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyfred/Pytorch_DeepFM/e1cb5a3f70ede9e22780d9cff1815a41728cf1c2/data/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyfred/Pytorch_DeepFM/e1cb5a3f70ede9e22780d9cff1815a41728cf1c2/data/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /data/dataset.py: -------------------------------------------------------------------------------- 1 | import torch 2 | from torch.utils.data import Dataset 3 | import pandas as pd 4 | import numpy as np 5 | import os 6 | 7 | class CriteoDataset(Dataset): 8 | """ 9 | Custom dataset class for Criteo dataset in order to use efficient 10 | dataloader tool provided by PyTorch. 11 | """ 12 | def __init__(self, root, train=True): 13 | """ 14 | Initialize file path and train/test mode. 15 | 16 | Inputs: 17 | - root: Path where the processed data file stored. 18 | - train: Train or test. Required. 19 | """ 20 | self.root = root 21 | self.train = train 22 | 23 | if not self._check_exists: 24 | raise RuntimeError('Dataset not found.') 25 | 26 | if self.train: 27 | data = pd.read_csv(os.path.join(root, 'train.txt')) 28 | self.train_data = data.iloc[:, :-1].values 29 | self.target = data.iloc[:, -1].values 30 | else: 31 | data = pd.read_csv(os.path.join(root, 'test.txt')) 32 | self.test_data = data.iloc[:, :-1].values 33 | 34 | def __getitem__(self, idx): 35 | if self.train: 36 | dataI, targetI = self.train_data[idx, :], self.target[idx] 37 | Xi = torch.from_numpy(dataI.astype(np.int32)).unsqueeze(-1) 38 | Xv = torch.from_numpy(np.ones_like(dataI)) 39 | return Xi, Xv, targetI 40 | else: 41 | dataI = self.test_data.iloc[idx, :] 42 | Xi = torch.from_numpy(dataI.astype(np.int32)).unsqueeze(-1) 43 | Xv = torch.from_numpy(np.ones_like(dataI)) 44 | return Xi, Xv 45 | 46 | def __len__(self): 47 | if self.train: 48 | return len(self.train_data) 49 | else: 50 | return len(self.test_data) 51 | 52 | def _check_exists(self): 53 | return os.path.exists(self.root) -------------------------------------------------------------------------------- /data/feature_sizes.txt: -------------------------------------------------------------------------------- 1 | 1,1,1,1,1,1,1,1,1,1,1,1,1,10,22,7,6,7,7,3,9,3,5,6,7,7,8,5,7,10,14,4,4,7,3,9,8,11,5 -------------------------------------------------------------------------------- /data/raw/test.txt: -------------------------------------------------------------------------------- 1 | 29 50 5 7260 437 1 4 14 1 0 6 5a9ed9b0 a0e12995 a1e14474 08a40877 25c83c98 964d1fdd 5b392875 a73ee510 de89c3d2 59cd5ae7 8d98db20 8b216f7b 1adce6ef 78c64a1d 3ecdadf7 3486227d 1616f155 21ddcdc9 5840adea 2c277e62 423fab69 54c91918 9b3e8820 e75c9ae9 2 | 27 17 45 28 2 28 27 29 28 1 1 23 68fd1e64 960c983b 9fbfbfd5 38c11726 25c83c98 7e0ccccf fe06fd10 062b5529 a73ee510 ca53fc84 67360210 895d8bbb 4f8e2224 f862f261 b4cc2435 4c0041e5 e5ba7672 b4abdd09 21ddcdc9 5840adea 36a7ab86 32c7478e 85e4d73f 010f6491 ee63dd9b 3 | 1 1 19 7 1 3 1 7 7 1 1 2 09ca0b81 8947f767 a87e61f7 c4ba2a67 25c83c98 7e0ccccf ce6020cc 062b5529 a73ee510 b04d3cfe 70dcd184 899eb56b aca22cf9 b28479f6 a473257f 88f592e4 d4bb7bd8 bd17c3da 1d04f4a4 a458ea53 82bdc0bb 32c7478e 5bdcd9c4 010f6491 cca57dcc 4 | 4 1 6 1051 134 4 35 72 1 1 6 05db9164 532da141 a7ded28e 456b4d8c 25c83c98 fbad5c96 5f29da0e 0b153874 a73ee510 4b344a42 0ad37b4b 8ea37200 f9d99d81 cfef1c29 abd8f51e 9a9902d0 07c540c4 bdc06043 6dfd157c ad3062eb 423fab69 ef089725 5 | 7 1 25 10 139 74 48 13 44 1 8 2 12 05db9164 207b2d81 2b280564 ad5ffc6b 25c83c98 7e0ccccf 103c17bc 0b153874 a73ee510 8e54038a e6e0c2dc 2a064dba e9332a03 07d13a8f 0c67c4ca 7d9b60c8 27c07bd6 395856b0 21ddcdc9 a458ea53 9c3eb598 ad3062eb 3a171ecb c0b8dfd6 001f3601 7a2fb9af 6 | 8 11 38 9 316 25 8 11 10 1 1 9 05db9164 09e68b86 aa8c1539 85dd697c 25c83c98 7e0ccccf bc252bd0 5b392875 a73ee510 ef5c0d3c 0bd0c3b3 d8c29807 c0e6befc 8ceecbc8 d2f03b75 c64d548f e5ba7672 63cdbb21 cf99e5de 5840adea 5f957280 55dd3565 1793a828 e8b83407 b7d9c3bc 7 | 2 1 4 7 4 2 4 4 1 1 4 05db9164 2ae0a573 c5d94b65 5cc8f91d 25c83c98 fe6b92e5 dfc6e241 5b392875 a73ee510 5fe250bc 3547565f 75c79158 12880350 ad1cc976 b046231a 208d4baf 07c540c4 3e340673 6a909d9a c3dc6cef 1f68c81f 8 | 0 8906 541 2 2 78 1 05db9164 d833535f b00d1501 d16679b9 25c83c98 fe6b92e5 eb1a4bfa 0b153874 a73ee510 ef9be7c6 1b723d3c e0d76380 2e072c0d 07d13a8f 943169c2 1203a270 07c540c4 281769c2 73d06dde ad3062eb 3a171ecb aee52b6f 9 | 4 40 5 0 139 2 0 30 5a9ed9b0 8084ee93 02cf9876 c18be181 25c83c98 7e0ccccf af0809a5 64523cfa 7cc72ec2 3b08e48b 9e12e146 8fe001f4 025225f2 b28479f6 16d2748c 36103458 2005abd1 003d4f4f e587c466 be7c41b4 3b183c5c 10 | 8 0 1 36 457 81 70 14 774 1 5 51 05db9164 b7ca2abd ee96fc95 68ad052c 25c83c98 7e0ccccf d2d741ca 0b153874 a73ee510 18139a78 ea4adb47 ce875433 05781932 64c94865 5f2d5a3a 5f92b84a e5ba7672 4771e483 95b757a6 423fab69 41be4766 11 | 4 13 20 17700 0 20 1 0 20 68fd1e64 08d6d899 9143c832 f56b7dd5 0942e0a7 7e0ccccf e88f1cec 0b153874 a73ee510 3b08e48b 8f410860 ae1bb660 b8eec0b1 b28479f6 bffbd637 bad5ee18 776ce399 bbf70d82 0429f84b be7c41b4 c0d61a5c 12 | 52 8 30 1572 56 5 30 134 4 30 68fd1e64 09e68b86 aa8c1539 85dd697c 25c83c98 fe6b92e5 c5919aca 0b153874 a73ee510 343ac6ed 8924112e d8c29807 3cf672d1 8ceecbc8 d2f03b75 c64d548f e5ba7672 63cdbb21 cf99e5de 5840adea 5f957280 ad3062eb 3a171ecb 1793a828 e8b83407 b7d9c3bc 13 | 1 24 124689 3 87552397 31520db9 d1e7b5d9 5fd7e960 25c83c98 93b19353 0b153874 7cc72ec2 3b08e48b d2b7c44b d8bf293a 68637c0d 64c94865 22d19b8c 8d422b7e e5ba7672 30d1165e 21ddcdc9 5840adea 4a74c2f6 32c7478e 471f55fb 010f6491 2c444dca 14 | 16 18 5203 8 0 0 4 49 10 0 1 0 05db9164 9f7e1d07 0253bbf5 d6420627 4cf72387 0db090eb 0b153874 a73ee510 3b08e48b 10e6a64f 31adfaee 38b5339a 07d13a8f 3e25e5f5 1621c7f4 e5ba7672 6a58e423 21ddcdc9 5840adea bcc7a461 32c7478e 3214afd4 ea9a246c e7ecb821 15 | 2 4 4 508 0 16 17 0 4 5a9ed9b0 6e638bbc 74e1a23a 9a6888fb 384874ce 7e0ccccf a24c8c8e 5b392875 a73ee510 2e8e8e87 41b3f655 fb8fab62 ce5114a2 07d13a8f d4525f76 c6b1e1b2 1e88c74f f6a2fc70 21ddcdc9 5840adea 99c09e97 32c7478e 335a6a1e 9b3e8820 3055b376 16 | 1503 25509 10 68fd1e64 d833535f ad4b77ff d16679b9 25c83c98 fbad5c96 038685fb 37e4aa92 a73ee510 3b08e48b ed04080f a2f4e8b5 5579ddc3 b28479f6 a733d362 89052618 776ce399 281769c2 d4703ebd 32c7478e aee52b6f 17 | 1 18 2 8 0 0 1 9 8 1 1 0 f473b8dc d833535f b00d1501 d16679b9 25c83c98 7e0ccccf f01779eb 0b153874 a73ee510 a1f4ff73 0f1fa8b8 e0d76380 e4e9ce3a b28479f6 a733d362 1203a270 3486227d 281769c2 73d06dde 32c7478e aee52b6f 18 | 3 36977 135 1 0 63 1 0 87552397 9adf4cf9 d0ba1c0b 4c942c6d 25c83c98 fbad5c96 77e91f62 0b153874 a73ee510 ca2f139a 7defe259 1727332f 11fa2c12 ad1cc976 778f5086 2c3ad7de e5ba7672 76ae8aa6 565ebb25 8ec974f4 c3dc6cef 90b6276f 19 | 14 11 10 6 2 2 21 14 16 1 3 2 87552397 38a947a1 e058fc3c 2192038e 25c83c98 7e0ccccf 6fa3c1a7 0b153874 a73ee510 5f50c86b b8deab54 f7cbe917 efbb2435 b28479f6 79595843 0c6b4ad6 e5ba7672 4427594e f6e3bd9c 32c7478e 9e07eb4a 20 | 3 20 19 32306 0 22 22 0 22 05db9164 fc1fa80d 6ff38c9f 45e7b9c6 4cf72387 7e0ccccf 9f35dfeb 0b153874 a73ee510 f4233f25 723eb72b 902ac8b1 8a6ad3da b28479f6 4ce39685 ff5a027e e5ba7672 f68751cd e27d6c43 c9d4222a 32c7478e 1793a828 21 | 0 37 10 5 5965 111 1 15 49 0 1 5 05db9164 4c2bc594 d032c263 c18be181 25c83c98 fe6b92e5 50631f06 0b153874 a73ee510 7259dc52 f25fe7e9 dfbb09fb dd183b4c 1adce6ef ae0c3875 84898b2a d4bb7bd8 15a36060 0014c32a c9d4222a 55dd3565 3b183c5c 22 | 0 43 14 21 2152 137 14 17 263 0 4 21 05db9164 af447d7a 05e89637 06b1cf6e 25c83c98 7e0ccccf 5fbd9170 0b153874 a73ee510 474773a7 2bcfb78f 8fbe0072 e6fc496d b28479f6 f0d27586 25b075e4 e5ba7672 98ff11f4 af1869be 32c7478e 0ff91809 23 | 14 13122 1540 10 0 69 3 0 05db9164 8084ee93 02cf9876 c18be181 25c83c98 7e0ccccf 1dac1752 0b153874 a73ee510 3b08e48b aa566c09 8fe001f4 a4857795 07d13a8f f3996583 36103458 3486227d 003d4f4f e587c466 423fab69 3b183c5c 24 | 0 -1 4 17 1546 92 81 40 943 0 15 3 17 05db9164 89ddfee8 c2627d9b 9bb39152 43b19349 7e0ccccf c96de117 0b153874 a73ee510 eb9ca757 ad757a5a de4d74cc 93b18cb5 b28479f6 25753fb1 2a838f95 8efede7f 5bb2ec8e 55dd3565 b1252a9d d1071420 bcdee96c 3fdb382b f0f449dd aa18ef34 25 | 0 2554 1 0 4669 312 15 48 72 0 1 1 14 09ca0b81 4c2bc594 d032c263 c18be181 25c83c98 13718bbd 08e57a96 062b5529 a73ee510 fbbf2c95 7c430b79 dfbb09fb 7f0d7407 8ceecbc8 7ac43a46 84898b2a 3486227d bc48b783 0014c32a 3a171ecb 3b183c5c 26 | 0 69 8 15 4379 135 9 14 1478 0 4 0 29 89889f05 4c2bc594 d032c263 c18be181 25c83c98 fbad5c96 632a71f5 985e3fcb a73ee510 ac9e0776 e81438fc dfbb09fb f745e01e 8ceecbc8 7ac43a46 84898b2a e5ba7672 bc48b783 0014c32a 55dd3565 3b183c5c 27 | 2 360 3 3 87 3 2 3 3 1 1 3 05db9164 8f5b4275 b009d929 c7043c4b 25c83c98 fe6b92e5 a90a99c5 0b153874 a73ee510 e6003298 e9561d8b 3563ab62 1cc9ac51 1adce6ef a6bf53df b688c8cc 07c540c4 65c9624a 21ddcdc9 5840adea 2754aaf1 ad3062eb 3a171ecb 3b183c5c e8b83407 adb5d234 28 | 2 1 1 3 1 1 17 14 73 1 6 1 68fd1e64 38a947a1 7e77f5fb ee6d5dbe 25c83c98 871caac6 0b153874 a73ee510 0a9fb6a6 00e16cd3 fa543f67 c3e9876f 64c94865 22442906 c3ccd43c e5ba7672 219e7221 c8314daf 32c7478e c2dc7217 29 | 0 -1 751 65 1 41 73 0 1 1 05db9164 4c2bc594 d032c263 c18be181 25c83c98 fbad5c96 26a81064 0b153874 a73ee510 dcbc7c2b 9e511730 dfbb09fb 04e4a7e0 8ceecbc8 7ac43a46 84898b2a 3486227d bc48b783 0014c32a ad3062eb 55dd3565 3b183c5c 30 | -1 69 7247 0 0 6 0 05db9164 73a46ff0 ab7da2f6 f0501841 25c83c98 13718bbd bf115338 0b153874 a73ee510 3b08e48b 41516dc9 d3940cbb 8b11c4b8 b28479f6 4f648a87 a395fb2c 776ce399 da507f45 21ddcdc9 b1252a9d 03d3e1bf be7c41b4 2833fe6a ea9a246c 7ed1c999 31 | 2 1 1 5a9ed9b0 38a947a1 24b45e80 4404b915 25c83c98 6f6d9be8 88002ee1 0b153874 7cc72ec2 3b08e48b f1b78ab4 2a06e796 6e5da64f 1adce6ef f6ad7b3d 12a39398 2005abd1 494df740 e33f7dba 32c7478e e874323a 32 | 0 -1 15 1 1447 14 10 8 463 0 4 6 68fd1e64 b80912da f48bd32f 8397ecd3 43b19349 7e0ccccf 24703a34 0b153874 a73ee510 3b08e48b fe951f20 c3783bee bd45bc75 1adce6ef 387ececc e01a074f 8efede7f 7119e567 21ddcdc9 a458ea53 e29ae147 423fab69 02350cd9 9d93af03 513eba7e 33 | 1 1 1 11679 66 9 13 362 4 1 05db9164 3ab4d7f5 a4b38ecc 27d8fdb5 25c83c98 fe6b92e5 0dff1cd8 0b153874 a73ee510 24b40018 fcdb3f1a 47d2b89c 95aebe34 07d13a8f 0507b832 77ecf4f4 e5ba7672 b76fb0de 21ddcdc9 b1252a9d 33e00b0e 423fab69 65e74c52 c9f3bea7 f3ea27fd 34 | 0 -1 1922 36 1 36 36 0 1 05db9164 4c2bc594 d032c263 c18be181 43b19349 fe6b92e5 66167403 0b153874 a73ee510 aa9347e0 92955a26 dfbb09fb db381caa 8ceecbc8 7ac43a46 84898b2a e5ba7672 bc48b783 0014c32a 55dd3565 3b183c5c 35 | 1 2 1 0 18 96 0 15 5bfa8ab5 38a947a1 4470baf4 8c8a4c47 25c83c98 7e0ccccf ce8217f8 0b153874 7cc72ec2 3b08e48b 9d12ce9b bb669e25 9dfda2b9 b28479f6 091737ad 2b2ce127 2005abd1 ade68c22 2b796e4a be7c41b4 8d365d3b 36 | 0 12 4 7 1939 52 7 7 50 0 2 7 05db9164 a8b6b751 cef50bbe 409d3e80 25c83c98 fbad5c96 8b55891c c8ddd494 a73ee510 7f79890b c4adf918 7f2b3859 85dbe138 b28479f6 694e45e3 32c1c5c1 e5ba7672 d787f192 21ddcdc9 5840adea a45fd580 32c7478e 16b01f6a 001f3601 1d5d3a57 37 | 1 283 6 1 381 28 1 22 22 1 1 2 05db9164 bc478804 b5443e18 13508380 25c83c98 fbad5c96 9140e6ca 37e4aa92 a73ee510 42103299 33fa033a fcef1043 54be6cea 07d13a8f 0af7c64c 4ea17034 d4bb7bd8 65a2ac26 79849f24 b1252a9d ccd5534a 32c7478e 45ab94c8 cb079c2d c84c4aec 38 | 2 31 40 19 947 128 31 49 301 1 6 0 20 be589b51 b06f9574 d8dd6f6f 5ec469f9 25c83c98 fbad5c96 5186ec40 0b153874 a73ee510 95b6ef60 a7b606c4 c94a041d eae197fd 1adce6ef b62ec7c9 18fbd7af e5ba7672 e9a3d86d 21ddcdc9 b1252a9d 695514c6 ad3062eb 3a171ecb dadea544 001f3601 6dff734f 39 | 0 132 8 8 1622 11 42 10 398 0 15 8 5a9ed9b0 38a947a1 912c8e98 157d62cd 4cf72387 7e0ccccf 9f525672 0b153874 a73ee510 1e2ab9fa 843d8639 87678b95 9cab1003 b28479f6 17194aa4 3a92cd79 e5ba7672 1f8f8372 a3f2d22e ad3062eb 423fab69 b258af68 40 | 0 1005 1 0 3156 64 4 14 11 0 1 2 05db9164 7772ab29 02cf9876 c18be181 25c83c98 fe6b92e5 1037bf4f 1f89b562 a73ee510 305a0646 1a58b9cd 8fe001f4 933cfdb3 b28479f6 64ad30e5 36103458 e5ba7672 ba0e319f e587c466 ad3062eb 3a171ecb 3b183c5c 41 | 20 2 30394 0 11 2 0 0 2 05db9164 2c16a946 b67978af fbd91004 25c83c98 7e0ccccf 11ffbf5b 0b153874 a73ee510 7ad4ea2c f2313205 bc8f8b6b 9c7a975e 07d13a8f 18231224 169dc46f 27c07bd6 74ef3502 784d1d2a 3a171ecb 9117a34a 42 | 0 -1 1998 15 6 10 10 0 1 05db9164 4c2bc594 d032c263 c18be181 4cf72387 fe6b92e5 646b4bca 5b392875 a73ee510 3b08e48b 9b972b2e dfbb09fb df941d33 64c94865 c9f66e21 84898b2a e5ba7672 fe94fad1 0014c32a c7dc6720 3b183c5c 43 | 1871 1 1 6845 20 7 5 22 1 1 05db9164 38a947a1 e058fc3c 2192038e 25c83c98 fe6b92e5 283d5555 5b392875 a73ee510 3b08e48b 3d5fb018 f7cbe917 94172618 b28479f6 1545f0d7 0c6b4ad6 e5ba7672 4427594e f6e3bd9c ad3062eb 32c7478e 9e07eb4a 44 | 0 -1 2881 163 22 19 246 0 5 05db9164 89ddfee8 073f0e50 abef185d b706ee81 fbad5c96 1c86e0eb 0b153874 a73ee510 b906acff 755e4a50 ba51a2c8 5978055e b28479f6 25753fb1 b94aacf2 e5ba7672 5bb2ec8e dd25bffc b1252a9d 45cbd102 32c7478e ff1c909e cb079c2d ce860ee0 45 | 0 -1 11047 24 0 0 05db9164 4c2bc594 d032c263 c18be181 25c83c98 7e0ccccf 6e97aede 0b153874 a73ee510 18bf9127 75ae185c dfbb09fb d53bbf5c 1adce6ef ae0c3875 84898b2a e5ba7672 15a36060 0014c32a 32c7478e 3b183c5c 46 | 0 37 21 15 1539 78 10 27 477 0 3 0 28 05db9164 c8687797 63f8d4e4 e4005c97 4cf72387 13718bbd ed0714a0 0b153874 a73ee510 7cfcb35e c3669360 9699b949 c3f71b59 b28479f6 dc96c4b0 ea95fc5f e5ba7672 a7e06874 21ddcdc9 b1252a9d 32f1f809 32c7478e 87f61a7d 010f6491 891dabaf 47 | 1 1080 58 11 53 12 1 26 22 1 1 0 12 b455c6d7 4c2bc594 d032c263 c18be181 4cf72387 fbad5c96 968a6688 0b153874 a73ee510 8a176218 f25fe7e9 dfbb09fb dd183b4c 8ceecbc8 c7b09696 84898b2a e5ba7672 fe94fad1 0014c32a 32c7478e 3b183c5c 48 | 3 2 1 6 492 94 48 20 1423 1 6 0 6 be589b51 942f9a8d 435c3859 be42d44a 4cf72387 7e0ccccf 3f4ec687 0b153874 a73ee510 0e9ead52 c4adf918 e4c074db 85dbe138 1adce6ef ae97ecc3 a029b14b 3486227d 1f868fdd 21ddcdc9 a458ea53 76ff3b70 32c7478e 9fc6df89 9d93af03 91002aff 49 | 195 30 18 37 35 1 17 18 1 18 05db9164 207b2d81 0794f5ea 2cde248f 25c83c98 fe6b92e5 41e6f3d3 1f89b562 a73ee510 79041558 30b2a438 899bb855 aebdb575 b28479f6 899da9d5 57b5dffa d4bb7bd8 25c88e42 21ddcdc9 b1252a9d 2ff22e89 32c7478e 244a7d22 001f3601 cf995043 50 | 162 4 4 0 4 4 0 4 68fd1e64 4c2bc594 d032c263 c18be181 4cf72387 fe6b92e5 0dab78da 5b392875 7cc72ec2 3b08e48b 7bc78da9 dfbb09fb 6b5d07b4 8ceecbc8 7ac43a46 84898b2a 2005abd1 bc48b783 0014c32a 78e2e389 be7c41b4 3b183c5c 51 | 2 0 275 5 10 38 113 1 2 0 68fd1e64 80e26c9b ba1947d0 85dd697c 43b19349 7e0ccccf 650f5583 0b153874 a73ee510 e5330e23 3decbee2 34a238e0 7351d888 1adce6ef 0f942372 da441c7e e5ba7672 005c6740 21ddcdc9 5840adea 8717ea07 32c7478e 1793a828 e8b83407 b9809574 52 | 1 0 2 2 2 0 92 5 37 1 7 0 0 05db9164 08c2f5df dde182a0 de1dc0c1 4cf72387 fbad5c96 407438c8 0b153874 a73ee510 935a36f0 755e4a50 7a27d4e1 5978055e 07d13a8f 747ea14a 84534f54 3486227d 29b0e3e5 2b81e06c c9d4222a 32c7478e 2f647dfe 53 | 0 -1 3582 27 5 12 25 0 2 1 05db9164 4c2bc594 d032c263 c18be181 25c83c98 fbad5c96 4b219154 1f89b562 a73ee510 3e07d661 f25fe7e9 dfbb09fb dd183b4c 8ceecbc8 7ac43a46 84898b2a 3486227d bc48b783 0014c32a ad3062eb 55dd3565 3b183c5c 54 | 0 64 45 0 14758 1491 1 18 1164 0 1 17 05db9164 8084ee93 02cf9876 c18be181 384874ce 7e0ccccf c5b5de76 0b153874 a73ee510 c811e460 e4034ebf 8fe001f4 ea089f5d 07d13a8f 422c8577 36103458 e5ba7672 52e44668 e587c466 ad3062eb 32c7478e 3b183c5c 55 | 1 1 71 13 28 13 1 12 13 1 1 13 87552397 80e26c9b 93c3f40c 85dd697c 25c83c98 fe6b92e5 62629a0c 0b153874 a73ee510 42459662 88196a93 cc19f478 1211c647 07d13a8f e8f4b767 2d0bbe92 d4bb7bd8 005c6740 21ddcdc9 b1252a9d 531aa022 32c7478e 1793a828 e8b83407 9904c656 56 | 3 1114 4 3 228 20 3 20 20 1 1 4 9a89b36c 4c2bc594 d032c263 c18be181 25c83c98 7e0ccccf d6bf922f 0b153874 a73ee510 3b08e48b 6af26531 dfbb09fb 5fcbc3ef 1adce6ef ae0c3875 84898b2a 1e88c74f 15a36060 0014c32a bcdee96c 3b183c5c 57 | 0 0 7 0 1573 87 76 0 283 0 10 4 6062d843 0a519c5c 02cf9876 c18be181 25c83c98 fbad5c96 08deaad1 0b153874 a73ee510 5be0d285 4fc18a28 8fe001f4 ff3ffc9f b28479f6 9a6e9a96 36103458 e5ba7672 3412118d e587c466 32c7478e 3b183c5c 58 | 1 1 1 68fd1e64 38a947a1 223b0e16 ca55061c 4cf72387 7e0ccccf e7698644 0b153874 7cc72ec2 3b08e48b 3ec9c616 156f99ef b55434a9 b28479f6 42e41d92 5fbf4a84 2005abd1 1999bae9 deb9605d be7c41b4 e448275f 59 | 105 1 1 194801 0 1 20 0 1 68fd1e64 38a947a1 c0788a71 82a61820 25c83c98 7e0ccccf 00f47310 1f89b562 7cc72ec2 6a3a24d0 a4ea009a 3f8aec46 1e9339bc 1adce6ef 3aa85cb3 5306324f e5ba7672 e96a7df2 0586873f 423fab69 cafb4e4d 60 | 10 2 2 5705 4 0 2 4 0 0 2 05db9164 ef69887a 3f24378e e5c98cf0 25c83c98 f9e7e1f7 5b392875 a73ee510 3b08e48b 6fc1ac4c fc4bb24a e1448645 b28479f6 902a109f 157f049e 3486227d 4bcc9449 8b067084 b1252a9d 2a706f1f 32c7478e 8489cd2e 47907db5 fe36661d 61 | 1 1 2 29558 423 2 2 337 1 2 05db9164 5dac953d d032c263 c18be181 25c83c98 fbad5c96 f36791d8 5b392875 a73ee510 c7009b63 2714650d dfbb09fb 9a88e2e2 1adce6ef b4a435f2 84898b2a e5ba7672 63e4be9d 0014c32a bcdee96c 3b183c5c 62 | 1 4 66 5 46 9 1 5 5 1 1 5 75ac2fe6 38a947a1 b1c694ba a2d43cbf 43b19349 fbad5c96 d03c0e35 5b392875 a73ee510 30fdb872 f2a195a2 0b45e487 519f294e 1adce6ef b3019cbd 3c1ae56e d4bb7bd8 d144df58 4eeb367e ad3062eb 32c7478e 744d559b 63 | 4 28 13 11 0 0 4 12 11 1 1 0 05db9164 38a947a1 5ee4022f 03b49895 25c83c98 fe6b92e5 59bbdf75 0b153874 a73ee510 e855083d ae4c531b 228edab3 01c2bbc7 64c94865 4bf4361a da729723 e5ba7672 bbe2f8c3 4b298614 32c7478e 2fea1d4d 64 | 7 29 3 39 148 76 11 16 2175 1 4 76 05db9164 38a947a1 c83d66c1 713f7660 bf9f7f48 7e0ccccf 024a4c3d 0b153874 a73ee510 28ced8b3 ac60dfda 2fba5c44 d100e0ca b28479f6 8c7816d3 cc067f0e e5ba7672 7c21218c fdf5a4ad ad3062eb 32c7478e b258af68 65 | 0 838 22 22 4517 216 9 28 210 0 5 22 5a9ed9b0 76c475b1 73c582f5 15801a38 43b19349 804d2f11 0b153874 a73ee510 69af56b9 1aa6cf31 38c3af79 3b03d76e 1adce6ef 280a440c 2b3c29f7 e5ba7672 ae09efbe f90d7df9 32c7478e 5ddc2c4c 66 | 0 19 3 6112 0 2 20 0 3 05db9164 09e68b86 46a7fb6f c35b84a2 90e893ba 50631f06 5b392875 a73ee510 3b08e48b f25fe7e9 f2af1996 dd183b4c 1adce6ef dbc5e126 7ebe13a3 776ce399 5aed7436 21ddcdc9 a458ea53 a4e1425e 32c7478e 1793a828 e8b83407 8b8b6204 67 | 0 1 106 22 4423 121 27 29 621 0 7 0 52 05db9164 942f9a8d 2e14663b e01bfe4e 25c83c98 7e0ccccf 3f4ec687 5b392875 a73ee510 c5fe5cb9 c4adf918 77b3b813 85dbe138 1adce6ef ae97ecc3 b1addded 27c07bd6 1f868fdd 21ddcdc9 a458ea53 21d40c8c ad3062eb 32c7478e 3fdb382b e8b83407 49d68486 68 | 0 -1 33 12 4864 250 2 1 244 0 1 13 05db9164 e77e5e6e b7625ea9 7252f01a 25c83c98 7e0ccccf ad9b2639 062b5529 a73ee510 035a9960 e4034ebf 3cf784db ea089f5d 051219e6 a6b876ce f32fbd3f d4bb7bd8 449d6705 21ddcdc9 a458ea53 1557ac5c 32c7478e 296559ed 445bbe3b c9dada51 69 | 176 2 7 19416 97 21 11 135 3 0 9 05db9164 c41a84c8 04e51b4a bee72785 0942e0a7 7e0ccccf a61aeaec 0b153874 a73ee510 739ff196 17586bd8 bef78a22 4c9ff09f 07d13a8f d345cbde 880b4662 e5ba7672 2b46823a af53b446 423fab69 590b856f 70 | 2 -1 453 21 4 29 65 1 3 8cf07265 4c2bc594 d032c263 c18be181 25c83c98 fe6b92e5 29d5bb09 37e4aa92 a73ee510 05906beb b5bb9d63 dfbb09fb ab04d8fe 8ceecbc8 7ac43a46 84898b2a e5ba7672 bc48b783 0014c32a ad3062eb 55dd3565 3b183c5c 71 | 0 11 4396 6 5 1 8 2 1 68fd1e64 333137d9 e84641fb bb575676 25c83c98 7e0ccccf 78737263 0b153874 a73ee510 fa7d0797 4955b0c0 821d931b 9be66b48 b28479f6 a46bf7c6 a1f5c824 3486227d c61e82d7 21ddcdc9 5840adea f91f2915 3a171ecb 5b82037c 001f3601 0a5ae604 72 | 0 1 2 8 1530 36 3 13 92 0 2 8 68fd1e64 38d50e09 01a0648b 657dc3b9 25c83c98 7e0ccccf d130cbd1 51d76abe a73ee510 4effc25c 9a422971 11fcf7fa 174e4cac 07d13a8f fa321567 5e1b6b9d 07c540c4 52b872ed 21ddcdc9 a458ea53 bfeb50f6 32c7478e df487a73 001f3601 c27f155b 73 | 1 8 8 13014 0 8 327 0 8 05db9164 c76014f5 df00c4f0 031bba14 4cf72387 fbad5c96 894ba00a 0b153874 a73ee510 3b08e48b 62750746 336bb1d7 48b975db b28479f6 a46c3543 631f0045 776ce399 93b0d1d7 1fe472e2 be7c41b4 89bd83a1 74 | 0 311 28 4 1632 386 11 47 731 0 3 33 05db9164 26ece8a8 f2336534 1e0ec6a2 25c83c98 fbad5c96 0742262f 5b392875 a73ee510 3b08e48b 2792ae4e 15d97f2a 0de1a815 07d13a8f 102fc449 e895d2cc e5ba7672 87fd936e f9860df8 ad3062eb 3a171ecb 5a456be6 75 | 0 0 1 2 728 19 114 7 98 0 22 6 05db9164 52e9ecfc a9d15bf1 6bb5a9c4 30903e74 7e0ccccf 1c86e0eb 0b153874 a73ee510 34ccc264 755e4a50 f3dbd9b0 5978055e b28479f6 37663ab0 4f02a842 e5ba7672 f3644223 21ddcdc9 b1252a9d 780bdc55 32c7478e 2f647dfe f0f449dd 52d71dab 76 | -1 9509 36 14 11 76 4 0 be589b51 8f5b4275 b009d929 c7043c4b 25c83c98 fe6b92e5 c0698233 0b153874 a73ee510 401ced54 f8ba74ae 3563ab62 2b9fb512 1adce6ef a6bf53df b688c8cc 3486227d 65c9624a 21ddcdc9 5840adea 2754aaf1 3a171ecb 3b183c5c e8b83407 adb5d234 77 | 26 5 5 4332 13 1 12 13 1 5 87552397 38a947a1 56befc13 4f6304e1 43b19349 7e0ccccf bb93c2d4 0b153874 a73ee510 3b08e48b 5a6b65cc ad6c14a5 5b61cea7 f862f261 9053eb82 b1183a84 d4bb7bd8 2fdf0882 916ade53 32c7478e 202637d5 78 | 24 21 7 24 9 389 16 84 1 17 0 7 05db9164 2c16a946 00148a74 9f43a1b5 4cf72387 13718bbd dda1fed2 0b153874 a73ee510 2a47dab8 7f8ffe57 6fb8f39a 46f42a63 b28479f6 3628a186 87140baa 3486227d e4ca448c 67bb5322 3a171ecb 9117a34a 79 | 0 -1 3098 6 7 0 0 0 1 05db9164 80e26c9b 80422e44 0c8cc302 25c83c98 11754474 0b153874 a73ee510 3b08e48b 88ac36d5 9d674bb6 d8e8499b 07d13a8f f3635baf 1c72109f e5ba7672 f54016b9 21ddcdc9 a458ea53 0b23df39 93bad2c0 52c59e65 e8b83407 fcd5a3f4 80 | -1 483 0 13 16 0 ae82ea21 4c2bc594 d032c263 c18be181 25c83c98 fe6b92e5 5af26afd 5b392875 a73ee510 3b08e48b a6925b63 dfbb09fb d9946b7d 8ceecbc8 7ac43a46 84898b2a 776ce399 bc48b783 0014c32a c9d4222a 32c7478e 3b183c5c 81 | 18 6 6 8755 295 2 37 222 1 6 05db9164 0b8e9caf 6cf16daf 99f80b6a 25c83c98 fe6b92e5 c89615d2 0b153874 a73ee510 0ab7712f 45922c00 a1ae9096 5029598e b28479f6 5340cb84 ae6d9c5c 07c540c4 ca6a63cf 97dc7d84 be7c41b4 08b0ce98 82 | -1 672 0 12 14 0 5a9ed9b0 4c2bc594 d032c263 c18be181 25c83c98 7e0ccccf 0d43cf13 5b392875 a73ee510 f665b5a4 2cda6e6e dfbb09fb 38e7245c 8ceecbc8 7ac43a46 84898b2a 1e88c74f bc48b783 0014c32a ad3062eb 55dd3565 3b183c5c 83 | 1 22 10 1658 0 29 45 0 10 05db9164 95e2d337 4e2a1c5f 9c64c398 4cf72387 7e0ccccf 8c2fedb1 0b153874 a73ee510 3b08e48b af763b4c 9dcbc18c d90d259c 07d13a8f 4e505ea3 be827193 776ce399 7b06fafe cdca75c5 b1252a9d 4c81b21f b264a060 fef88e98 010f6491 e09e9d78 84 | 1 32 5 15 17 16 2 13 35 1 2 15 05db9164 e18b1e61 f281d2a7 7e0ccccf ee47b323 0b153874 a73ee510 3b08e48b 2996a71e 44af41ef 07d13a8f 1d432c1e e5ba7672 b2879faf 3a171ecb 85 | 26 9 26 18 0 14 70 9 167 1 8 1 0 05db9164 942f9a8d 9e92bf09 7a512f64 25c83c98 fbad5c96 3f4ec687 5b392875 a73ee510 0e9ead52 c4adf918 0c68dfb8 85dbe138 b28479f6 ac182643 139e1d4f 3486227d 1f868fdd 21ddcdc9 b1252a9d 85f4a6ec ad3062eb 32c7478e 53e0a237 9d93af03 718dad9f 86 | 0 14 92 5 915 247 22 45 416 0 9 0 5 05db9164 8947f767 6f6cdf1c 2106cad5 4cf72387 25c64e98 37e4aa92 a73ee510 e8438e24 2872a4bd c07fefdc f8320f48 b28479f6 a473257f 5bfb82fe 3486227d bd17c3da 73006510 a458ea53 8d1f6da9 32c7478e b94bd0ee 010f6491 0dd4407a 87 | 0 13 6 4 99 13 386 13 326 0 56 3 8 68fd1e64 207b2d81 ab585dcf 5889d566 4cf72387 7e0ccccf adf507fb 0b153874 a73ee510 b22fc48e 2c7b458c 334db336 63f28c33 b28479f6 c6438ddb 6eb1f618 8efede7f fa0643ee 21ddcdc9 5840adea 418f2a90 32c7478e c2d7c93b 001f3601 d0390abb 88 | 2 6 4 892 7 2 7 7 1 1 17f69355 6e638bbc 41d2969c 8efb86eb 25c83c98 fbad5c96 8818fa86 5b392875 a73ee510 9ec876ba ecf21575 3e52951c 5e400308 07d13a8f d4525f76 367cf5a3 07c540c4 f6a2fc70 21ddcdc9 b1252a9d ed2ac806 423fab69 a5af52c4 445bbe3b 3ef39041 89 | 1 102 30 214 30 5 26 237 1 4 30 05db9164 4c2bc594 d032c263 c18be181 25c83c98 fe6b92e5 9a4f2943 0b153874 a73ee510 86b46b2e 4a00b569 dfbb09fb 42ef23bb 8ceecbc8 7ac43a46 84898b2a e5ba7672 bc48b783 0014c32a 32c7478e 3b183c5c 90 | 19 16 12 1519 45 2 13 20 1 1 12 05db9164 207b2d81 8b57b943 2ac9344f 25c83c98 fbad5c96 424fbb9a 0b153874 a73ee510 cd44503d 2386466b 4c6ad4f5 45db6793 b28479f6 3c767806 5eb9c4aa 3486227d 395856b0 21ddcdc9 b1252a9d d6cb2886 ad3062eb 32c7478e ee2c9e5e 001f3601 17c3439f 91 | 0 21 39 2 3261 17 2 11 17 0 1 2 5 05db9164 e5fb1af3 9b953c56 7be07df9 4cf72387 fbad5c96 6c5e14ec 0b153874 a73ee510 5ba575e7 043725ae 6bca71b1 7f0d7407 07d13a8f b5de5956 fb8ca891 27c07bd6 13145934 21ddcdc9 b1252a9d b1ae3ed2 3a171ecb 3fdb382b 9b3e8820 49d68486 92 | 0 6 4 48 65 557 42 343 0 25 1 4 05db9164 26a88120 b00d1501 d16679b9 25c83c98 7e0ccccf 3f4ec687 0b153874 a73ee510 0e9ead52 c4adf918 e0d76380 85dbe138 b28479f6 2ebbf26a 1203a270 8efede7f b486119d 73d06dde 32c7478e aee52b6f 93 | 0 68 0 7824 5 0 2 05db9164 d4e5ee28 5c76c83f 5e023e6b 25c83c98 7e0ccccf 0c41b6a1 5b392875 a73ee510 e5edcbd4 4ba74619 bc805d91 879fa878 07d13a8f 5d1e64c6 4e1aed4e e5ba7672 2b829a72 ad15f8ae 423fab69 8a3cfad4 94 | 36 16 8 10992 117 1 4 69 1 0 8 05db9164 207b2d81 98c06bc9 94d4065e 25c83c98 2e8a689b 37e4aa92 a73ee510 efea433b e51ddf94 31d3cd61 3516f6e6 b28479f6 899da9d5 c4abf3ed d4bb7bd8 25c88e42 21ddcdc9 b1252a9d 9af78a5a 32c7478e 244a7d22 001f3601 cf995043 95 | 1 3 16 2 69 34 3 33 41 1 3 11 05db9164 38d50e09 7ebe08b3 76b52ce1 43b19349 3bf701e7 dc7659bd 5b392875 a73ee510 a9043efc e51ddf94 ef0c2022 3516f6e6 07d13a8f e2275836 8a00a9dd 3486227d fffe2a63 21ddcdc9 b1252a9d 0187218b 32c7478e df487a73 001f3601 c27f155b 96 | 0 10 1 22168 11 0 1 68fd1e64 d833535f b00d1501 d16679b9 25c83c98 7e0ccccf 52283d1c 1f89b562 a73ee510 efea433b e51ddf94 e0d76380 3516f6e6 b28479f6 a733d362 1203a270 d4bb7bd8 281769c2 73d06dde 3a171ecb aee52b6f 97 | 1 2 245128 0 0 2 0 05db9164 38a947a1 e0eb5552 ab3c096f 25c83c98 6f6d9be8 91992e62 0b153874 7cc72ec2 b883655e 40862c01 2baffa42 0f39538f b28479f6 257c2d0c 87b19664 d4bb7bd8 f6ece579 e1b22d92 32c7478e 85e4d73f 98 | 7 1 4 0 8 0 8 6 6 1 2 0 68fd1e64 4c2bc594 d032c263 c18be181 25c83c98 7e0ccccf d686b3b3 5b392875 a73ee510 3b08e48b 058b2e38 dfbb09fb 35323fda 1adce6ef 2a63319f 84898b2a e5ba7672 fe94fad1 0014c32a be7c41b4 3b183c5c 99 | 4 64 7 6 162 6 17 6 156 2 8 6 5a9ed9b0 e77e5e6e ac62a7f9 42f825da 384874ce 678e9b5b 5b392875 a73ee510 26e0e41b 44e1a73d 791cd89c 34bc3a7e 1adce6ef 5dd684c2 2196bcde e5ba7672 118f3bce 4764bf77 b1252a9d 9964f757 32c7478e 198d00e5 445bbe3b 69a16fdc 100 | 0 706 6 4429 279 1 21 243 0 1 1 11 68fd1e64 0a519c5c b00d1501 d16679b9 25c83c98 7e0ccccf 436fc57e 0b153874 a73ee510 3b08e48b 13d4586f e0d76380 1cf9c8dd b28479f6 7f6af6b0 1203a270 3486227d eea3ab97 73d06dde 3a171ecb aee52b6f 101 | -------------------------------------------------------------------------------- /data/test.txt: -------------------------------------------------------------------------------- 1 | 0,29,50,5,7260,437,1,4,14,0,1,0,6,3,0,0,0,1,0,0,2,1,0,0,0,0,3,0,0,4,0,1,2,0,0,3,0,6,0 2 | 27,17,45,28,2,28,27,29,28,1,1,0,23,2,0,0,0,1,1,0,5,1,0,0,0,0,0,0,0,1,0,1,2,0,0,1,0,4,0 3 | 1,1,19,7,1,3,1,7,7,1,1,0,2,0,21,0,0,1,1,0,5,1,0,0,0,0,1,0,0,3,0,0,1,0,0,1,0,4,0 4 | 4,1,0,6,1051,134,4,35,72,1,1,0,6,1,0,0,0,1,2,0,1,1,0,0,0,0,6,0,0,2,0,0,0,0,1,3,0,0,0 5 | 7,1,25,10,139,74,48,13,44,1,8,2,12,1,11,0,0,1,1,0,1,1,0,0,0,0,2,0,0,8,0,1,1,0,1,2,0,2,0 6 | 8,11,38,9,316,25,8,11,10,1,1,0,9,1,2,5,3,1,1,0,2,1,0,0,5,0,4,0,5,1,12,3,2,4,0,6,3,1,3 7 | 2,1,0,4,7,4,2,4,4,1,1,0,4,1,0,0,0,1,3,0,2,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 8 | 0,0,0,0,8906,541,2,2,78,0,1,0,0,1,4,2,2,1,3,0,1,1,0,0,2,0,2,0,2,2,4,0,0,2,1,2,2,0,0 9 | 0,4,40,5,0,0,0,139,2,0,0,0,30,3,20,4,1,1,1,0,8,2,1,0,4,0,1,0,4,9,0,0,0,5,0,4,1,0,0 10 | 8,0,1,36,457,81,70,14,774,1,5,0,51,1,0,0,0,1,1,0,1,1,0,0,0,0,5,0,0,1,0,0,0,0,0,3,0,0,0 11 | 0,4,13,20,17700,0,0,20,1,0,0,0,20,2,9,0,0,5,1,0,1,1,1,0,0,0,1,0,0,5,0,0,0,0,0,4,0,0,0 12 | 0,52,8,30,1572,56,5,30,134,0,4,0,30,2,2,5,3,1,3,0,1,1,0,0,5,0,4,0,5,1,12,3,2,4,1,2,3,1,3 13 | 0,1,24,0,124689,0,0,3,0,0,0,0,0,7,0,0,0,1,0,0,1,2,1,0,0,0,5,0,0,1,0,1,2,0,0,1,0,4,0 14 | 16,18,5203,8,0,0,4,49,10,0,1,0,0,1,0,0,0,2,0,0,1,1,1,0,0,0,2,0,0,1,0,1,2,0,0,1,0,3,0 15 | 0,2,4,4,508,0,0,16,17,0,0,0,4,3,0,0,0,4,1,0,2,1,0,0,0,0,2,0,0,7,0,1,2,0,0,1,0,6,0 16 | 0,1503,0,0,25509,0,0,10,0,0,0,0,0,2,4,6,2,1,2,0,4,1,1,0,6,0,1,4,6,5,4,0,0,6,0,1,2,0,0 17 | 1,18,2,8,0,0,1,9,8,1,1,0,0,9,4,2,2,1,1,0,1,1,0,0,2,0,1,4,2,4,4,0,0,2,0,1,2,0,0 18 | 0,3,0,0,36977,135,1,0,63,0,1,0,0,7,0,0,0,1,2,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 19 | 14,11,10,6,2,2,21,14,16,1,3,0,2,7,1,0,0,1,1,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0 20 | 0,3,20,19,32306,0,0,22,22,0,0,0,22,1,0,0,0,2,1,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,2,1,3,0,0 21 | 0,37,10,5,5965,111,1,15,49,0,1,0,5,1,5,1,1,1,3,0,1,1,0,0,1,0,3,0,1,3,0,0,0,1,2,6,1,0,0 22 | 0,43,14,21,2152,137,14,17,263,0,4,0,21,1,0,0,0,1,1,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0 23 | 0,14,0,0,13122,1540,10,0,69,0,3,0,0,1,20,4,1,1,1,0,1,1,1,0,4,0,2,0,4,4,0,0,0,5,0,3,1,0,0 24 | 0,-1,4,17,1546,92,81,40,943,0,15,3,17,1,0,0,0,3,1,0,1,1,0,0,0,0,1,0,0,6,0,2,3,0,0,5,4,10,0 25 | 0,2554,1,0,4669,312,15,48,72,0,1,1,14,0,5,1,1,1,4,0,5,1,2,0,1,0,4,1,1,4,2,0,0,1,0,2,1,0,0 26 | 0,69,8,15,4379,135,9,14,1478,0,4,0,29,0,5,1,1,1,2,0,0,1,0,0,1,0,4,1,1,1,2,0,0,1,0,6,1,0,0 27 | 2,360,3,3,87,3,2,3,3,1,1,0,3,1,0,0,0,1,3,0,1,1,0,0,0,0,3,0,0,2,0,1,2,0,1,2,1,1,0 28 | 2,1,1,3,1,1,17,14,73,1,6,0,1,2,1,0,0,1,0,0,1,1,0,0,0,0,5,0,0,1,0,0,0,0,0,1,0,0,0 29 | 0,-1,0,0,751,65,1,41,73,0,1,1,0,1,5,1,1,1,2,0,1,1,0,4,1,5,4,1,1,4,2,0,0,1,1,6,1,0,0 30 | 0,-1,69,0,7247,0,0,0,6,0,0,0,0,1,0,0,0,1,4,0,1,1,1,0,0,0,1,0,0,5,0,1,3,0,0,4,0,3,0 31 | 0,2,1,0,0,0,0,1,0,0,0,0,0,3,1,0,0,1,5,0,1,2,1,0,0,0,3,0,0,9,0,0,0,0,0,1,0,0,0 32 | 0,-1,15,1,1447,14,10,8,463,0,4,0,6,2,0,0,0,3,1,0,1,1,1,0,0,0,3,0,0,6,0,1,1,0,0,3,0,9,0 33 | 0,1,1,1,11679,66,9,13,362,0,4,0,1,1,0,0,0,1,3,0,1,1,0,0,0,0,2,0,0,1,0,1,3,0,0,3,0,0,0 34 | 0,-1,0,0,1922,36,1,36,36,0,1,0,0,1,5,1,1,3,3,0,1,1,0,0,1,0,4,1,1,1,2,0,0,1,0,6,1,0,0 35 | 0,1,2,1,0,0,0,18,96,0,0,0,15,6,1,0,0,1,1,0,1,2,1,0,0,0,1,0,0,9,0,0,0,0,0,4,0,0,0 36 | 0,12,4,7,1939,52,7,7,50,0,2,0,7,1,0,0,0,1,2,0,6,1,0,1,0,1,1,0,0,1,0,1,2,0,0,1,0,2,0 37 | 1,283,6,1,381,28,1,22,22,1,1,0,2,1,0,0,5,1,2,0,4,1,0,0,0,0,2,0,0,3,0,0,3,0,0,1,6,8,2 38 | 2,31,40,19,947,128,31,49,301,1,6,0,20,5,0,0,0,1,2,0,1,1,0,0,0,0,3,0,0,1,0,1,3,0,1,2,0,2,0 39 | 0,132,8,8,1622,11,42,10,398,0,15,0,8,3,1,0,0,2,1,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,1,3,0,0,0 40 | 0,1005,1,0,3156,64,4,14,11,0,1,0,2,1,0,4,1,1,3,0,3,1,0,0,4,0,1,0,4,1,0,0,0,5,1,2,1,0,0 41 | 0,20,0,2,30394,0,0,11,2,0,0,0,2,1,15,0,0,1,1,0,1,1,0,0,0,0,2,0,0,8,0,0,0,0,0,2,7,0,0 42 | 0,-1,0,0,1998,15,6,10,10,0,1,0,0,1,5,1,1,2,3,0,2,1,1,0,1,0,5,0,1,1,0,0,0,1,0,7,1,0,0 43 | 0,1871,1,1,6845,20,7,5,22,0,1,0,1,1,1,0,0,1,3,0,2,1,1,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0 44 | 0,-1,0,0,2881,163,22,19,246,0,5,0,0,1,0,0,0,0,2,0,1,1,0,0,0,0,1,0,0,1,0,0,3,0,0,1,0,8,0 45 | 0,-1,0,0,11047,0,0,24,0,0,0,0,0,1,5,1,1,1,1,0,1,1,0,0,1,0,3,0,1,1,0,0,0,1,0,1,1,0,0 46 | 0,37,21,15,1539,78,10,27,477,0,3,0,28,1,0,0,0,2,4,0,1,1,0,0,0,0,1,0,0,1,0,1,3,0,0,1,0,4,0 47 | 1,1080,58,11,53,12,1,26,22,1,1,0,12,0,5,1,1,2,2,0,1,1,0,0,1,0,4,0,1,1,0,0,0,1,0,1,1,0,0 48 | 3,2,1,6,492,94,48,20,1423,1,6,0,6,5,13,0,0,2,1,1,1,1,0,1,0,1,3,0,0,4,11,1,1,0,0,1,0,9,0 49 | 0,195,30,18,37,35,1,17,18,0,1,0,18,1,11,0,0,1,3,0,3,1,0,0,0,0,1,0,0,3,0,1,3,0,0,1,0,2,0 50 | 0,162,4,4,0,0,0,4,4,0,0,0,4,2,5,1,1,2,3,0,2,2,1,0,1,0,4,1,1,9,2,0,0,1,0,4,1,0,0 51 | 2,0,0,0,275,5,10,38,113,1,2,0,0,2,3,0,3,3,1,0,1,1,0,0,0,0,3,0,0,1,6,1,2,0,0,1,3,1,0 52 | 1,0,2,2,2,0,92,5,37,1,7,0,0,1,0,0,0,2,2,0,1,1,0,0,0,0,2,0,0,4,0,0,0,0,2,1,0,0,0 53 | 0,-1,0,0,3582,27,5,12,25,0,2,1,0,1,5,1,1,1,2,0,3,1,0,0,1,0,4,1,1,4,2,0,0,1,1,6,1,0,0 54 | 0,64,45,0,14758,1491,1,18,1164,0,1,0,17,1,20,4,1,4,1,0,1,1,0,0,4,0,2,0,4,1,0,0,0,5,1,1,1,0,0 55 | 1,1,71,13,28,13,1,12,13,1,1,0,13,7,3,0,3,1,3,0,1,1,0,0,0,0,2,0,0,3,6,1,3,0,0,1,3,1,4 56 | 3,1114,4,3,228,20,3,20,20,1,1,0,4,0,5,1,1,1,1,0,1,1,1,0,1,0,3,0,1,7,0,0,0,1,0,5,1,0,0 57 | 0,0,7,0,1573,87,76,0,283,0,10,0,4,0,8,4,1,1,2,0,1,1,0,0,4,0,1,0,4,1,0,0,0,5,0,1,1,0,0 58 | 0,1,1,0,0,0,0,1,0,0,0,0,0,2,1,0,0,2,1,0,1,2,1,0,0,0,1,0,0,9,0,0,0,0,0,4,0,0,0 59 | 0,105,1,1,194801,0,0,1,20,0,0,0,1,2,1,0,0,1,1,0,3,2,0,0,0,0,3,0,0,1,0,0,0,0,0,3,0,0,0 60 | 0,10,2,2,5705,4,0,2,4,0,0,0,2,1,0,0,0,1,0,0,2,1,1,0,0,0,1,0,0,4,0,0,3,0,0,1,0,0,0 61 | 0,1,1,2,29558,423,2,2,337,0,1,0,2,1,0,1,1,1,2,0,2,1,0,0,1,0,3,0,1,1,0,0,0,1,0,5,1,0,0 62 | 1,4,66,5,46,9,1,5,5,1,1,0,5,0,1,0,0,3,2,0,2,1,0,0,0,0,3,0,0,3,0,0,0,0,1,1,0,0,0 63 | 4,28,13,11,0,0,4,12,11,1,1,0,0,1,1,0,0,1,3,0,1,1,0,0,0,0,5,0,0,1,0,0,0,0,0,1,0,0,0 64 | 7,29,3,39,148,76,11,16,2175,1,4,0,76,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0 65 | 0,838,22,22,4517,216,9,28,210,0,5,0,22,3,0,0,0,3,0,0,1,1,0,0,0,0,3,0,0,1,0,0,0,0,0,1,0,0,0 66 | 0,0,19,3,6112,0,0,2,20,0,0,0,3,1,2,0,0,0,0,0,2,1,1,0,0,0,3,0,0,5,1,1,1,0,0,1,3,1,0 67 | 0,1,106,22,4423,121,27,29,621,0,7,0,52,1,13,0,0,1,1,1,2,1,0,1,0,1,3,0,0,8,11,1,1,0,1,1,4,1,1 68 | 0,-1,33,12,4864,250,2,1,244,0,1,0,13,1,0,0,0,1,1,0,5,1,0,0,0,0,7,0,0,3,0,1,1,0,0,1,0,7,0 69 | 0,176,2,7,19416,97,21,11,135,0,3,0,9,1,0,0,0,5,1,0,1,1,0,0,0,0,2,0,0,1,0,0,0,0,0,3,0,0,0 70 | 2,-1,0,0,453,21,4,29,65,1,3,0,0,4,5,1,1,1,3,0,4,1,0,0,1,0,4,1,1,1,2,0,0,1,1,6,1,0,0 71 | 0,0,11,0,4396,6,5,1,8,0,2,1,0,2,0,0,0,1,1,0,1,1,4,0,0,0,1,0,0,4,0,1,2,0,0,2,0,2,0 72 | 0,1,2,8,1530,36,3,13,92,0,2,0,8,2,10,0,0,1,1,0,7,1,0,0,0,0,2,0,0,2,0,1,1,0,0,1,0,2,0 73 | 0,1,8,8,13014,0,0,8,327,0,0,0,8,1,0,0,0,2,2,0,1,1,1,0,0,0,1,0,0,5,0,0,0,0,0,4,0,0,0 74 | 0,311,28,4,1632,386,11,47,731,0,3,0,33,1,0,0,0,1,2,0,2,1,1,0,0,0,2,0,0,1,0,0,0,0,1,2,0,0,0 75 | 0,0,1,2,728,19,114,7,98,0,22,0,6,1,0,0,0,6,1,0,1,1,0,0,0,0,1,0,0,1,0,1,3,0,0,1,0,10,0 76 | 0,-1,0,0,9509,36,14,11,76,0,4,0,0,5,0,0,0,1,3,0,1,1,0,0,0,0,3,0,0,4,0,1,2,0,0,2,1,1,0 77 | 0,26,5,5,4332,13,1,12,13,0,1,0,5,7,1,0,0,3,1,0,1,1,1,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0 78 | 24,21,0,7,24,9,389,16,84,1,17,0,7,1,15,0,0,2,4,0,1,1,0,2,0,2,1,0,0,4,0,0,0,0,0,2,7,0,0 79 | 0,-1,0,0,3098,6,7,0,0,0,1,0,0,1,3,0,0,1,0,0,1,1,1,0,0,0,2,0,0,1,5,1,1,0,0,0,0,1,0 80 | 0,-1,0,0,483,0,0,13,16,0,0,0,0,8,5,1,1,1,3,0,2,1,1,0,1,0,4,1,1,5,2,0,0,1,2,1,1,0,0 81 | 0,18,6,6,8755,295,2,37,222,0,1,0,6,1,0,0,0,1,3,0,1,1,0,0,0,0,1,0,0,2,0,0,0,0,0,4,0,0,0 82 | 0,-1,0,0,672,0,0,12,14,0,0,0,0,3,5,1,1,1,1,0,2,1,0,0,1,0,4,1,1,7,2,0,0,1,1,6,1,0,0 83 | 0,1,22,10,1658,0,0,29,45,0,0,0,10,1,0,0,0,2,1,0,1,1,1,0,0,0,2,0,0,5,0,0,3,0,0,0,0,4,0 84 | 1,32,5,15,17,16,2,13,35,1,2,0,15,1,0,0,0,0,1,0,1,1,1,0,0,0,2,0,0,1,0,0,0,0,0,2,0,0,0 85 | 26,9,26,18,0,14,70,9,167,1,8,1,0,1,13,0,0,1,2,1,2,1,0,1,0,1,1,0,0,4,11,1,3,0,1,1,0,9,0 86 | 0,14,92,5,915,247,22,45,416,0,9,0,5,1,21,0,0,2,0,0,4,1,0,0,0,0,1,0,0,4,0,0,1,0,0,1,0,4,0 87 | 0,13,6,4,99,13,386,13,326,0,56,3,8,2,11,0,0,2,1,0,1,1,0,0,0,0,1,0,0,6,0,1,2,0,0,1,0,2,0 88 | 2,6,4,0,892,7,2,7,7,1,1,0,0,0,0,0,0,1,2,0,2,1,0,0,0,0,2,0,0,2,0,1,3,0,0,3,0,7,0 89 | 1,102,0,30,214,30,5,26,237,1,4,0,30,1,5,1,1,1,3,0,1,1,0,0,1,0,4,1,1,1,2,0,0,1,0,1,1,0,0 90 | 0,19,16,12,1519,45,2,13,20,0,1,1,12,1,11,0,0,1,2,0,1,1,0,0,0,0,1,0,0,4,0,1,3,0,1,1,0,2,0 91 | 0,21,39,2,3261,17,2,11,17,0,1,2,5,1,16,0,0,2,2,0,1,1,0,0,0,0,2,0,0,8,13,1,3,0,0,2,4,6,1 92 | 0,6,0,4,48,65,557,42,343,0,25,1,4,1,17,2,2,1,1,1,1,1,0,1,2,1,1,0,2,6,0,0,0,2,0,1,2,0,0 93 | 0,68,0,0,7824,0,0,5,0,0,0,0,2,1,0,0,0,1,1,0,2,1,0,0,0,0,2,0,0,1,0,0,0,0,0,3,0,0,0 94 | 0,36,16,8,10992,117,1,4,69,0,1,0,8,1,11,0,0,1,0,0,4,1,0,5,0,6,1,0,0,3,0,1,3,0,0,1,0,2,0 95 | 1,3,16,2,69,34,3,33,41,1,3,0,11,1,10,0,0,3,6,0,2,1,0,5,0,6,2,0,0,4,0,1,3,0,0,1,0,2,0 96 | 0,10,0,1,22168,0,0,11,0,0,0,0,1,2,4,2,2,1,1,0,3,1,0,5,2,6,1,4,2,3,4,0,0,2,0,2,2,0,0 97 | 0,1,2,0,245128,0,0,0,2,0,0,0,0,1,1,0,0,1,5,0,1,2,0,0,0,0,1,0,0,3,0,0,0,0,0,1,0,0,0 98 | 7,1,4,0,8,0,8,6,6,1,2,0,0,2,5,1,1,1,1,0,2,1,1,0,1,0,3,0,1,1,0,0,0,1,0,4,1,0,0 99 | 4,64,7,6,162,6,17,6,156,2,8,0,6,3,0,0,0,4,0,0,2,1,0,0,0,0,3,0,0,1,0,0,3,0,0,1,0,7,0 100 | 0,706,0,6,4429,279,1,21,243,0,1,1,11,2,8,2,2,1,1,0,1,1,1,0,2,0,1,0,2,4,0,0,0,2,0,2,2,0,0 101 | -------------------------------------------------------------------------------- /data/train.txt: -------------------------------------------------------------------------------- 1 | 1,1,5,0,1382,4,15,2,181,1,2,0,2,2,3,0,0,1,1,0,3,1,0,0,0,0,3,0,0,1,5,1,3,0,0,2,0,1,0,0 2 | 2,0,44,1,102,8,2,2,4,1,1,0,4,2,14,0,0,1,3,0,1,1,0,0,0,0,1,0,0,2,0,1,2,0,0,2,0,1,0,0 3 | 2,0,1,14,767,89,4,2,245,1,3,3,45,0,8,4,1,1,1,0,1,1,1,0,4,0,2,0,4,6,0,0,0,5,1,2,1,0,0,0 4 | 0,893,0,0,4392,0,0,0,0,0,0,0,0,2,15,0,0,1,3,0,1,1,0,5,0,6,2,0,0,7,0,0,0,0,0,2,7,0,0,0 5 | 3,-1,0,0,2,0,3,0,0,1,1,0,0,4,0,0,4,1,4,0,1,1,0,0,0,0,3,0,0,7,0,0,0,0,0,1,5,0,0,0 6 | 0,-1,0,0,12824,0,0,0,6,0,0,0,0,1,0,0,0,3,5,0,1,1,1,0,0,0,2,0,0,5,0,0,0,0,0,4,0,0,0,0 7 | 0,1,2,0,3168,0,0,1,2,0,0,0,0,0,0,0,0,3,3,0,1,1,1,0,0,0,2,0,0,5,0,0,0,0,0,0,0,0,0,0 8 | 1,4,2,0,0,0,1,0,0,1,1,0,0,2,15,0,0,0,4,0,3,1,0,0,0,2,2,0,0,1,0,0,0,0,0,1,7,0,0,1 9 | 0,44,4,8,19010,249,28,31,141,0,1,0,8,1,4,1,1,1,1,0,1,1,0,0,1,0,1,0,1,1,0,0,0,1,0,1,1,0,0,0 10 | 0,35,0,1,33737,21,1,2,3,0,1,0,1,1,0,0,0,1,0,0,1,1,0,5,0,6,2,0,0,3,0,0,0,0,0,1,0,0,0,0 11 | 0,2,632,0,56770,0,0,5,65,0,0,0,2,1,0,0,0,1,1,0,1,2,1,0,0,0,1,0,0,5,0,1,2,0,0,2,0,3,0,0 12 | 0,6,6,6,421,109,1,7,107,0,1,0,6,1,0,0,0,2,0,0,1,1,1,0,0,0,2,0,0,3,0,0,0,0,0,1,0,0,0,0 13 | 0,-1,0,0,1465,0,17,0,4,0,4,0,0,0,1,0,0,1,3,0,3,1,0,0,0,0,2,0,0,1,0,0,0,0,0,1,5,0,0,1 14 | 0,2,11,5,10262,34,2,4,5,0,1,0,5,5,6,0,0,1,0,0,0,1,0,3,0,4,3,0,0,2,3,0,1,0,0,1,0,6,0,1 15 | 0,51,84,4,3633,26,1,4,8,0,1,0,4,3,3,0,0,5,4,0,1,1,0,0,0,0,3,0,0,4,0,1,3,0,0,8,0,1,0,0 16 | 0,2,1,18,20255,0,0,1,1306,0,0,0,20,1,0,0,0,2,1,0,8,1,1,0,0,0,0,0,0,5,0,0,0,0,0,2,0,0,0,0 17 | 1,987,0,2,105,2,1,2,2,1,1,0,2,2,10,0,0,3,1,0,1,1,1,0,0,0,2,0,0,3,0,1,3,0,0,1,0,2,0,1 18 | 0,1,0,0,16597,557,3,5,123,0,1,0,1,4,0,3,2,2,2,0,1,1,0,0,3,0,1,0,3,1,0,0,0,3,1,1,2,0,0,0 19 | 0,24,4,2,2056,12,6,10,83,0,1,0,2,1,14,0,0,4,2,0,4,1,0,0,0,0,3,0,0,1,0,1,3,0,0,1,0,3,0,0 20 | 7,102,0,3,780,15,7,15,15,1,1,0,3,0,0,0,0,2,4,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 21 | 0,47,0,0,6399,38,19,10,143,0,10,0,6,0,1,0,0,1,1,0,2,1,1,0,0,0,3,0,0,1,0,0,0,0,0,1,0,0,0,1 22 | 0,1,80,0,1848,287,1,4,46,0,1,0,4,1,2,0,0,1,1,0,1,1,1,0,0,0,2,2,0,3,1,0,1,0,0,1,0,1,0,0 23 | 0,0,14,6,7132,171,2,2,6,0,1,0,6,1,1,0,0,1,2,0,2,1,0,0,0,0,1,0,0,2,0,0,0,0,0,2,3,0,0,0 24 | 0,9,9,17,11774,0,0,23,128,0,0,0,17,1,9,0,0,1,1,0,1,1,0,0,0,0,2,0,0,7,0,0,0,0,0,7,0,0,0,0 25 | 0,1,2,0,6190,84,1,27,71,0,1,0,0,3,0,1,1,1,1,0,1,1,0,0,1,0,2,0,1,3,0,0,0,1,2,2,1,0,0,0 26 | 0,4,16,0,5925,2,2,0,0,0,1,0,0,3,2,0,0,1,0,0,1,1,0,0,0,0,5,0,0,2,1,0,1,0,0,1,4,1,1,0 27 | 0,1,20,16,1548,93,42,32,912,0,15,1,16,4,13,0,0,1,1,1,3,1,0,1,0,1,2,0,0,8,11,1,1,0,0,1,0,9,0,1 28 | 0,20,2,2,7188,170,2,3,24,0,2,0,2,2,1,0,0,2,1,0,1,1,0,0,0,0,2,0,0,4,0,0,0,0,0,2,0,0,0,1 29 | 0,78,2,15,4311,85,4,18,230,0,3,0,15,2,0,0,0,2,5,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,1 30 | 3,0,4,13,224,28,3,35,27,1,1,0,13,1,0,0,0,1,4,0,1,1,0,5,0,6,5,0,0,1,0,0,0,0,0,2,0,0,0,1 31 | 0,277,0,3,7318,24,6,3,98,0,1,0,3,4,0,0,0,2,3,0,1,1,1,0,0,0,2,0,0,1,0,0,0,0,0,2,0,0,0,1 32 | 0,-1,0,0,4956,0,0,37,97,0,0,0,0,5,5,1,1,1,3,0,1,1,1,0,1,0,4,1,1,5,2,0,0,1,0,6,1,0,0,0 33 | 1,0,1,0,1427,3,16,11,50,0,2,1,0,1,17,0,0,2,1,1,1,1,0,1,0,1,2,0,0,4,0,0,0,0,0,1,0,0,0,0 34 | 4,0,55,8,859,13,4,12,13,1,1,0,8,1,16,0,0,1,0,0,1,1,1,0,0,0,6,0,0,5,13,1,1,0,0,1,0,1,0,0 35 | 1,259,1,1,5,1,6,1,1,1,3,0,1,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,1 36 | 0,127,1,3,1683,19,26,17,475,0,9,0,3,1,21,0,0,2,2,0,1,1,0,0,0,0,2,0,0,6,0,0,1,0,1,7,4,4,1,1 37 | 0,1,0,0,23255,0,0,1,73,0,0,0,0,0,4,2,2,1,1,0,3,1,1,0,2,0,1,4,2,5,4,0,0,2,0,1,2,0,0,0 38 | 6,-1,0,0,915,40,26,33,72,1,3,0,0,0,7,0,0,1,2,0,1,1,0,0,0,0,1,0,0,1,0,1,1,0,2,5,0,2,0,0 39 | 0,0,3,12,7308,97,2,21,90,0,1,0,12,2,0,0,0,2,1,0,1,1,0,0,0,0,3,0,0,1,0,0,0,0,0,1,0,0,0,0 40 | 8,0,15,20,115,24,8,23,24,2,2,0,20,3,0,0,0,1,0,0,1,1,0,0,0,0,3,0,0,6,0,1,3,0,0,1,0,4,0,0 41 | 0,38,2,4,3119,149,64,48,139,0,6,6,4,1,17,1,1,2,2,1,3,1,0,1,1,1,2,0,1,6,0,0,0,1,0,1,1,0,0,0 42 | 88,319,0,4,5,4,89,40,88,3,4,12,4,1,9,0,0,1,2,0,1,1,0,0,0,0,1,0,0,6,0,0,0,0,0,1,0,0,0,1 43 | 0,1,18,5,1683,80,38,5,95,0,5,0,5,1,2,5,3,1,0,0,1,1,0,0,5,0,3,0,5,4,12,3,1,4,0,1,3,1,3,0 44 | 0,27,0,0,112878,2106,0,2,95,0,0,0,0,3,1,0,0,1,1,0,2,2,1,0,0,0,2,0,0,3,0,0,0,0,0,2,0,0,0,0 45 | 0,-1,0,0,4894,20,1,7,20,0,1,0,0,1,5,1,1,3,1,0,1,1,0,0,1,0,4,1,1,2,2,0,0,1,2,2,1,0,0,0 46 | 0,32,0,1,9375,0,0,37,18,0,0,0,1,1,4,6,2,1,1,0,2,1,1,0,6,0,1,4,6,4,4,0,0,6,0,1,2,0,0,0 47 | 0,6,6,15,20213,507,7,42,360,0,2,0,40,1,0,1,1,2,1,0,6,1,1,0,1,0,3,0,1,1,0,0,0,1,0,1,1,0,0,0 48 | 31,17,2,11,290,23,31,23,65,2,2,0,11,1,7,0,0,1,2,0,1,1,0,0,0,0,2,0,0,1,0,0,1,0,0,3,0,2,0,0 49 | 1,2382,13,4,40,4,69,3,609,1,11,0,4,1,1,0,0,1,3,0,3,1,0,0,0,0,1,0,0,1,0,0,0,0,0,7,0,0,0,0 50 | 0,190,0,0,1624,6,29,6,74,0,9,0,0,2,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0 51 | 0,19,8,9,1506,31,3,7,34,0,1,0,9,1,21,0,0,6,1,0,6,1,1,0,0,0,1,0,0,6,0,0,1,0,0,5,0,4,0,0 52 | 1,30,0,3,116,31,1,3,3,1,1,0,3,3,1,0,0,1,2,0,1,1,1,0,0,0,2,0,0,3,0,0,0,0,1,2,0,0,0,1 53 | 0,6,2,3,2779,0,0,3,13,0,0,0,3,0,0,0,0,4,0,0,1,1,1,0,0,0,3,0,0,6,0,1,2,0,0,6,1,0,0,0 54 | 0,2,22,3,4687,242,6,6,183,0,1,4,3,1,6,0,0,1,4,0,4,1,3,0,0,0,1,0,0,6,3,0,3,0,0,2,0,1,0,0 55 | 0,55,16,7,1696,72,2,7,95,0,2,0,7,6,0,0,0,1,1,0,2,1,0,0,0,0,3,0,0,1,0,0,1,0,0,3,0,10,0,0 56 | 6,0,28,0,31,0,6,0,0,1,1,0,0,4,6,0,0,1,1,0,0,1,0,0,0,0,2,0,0,1,3,0,2,0,0,7,3,1,0,0 57 | 0,19,9,3,14414,1353,3,1,362,0,1,0,3,5,2,0,0,1,1,0,0,1,3,0,0,0,2,2,0,6,1,1,1,0,0,2,4,0,1,0 58 | 0,18,12,8,8965,44,2,12,57,0,2,0,8,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,2,0,0,3,0,0,1,0,0,0,0 59 | 0,1,2,0,177674,0,0,3,2,0,0,0,1,7,11,0,0,1,1,0,0,2,0,0,0,3,2,0,0,1,0,1,3,0,0,2,0,2,0,0 60 | 0,0,20,0,4412,855,0,4,522,0,0,0,5,1,12,0,0,1,1,0,1,1,0,0,0,0,2,0,0,3,10,0,3,0,0,7,0,6,0,0 61 | 0,56,2,0,0,0,0,0,1,0,0,0,0,3,20,4,1,1,2,0,2,2,1,0,4,0,1,0,4,9,0,0,0,5,0,4,1,0,0,0 62 | 0,76,5,0,46200,0,0,7,0,0,0,0,0,2,6,0,0,1,1,0,1,2,0,0,0,0,2,0,0,4,3,1,2,0,0,7,0,3,0,0 63 | 39,8,42,32,27,33,39,24,32,1,1,0,32,1,0,0,0,2,1,0,0,1,1,0,0,0,3,0,0,1,0,1,2,0,0,1,0,3,0,0 64 | 0,0,55,5,14477,0,0,5,1,0,0,0,5,1,2,0,0,1,1,0,1,2,0,4,0,5,5,0,0,1,1,2,2,0,0,2,4,1,0,1 65 | 1,1,5,8,7,8,1,8,8,1,1,0,8,1,0,0,0,1,4,0,0,1,2,0,0,0,2,0,0,3,0,0,0,0,0,2,0,0,0,0 66 | 0,1,7,3,10087,67,6,3,57,0,3,0,3,1,0,0,0,1,4,0,0,1,0,0,0,0,2,0,0,1,0,0,2,0,0,2,3,1,0,1 67 | 7,1,40,0,1418,23,147,0,7,0,4,0,0,2,3,0,3,1,1,0,0,1,1,0,0,0,1,0,0,1,6,1,2,0,0,1,3,1,0,0 68 | 0,0,10,2,3545,0,0,2,3,0,0,0,2,5,16,0,0,1,4,0,2,1,1,0,0,0,2,0,0,5,13,1,3,0,0,1,0,1,0,0 69 | 5,51,0,5,457,5,5,7,11,1,1,1,5,8,0,0,5,1,1,0,1,1,0,0,0,0,2,0,0,4,0,0,1,0,1,7,6,3,2,0 70 | 0,0,15,2,20112,305,1,43,228,0,1,0,30,1,8,4,1,1,1,0,1,1,0,0,4,0,2,0,4,3,0,0,0,5,0,0,1,0,0,0 71 | 0,1,4,3,1689,184,12,46,53,0,1,0,3,4,11,0,0,4,3,0,2,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,2,0,0 72 | 4,0,89,4,486,5,4,7,4,1,1,0,4,1,21,0,0,3,1,0,7,1,0,0,0,0,3,0,0,3,0,0,1,0,0,5,0,1,0,0 73 | 0,39,2,1,3343,1,17,2,1,0,1,0,1,1,0,0,0,6,3,0,2,1,0,0,0,0,1,0,0,1,0,0,0,0,1,2,0,0,0,1 74 | 0,2,1,2,8036,164,18,13,367,0,2,0,2,2,6,0,0,4,4,0,0,1,0,0,0,0,1,0,0,4,3,0,2,0,0,1,0,3,0,0 75 | 0,-1,0,0,71140,142,0,7,63,0,0,0,0,4,5,1,1,1,2,0,1,2,0,0,1,0,4,1,1,2,2,0,0,1,0,2,1,0,0,0 76 | 0,0,11,3,16184,125,2,3,103,0,2,0,3,1,14,0,0,1,0,0,1,1,0,0,0,0,1,0,0,2,0,1,2,0,0,1,0,3,0,1 77 | 0,140,2,2,0,0,0,2,2,0,0,0,2,6,1,0,0,1,1,0,8,2,1,0,0,0,2,0,0,9,0,0,0,0,1,1,0,0,0,0 78 | 2,0,0,7,443,37,7,34,282,1,4,7,7,0,1,0,0,3,2,0,1,1,0,0,0,0,1,0,0,6,0,0,0,0,0,1,0,0,0,0 79 | 2,1,60,75,61,121,52,39,248,1,8,1,77,1,13,0,0,2,1,1,1,1,0,1,0,1,3,0,0,6,11,0,1,0,0,5,4,9,1,1 80 | 1,34,2,42,328,44,15,49,58,1,9,0,42,1,15,0,0,1,0,0,2,1,0,0,0,0,1,0,0,1,0,0,0,0,0,1,7,0,0,0 81 | 0,0,0,0,14919,0,0,0,0,0,0,0,0,1,5,1,1,4,3,0,8,1,1,0,1,0,4,1,1,7,2,0,0,1,0,2,1,0,0,0 82 | 0,1,0,1,20216,66,1,1,1,0,1,0,1,2,0,0,4,2,2,0,1,1,0,0,0,0,4,0,0,3,0,0,0,0,0,6,5,0,0,0 83 | 13,13,80,32,378,115,15,37,57,1,2,0,48,3,7,0,0,1,1,0,1,1,0,0,0,0,4,0,0,1,0,0,2,0,1,1,0,2,0,0 84 | 0,0,91,4,293,220,35,4,66,0,5,1,4,1,12,0,0,2,1,0,4,1,0,0,0,0,3,0,0,8,10,1,1,0,0,3,0,6,0,0 85 | 0,-1,0,0,5654,0,0,4,15,0,0,0,0,1,2,0,0,3,2,0,3,1,0,0,0,0,2,2,0,4,1,0,1,0,0,1,0,9,0,0 86 | 0,53,0,10,6550,98,34,11,349,0,9,0,10,1,11,0,0,1,5,0,1,1,1,0,0,0,2,0,0,1,0,1,3,0,0,1,0,2,0,0 87 | 6,-1,10,6,0,0,6,9,9,1,1,0,0,1,2,0,0,1,1,0,2,1,0,4,0,5,2,2,0,1,1,0,1,0,0,2,4,1,1,1 88 | 0,0,1,3,2901,0,0,3,9,0,0,0,3,1,0,0,0,1,0,0,3,1,0,0,0,0,2,0,0,7,0,0,0,0,0,1,0,0,0,1 89 | 1,23,1,14,56,15,10,35,161,1,2,0,15,5,1,0,0,1,0,0,1,1,0,0,0,0,2,0,0,1,0,0,0,0,0,1,0,0,0,0 90 | 0,1,75,22,5912,181,2,22,68,0,1,0,22,6,2,5,3,2,0,0,2,1,0,0,5,0,4,0,5,2,12,3,2,4,0,1,3,1,3,0 91 | 0,127,2,23,15837,23,4,24,23,0,1,0,23,2,0,0,0,1,3,0,1,1,0,0,0,0,2,0,0,1,0,0,2,0,0,7,0,2,0,1 92 | 0,-1,0,0,23204,0,0,32,38,0,0,0,0,2,5,1,1,1,3,0,1,1,0,0,1,0,3,0,1,6,0,0,0,1,0,3,1,0,0,0 93 | 0,-1,0,0,681386,0,0,11,0,0,0,0,0,1,5,1,1,3,1,0,1,2,0,0,1,0,4,1,1,1,2,0,0,1,2,2,1,0,0,0 94 | 0,1,64,11,1494,86,15,13,231,0,4,0,11,1,0,0,0,1,1,0,1,1,0,0,0,0,2,0,0,1,0,1,2,0,0,1,0,0,0,0 95 | 0,1,1,0,2903,2,3,0,2,0,1,0,0,1,3,5,3,3,2,0,1,1,1,0,5,0,3,0,5,2,6,1,2,4,0,2,3,1,4,0 96 | 0,105,1,1,171519,0,0,1,13,0,0,0,1,1,1,0,0,2,1,0,2,2,0,0,0,0,3,0,0,2,0,0,0,0,0,3,0,0,0,0 97 | 0,35,90,2,41230,352,0,5,44,0,0,0,5,1,0,0,0,1,1,0,3,1,0,0,0,0,1,0,0,1,0,0,3,0,0,7,4,3,1,0 98 | 0,0,78,1,15835,220,1,1,1,0,1,0,1,1,2,0,0,1,3,0,1,1,0,0,0,0,2,2,0,3,1,0,3,0,0,2,3,1,0,0 99 | 0,1715,0,1,7545,19,15,1,87,0,7,0,1,3,0,0,0,1,1,0,3,1,2,0,0,0,0,0,0,4,0,0,0,0,0,2,0,0,0,0 100 | 0,48,3,2,14482,377,8,2,283,0,2,0,2,1,2,0,0,3,0,0,1,1,0,0,0,0,1,3,0,1,1,1,3,0,0,1,0,1,0,0 101 | 0,-1,0,0,5760,42,218,0,287,0,15,0,0,3,0,0,0,1,1,0,1,1,0,0,0,0,3,0,0,6,0,0,0,0,1,3,0,0,0,1 102 | 0,1759,5,0,28244,20,2,6,10,0,0,0,7,9,3,0,3,1,0,0,1,1,1,0,0,0,4,0,0,2,6,1,2,0,0,1,3,1,4,0 103 | 0,61,0,12,4243,189,5,7,141,0,2,0,19,2,0,0,0,1,3,0,1,1,0,0,0,0,2,0,0,1,0,1,2,0,0,7,0,3,0,1 104 | 0,30,2,25,2204,182,62,33,1127,0,6,0,25,1,0,0,0,2,1,0,1,1,0,0,0,0,2,0,0,4,0,1,2,0,0,3,6,5,0,1 105 | 0,0,6,1,5876,82,2,1,54,0,1,0,1,3,0,0,0,1,1,0,1,1,1,0,0,0,5,0,0,8,0,0,1,0,1,2,0,5,0,0 106 | 0,22,3,14,2966,290,62,19,254,0,2,0,55,1,0,0,0,1,1,0,1,1,0,0,0,0,2,0,0,1,0,0,0,0,0,3,0,0,0,0 107 | 0,22,12,14,15308,497,1,44,258,0,1,0,16,2,15,0,0,0,2,0,6,1,1,0,0,0,1,0,0,3,0,0,0,0,0,1,7,0,0,0 108 | 2,-1,0,0,18,0,2,0,0,1,1,0,0,1,0,0,0,1,0,0,8,1,1,0,0,0,1,0,0,2,0,0,3,0,0,1,0,1,0,1 109 | 0,5,30,4,0,0,0,5,4,0,0,0,5,2,11,0,0,1,1,0,2,2,1,0,0,0,1,0,0,9,0,1,2,0,0,4,0,2,0,0 110 | 6,1,0,3,46,10,17,38,132,1,4,0,3,3,0,0,0,3,3,0,1,1,0,0,0,0,2,0,0,1,0,0,0,0,0,1,0,0,0,0 111 | 2,0,3,13,5,40,8,14,41,1,2,0,13,1,0,0,4,2,1,0,1,1,0,0,0,0,1,0,0,2,0,0,0,0,1,1,5,0,0,0 112 | 0,14,0,0,31324,0,0,17,0,0,0,0,16,1,0,1,1,1,1,0,1,1,0,0,1,0,2,0,1,1,0,0,0,1,0,3,1,0,0,0 113 | 0,2,5,0,2982,88,9,0,50,0,1,0,0,3,10,0,0,1,0,0,1,1,0,0,0,0,2,0,0,1,0,1,3,0,0,1,0,2,0,0 114 | 2,207,0,3,66,4,5,43,49,1,3,0,4,1,0,0,0,2,3,0,1,1,1,0,0,0,1,0,0,2,0,0,0,0,0,1,0,0,0,0 115 | 0,7,16,28,19049,2130,5,33,706,0,3,0,33,3,9,0,0,1,1,0,7,1,0,0,0,0,2,0,0,1,0,0,0,0,0,3,0,0,0,1 116 | 0,17,0,0,10363,2794,2,0,41,0,1,0,0,8,1,0,0,4,1,0,1,1,1,0,0,0,1,0,0,2,0,0,0,0,0,1,0,0,0,1 117 | 0,6,73,1,10301,193,1,25,59,0,1,0,15,1,0,0,5,1,1,0,1,1,0,0,0,0,2,0,0,3,0,0,3,0,0,3,6,7,2,0 118 | 0,-1,0,0,446,30,2,27,28,0,1,0,0,1,10,0,0,1,5,0,1,1,0,0,0,0,2,0,0,2,0,1,3,0,0,1,0,2,0,1 119 | 0,1,5,0,32339,0,0,4,0,0,0,0,0,1,1,0,0,4,1,0,1,1,0,0,0,0,2,0,0,2,0,0,0,0,0,2,0,0,0,0 120 | 1,3,2,0,521,7,4,7,7,1,2,0,0,3,12,0,0,2,1,0,1,1,0,0,0,0,7,0,0,1,10,0,1,0,0,7,0,6,0,0 121 | 0,16,44,21,1844,77,5,21,70,0,1,0,21,3,7,0,0,2,1,0,2,1,0,0,0,0,2,0,0,1,9,0,3,0,0,2,0,2,0,0 122 | 1,0,31,9,226,22,32,13,177,1,7,0,11,3,13,0,0,1,5,1,0,1,0,1,0,1,3,0,0,4,11,0,1,0,0,1,0,1,0,1 123 | 0,37,23,9,1635,84,2,17,109,0,2,0,50,1,0,0,0,3,2,0,2,1,0,0,0,0,4,0,0,2,0,0,1,0,0,1,0,2,0,0 124 | 0,156,14,0,0,408,11,10,1288,0,6,0,0,0,0,0,0,1,2,0,1,1,0,0,0,0,1,0,0,1,0,1,2,0,0,1,0,10,0,0 125 | 0,-1,0,0,2282,41,30,15,157,0,3,4,0,1,7,0,0,1,3,0,2,1,1,0,0,0,1,0,0,6,9,0,1,0,1,5,0,2,0,0 126 | 0,68,0,0,0,0,0,0,0,0,0,0,0,9,10,0,0,3,1,0,2,2,1,0,0,3,2,0,0,9,0,1,2,0,0,6,0,2,0,0 127 | 0,11,35,10,1998,246,32,27,418,0,2,0,11,1,0,0,0,1,2,0,1,1,0,0,0,0,2,0,0,8,0,1,3,0,0,7,0,2,0,0 128 | 0,0,0,0,3129,28,8,0,67,0,5,0,0,2,0,0,0,3,1,0,1,1,0,0,0,0,2,0,0,1,0,0,3,0,1,1,0,5,0,0 129 | 0,2903,1,0,1912,83,5,34,190,0,4,0,1,7,5,1,1,1,1,0,1,1,0,0,1,0,5,0,1,1,0,0,0,1,0,1,1,0,0,0 130 | 5,-1,0,0,1388,0,11,1,7,0,3,0,0,5,7,0,0,1,5,0,1,1,0,0,0,0,1,0,0,1,9,0,1,0,0,1,0,2,0,1 131 | 3,2,1,0,95,0,74,20,118,2,17,0,0,0,1,0,0,3,1,0,1,1,0,0,0,0,2,0,0,1,0,0,0,0,2,1,0,0,0,0 132 | 2,0,9,5,44,5,2,4,5,2,2,0,5,3,0,0,0,4,1,0,2,1,0,0,0,0,2,0,0,2,0,1,3,0,0,1,0,7,0,0 133 | 0,2537,1,0,6033,10,21,0,10,0,2,1,0,1,13,0,0,1,1,2,1,1,0,1,0,1,1,0,0,7,11,2,1,0,0,1,0,2,0,0 134 | 0,-1,4,0,11492,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,1,1,1,0,0,0,1,0,0,7,0,1,1,0,0,1,0,1,0,0 135 | 0,1,5,5,349,0,0,5,5,0,0,0,5,1,0,0,0,2,2,0,1,1,1,0,0,0,3,0,0,5,0,0,0,0,0,4,0,0,0,0 136 | 0,0,17,3,19811,0,0,3,54,0,0,0,3,1,14,0,0,1,2,0,1,1,0,0,0,0,1,0,0,7,0,1,2,0,0,1,0,3,0,0 137 | 0,1261,10,4,0,0,0,5,10,0,0,0,5,1,1,0,0,0,1,0,1,2,1,0,0,0,1,0,0,9,0,0,0,0,0,4,0,0,0,0 138 | 0,-1,5,0,34807,82,0,0,60,0,0,0,0,9,6,0,0,2,5,0,2,1,0,0,0,0,2,0,0,1,3,0,1,0,0,1,0,8,0,0 139 | 0,0,113,13,1853,64,1,45,52,0,1,0,13,2,3,0,3,1,1,0,1,1,3,0,0,0,3,0,0,3,6,1,2,0,1,2,3,1,4,0 140 | 0,7,1,0,9128,0,0,0,7,0,0,0,0,8,1,0,0,1,2,0,1,1,1,0,0,0,2,0,0,5,0,0,0,0,0,4,3,0,0,0 141 | 7,31,24,6,7,7,7,4,6,1,1,0,6,1,2,5,3,1,1,0,3,1,0,0,5,0,4,0,5,2,12,3,2,4,0,1,3,1,3,1 142 | 5,59,1,1,31,1,5,1,10,1,1,0,1,2,0,0,0,5,3,0,1,1,0,0,0,0,2,0,0,1,0,0,3,0,0,7,0,0,0,1 143 | 0,54,0,2,96563,0,0,11,2,0,0,0,2,2,20,4,1,1,2,0,4,2,0,0,4,0,1,0,4,3,0,0,0,5,2,1,1,0,0,0 144 | 20,2568,0,1,7,13,31,30,35,2,5,0,0,1,0,0,0,1,1,0,6,1,0,0,0,0,3,0,0,1,0,0,0,0,0,3,0,0,0,0 145 | 1,0,1,2,169,2,9,11,312,1,4,0,2,1,0,0,0,1,2,0,1,1,4,0,0,0,6,0,0,6,0,0,0,0,0,1,0,0,0,0 146 | 0,5,2,3,10892,15,4,4,32,0,2,0,3,2,2,0,0,0,4,0,2,1,0,0,0,0,3,0,0,4,1,1,3,0,0,2,0,1,0,0 147 | 8,27,7,5,18,6,8,7,8,1,1,0,4,1,2,0,0,1,1,0,1,1,1,0,0,0,3,0,0,1,1,0,1,0,2,1,4,1,1,0 148 | 0,1,14,2,120,733,0,12,606,0,0,98,2,3,0,0,0,0,3,0,4,1,1,0,0,0,3,0,0,6,0,1,3,0,0,6,0,5,0,0 149 | 0,-1,0,0,4253,2,6,1,2,0,2,0,0,0,1,0,0,1,0,0,1,1,0,3,0,4,2,0,0,1,0,0,0,0,0,1,0,0,0,1 150 | 1,6,2,6,27,5,1,8,182,1,1,0,5,2,0,0,0,0,1,0,3,1,0,0,0,0,2,0,0,1,0,0,0,0,0,1,0,0,0,1 151 | 1,1,1,2,1363,8,7,13,62,0,3,0,3,0,11,0,0,2,2,0,2,1,0,0,0,0,2,0,0,1,0,1,1,0,0,1,0,2,0,0 152 | 0,179,4,4,17232,0,0,18,7,0,0,0,4,1,0,0,0,1,3,0,2,1,0,0,0,0,1,0,0,1,0,0,0,0,0,7,5,0,0,0 153 | 3,-1,0,0,79,0,3,0,0,1,1,0,0,1,2,0,0,1,0,0,3,1,0,0,0,0,6,0,0,2,1,0,2,0,0,1,3,1,0,0 154 | 0,-1,0,0,7475,29,3,0,30,0,2,0,0,1,0,0,0,1,3,0,0,1,1,0,0,0,1,0,0,2,0,0,0,0,0,2,3,0,0,0 155 | 0,-1,21,1,87,0,0,22,714,0,0,0,1,2,6,0,0,1,1,0,1,1,1,0,0,0,2,0,0,5,3,0,1,0,1,4,0,6,0,0 156 | 1,328,0,3,2,0,5,39,98,1,4,0,0,1,5,1,1,1,1,0,1,1,0,0,1,0,4,1,1,1,2,0,0,1,2,6,1,0,0,1 157 | 0,1392,12,9,1775,0,0,16,31,0,0,0,16,2,5,1,1,5,2,0,2,1,1,0,1,0,4,1,1,5,2,0,0,1,0,2,1,0,0,0 158 | 6,1249,4,0,43,3,22,1,23,1,3,0,0,1,0,0,0,1,1,0,1,1,0,0,0,0,1,0,0,1,0,1,1,0,2,2,3,1,0,1 159 | 0,8,8,8,33500,0,0,9,0,0,0,0,9,1,0,0,0,1,1,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,2,0,0,0,0 160 | 4,1,1,2,27,2,4,2,2,1,1,0,2,1,0,0,0,1,1,0,0,1,0,0,0,0,2,0,0,2,0,0,0,0,0,2,0,0,0,1 161 | 3,26,1,1,1431,1,11,1,1,0,1,0,1,2,0,0,0,1,0,0,1,1,0,5,0,6,1,0,0,1,0,0,0,0,0,1,0,0,0,0 162 | 0,1,2,23,7207,31,1,5,27,0,1,0,23,1,2,5,3,4,4,0,1,1,0,0,5,0,3,0,5,1,12,3,1,4,0,2,3,1,3,0 163 | 0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1,2,1,0,1,2,1,0,1,3,2,0,1,9,0,0,0,1,0,6,1,0,0,0 164 | 3,125,10,10,2,5,14,6,12,1,3,0,2,1,2,0,0,1,4,0,1,1,0,0,0,0,3,0,0,1,1,0,3,0,0,5,0,1,0,1 165 | 1,46,182,22,940,0,0,49,21,1,0,0,45,1,11,0,0,4,2,0,1,1,0,2,0,2,2,0,0,1,0,1,2,0,0,1,0,2,0,0 166 | 2,-1,0,0,501,0,2,0,0,1,1,0,0,2,5,1,1,1,3,0,1,1,4,0,1,0,4,1,1,2,2,0,0,1,0,2,1,0,0,0 167 | 2,0,11,8,4,0,41,44,382,2,12,0,0,1,3,0,3,1,0,0,1,1,0,0,0,0,1,0,0,8,6,1,2,0,0,5,3,1,0,1 168 | 2,7,157,18,67,25,11,33,137,1,5,0,25,2,1,0,0,2,1,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0 169 | 0,355,0,0,1504,13,2,13,235,0,1,0,0,1,5,1,1,1,1,0,1,1,0,4,1,5,4,1,1,2,2,0,0,1,1,6,1,0,0,0 170 | 0,0,1,18,1550,109,9,48,298,0,3,0,34,1,0,0,0,1,1,0,2,1,0,0,0,0,2,0,0,1,0,1,2,0,0,1,0,7,0,0 171 | 3,-1,2,1,79,1,3,1,1,1,1,0,1,0,3,0,0,1,0,0,1,1,0,0,0,0,2,0,0,2,5,1,3,0,0,1,3,1,0,0 172 | 0,-1,13,5,473,0,0,25,25,0,0,0,12,1,0,0,0,1,2,0,1,1,1,0,0,0,1,0,0,5,0,1,2,0,2,4,0,1,0,0 173 | 0,0,3,2,15864,283,1,2,155,0,1,0,2,2,9,0,0,1,4,0,2,1,0,0,0,0,4,0,0,8,0,0,0,0,0,1,0,0,0,0 174 | 0,2,2,16,318738,0,0,0,0,0,0,0,22,4,0,0,0,1,2,0,1,2,0,0,0,3,2,0,0,7,0,0,0,0,0,2,0,0,0,0 175 | 0,0,2,1,11613,169,4,1,85,0,2,0,1,6,0,0,4,6,4,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,1,5,0,0,0 176 | 0,18,15,9,4494,0,0,9,8,0,0,0,9,1,15,0,0,1,1,0,1,1,0,0,0,3,1,0,0,2,0,0,0,0,0,2,7,0,0,0 177 | 0,314,0,0,33397,409,0,14,180,0,0,0,12,0,4,3,2,1,1,0,1,1,1,0,3,0,1,4,3,3,4,0,0,3,0,4,2,0,0,0 178 | 0,1,5,4,2931,36,2,6,62,0,1,0,5,1,0,1,1,4,1,0,1,1,0,0,1,0,1,0,1,2,0,0,0,1,0,2,1,0,0,0 179 | 0,36,3,3,7588,94,2,3,303,0,1,0,3,2,5,1,1,1,1,0,1,1,0,0,1,0,4,1,1,1,2,0,0,1,0,2,1,0,0,0 180 | 0,3295,0,0,4546,149,11,30,220,0,3,0,2,1,5,1,1,1,1,0,1,1,0,0,1,0,4,1,1,1,2,0,0,1,2,6,1,0,0,0 181 | 0,0,6,13,1509,116,6,47,222,0,2,1,61,6,0,0,0,1,1,0,1,1,0,0,0,0,5,0,0,8,0,0,0,0,0,2,0,0,0,0 182 | 10,478,6,9,7,0,56,6,110,1,5,0,0,4,0,0,5,1,2,0,0,1,0,0,0,0,2,0,0,1,0,0,1,0,0,3,6,3,2,1 183 | 6,0,7,1,138,11,6,5,5,2,2,0,5,1,0,0,0,3,1,0,1,1,0,0,0,0,1,0,0,3,0,0,0,0,2,1,0,0,0,0 184 | 0,272,4,13,4305,534,1,34,342,0,1,0,81,1,0,1,1,2,1,0,5,1,0,0,1,0,1,0,1,8,0,0,0,1,0,5,1,0,0,0 185 | 3,1,1,1,349,1,16,1,1,1,4,0,1,1,3,0,0,1,2,0,3,1,0,0,0,0,1,0,0,2,5,1,2,0,0,2,3,1,0,0 186 | 0,68,0,5,1994,36,20,23,270,0,2,0,17,9,0,0,0,2,1,0,3,1,0,0,0,0,1,0,0,6,0,1,2,0,0,1,1,2,0,0 187 | 82,-1,0,0,1022,0,137,4,21,1,3,0,0,4,0,0,0,1,1,0,4,1,0,0,0,0,1,0,0,1,0,0,0,0,0,5,0,0,0,1 188 | 0,832,0,1,11908,134,5,37,152,0,3,0,1,0,5,1,1,1,2,0,1,1,0,4,1,5,4,1,1,6,2,0,0,1,0,6,1,0,0,0 189 | 3,1697,3,1,27,0,4,45,144,2,3,0,0,7,11,0,0,2,5,0,1,1,1,0,0,0,5,0,0,1,0,1,3,0,0,1,0,2,0,1 190 | 1,5,26,27,259,96,1,33,33,1,1,0,28,4,9,0,0,1,1,0,1,1,0,0,0,0,2,0,0,3,0,0,0,0,0,6,0,0,0,0 191 | 1,1,4,17,108,22,1,24,22,1,1,0,22,1,4,3,2,2,1,0,2,1,0,0,3,0,1,0,3,3,8,0,0,3,0,3,2,0,0,0 192 | 3,1,7,8,5,8,17,7,64,1,6,0,8,1,3,0,3,1,1,0,1,1,0,0,0,0,3,0,0,1,6,1,2,0,0,1,3,1,0,0 193 | 1,2100,0,2,626,29,1,30,45,1,1,0,2,2,0,0,0,1,1,0,1,1,2,0,0,0,1,0,0,1,0,1,2,0,1,1,0,7,0,0 194 | 0,90,0,5,24,0,0,5,5,0,0,0,5,1,0,1,1,6,4,0,1,1,0,0,1,0,0,0,1,7,0,0,0,1,0,6,1,0,0,0 195 | 0,1,2,2,0,0,0,2,0,0,0,0,2,1,1,0,0,1,1,0,1,2,1,0,0,3,1,0,0,9,0,0,0,0,0,5,0,0,0,0 196 | 1,1,153,6,567,317,1,36,35,1,1,0,23,1,0,3,2,1,1,0,0,1,2,0,3,0,3,0,3,3,0,1,2,3,0,2,2,3,0,0 197 | 0,1,4,2,2162,3,1,2,13,0,1,0,2,2,0,0,0,1,5,0,0,1,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,2,0,1 198 | 0,260,8,0,30551,681,4,1,261,0,0,0,1,1,0,0,5,1,2,0,2,1,0,0,0,0,2,0,0,1,0,0,3,0,2,7,6,10,2,0 199 | 0,0,5,0,30260,0,0,11,0,0,0,0,4,1,0,1,1,1,1,0,1,1,0,0,1,0,2,0,1,1,0,0,0,1,0,1,1,0,0,0 200 | 0,19,32,0,1994,0,0,19,26,0,0,0,3,5,10,0,0,2,1,0,1,1,0,2,0,2,1,0,0,7,0,1,2,0,0,1,0,2,0,0 201 | 0,1,23,3,72413,3607,0,4,44,0,0,0,3,2,14,0,0,1,2,0,1,2,0,0,0,0,1,0,0,2,0,1,2,0,0,1,0,3,0,0 202 | 0,16,106,7,10182,0,0,33,7,0,0,0,17,1,9,0,0,4,1,0,2,1,1,0,0,0,2,0,0,5,0,0,0,0,0,3,0,0,0,0 203 | 0,126,0,2,69481,0,0,4,7,0,0,0,2,1,0,0,0,2,4,0,1,2,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0 204 | 0,69,1,2,38285,0,0,2,19,0,0,0,2,0,0,0,0,1,1,0,1,1,1,0,0,0,3,0,0,2,0,0,0,0,0,3,0,0,0,0 205 | 0,93,3,3,1385,10,11,10,128,0,4,0,3,1,0,0,0,5,1,0,4,1,2,0,0,0,2,0,0,4,0,0,0,0,0,1,0,0,0,0 206 | 0,1,7,0,3587,4,35,2,10,0,8,0,1,1,0,0,0,1,1,0,6,1,0,0,0,0,2,0,0,1,0,1,2,0,0,1,0,10,0,0 207 | 0,76,3,0,5029,0,0,16,0,0,0,0,0,1,0,0,0,4,3,0,4,1,0,5,0,6,1,0,0,3,0,0,0,0,0,2,5,0,0,0 208 | 0,-1,0,0,43326,0,0,14,26,0,0,0,0,5,5,1,1,1,1,0,2,1,0,0,1,0,4,1,1,1,2,0,0,1,0,2,1,0,0,0 209 | 16,2,3,2,1,1,242,25,1127,3,24,0,1,1,19,0,0,1,1,0,0,1,0,0,0,0,3,0,0,1,0,0,1,0,0,5,0,1,0,1 210 | 0,0,0,8,1448,68,1,31,61,0,1,0,8,1,0,0,4,1,2,0,1,1,0,0,0,0,3,0,0,4,0,0,0,0,2,1,5,0,0,0 211 | 0,1,2,1,27504,4,2,1,3,0,1,0,1,1,1,0,0,1,2,0,1,1,0,0,0,0,1,0,0,2,0,0,0,0,0,1,0,0,0,0 212 | 0,-1,0,0,3123,22,48,0,32,0,5,1,0,2,1,0,0,1,3,0,1,1,1,0,0,0,2,0,0,8,0,0,0,0,0,1,5,0,0,1 213 | 1,5,33,6,375,74,3,46,258,1,2,0,68,1,0,0,5,1,1,0,1,1,0,0,0,0,2,0,0,1,0,0,3,0,0,3,6,1,2,1 214 | 0,3,4,4,1922,23,48,5,159,0,8,0,4,1,0,0,0,6,1,0,0,1,0,0,0,0,5,0,0,4,0,1,2,0,0,7,1,3,0,1 215 | 5,48,1,35,571,68,6,13,277,1,2,0,38,1,0,0,5,1,1,0,1,1,0,0,0,0,2,0,0,1,0,2,3,0,0,7,6,3,2,0 216 | 1,150,5,16,24,18,1,15,16,1,1,0,16,0,0,0,0,2,1,0,1,1,0,3,0,4,3,0,0,3,0,1,2,0,0,6,0,3,0,0 217 | 4,0,2,0,4,0,9,1,244,1,4,0,0,1,7,0,0,1,4,0,1,1,1,0,0,0,1,0,0,1,9,0,1,0,0,5,0,2,0,0 218 | 0,0,1,0,4717,26,2,23,26,0,1,0,0,3,0,0,0,1,0,0,1,1,0,0,0,0,2,0,0,2,0,0,0,0,0,1,0,0,0,0 219 | 0,1,5,53,2934,210,7,1,379,0,1,1,62,1,1,0,0,2,1,0,1,1,0,0,0,0,2,0,0,6,0,0,0,0,0,7,0,0,0,0 220 | 0,14,28,14,26324,39,3,21,32,0,1,0,14,8,5,1,1,1,3,0,2,1,1,0,1,0,3,0,1,8,0,0,0,1,0,2,1,0,0,0 221 | 0,4,6,2,9205,64,26,6,242,0,5,0,2,0,0,0,5,2,1,0,1,1,0,0,0,0,2,0,0,8,0,2,3,0,0,3,6,1,2,0 222 | 0,-1,0,0,1835,299,1,0,23,0,0,0,0,2,0,0,0,3,1,0,1,1,0,0,0,0,1,0,0,3,0,0,0,0,0,2,0,0,0,0 223 | 1,123,5,10,177,14,4,7,397,1,4,0,13,1,0,0,0,1,1,0,1,1,0,0,0,0,1,0,0,4,0,0,0,0,0,1,0,0,0,0 224 | 0,18,0,0,1530,55,25,0,37,0,1,0,0,2,7,0,0,1,1,0,1,1,0,0,0,0,5,0,0,1,0,0,1,0,0,3,0,2,0,0 225 | 0,1821,6,0,130256,556,0,6,121,0,0,0,1,0,19,0,5,1,2,0,1,2,0,0,0,0,2,0,0,8,0,1,3,0,0,7,6,8,2,0 226 | 0,2,10,7,1565,145,101,15,270,0,15,0,7,0,6,0,0,1,0,0,1,1,0,3,0,4,2,0,0,6,3,0,3,0,0,3,0,0,0,0 227 | 0,179,24,12,6291,200,1,31,31,0,1,0,15,1,0,0,0,0,2,0,1,1,1,0,0,0,2,0,0,2,0,1,3,0,0,4,0,1,0,0 228 | 0,30,0,3,4383,105,1,13,28,0,1,0,3,2,0,0,5,1,2,0,0,1,0,0,0,0,2,0,0,4,0,1,3,0,0,7,6,4,2,0 229 | 0,58,12,9,3623,463,1,34,338,0,1,0,14,0,0,0,0,1,2,0,2,1,1,0,0,0,1,0,0,2,0,0,0,0,1,5,0,0,0,0 230 | 0,181,4,4,0,0,0,5,15,0,0,0,4,3,1,0,0,1,1,0,2,2,1,0,0,0,3,0,0,9,0,0,0,0,0,4,0,0,0,0 231 | 14,7,0,24,38,25,119,47,1193,2,12,2,23,0,0,0,0,2,3,0,1,1,0,0,0,0,5,0,0,6,0,0,0,0,0,3,0,0,0,0 232 | 0,-1,0,0,18760,184,14,1,82,0,2,0,0,1,1,0,0,1,2,0,1,1,3,0,0,0,2,0,0,8,0,0,0,0,0,2,5,0,0,0 233 | 0,9,34,9,6082,50,3,9,37,0,1,0,9,5,7,0,0,3,4,0,1,1,0,0,0,0,1,0,0,1,9,0,1,0,0,2,0,2,0,0 234 | 0,-1,0,0,6397,51,1,13,49,0,1,0,0,1,1,0,0,1,0,0,1,1,0,3,0,4,1,0,0,3,0,0,0,0,0,1,0,0,0,1 235 | 0,-1,0,0,1985,43,8,4,152,0,3,0,0,3,17,0,0,1,1,2,1,1,0,1,0,1,3,0,0,1,0,0,0,0,0,1,0,0,0,1 236 | 0,1,51,11,20692,1645,3,21,1580,0,1,0,11,7,2,0,0,2,1,0,7,1,3,0,0,0,2,2,0,6,1,1,1,0,0,2,0,1,0,0 237 | 9,1,2,0,1006,50,25,0,168,1,6,0,0,1,0,0,0,1,1,0,1,1,0,0,0,0,2,0,0,1,0,0,3,0,0,7,0,2,0,1 238 | 0,241,3,10,1504,192,41,47,1552,0,10,0,10,1,6,0,0,1,1,0,2,1,0,3,0,4,1,0,0,8,3,0,2,0,0,5,0,1,0,0 239 | 2,2649,0,1,319,9,3,23,27,2,3,0,1,2,5,1,1,1,3,0,1,1,1,0,1,0,4,1,1,2,2,0,0,1,2,6,1,0,0,0 240 | 31,6,62,87,53,73,68,33,1551,1,5,0,66,1,9,0,0,2,1,0,1,1,0,0,0,0,2,0,0,6,0,0,0,0,0,3,0,0,0,1 241 | 1,0,0,9,27,9,1,10,9,1,1,0,9,2,4,3,2,4,3,0,1,1,0,5,3,6,1,0,3,3,8,0,0,3,0,2,2,0,0,0 242 | 0,25,1,0,17330,62,1,3,76,0,1,0,0,1,0,0,5,4,3,0,1,1,0,0,0,0,2,0,0,2,0,1,3,0,0,3,6,1,2,0 243 | 0,190,0,0,1324,70,1,0,0,0,1,0,0,1,0,0,5,1,1,0,1,1,0,0,0,0,2,0,0,1,0,2,3,0,0,3,6,3,2,1 244 | 0,1350,0,0,4832,0,0,18,31,0,0,3,0,5,5,1,1,0,3,0,1,1,0,0,1,0,4,1,1,8,2,0,0,1,0,6,1,0,0,0 245 | 0,0,2,10,1536,46,1,18,28,0,1,0,10,4,0,0,0,1,2,0,1,1,0,0,0,0,6,0,0,4,0,0,0,0,0,5,0,0,0,0 246 | 0,78,1,0,7570,0,0,0,16,0,0,0,0,1,0,0,0,1,2,0,1,1,0,0,0,0,3,0,0,1,0,1,2,0,2,3,1,3,0,0 247 | 0,0,3,3,5993,502,11,4,549,0,3,0,3,2,0,0,4,1,3,0,0,1,1,0,0,0,1,0,0,1,0,0,0,0,0,1,5,0,0,1 248 | 0,54,4,10,2214,25,23,13,98,0,4,0,10,2,1,0,0,1,1,0,1,1,1,0,0,0,2,0,0,1,0,0,0,0,2,1,0,0,0,1 249 | 1,190,0,0,1166,4,14,4,64,0,5,0,0,9,0,1,1,4,1,0,2,1,0,0,1,0,3,0,1,1,0,0,0,1,0,3,1,0,0,0 250 | 2,30,27,2,0,0,2,2,2,1,1,0,0,1,0,0,0,1,2,0,1,1,0,0,0,0,1,0,0,2,0,1,3,0,1,1,0,3,0,1 251 | 0,0,0,0,40698,963,0,2,23,0,0,0,2,1,4,6,2,1,1,0,1,1,0,0,6,0,2,0,6,3,4,0,0,6,0,1,2,0,0,0 252 | 0,0,3,4,4520,158,28,23,639,0,5,0,6,2,0,0,0,3,3,0,0,1,0,0,0,0,2,0,0,4,0,0,0,0,2,6,0,0,0,0 253 | 0,19,31,8,7130,126,1,20,116,0,1,0,8,1,0,0,0,1,0,0,3,1,1,0,0,0,1,0,0,5,0,1,2,0,0,2,0,4,0,0 254 | 0,508,6,6,14166,37,1,6,63,0,1,0,6,0,2,0,0,4,1,0,1,1,0,0,0,0,3,0,0,1,1,0,1,0,0,3,0,3,0,0 255 | 0,0,31,2,41016,0,0,9,17,0,0,0,8,1,1,0,0,1,6,0,5,2,0,0,0,0,1,0,0,7,0,0,0,0,0,5,0,0,0,0 256 | 0,8,0,2,30617,0,0,5,40,0,0,0,2,1,4,3,2,2,1,0,3,1,0,0,3,0,2,0,3,3,4,0,0,3,0,2,2,0,0,0 257 | 4,0,128,42,7,44,4,44,42,1,1,2,42,5,7,0,0,1,1,0,1,1,0,0,0,0,3,0,0,8,0,0,1,0,2,1,0,2,0,0 258 | 0,2,0,3,1602,8,1,3,8,0,1,0,3,1,0,0,0,1,2,0,1,1,0,0,0,0,2,0,0,3,0,1,3,0,0,1,0,7,0,0 259 | 0,0,1,9,1582,47,3,2,86,0,2,0,9,1,13,0,0,2,1,2,4,1,0,1,0,1,2,0,0,2,11,0,3,0,0,1,0,9,0,1 260 | 29,0,0,7,1,0,825,15,1208,2,23,0,0,1,0,0,0,1,1,0,8,1,0,0,0,0,2,0,0,1,0,1,2,0,0,8,0,0,0,0 261 | 0,164,7,2,10118,259,20,11,256,0,5,0,30,0,17,2,2,1,2,2,3,1,0,1,2,1,1,0,2,1,0,0,0,2,0,1,2,0,0,0 262 | 0,3,1,7,41247,0,0,9,279,0,0,0,9,1,0,1,1,1,1,0,1,1,1,0,1,0,1,0,1,5,0,0,0,1,0,4,1,0,0,0 263 | 6,110,3,2,1,0,10,2,101,1,3,0,0,7,12,0,0,1,0,0,2,1,0,0,0,0,3,0,0,1,10,0,3,0,0,1,0,6,0,1 264 | 2,1,13,6,56,6,5,4,15,1,2,0,6,3,0,0,0,1,2,0,3,1,1,0,0,0,6,0,0,1,0,0,1,0,0,1,0,3,0,1 265 | 0,0,2,19,87174,4638,0,5,1189,0,0,0,29,1,1,0,0,1,1,0,2,2,1,0,0,0,1,0,0,2,0,0,0,0,0,2,0,0,0,0 266 | 20,0,1,0,51,1,20,1,1,1,1,3,1,4,0,1,1,1,2,0,3,1,0,0,1,0,2,0,1,8,0,0,0,1,1,2,1,0,0,1 267 | 2,17,0,0,24,0,2,0,0,1,1,0,0,1,18,0,0,1,2,0,2,1,0,0,0,0,1,0,0,2,0,0,0,0,0,2,0,0,0,1 268 | 10,182,35,33,0,0,15,37,46,1,4,0,0,1,0,0,0,3,2,0,3,1,0,0,0,0,1,0,0,1,0,0,0,0,1,2,5,0,0,0 269 | 0,2242,13,7,11786,63,29,13,87,0,1,0,13,5,5,1,1,1,1,0,3,1,0,0,1,0,4,1,1,1,2,0,0,1,1,6,1,0,0,0 270 | 0,158,0,0,29815,0,0,3,63,0,0,0,55,1,5,1,1,1,1,0,5,1,0,0,1,0,4,1,1,4,2,0,0,1,0,2,1,0,0,0 271 | 0,51,1,1,9934,0,0,1,1,0,0,0,1,1,0,0,0,1,2,0,1,1,1,0,0,0,2,0,0,2,0,0,0,0,1,1,0,0,0,0 272 | 0,2,51,12,6593,104,13,10,92,0,4,0,12,1,2,0,0,2,1,0,1,1,0,0,0,0,3,0,0,1,0,0,2,0,2,1,0,1,0,0 273 | 0,60,0,6,3682,43,5,5,61,0,2,0,6,1,17,2,2,1,1,1,4,1,0,1,2,1,1,0,2,4,0,0,0,2,0,1,2,0,0,0 274 | 12,10,3,1,60,8,12,13,13,1,1,0,3,0,1,0,0,1,1,0,2,1,0,0,0,0,2,0,0,1,0,0,0,0,0,1,0,0,0,0 275 | 0,28,8,1,3015,0,0,1,4,0,0,0,1,1,3,0,0,1,1,0,1,1,1,0,0,0,1,0,0,5,5,1,2,0,0,2,0,1,0,0 276 | 0,11,56,8,43109,0,0,33,0,0,0,0,15,0,9,0,0,1,1,0,1,1,1,0,0,0,1,0,0,7,0,0,0,0,0,2,0,0,0,0 277 | 0,1,1,0,14780,80,1,1,14,0,1,0,0,1,7,0,0,0,0,0,2,1,0,0,0,0,2,0,0,3,0,0,1,0,0,1,0,1,0,0 278 | 0,495,0,0,0,0,0,5,0,0,0,0,0,2,1,0,0,3,1,0,1,2,1,0,0,0,1,0,0,9,0,0,0,0,0,4,0,0,0,0 279 | 0,1,181,9,897,0,0,26,26,0,0,0,10,1,16,0,0,1,2,0,1,1,4,0,0,0,6,0,0,7,13,0,1,0,0,2,0,0,0,0 280 | 6,0,29,41,14,41,6,37,41,1,1,0,41,4,11,0,0,1,0,0,4,1,0,0,0,0,2,0,0,1,0,1,1,0,0,2,0,2,0,0 281 | 2,0,1,0,188,0,2,0,0,1,1,0,0,1,16,0,0,1,1,0,1,1,0,0,0,0,2,0,0,7,13,0,3,0,0,2,0,0,0,0 282 | 0,-1,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,2,2,0,2,2,1,0,0,0,1,0,0,9,0,0,0,0,0,1,0,0,0,1 283 | 0,-1,0,0,13396,97,4,0,50,0,1,0,0,1,0,0,0,1,2,0,4,1,0,0,0,0,2,0,0,4,0,0,0,0,0,1,0,0,0,0 284 | 0,-1,2,0,4334,0,0,0,195,0,0,0,0,1,9,0,0,1,1,0,1,1,1,5,0,6,1,0,0,5,0,0,0,0,0,2,0,0,0,0 285 | 0,776,0,1,2995,10,1,1,5,0,1,0,1,1,1,0,0,1,3,0,3,1,0,2,0,2,1,0,0,3,0,0,0,0,0,1,0,0,0,0 286 | 0,-1,0,0,9740,109,17,0,10,0,5,0,0,1,1,0,0,1,2,0,2,1,1,0,0,0,2,0,0,1,0,0,0,0,0,3,0,0,0,1 287 | 0,1,6,0,1450,27,81,5,5,0,1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,2,0,0,1,0,0,0,0,2,6,0,0,0,0 288 | 1,1,1,0,563,9,1,10,9,1,1,0,0,2,2,0,0,1,1,0,1,1,0,0,0,0,2,2,0,3,1,0,1,0,0,1,4,1,1,0 289 | 0,167,0,0,198,242,6,1,9,0,1,0,0,3,5,1,1,1,2,0,2,1,0,0,1,0,4,1,1,1,2,0,0,1,0,6,1,0,0,0 290 | 0,4,3,2,2671,24,19,6,70,0,5,0,2,1,1,0,0,2,1,0,2,1,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0 291 | 0,35,0,9,40556,0,0,41,10,0,0,0,9,2,4,2,2,1,3,0,1,1,1,0,2,0,1,4,2,1,4,0,0,2,0,1,2,0,0,0 292 | 0,0,2,7,4371,561,1,29,120,0,1,0,7,1,4,6,2,1,1,0,1,1,0,0,6,0,2,0,6,3,4,0,0,6,0,7,2,0,0,0 293 | 0,0,21,4,10121,0,0,7,77,0,0,0,5,1,0,0,0,1,1,0,1,1,0,0,0,0,1,0,0,7,0,1,2,0,0,2,0,2,0,0 294 | 2,1,3,1,144,10,24,38,71,2,5,0,1,2,11,0,0,4,1,0,3,1,0,0,0,0,3,0,0,1,0,1,1,0,0,2,0,2,0,1 295 | 0,7,5,0,5866,155,2,3,33,0,2,0,0,2,0,0,0,4,1,0,2,1,1,0,0,0,1,0,0,3,0,0,3,0,0,2,0,0,0,0 296 | 0,11,6,1,4299,40,19,2,25,0,7,0,2,2,3,0,0,1,3,0,1,1,1,0,0,0,2,0,0,6,0,1,3,0,0,3,3,1,0,0 297 | 0,1,33,6,3706,28,2,7,28,0,1,0,6,0,19,0,0,1,2,0,7,1,0,0,0,0,0,0,0,2,0,0,1,0,1,2,0,8,0,0 298 | 0,70,7,2,6518,26,23,2,12,0,2,0,2,1,3,0,0,1,1,0,1,1,0,0,0,0,2,0,0,6,5,1,3,0,0,2,0,1,0,0 299 | 0,29,0,2,10154,0,0,6,93,0,0,0,2,2,8,2,2,1,1,0,5,1,1,0,2,0,1,0,2,5,7,0,0,2,0,2,2,0,0,0 300 | 0,7,32,23,31645,41,15,14,24,0,0,0,23,1,3,0,3,1,2,0,1,1,0,0,0,0,1,0,0,8,6,1,2,0,0,2,3,1,0,0 301 | 0,0,2,8,1632,56,16,37,56,0,4,0,8,2,2,5,3,1,2,0,6,1,0,0,5,0,1,0,5,1,12,3,2,4,0,1,3,1,3,1 302 | 0,4,1,1,10,0,0,1,1,0,0,0,1,2,0,0,0,1,0,0,1,1,1,0,0,0,1,0,0,5,0,1,1,0,0,1,0,5,0,0 303 | 0,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,1,2,0,2,2,1,0,0,0,3,0,0,9,0,0,0,0,0,6,0,0,0,1 304 | 2,0,22,2,797,34,6,27,132,1,2,0,2,1,2,0,0,1,3,0,4,1,0,0,0,0,2,2,0,1,1,0,1,0,2,3,0,1,0,0 305 | 0,285,0,2,3448,68,15,39,89,0,2,0,3,1,0,1,1,1,1,0,3,1,0,0,1,0,3,0,1,1,0,0,0,1,0,3,1,0,0,0 306 | 26,2,5,7,2,8,106,4,41,2,8,1,7,1,1,0,0,1,2,0,1,1,0,0,0,0,3,0,0,8,0,0,0,0,0,5,0,0,0,0 307 | 0,0,6,8,20285,924,2,9,320,0,1,0,8,1,0,2,2,2,1,0,1,1,0,0,2,0,3,0,2,1,0,0,0,2,0,8,2,0,0,0 308 | 0,-1,2,0,41188,0,0,0,103,0,0,0,0,1,3,5,3,2,4,0,1,1,0,0,5,0,1,0,5,1,6,1,3,4,0,1,3,1,4,1 309 | 0,4,8,5,8864,114,17,12,257,0,3,2,11,2,1,0,0,1,3,0,1,1,1,0,0,0,2,0,0,6,0,0,0,0,0,8,0,0,0,0 310 | 0,65,29,1,7777,566,1,1,22,0,1,0,1,1,2,5,3,1,4,0,1,1,0,0,5,0,4,0,5,3,12,3,2,4,0,2,3,1,3,0 311 | 0,36,0,0,34503,160,0,6,51,0,0,0,0,2,0,0,0,2,2,0,3,1,0,0,0,0,2,0,0,3,0,0,0,0,0,1,0,0,0,0 312 | 0,225,5,0,1444,32,7,3,12,0,4,0,0,3,16,0,0,2,4,0,1,1,1,0,0,0,4,0,0,1,13,0,1,0,0,2,4,1,1,0 313 | 0,11,1,1,7456,345,9,14,362,0,3,0,3,2,5,1,1,1,2,0,2,1,2,0,1,0,4,1,1,8,2,0,0,1,0,2,1,0,0,0 314 | 0,-1,0,0,0,0,0,4,39,0,0,0,0,2,1,0,0,1,2,0,3,2,1,0,0,1,1,0,0,9,0,0,0,0,1,1,0,0,0,0 315 | 0,0,20,20,1441,30,7,31,30,0,1,0,22,2,14,0,0,1,1,0,2,1,0,0,0,0,1,0,0,1,0,1,2,0,2,5,0,3,0,0 316 | 0,4,0,0,9092,536,1,42,146,0,1,0,0,0,0,0,0,3,1,0,1,1,0,0,0,0,1,0,0,3,0,0,0,0,0,4,0,0,0,0 317 | 0,1,3,0,16044,0,0,0,0,0,0,0,0,3,3,5,3,1,4,0,1,1,0,0,5,0,1,0,5,1,6,1,3,4,0,1,3,1,4,0 318 | 30,1,114,15,246,22,42,34,76,1,5,0,22,2,16,0,0,1,1,0,1,1,0,0,0,0,1,0,0,1,13,0,1,0,2,2,0,1,0,1 319 | 2,-1,42,14,302,38,25,38,90,1,3,0,38,1,2,0,0,1,1,0,1,1,0,0,0,0,2,2,0,1,1,1,3,0,0,3,3,1,0,0 320 | 0,2,1,2,1441,26,4,20,32,0,2,0,2,1,10,0,0,4,1,0,1,1,0,0,0,0,2,0,0,1,0,1,3,0,2,2,0,2,0,1 321 | 0,62,18,6,90,0,0,6,6,0,0,0,6,1,3,0,0,3,0,0,1,1,3,0,0,0,2,0,0,3,0,1,3,0,0,2,3,1,0,0 322 | 0,-1,0,0,7954,0,0,3,16,0,0,0,0,1,0,0,0,1,2,0,1,1,1,0,0,0,2,0,0,5,0,0,0,0,0,1,0,0,0,0 323 | 6,2,17,13,18,12,6,13,13,1,1,0,12,4,0,0,0,1,4,0,1,1,0,0,0,0,3,0,0,1,0,1,2,0,0,3,0,0,0,0 324 | 3,-1,0,0,666,4,14,0,301,1,6,3,0,1,3,0,0,4,1,0,1,1,0,0,0,0,1,0,0,6,5,1,3,0,0,2,0,1,0,1 325 | 1,16,2,3,1,4,1,2,49,1,1,0,3,4,1,0,0,2,3,0,3,1,0,0,0,0,2,0,0,3,0,0,0,0,0,2,0,0,0,0 326 | 0,-1,24,0,14486,404,6,2,49,0,2,0,2,2,6,0,0,2,5,0,1,1,0,0,0,0,0,0,0,1,3,2,1,0,0,1,0,0,0,0 327 | 0,0,2,1,29430,60,1,1,60,0,1,0,1,1,0,0,0,1,0,0,2,1,0,0,0,0,2,0,0,3,0,1,2,0,0,7,0,8,0,0 328 | 0,2,0,0,10481,0,0,4,2,0,0,0,0,1,4,6,2,1,3,0,0,1,0,0,6,0,3,0,6,1,8,0,0,6,0,1,2,0,0,1 329 | 3,0,27,26,25,37,14,22,108,0,3,0,26,1,0,0,0,5,1,0,1,1,4,0,0,0,3,0,0,1,0,0,1,0,1,2,0,0,0,0 330 | 0,23,83,2,0,0,0,2,2,0,0,0,2,4,3,0,0,1,1,0,0,2,1,0,0,0,2,0,0,9,5,1,2,0,2,4,0,1,0,1 331 | 3,13,2,2,43,2,9,10,39,1,2,0,2,2,2,0,0,2,0,0,1,1,0,0,0,0,2,2,0,1,1,0,1,0,0,1,0,1,0,0 332 | 0,3,2,6,23492,0,0,0,0,0,0,0,10,2,9,0,0,1,1,0,3,1,0,0,0,0,1,0,0,3,0,0,0,0,0,1,0,0,0,0 333 | 4,-1,0,0,76,0,4,0,0,1,1,0,0,1,7,0,0,1,1,0,1,1,0,2,0,2,1,0,0,1,9,1,1,0,0,1,0,2,0,1 334 | 88,0,2,0,154,4,519,32,855,1,32,0,0,1,19,0,0,1,6,0,1,1,0,0,0,0,2,0,0,6,0,0,1,0,1,7,4,8,1,1 335 | 1,2,1,1,768,26,4,22,241,1,4,0,1,1,0,0,0,1,1,0,2,1,0,0,0,0,2,0,0,2,0,1,2,0,0,3,0,1,0,0 336 | 0,1,0,8,42632,0,0,21,24,0,0,0,8,1,4,2,2,1,1,0,1,1,0,0,2,0,3,0,2,7,4,0,0,2,1,1,2,0,0,0 337 | 0,0,2,0,10301,21,2,1,11,0,1,0,0,0,0,0,0,2,0,0,7,1,0,0,0,0,2,0,0,1,0,1,3,0,0,1,0,1,0,1 338 | 1,0,3,3,11,3,1,4,3,1,1,0,3,0,16,0,0,1,1,0,1,1,1,0,0,0,2,0,0,3,13,0,1,0,0,1,0,4,0,1 339 | 0,1,2,14,2109,43,7,18,43,0,1,1,15,1,0,0,0,1,1,0,1,1,0,0,0,0,1,0,0,4,0,1,3,0,2,1,0,4,0,0 340 | 3,0,110,7,162,44,4,47,109,1,2,0,44,5,12,0,0,1,1,0,1,1,0,0,0,0,2,0,0,2,10,0,3,0,0,3,4,6,1,0 341 | 0,2,1,19,2914,451,6,49,107,0,1,1,19,1,0,1,1,5,2,0,1,1,3,0,1,0,1,0,1,8,0,0,0,1,0,2,1,0,0,1 342 | 0,45,3,4,11770,0,0,4,81,0,0,0,4,1,8,2,2,1,1,0,1,1,1,0,2,0,1,0,2,5,0,0,0,2,0,4,2,0,0,0 343 | 1,11,67,2,28,2,15,2,211,1,5,0,2,1,0,0,0,1,1,0,1,1,0,0,0,0,2,0,0,1,0,0,3,0,0,2,4,0,0,0 344 | 0,352,8,5,1545,137,0,7,12,0,0,0,5,4,0,0,0,1,1,0,1,1,0,0,0,0,3,0,0,1,0,1,3,0,0,3,0,4,0,0 345 | 0,159,0,2,1023,0,0,13,36,0,0,0,2,6,0,0,0,3,1,0,2,1,1,0,0,0,2,0,0,5,0,0,0,0,1,1,0,0,0,1 346 | 0,95,3,2,13396,1049,3,2,379,0,2,0,2,3,4,3,2,1,1,0,1,1,0,2,3,2,2,0,3,1,8,0,0,3,1,1,2,0,0,0 347 | 4,32,3,5,1427,43,6,7,16,0,1,0,5,1,0,0,0,1,1,0,3,1,1,0,0,0,2,0,0,1,0,0,0,0,0,8,0,0,0,0 348 | 6,0,23,0,5,0,11,0,0,1,2,0,0,1,19,0,0,1,0,0,1,1,1,0,0,0,3,0,0,1,0,0,1,0,0,3,0,8,0,1 349 | 0,1,0,1,0,0,0,1,1,0,0,0,1,1,10,0,0,0,1,0,3,2,1,0,0,0,2,0,0,9,0,1,1,0,0,1,0,2,0,0 350 | 0,78,4,22,12025,0,0,42,22,0,0,0,22,1,4,3,2,3,1,0,1,1,0,0,3,3,2,0,3,1,4,0,0,3,0,1,2,0,0,0 351 | 0,64,2,2,2357,155,1,22,72,0,1,0,4,2,0,0,0,2,3,0,1,1,0,0,0,0,1,0,0,3,0,0,0,0,0,2,5,0,0,0 352 | 0,179,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,1,2,0,1,2,1,0,0,3,1,0,0,9,0,0,0,0,0,5,0,0,0,0 353 | 4,2041,2,3,46,3,10,5,51,1,4,0,3,1,9,0,0,1,1,0,1,1,0,0,0,0,1,0,0,6,0,0,0,0,0,2,0,0,0,1 354 | 0,113,1,0,7443,0,0,2,50,0,0,0,0,1,0,0,0,4,1,0,1,1,1,0,0,0,1,0,0,5,0,0,0,0,0,2,3,0,0,0 355 | 0,0,1,0,9021,44,2,0,12,0,1,0,0,1,20,4,1,1,1,0,1,1,0,0,4,0,2,0,4,2,0,0,0,5,0,2,1,0,0,0 356 | 0,35,4,2,133185,0,0,5,2,0,0,0,4,1,0,0,0,2,1,0,1,2,0,0,0,0,1,0,0,1,0,0,3,0,1,7,0,7,0,0 357 | 64,8,0,0,177,0,65,20,18,1,2,0,0,1,1,0,0,1,1,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,3,0,0,0,0 358 | 0,3,4,4,1918,89,7,12,89,0,1,1,4,3,0,0,0,1,1,0,1,1,0,0,0,0,1,0,0,1,0,2,1,0,0,2,0,0,0,0 359 | 0,122,75,5,20224,0,0,30,0,0,0,0,28,1,0,0,0,1,1,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,2,1,0,0,0,0 360 | 0,13,1,5,1556,78,9,20,26,0,1,0,15,5,2,0,0,1,1,0,1,1,0,0,0,0,2,2,0,1,1,0,1,0,0,2,3,1,0,0 361 | 0,-1,0,0,0,0,0,0,6,0,0,0,0,1,0,0,0,1,0,0,2,2,1,0,0,0,3,0,0,9,0,0,0,0,0,1,0,0,0,0 362 | 0,21,15,1,73965,0,0,5,6,0,0,0,1,3,7,0,0,4,4,0,1,2,0,0,0,0,5,0,0,2,0,0,2,0,0,2,3,1,0,0 363 | 0,0,47,0,110220,0,0,3,41,0,0,0,0,1,12,0,0,2,1,0,7,2,0,0,0,0,3,0,0,1,10,1,3,0,0,5,0,1,0,0 364 | 0,1,11,4,6190,123,4,5,56,0,1,0,4,7,2,0,0,1,0,0,2,1,0,0,0,0,1,3,0,1,1,0,1,0,0,1,3,1,0,0 365 | 0,15,3,1,5928,44,5,5,33,0,1,1,1,6,0,0,0,1,0,0,1,1,0,0,0,0,2,0,0,4,0,1,3,0,0,2,4,2,1,0 366 | 0,0,1,4,8035,223,18,19,387,0,8,0,4,3,8,4,1,1,1,0,4,1,4,0,4,0,1,0,4,1,0,0,0,5,0,1,1,0,0,1 367 | 0,0,3,1,1516,8,3,2,4,0,3,0,1,3,0,0,0,1,1,0,1,1,0,0,0,0,7,0,0,1,0,1,3,0,1,1,0,7,0,1 368 | 5,-1,0,0,547,50,86,47,318,2,20,0,0,1,1,0,0,1,1,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,5,0,0,0,0 369 | 3,44,1,2,1,2,3,1,2,1,1,0,2,0,1,0,0,2,3,0,2,1,0,0,0,0,3,0,0,2,0,0,0,0,0,2,0,0,0,0 370 | 1,2,16,24,36,19,1,29,62,1,1,0,19,3,17,0,0,1,3,1,1,1,0,1,0,1,2,0,0,4,0,0,0,0,0,1,0,0,0,1 371 | 0,5,0,0,19658,33,2,9,33,0,1,0,0,4,0,0,0,5,5,0,1,1,1,0,0,0,2,0,0,5,0,0,0,0,0,1,0,0,0,1 372 | 9,20,2,6,1267,27,10,28,27,0,1,0,6,1,15,0,0,1,6,0,0,1,0,2,0,2,1,0,0,1,0,0,0,0,0,2,7,0,0,1 373 | 0,66,89,0,357412,0,0,19,0,0,0,0,26,4,10,0,0,1,0,0,5,2,0,0,0,0,3,0,0,3,0,1,2,0,0,3,0,2,0,0 374 | 0,10,3,0,21322,0,0,0,0,0,0,0,0,3,0,0,0,4,1,0,0,1,1,0,0,0,1,0,0,5,0,1,2,0,0,4,0,5,0,0 375 | 0,34,0,3,6439,372,2,11,581,0,2,0,3,4,0,0,0,2,1,0,1,1,0,0,0,0,2,0,0,1,0,0,0,0,0,1,0,0,0,0 376 | 0,2,7,1,10820,1333,2,1,1265,0,1,0,1,5,0,0,0,1,0,0,4,1,1,0,0,0,2,0,0,8,0,1,2,0,0,1,0,1,0,0 377 | 0,0,0,3,1992,5,6,5,5,0,1,0,3,2,0,0,0,2,0,0,3,1,0,0,0,0,7,0,0,7,0,1,1,0,0,1,0,3,0,0 378 | 0,-1,4,0,1981,14,1,0,1,0,1,0,0,2,3,0,0,2,0,0,1,1,3,0,0,0,1,0,0,3,5,1,1,0,0,2,0,1,0,0 379 | 0,2,8,14,11656,46,10,19,46,0,1,0,19,2,0,0,0,1,0,0,1,1,1,0,0,0,3,0,0,1,0,1,3,0,0,1,0,1,0,0 380 | 0,-1,1,0,5061,233,7,8,1634,0,3,0,0,9,4,3,2,3,1,0,0,1,0,0,3,0,1,0,3,1,8,0,0,3,0,2,2,0,0,0 381 | 0,2,92,12,2993,238,4,30,376,0,2,0,16,1,6,0,0,1,1,0,1,1,0,0,0,0,1,0,0,1,0,0,3,0,2,5,0,3,0,0 382 | 0,18,0,4,3070,0,0,0,62,0,0,0,4,1,18,0,0,2,3,0,1,1,0,0,0,0,3,0,0,7,0,0,0,0,0,1,0,0,0,0 383 | 0,0,3,6,8223,123,5,10,130,0,2,1,11,0,0,0,4,2,3,0,1,1,1,0,0,0,3,0,0,8,0,0,0,0,0,1,5,0,0,1 384 | 1,1,9,7,292,13,1,9,9,1,1,0,7,1,6,0,0,1,1,0,1,1,0,0,0,0,1,0,0,3,3,0,1,0,0,2,0,3,0,1 385 | 0,42,1,22,1670,22,33,1,604,0,8,2,22,2,13,0,0,1,1,1,1,1,0,1,0,1,1,0,0,6,11,1,3,0,0,1,0,9,0,1 386 | 0,0,1361,0,10,0,0,31,28,0,0,0,0,8,10,0,0,1,1,0,1,1,1,0,0,0,3,0,0,5,0,1,2,0,0,4,0,2,0,0 387 | 0,-1,0,0,8697,361,9,0,99,0,1,0,0,3,5,1,1,2,1,0,2,1,1,0,1,0,3,0,1,1,0,0,0,1,2,2,1,0,0,0 388 | 0,1,5,11,1584,0,0,29,55,0,0,0,11,1,0,0,0,1,0,0,1,1,0,0,0,0,4,0,0,1,0,0,2,0,0,1,0,2,0,0 389 | 12,0,5,16,28,57,188,31,345,1,9,0,15,1,0,0,4,1,1,0,1,1,0,0,0,0,1,0,0,6,0,0,0,0,2,3,5,0,0,1 390 | 0,1,7,6,171,0,0,8,8,0,0,0,6,1,2,0,0,1,0,0,1,1,1,0,0,0,1,3,0,5,1,0,3,0,0,1,0,1,0,1 391 | 6,23,0,0,786,39,6,4,4,1,1,0,0,1,0,0,0,2,1,0,1,1,1,0,0,0,2,0,0,2,0,0,0,0,2,3,0,0,0,1 392 | 1,-1,0,0,799,98,2,23,118,1,2,0,0,1,5,1,1,4,2,0,1,1,0,0,1,0,4,1,1,2,2,0,0,1,0,2,1,0,0,0 393 | 0,20,1,9,26076,768,1,5,371,0,1,0,10,1,0,0,0,1,2,0,1,2,0,0,0,0,1,0,0,2,0,1,3,0,0,2,0,2,0,0 394 | 0,6,12,0,1933,755,3,24,154,0,1,0,15,2,1,0,0,1,1,0,1,1,1,0,0,0,1,0,0,2,0,0,0,0,1,4,0,0,0,0 395 | 0,2,2,0,38092,92,0,0,55,0,0,0,0,3,2,0,0,1,1,0,4,1,1,0,0,0,2,2,0,4,1,0,1,0,0,1,4,1,1,0 396 | 70,0,13,2,2,5,70,6,6,2,2,0,0,1,0,0,0,1,3,0,1,1,0,0,0,0,6,0,0,1,0,1,3,0,0,0,0,7,0,1 397 | 0,0,0,2,3602,226,8,22,446,0,6,0,3,1,0,6,2,2,2,0,1,1,0,0,6,0,2,0,6,1,0,0,0,6,0,8,2,0,0,0 398 | 4,44,1,4,1,2,10,14,47,1,3,11,1,2,0,0,4,1,1,0,1,1,1,0,0,0,1,0,0,6,0,0,0,0,1,1,5,0,0,1 399 | 0,14,2,1,492547,0,0,1,19,0,0,0,1,1,2,0,0,1,0,0,2,2,0,0,0,0,1,3,0,2,1,1,3,0,0,1,0,1,0,0 400 | 0,-1,0,0,23456,33,3,0,21,0,1,0,0,4,5,1,1,2,1,0,1,1,0,0,1,0,5,0,1,2,0,0,0,1,0,1,1,0,0,1 401 | 0,0,1,15,381,306,0,26,221,0,0,0,23,4,0,0,4,1,1,0,2,1,0,0,0,0,3,0,0,1,0,0,0,0,0,1,5,0,0,0 402 | 0,0,0,3,614,0,0,3,3,0,0,0,3,1,4,2,2,1,1,0,2,1,1,0,2,0,3,0,2,5,8,0,0,2,0,1,2,0,0,0 403 | 0,0,0,0,4649,2,2,1,2,0,2,0,0,1,0,0,0,0,0,0,3,1,2,0,0,0,1,0,0,2,0,0,0,0,0,1,0,0,0,0 404 | 0,1,7,12,3011,126,5,41,121,0,2,0,12,5,4,3,2,3,3,0,1,1,2,0,3,0,1,0,3,1,8,0,0,3,0,2,2,0,0,0 405 | 0,19,6,0,39296,0,0,0,0,0,0,0,0,2,1,0,0,1,1,0,1,1,0,0,0,0,1,0,0,3,0,0,0,0,0,3,0,0,0,0 406 | 0,-1,0,0,8020,26,6,0,80,0,2,0,0,4,0,0,0,1,5,0,3,1,1,0,0,0,2,0,0,1,0,0,3,0,0,1,0,0,0,1 407 | 0,1,0,1,19480,265,4,7,269,0,2,0,1,1,0,0,4,2,3,0,1,2,0,4,0,5,1,0,0,4,0,0,0,0,0,2,5,0,0,0 408 | 1,3,11,6,1349,6,10,7,9,0,4,0,6,1,2,0,0,1,0,0,3,1,0,0,0,0,5,0,0,1,1,0,1,0,0,1,0,1,0,1 409 | 13,2,15,0,17,3,13,0,0,1,1,0,0,1,0,0,0,1,0,0,2,1,0,0,0,0,2,0,0,1,0,1,1,0,0,7,0,10,0,0 410 | 0,2,44,3,1679,198,1,42,60,0,1,0,32,2,0,0,0,1,1,0,2,1,0,0,0,0,1,0,0,2,0,1,2,0,0,5,0,2,0,0 411 | 4,1,5,3,14,8,5,2,3,1,2,0,3,1,0,0,0,1,4,0,6,1,0,0,0,0,6,0,0,1,0,0,0,0,0,1,0,0,0,0 412 | 0,1,4,1,2108,2,3,1,2,0,1,0,1,3,2,0,0,1,0,0,2,1,0,0,0,0,2,2,0,2,1,0,1,0,0,1,4,1,1,1 413 | 0,1,0,0,5914,174,7,1,455,0,4,0,0,1,0,1,1,2,4,0,1,1,1,0,1,0,2,0,1,1,0,0,0,1,0,1,1,0,0,0 414 | 1,71,2,4,419,7,303,35,609,1,15,0,4,6,2,5,3,1,1,0,1,1,0,0,5,0,4,0,5,6,12,3,2,4,0,6,3,1,3,1 415 | 0,0,12,38,11630,252,5,6,241,0,1,0,67,1,0,0,0,2,2,0,1,1,2,0,0,0,3,0,0,1,0,1,2,0,0,1,0,0,0,0 416 | 0,0,6,8,41752,0,0,10,2,0,0,0,9,1,0,0,0,1,2,0,1,1,0,0,0,0,3,0,0,1,0,0,0,0,0,5,0,0,0,0 417 | 0,13,15,5,10471,0,0,5,55,0,0,0,5,7,5,1,1,1,1,0,1,1,1,0,1,0,4,1,1,7,2,0,0,1,0,1,1,0,0,0 418 | 0,-1,0,0,5993,33,2,0,33,0,1,0,0,1,2,0,0,1,1,0,1,1,0,0,0,0,1,3,0,2,1,0,1,0,0,1,0,4,0,0 419 | 0,39,9,6,27313,0,0,15,303,0,0,0,6,3,0,0,0,0,1,0,2,1,1,0,0,0,1,0,0,5,0,0,0,0,0,4,0,0,0,0 420 | 1,359,1,22,154,22,12,1,59,1,2,0,22,3,1,0,0,1,1,0,1,1,0,0,0,0,2,0,0,1,0,0,0,0,0,2,0,0,0,0 421 | 0,-1,0,0,4374,5,8,0,52,0,1,0,0,1,0,0,0,2,3,0,2,1,0,0,0,0,1,0,0,6,0,1,2,0,2,2,1,2,0,0 422 | 2,2,2,25,318,57,10,34,261,2,3,0,57,4,3,0,0,2,2,0,2,1,0,0,0,0,1,0,0,1,5,1,2,0,0,5,3,1,0,0 423 | 0,0,2,0,29335,37,8,0,11,0,1,0,0,1,16,0,0,1,1,0,3,1,1,0,0,0,2,0,0,3,13,0,3,0,0,1,0,1,0,0 424 | 0,-1,0,0,199514,0,0,7,8,0,0,0,0,2,1,0,0,3,3,0,5,2,1,0,0,0,2,0,0,5,0,0,0,0,0,4,5,0,0,0 425 | 0,0,12,6,3100,247,24,12,246,0,1,0,10,1,17,0,0,1,1,2,1,1,0,1,0,1,2,0,0,1,0,0,0,0,0,1,0,0,0,0 426 | 0,307,4,4,2826,4,4,4,20,0,2,0,4,1,0,0,0,1,3,0,1,1,1,0,0,0,2,0,0,2,0,1,2,0,0,2,0,0,0,0 427 | 8,699,0,0,11,0,495,11,55,2,29,11,0,2,17,2,2,2,1,2,4,1,0,1,2,1,1,0,2,1,0,0,0,2,0,1,2,0,0,0 428 | 1,0,1,27,8,27,2,25,155,1,2,0,27,1,1,2,2,5,2,0,1,1,0,0,2,0,3,0,2,1,0,0,0,2,0,6,2,0,0,0 429 | 0,69,0,1,1648,7,2,2,6,0,1,0,1,1,1,0,0,1,0,0,1,1,0,0,0,0,1,0,0,2,0,0,0,0,0,1,0,0,0,1 430 | 0,21,1,2,41,0,0,2,2,0,0,0,2,0,1,0,0,2,1,0,1,1,1,0,0,0,1,0,0,5,0,0,0,0,1,1,0,0,0,1 431 | 1,18,14,11,648,85,64,37,662,1,26,3,11,1,0,0,0,1,2,0,1,1,0,0,0,0,6,0,0,6,0,0,0,0,0,1,0,0,0,1 432 | 0,1,2,8,20671,153,34,18,105,0,2,0,8,0,0,0,0,1,2,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0 433 | 0,2,2,9,25,0,0,9,9,0,0,0,9,2,4,3,2,1,1,0,1,1,1,0,3,0,3,0,3,5,8,0,0,3,0,2,2,0,0,0 434 | 0,92,21,3,5084,0,0,17,180,0,0,0,18,3,0,0,0,1,1,0,1,1,0,0,0,0,1,0,0,7,0,1,3,0,0,1,0,7,0,0 435 | 0,-1,0,2,3864,569,68,32,200,0,5,5,2,1,4,6,2,2,1,0,2,1,1,0,6,0,1,0,6,6,8,0,0,6,0,2,2,0,0,0 436 | 0,1,19,2,7007,167,3,5,81,0,1,0,5,2,14,0,0,2,3,0,1,1,0,0,0,0,2,0,0,2,0,1,2,0,0,1,0,3,0,0 437 | 0,233,0,0,14581,0,0,0,231,0,0,0,54,1,20,1,1,1,3,0,1,1,0,0,1,0,2,0,1,7,0,0,0,1,0,1,1,0,0,0 438 | 0,1,6,11,3067,35,48,12,40,0,4,0,11,4,17,1,1,1,1,2,1,1,0,1,1,1,2,0,1,1,0,0,0,1,0,1,1,0,0,0 439 | 0,3,1,0,2072,0,7,0,45,0,1,0,0,1,3,0,0,1,1,0,1,1,0,0,0,0,1,0,0,1,5,1,3,0,1,1,0,1,0,1 440 | 5,12,8,8,4,8,27,32,214,2,6,0,8,1,3,0,0,2,3,0,1,1,0,0,0,0,2,0,0,4,0,1,3,0,0,1,3,1,0,0 441 | 1,165,8,1,2,0,2,2,10,1,2,0,0,0,2,0,0,0,2,0,2,1,1,0,0,0,1,3,0,2,1,0,2,0,2,1,0,1,0,0 442 | 0,0,7,4,7747,186,3,45,146,0,1,0,14,2,8,2,2,1,1,0,2,1,1,0,2,0,1,0,2,2,7,0,0,2,0,4,2,0,0,0 443 | 2,2,5,12,27,10,2,33,33,2,2,0,10,0,3,0,0,2,1,0,3,1,0,0,0,0,3,0,0,2,5,1,1,0,0,3,0,1,0,0 444 | 0,8,64,10,10117,19,3,12,14,0,1,0,11,2,2,5,3,1,0,0,2,1,0,0,5,0,4,0,5,2,12,3,2,4,0,1,3,1,3,0 445 | 0,-1,28,2,0,636,10,28,193,0,2,0,0,0,10,0,0,1,1,0,2,1,0,2,0,2,2,0,0,1,0,1,2,0,0,1,0,2,0,0 446 | 0,8,161,8,43272,0,0,27,0,0,0,0,25,2,5,1,1,1,1,0,0,1,0,0,1,0,5,0,1,7,0,0,0,1,0,7,1,0,0,0 447 | 0,51,0,15,30333,314,0,0,558,0,0,0,49,1,8,2,2,1,1,0,2,1,0,0,2,0,1,0,2,1,7,0,0,2,0,2,2,0,0,0 448 | 0,-1,0,0,2334,36,12,24,159,0,7,0,0,1,0,0,0,1,2,0,1,1,0,2,0,2,2,0,0,1,0,0,0,0,0,1,0,0,0,1 449 | 1,283,4,2,4,0,1,2,56,1,1,0,0,1,0,0,0,2,1,0,1,1,0,4,0,5,2,0,0,1,0,1,2,0,0,2,1,1,0,1 450 | 0,1,0,1,37460,0,0,5,1,0,0,0,1,1,4,2,2,1,2,0,1,1,0,2,2,2,1,4,2,3,4,0,0,2,0,1,2,0,0,0 451 | 2,106,18,18,904,31,10,22,69,1,4,0,18,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0 452 | 0,0,5,11,1995,249,7,48,91,0,2,0,27,0,8,3,2,1,1,0,1,1,0,0,3,0,2,0,3,1,7,0,0,3,1,6,2,0,0,0 453 | 0,391,10,1,149116,0,0,9,1,0,0,0,8,1,0,0,0,2,2,0,4,2,0,0,0,0,6,0,0,7,0,0,0,0,0,5,0,0,0,0 454 | 0,1,3,1,63453,0,0,1,1,0,0,0,1,2,1,0,0,1,1,0,5,2,0,0,0,0,5,0,0,7,0,0,0,0,0,3,0,0,0,0 455 | 0,20,0,2,4367,219,22,39,277,0,4,0,16,2,0,0,0,1,3,0,2,1,0,5,0,6,6,0,0,1,0,0,0,0,2,2,0,0,0,0 456 | 0,116,0,0,6600,175,22,21,214,0,7,0,0,1,0,0,0,1,3,0,1,1,0,0,0,0,2,0,0,1,0,1,3,0,0,1,0,7,0,1 457 | 0,3069,2,0,18925,4,16,0,4,0,3,0,0,1,6,0,0,1,0,0,4,1,0,0,0,0,1,0,0,1,3,0,2,0,0,1,0,3,0,0 458 | 0,30,0,0,41264,808,0,5,82,0,0,0,0,2,20,1,1,1,3,0,1,1,0,5,1,6,1,0,1,3,0,0,0,1,0,1,1,0,0,0 459 | 0,0,4,5,4626,0,0,5,91,0,0,1,5,0,0,1,1,1,3,0,1,1,0,0,1,0,5,0,1,6,0,0,0,1,0,1,1,0,0,0 460 | 0,-1,27,18,1795,20,1,19,20,0,1,0,18,1,0,0,0,6,0,0,4,1,1,0,0,0,2,0,0,3,0,3,1,0,0,1,0,0,0,0 461 | 0,41,74,1,6160,183,6,17,37,0,2,0,17,2,0,0,0,1,1,0,1,1,0,0,0,0,3,0,0,1,0,1,3,0,0,1,0,3,0,0 462 | 29,0,13,9,108,9,29,11,9,1,1,2,9,2,2,0,0,2,2,0,1,1,0,0,0,0,1,3,0,8,1,0,3,0,0,5,3,1,0,0 463 | 0,370,1,3,1887,15,1,14,14,0,1,0,14,1,8,2,2,6,1,0,1,1,1,0,2,0,1,0,2,3,7,0,0,2,0,0,2,0,0,0 464 | 2,2,22,12,2,12,2,13,12,1,1,0,12,7,7,0,0,1,1,0,1,1,0,0,0,0,3,0,0,2,0,0,2,0,0,1,0,2,0,0 465 | 0,14,3,4,12015,18,1,7,18,0,1,0,4,3,0,0,0,1,0,0,1,1,0,0,0,0,2,0,0,3,0,0,0,0,0,1,0,0,0,0 466 | 0,1,6,10,2964,15,1,13,15,0,1,1,10,1,8,3,2,1,1,0,1,1,1,0,3,0,3,0,3,4,7,0,0,3,0,2,2,0,0,0 467 | 1,92,3,2,33,2,1,2,2,1,1,0,2,1,3,0,0,1,3,0,1,1,0,0,0,0,1,0,0,3,5,1,3,0,0,2,3,1,0,0 468 | 0,42,4,0,6528,215,3,26,47,0,2,0,13,0,0,2,2,1,1,0,3,1,0,0,2,0,1,0,2,2,0,0,0,2,0,8,2,0,0,0 469 | 1,2,1,0,1,0,8,0,0,1,7,0,0,2,4,2,2,0,1,0,1,1,1,0,2,0,2,0,2,5,4,0,0,2,0,1,2,0,0,0 470 | 0,3,10,5,1788,16,5,4,103,0,4,0,5,1,7,0,0,1,0,0,1,1,1,0,0,0,1,0,0,1,9,0,1,0,0,1,4,2,1,0 471 | 0,-1,0,0,40995,234,0,12,108,0,0,0,0,2,0,2,2,1,2,0,1,1,1,0,2,0,1,0,2,1,0,0,0,2,1,1,2,0,0,0 472 | 0,179,12,13,32247,165,1,28,144,0,0,0,28,1,0,2,2,1,1,0,1,1,0,0,2,0,1,0,2,1,0,0,0,2,0,1,2,0,0,0 473 | 0,1,20,41,512,0,0,38,45,0,0,0,41,1,7,0,0,1,0,0,0,1,1,0,0,0,1,0,0,1,9,0,3,0,0,1,0,2,0,0 474 | 0,1,4,1,11106,2557,3,1,953,0,1,0,13,0,0,0,0,1,3,0,1,1,1,0,0,0,1,0,0,1,0,0,3,0,0,2,0,0,0,0 475 | 0,39,2,5,3378,0,0,22,5,0,0,0,5,0,0,0,0,0,1,0,2,1,1,0,0,0,3,0,0,1,0,0,0,0,0,1,0,0,0,1 476 | 0,-1,1,18,12229,780,2,39,316,0,1,0,18,2,4,3,2,2,3,0,2,1,0,5,3,6,1,0,3,2,8,0,0,3,0,2,2,0,0,0 477 | 0,13,2,18,20867,56,18,7,32,0,3,0,19,2,4,3,2,1,1,0,1,1,0,0,3,0,1,0,3,1,8,0,0,3,0,1,2,0,0,0 478 | 0,21,0,0,13847,1461,1,19,186,0,1,0,0,0,4,3,2,3,3,0,1,1,0,0,3,0,2,0,3,1,4,0,0,3,0,1,2,0,0,1 479 | 20,-1,1,2,2,2,20,2,2,1,1,0,2,2,0,0,0,1,4,0,2,1,1,0,0,0,6,0,0,1,0,1,2,0,0,0,0,1,0,0 480 | 0,1,1,1,15361,112,8,1,106,0,1,0,1,1,0,0,4,5,2,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,5,0,0,0 481 | 0,8,23,11,1475,32,2,18,130,0,2,0,12,1,0,0,0,3,2,0,2,1,4,0,0,0,3,0,0,1,0,1,3,0,1,1,0,10,0,0 482 | 0,241,13,12,502,0,0,16,88,0,0,0,12,1,0,0,0,1,2,0,2,1,1,0,0,0,2,0,0,7,0,1,3,0,0,1,0,2,0,0 483 | 0,1065,5,2,0,0,0,5,5,0,0,0,5,0,1,0,0,4,2,0,5,2,1,0,0,0,2,0,0,9,0,0,0,0,0,4,0,0,0,0 484 | 0,-1,21,30,11844,287,1,14,285,0,1,0,31,3,0,0,0,1,1,0,0,1,1,0,0,0,7,0,0,3,0,0,1,0,0,2,0,5,0,0 485 | 0,11,7,4,4320,0,0,6,4,0,0,0,4,2,1,0,0,1,1,0,1,1,1,0,0,0,2,0,0,5,0,0,0,0,0,1,0,0,0,0 486 | 1,12,10,5,25,5,45,7,1553,1,17,1,5,3,0,0,0,1,2,0,1,1,0,0,0,0,0,0,0,6,0,0,0,0,0,2,0,0,0,1 487 | 24,2,6,20,2,5,25,33,32,1,2,0,5,1,6,0,0,1,1,0,0,1,0,3,0,4,3,0,0,1,3,0,1,0,0,5,0,3,0,1 488 | 0,1,11,5,26249,273,1,6,61,0,1,0,5,7,0,0,0,2,1,0,1,1,0,0,0,0,5,0,0,3,0,0,1,0,0,4,0,5,0,0 489 | 0,33,9,3,6212,183,2,5,5,0,1,0,3,5,0,0,0,1,0,0,1,1,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0 490 | 0,0,15,10,1491,151,10,31,205,0,4,7,10,1,0,0,0,2,1,0,3,1,1,0,0,0,1,0,0,6,0,1,2,0,0,1,0,5,0,1 491 | 3,11,4,4,868,6,64,6,100,1,12,0,4,1,19,0,0,2,6,0,3,1,0,0,0,0,1,0,0,6,0,0,1,0,0,5,4,8,1,0 492 | 0,-1,0,0,14,92,0,0,83,0,0,0,0,1,2,0,0,1,0,0,1,1,0,0,0,0,2,2,0,4,1,2,2,0,0,1,0,1,0,0 493 | 0,13,6,5,10085,6,2,5,9,0,1,0,5,1,1,0,0,1,5,0,3,1,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0 494 | 0,0,11,10,8812,263,5,11,783,0,4,0,10,6,0,0,4,1,1,0,1,1,0,0,0,0,1,0,0,4,0,0,0,0,0,1,5,0,0,0 495 | 0,1,14,31,11761,196,75,46,273,0,6,0,31,1,0,1,1,0,2,0,1,1,0,0,1,0,2,0,1,6,0,0,0,1,0,3,1,0,0,0 496 | 0,26,0,0,3180,137,14,15,556,0,3,0,0,4,18,0,0,1,3,0,3,1,0,0,0,0,2,0,0,1,0,0,0,0,0,1,0,0,0,0 497 | 3,0,1372,6,15,4,3,11,8,0,1,0,4,8,0,0,0,1,2,0,1,1,1,0,0,0,3,0,0,1,0,1,2,0,0,4,0,0,0,1 498 | 2,-1,0,0,1415,1,136,7,161,0,10,0,0,3,0,0,0,1,3,0,1,1,0,0,0,0,3,0,0,8,0,0,0,0,0,3,0,0,0,0 499 | 3,328,1371,6,15,4,3,11,8,0,1,0,4,1,0,0,0,2,2,0,1,1,1,0,0,0,1,0,0,1,0,1,2,0,0,4,0,0,0,1 500 | 0,0,6,1,2913,61,4,10,35,0,1,0,1,1,18,0,0,3,4,0,2,1,4,0,0,0,2,0,0,1,0,0,0,0,0,2,0,0,0,0 501 | 4,-1,6,1,51,1,4,2,2,1,1,0,1,7,0,0,0,1,3,0,7,1,2,0,0,0,3,0,0,1,0,0,1,0,0,1,0,0,0,0 502 | 0,0,1,0,5862,395,9,2,16,0,2,0,0,0,0,6,2,2,2,0,8,1,0,0,6,0,3,0,6,1,0,0,0,6,0,3,2,0,0,0 503 | 0,-1,0,0,0,0,0,2,3,0,0,0,0,1,4,3,2,2,3,0,3,2,1,0,3,3,1,4,3,9,4,0,0,3,0,5,2,0,0,0 504 | 0,5,25,2,30941,212,34,2,24,0,0,0,2,1,0,0,0,1,1,0,3,1,0,0,0,0,1,0,0,1,0,1,2,0,2,1,0,6,0,1 505 | 45,0,37,53,131,212,45,47,53,1,1,0,53,1,11,0,0,1,0,0,1,1,0,0,0,0,2,0,0,1,0,1,1,0,0,3,0,2,0,0 506 | 3,1024,9,6,109,8,28,19,48,1,4,0,8,2,17,0,0,3,1,2,3,1,0,1,0,1,1,0,0,2,0,0,0,0,1,1,0,0,0,0 507 | 0,0,3,9,41555,279,0,11,161,0,0,0,9,1,8,6,2,1,3,0,1,1,1,0,6,0,3,0,6,2,7,0,0,6,1,4,2,0,0,0 508 | 0,0,1,0,40750,31,0,0,24,0,0,0,0,1,0,0,0,1,5,0,2,1,0,0,0,0,2,0,0,1,0,1,2,0,0,1,3,1,0,0 509 | 0,3,200,11,982,0,0,11,11,0,0,0,11,0,7,0,0,3,2,0,1,1,0,0,0,0,4,0,0,1,0,0,2,0,0,1,0,2,0,0 510 | 0,2,0,9,3061,78,4,3,69,0,1,0,9,1,1,0,0,1,2,0,1,1,0,0,0,0,5,0,0,3,0,0,0,0,0,1,0,0,0,0 511 | 1,1,4,3,378,12,27,28,765,1,14,0,10,1,0,0,0,1,2,0,1,1,0,0,0,0,7,0,0,4,0,1,1,0,0,2,0,10,0,1 512 | 0,2,14,24,2142,28,9,25,26,0,3,0,24,3,0,0,0,3,3,0,1,1,0,0,0,0,2,0,0,1,0,1,2,0,0,6,0,7,0,0 513 | 0,21,20,15,24511,75,12,44,62,0,1,0,15,1,13,0,0,0,1,1,3,1,0,1,0,1,1,0,0,6,11,0,3,0,1,1,0,9,0,0 514 | 0,0,39,15,4402,79,38,15,505,0,5,0,16,2,12,0,0,1,1,0,5,1,0,0,0,0,1,0,0,1,10,0,3,0,0,2,0,6,0,0 515 | 0,159,8,10,5784,39,6,10,38,0,1,0,10,5,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,2,0,0,0,0 516 | 0,2,14,0,37566,160,1,0,158,0,0,0,0,2,0,0,0,1,5,0,1,1,1,0,0,0,4,0,0,2,0,1,3,0,0,1,0,1,0,0 517 | 3,65,2,1,175,1,5,10,24,2,3,0,1,7,0,0,0,1,2,0,3,1,0,0,0,0,2,0,0,1,0,1,2,0,0,1,3,1,0,1 518 | 7,-1,0,0,394,11,125,11,178,1,12,0,0,2,3,0,0,1,1,0,1,1,0,0,0,0,2,0,0,4,5,1,3,0,0,1,0,1,0,0 519 | 0,1,1,4,14577,0,0,15,430,0,0,0,4,1,8,2,2,1,2,0,1,1,1,0,2,0,1,0,2,5,7,0,0,2,0,1,2,0,0,0 520 | 0,1,100,5,18767,372,2,5,28,0,1,0,5,1,12,0,0,1,1,0,1,1,0,0,0,0,2,0,0,2,10,2,3,0,0,1,4,6,1,0 521 | 0,9,10,12,1484,44,4,47,108,0,1,0,12,1,0,0,0,1,0,0,1,1,1,0,0,0,3,0,0,1,0,1,2,0,0,5,0,0,0,0 522 | 0,0,1,0,8694,61,1,1,34,0,1,0,0,1,2,0,0,1,2,0,1,1,0,0,0,0,0,0,0,3,1,0,1,0,0,1,0,0,0,0 523 | 0,1,2,51,1474,0,0,49,106,0,0,0,51,2,8,4,1,1,1,0,0,1,1,0,4,0,2,0,4,5,0,0,0,5,0,4,1,0,0,0 524 | 2,231,0,9,149,174,8,16,148,1,4,0,14,2,4,6,2,1,1,0,1,1,0,0,6,0,6,0,6,1,4,0,0,6,0,8,2,0,0,0 525 | 1,5,90,21,283,32,1,33,32,1,1,0,21,3,19,0,0,1,0,0,1,1,0,0,0,0,7,0,0,3,0,0,3,0,0,2,0,8,0,0 526 | 0,204,47,10,100,0,0,46,46,0,0,0,46,2,1,0,0,2,5,0,1,1,0,0,0,0,1,0,0,7,0,0,0,0,0,1,0,0,0,1 527 | 0,173,7,12,3133,40,27,29,202,0,9,0,12,4,0,0,0,2,2,0,1,1,0,0,0,0,3,0,0,1,0,0,0,0,0,3,0,0,0,0 528 | 0,1,33,14,1765,215,17,18,102,0,2,0,14,9,3,0,0,1,1,0,2,1,0,4,0,5,1,0,0,1,5,1,2,0,0,2,0,1,0,0 529 | 0,99,4,10,480,0,0,21,21,0,0,0,10,4,1,0,0,1,2,0,5,1,0,0,0,0,1,0,0,7,0,0,0,0,0,2,0,0,0,1 530 | 0,-1,0,0,10507,33,8,3,59,0,1,0,0,2,0,0,0,3,5,0,3,1,0,0,0,0,2,0,0,1,0,0,0,0,0,1,0,0,0,0 531 | 1,614,0,4,33,4,1,0,4,1,1,0,3,1,0,0,0,2,1,0,7,1,1,0,0,0,3,0,0,3,0,1,1,0,0,1,0,1,0,0 532 | 0,0,153,0,1146,39,64,0,308,0,4,0,0,1,3,0,0,2,1,0,1,1,0,0,0,0,2,0,0,8,0,1,1,0,1,1,3,1,0,0 533 | 0,67,3,12,1470,52,14,6,72,0,1,0,12,3,0,0,0,1,3,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,1,5,0,0,0 534 | 0,64,37,20,2930,124,20,33,349,0,6,0,31,2,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,6,0,1,2,0,0,2,0,4,0,0 535 | 0,12,490,0,3513,95,17,2,4,0,2,0,2,1,6,0,0,1,1,0,1,1,0,0,0,0,2,0,0,1,3,0,1,0,0,3,0,8,0,0 536 | 0,1290,7,4,13020,0,0,7,770,0,0,0,10,3,1,0,0,1,0,0,4,1,0,0,0,0,2,0,0,7,0,0,0,0,0,1,0,0,0,1 537 | 6,3472,3,0,1339,96,83,36,450,0,17,0,0,2,1,0,0,1,1,0,5,1,0,0,0,0,6,0,0,7,0,0,0,0,0,3,0,0,0,0 538 | 0,0,0,4,3311,127,25,16,509,0,7,0,4,2,0,0,4,1,2,0,0,1,0,0,0,0,3,0,0,1,0,0,0,0,0,1,5,0,0,0 539 | 0,31,10,1,22423,2186,5,2,636,0,2,0,2,3,0,4,1,3,1,0,3,1,0,0,4,0,1,0,4,2,0,0,0,5,0,1,1,0,0,0 540 | 0,1,2,0,468,0,0,4,2,0,0,0,0,3,20,4,1,5,2,0,1,1,0,0,4,0,1,0,4,7,0,0,0,5,0,5,1,0,0,0 541 | 0,2,0,10,7534,12,18,3,42,0,3,0,11,2,0,0,0,1,1,0,0,1,0,0,0,0,2,0,0,1,0,1,1,0,0,1,3,4,0,0 542 | 0,0,0,0,75496,87,0,0,27,0,0,0,0,4,13,0,0,1,2,0,1,2,0,1,0,1,1,0,0,5,11,1,1,0,0,1,4,1,0,0 543 | 0,18,12,14,5700,35,6,14,101,0,2,0,14,1,0,0,0,3,1,0,1,1,1,0,0,0,2,0,0,1,0,0,0,0,0,2,0,0,0,1 544 | 0,0,17,24,6053,0,0,32,44,0,0,0,24,2,0,0,0,1,1,0,2,1,1,0,0,0,2,0,0,5,0,1,3,0,1,3,0,0,0,0 545 | 0,1,9,0,4674,13,3,0,4,0,1,0,0,0,0,0,0,2,1,0,1,1,0,0,0,0,2,0,0,7,0,1,3,0,0,1,0,5,0,0 546 | 2,0,30,5,14,3,2,5,5,1,1,0,3,1,2,0,0,2,1,0,1,1,0,0,0,0,1,3,0,2,1,0,1,0,0,2,0,0,0,0 547 | 0,18,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,1,0,1,2,1,0,0,0,1,0,0,9,0,0,0,0,0,4,0,0,0,0 548 | 0,0,1,0,75496,87,0,0,27,0,0,0,0,1,13,0,0,1,2,0,4,2,0,1,0,1,3,0,0,5,11,1,1,0,0,1,4,1,0,0 549 | 0,71,1,7,2905,45,3,7,28,0,1,0,7,1,0,0,0,1,0,0,1,1,1,0,0,0,7,0,0,1,0,0,1,0,0,1,0,3,0,0 550 | 7,1,0,0,149,27,12,0,0,2,3,0,0,2,1,0,0,3,1,0,1,1,0,0,0,0,3,0,0,8,0,0,0,0,0,3,0,0,0,0 551 | 0,0,3,0,39680,0,0,1,63,0,0,0,0,1,15,0,0,1,2,0,1,1,0,0,0,0,1,0,0,3,0,0,0,0,1,1,7,0,0,0 552 | 0,1,5,5,12058,16,2,4,15,0,1,0,5,2,3,0,0,1,1,0,2,1,0,0,0,0,3,0,0,4,0,1,1,0,1,1,3,1,0,0 553 | 0,2,15,11,42192,0,0,15,12,0,0,0,12,2,0,0,0,1,1,0,1,1,0,0,0,0,6,0,0,1,0,0,0,0,1,1,0,0,0,0 554 | 3,-1,9,8,472,8,5,20,112,1,2,0,8,1,0,0,0,0,1,0,3,1,0,0,0,0,2,0,0,1,0,0,3,0,2,2,0,0,0,1 555 | 0,13,2,3,7912,325,9,6,94,0,3,0,3,8,1,0,0,1,1,0,1,1,1,0,0,0,3,0,0,1,0,0,0,0,0,2,0,0,0,0 556 | 0,15,47,14,7444,0,0,13,5,0,0,0,14,5,3,0,0,3,3,0,1,1,0,4,0,5,2,0,0,1,5,1,2,0,2,2,0,1,0,0 557 | 0,94,1,0,39070,0,0,1,18,0,0,0,0,2,0,2,2,5,2,0,1,1,1,0,2,0,1,0,2,5,0,1,2,2,1,4,2,1,0,0 558 | 0,1,4,2,1965,8,27,8,183,0,8,0,2,1,6,0,0,1,5,0,1,1,0,3,0,4,2,0,0,1,3,0,1,0,0,1,0,3,0,1 559 | 0,1027,8,0,193838,0,0,0,18,0,0,0,0,5,0,0,0,1,1,0,7,2,0,0,0,0,2,0,0,8,0,2,1,0,0,3,0,10,0,0 560 | 0,2,0,1,1972,0,0,1,14,0,0,0,1,1,1,0,0,1,3,0,5,1,0,0,0,0,5,0,0,1,0,0,0,0,2,7,0,0,0,0 561 | 0,0,5,4,4576,139,1,18,113,0,1,1,6,2,8,2,2,6,1,0,1,1,0,0,2,0,1,0,2,4,7,0,0,2,0,1,2,0,0,0 562 | 0,0,19,16,1427,332,0,18,19,0,0,0,16,1,21,0,0,3,1,0,1,1,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,4,0,0 563 | 0,17,8,27,30166,0,0,26,11,0,0,0,27,1,4,2,2,2,4,0,2,1,0,0,2,0,2,0,2,2,4,0,0,2,0,3,2,0,0,0 564 | 0,2,0,0,36144,0,0,36,0,0,0,0,0,1,4,3,2,2,1,0,1,1,0,0,3,0,1,0,3,1,8,0,0,3,0,3,2,0,0,0 565 | 0,55,3,5,1283,88,9,4,294,0,4,0,19,1,0,0,5,1,1,0,1,1,0,0,0,0,2,0,0,1,0,2,1,0,0,3,6,1,2,0 566 | 0,324,6,5,6120,0,0,13,6,0,0,0,14,5,0,0,0,1,1,0,1,1,1,0,0,0,2,0,0,2,0,0,0,0,0,4,0,0,0,0 567 | 2,334,0,0,80,0,6,0,23,1,5,0,0,1,1,0,0,2,1,0,1,1,0,0,0,0,0,0,0,8,0,0,0,0,2,6,3,0,0,0 568 | 0,921,1,3,1620,9,4,4,7,0,1,0,3,2,18,0,0,1,2,0,1,1,0,0,0,0,3,0,0,1,0,0,0,0,0,1,0,0,0,0 569 | 0,0,1,0,11855,11,8,1,13,0,2,0,0,0,0,0,0,2,2,0,2,1,1,0,0,0,1,0,0,2,0,0,0,0,1,0,0,0,0,0 570 | 0,0,784,1,74278,437,0,7,13,0,0,0,13,2,6,0,0,1,1,0,2,2,0,0,0,0,1,0,0,1,3,0,1,0,0,7,0,1,0,0 571 | 0,0,5,4,13050,0,0,5,4,0,0,0,4,1,0,0,0,1,0,0,1,1,0,0,0,0,2,0,0,2,0,0,0,0,0,1,3,0,0,0 572 | 0,2,2,4,1787,19,5,7,75,0,2,0,4,1,0,0,0,1,1,0,1,1,0,0,0,0,2,0,0,1,0,0,0,0,0,1,0,0,0,0 573 | 0,0,4,2,534533,0,0,2,2,0,0,0,2,1,19,0,0,1,1,0,2,2,0,0,0,0,1,0,0,1,0,2,1,0,0,5,0,8,0,0 574 | 0,-1,0,0,0,0,0,8,20,0,0,0,0,0,5,1,1,2,3,0,1,2,1,0,1,0,4,1,1,9,2,0,0,1,1,6,1,0,0,0 575 | 0,0,35,34,2947,0,0,38,73,0,0,0,34,1,4,6,2,1,1,0,2,1,0,0,6,0,2,0,6,2,4,0,0,6,2,1,2,0,0,0 576 | 0,94,3,0,2923,5,3,0,0,0,1,0,0,1,1,0,0,1,3,0,2,1,1,0,0,0,2,0,0,1,0,0,0,0,2,2,0,0,0,0 577 | 0,-1,0,0,1671,2,1,0,2,0,1,0,0,3,0,0,0,1,1,0,1,1,1,0,0,0,2,0,0,4,0,0,0,0,1,2,0,0,0,1 578 | 0,1,20,16,7248,47,2,21,47,0,1,0,16,6,16,0,0,1,1,0,3,1,0,0,0,0,2,0,0,2,13,0,1,0,0,2,4,0,1,0 579 | 0,16,3,32,1617,149,29,22,1289,0,8,0,78,0,1,0,0,1,1,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0 580 | 0,43,2,2,10,0,0,2,14,0,0,0,2,1,0,0,0,2,1,0,3,1,0,0,0,0,1,0,0,1,0,0,0,0,0,2,0,0,0,0 581 | 0,1,2,0,6380,0,0,4,15,0,0,0,0,1,6,0,0,1,5,0,5,1,0,0,0,0,0,0,0,7,3,0,3,0,0,1,0,1,0,0 582 | 1,100,2,2,262,42,32,45,963,1,7,0,22,2,0,0,0,0,1,0,3,1,0,0,0,0,1,0,0,1,0,1,2,0,0,3,0,2,0,0 583 | 0,2375,45,0,11482,535,5,28,368,0,2,0,25,2,5,1,1,1,1,0,4,1,1,0,1,0,5,0,1,1,0,0,0,1,0,3,1,0,0,0 584 | 0,38,21,3,1906,103,6,22,37,0,2,0,3,4,1,0,0,1,1,0,1,1,0,0,0,0,1,0,0,3,0,0,0,0,1,1,0,0,0,0 585 | 0,0,4,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,3,0,2,2,1,0,0,0,1,0,0,9,0,0,0,0,0,1,0,0,0,0 586 | 18,25,44,12,329,228,57,13,279,1,8,0,12,1,0,0,0,1,1,0,1,1,0,0,0,0,1,0,0,4,0,0,0,0,0,5,0,0,0,0 587 | 0,2,25,0,2986,58,4,8,16,0,1,0,6,3,0,0,0,1,1,0,1,1,0,0,0,0,3,0,0,6,0,1,1,0,0,1,4,1,1,1 588 | 0,1,2,1,2995,0,0,1,5,0,0,0,1,2,0,0,0,1,0,0,1,1,1,0,0,0,1,0,0,5,0,1,1,0,0,5,0,5,0,0 589 | 0,3,2,26,12025,0,0,44,26,0,0,0,26,0,4,3,2,1,1,0,7,1,0,0,3,3,2,0,3,1,8,0,0,3,0,1,2,0,0,0 590 | 1,5,6,3,2,3,1,3,3,1,1,0,3,2,10,0,0,1,1,0,0,1,0,0,0,0,6,0,0,3,0,1,2,0,0,2,0,2,0,0 591 | 0,-1,0,0,0,0,0,0,0,0,0,0,0,4,4,6,2,2,4,0,0,2,1,0,6,0,1,4,6,9,4,0,0,6,0,4,2,0,0,0 592 | 0,-1,63,40,1470,61,4,37,46,0,1,0,40,2,11,0,0,1,0,0,2,1,0,0,0,0,1,0,0,1,0,1,3,0,0,1,0,2,0,0 593 | 0,53,33,2,3900,90,11,8,187,0,4,0,2,6,21,0,0,1,0,0,1,1,1,0,0,0,1,0,0,1,0,0,3,0,0,1,0,4,0,0 594 | 0,1266,5,0,21585,1010,3,3,198,0,1,0,2,1,0,0,0,1,2,0,1,1,0,0,0,0,1,0,0,2,0,0,0,0,0,2,5,0,0,0 595 | 5,3,64,10,0,0,5,9,10,1,1,0,0,4,0,0,0,1,1,0,1,1,0,0,0,0,1,0,0,1,0,1,2,0,0,1,0,5,0,0 596 | 0,1,8,4,1504,31,18,14,645,0,4,0,4,2,21,0,0,1,1,0,1,1,1,0,0,0,3,0,0,1,0,0,1,0,0,5,0,4,0,0 597 | 0,650,0,0,1926,0,0,11,21,0,0,0,0,0,5,1,1,1,1,0,1,1,0,4,1,5,4,1,1,1,2,0,0,1,0,6,1,0,0,0 598 | 0,119,0,1,7159,4,10,1,39,0,1,0,1,1,1,0,0,4,0,0,1,1,0,0,0,0,2,0,0,1,0,0,0,0,0,1,0,0,0,1 599 | 3,2711,17,0,4,0,3,0,0,1,1,0,0,1,1,0,0,1,1,0,1,1,0,0,0,0,1,0,0,2,0,0,0,0,0,1,0,0,0,0 600 | 0,305,1,1,1974,132,9,29,137,0,4,0,1,1,0,0,5,1,1,0,2,1,0,0,0,0,2,0,0,1,0,2,3,0,0,3,6,5,2,0 601 | 0,-1,76,3,14459,400,2,11,345,0,2,0,3,2,0,0,0,1,1,0,2,1,0,0,0,0,2,0,0,2,0,1,2,0,1,7,0,0,0,1 602 | 10,1,11,14,133,16,12,18,244,1,2,0,16,3,0,0,0,1,6,0,0,1,0,3,0,4,1,0,0,1,0,1,2,0,0,1,0,3,0,0 603 | 0,12,5,0,0,0,0,0,0,0,0,0,0,1,0,0,5,3,3,0,1,2,1,0,0,0,2,0,0,9,0,0,1,0,0,1,6,2,2,0 604 | 0,5,78,1,20132,0,0,5,0,0,0,0,4,1,12,0,0,1,1,0,1,1,0,0,0,0,1,0,0,2,10,0,3,0,0,5,0,6,0,0 605 | 0,3,1,0,27540,14,2,1,4,0,1,0,0,1,10,0,0,1,5,0,1,1,0,0,0,0,2,0,0,2,0,1,3,0,0,1,0,2,0,0 606 | 1,0,7,3,671,48,2,32,32,1,2,0,3,0,11,0,0,1,2,0,4,1,0,0,0,0,2,0,0,1,0,1,1,0,0,4,0,2,0,0 607 | 0,48,0,12,1401,105,5,1,478,0,2,0,54,1,0,0,0,1,3,0,1,1,0,0,0,0,1,0,0,4,0,0,0,0,0,1,0,0,0,0 608 | 0,149,1,15,270,0,0,7,46,0,0,0,15,2,1,0,0,1,1,0,3,1,0,0,0,0,1,0,0,4,0,0,0,0,2,1,0,0,0,0 609 | 0,0,6,2,17964,0,0,2,0,0,0,0,2,1,5,1,1,5,3,0,2,1,0,0,1,0,4,1,1,3,2,0,0,1,0,2,1,0,0,0 610 | 0,2,1,1,3047,0,0,1,43,0,0,0,1,2,0,0,0,1,1,0,1,1,1,0,0,0,2,0,0,5,0,0,0,0,0,4,0,0,0,0 611 | 0,6,0,1,36606,0,0,8,6,0,0,0,1,1,18,0,0,1,4,0,2,1,0,0,0,0,3,0,0,1,0,0,0,0,0,1,0,0,0,0 612 | 0,-1,11,7,7188,42,2,13,41,0,1,0,7,2,2,0,0,1,0,0,1,1,1,0,0,0,3,0,0,3,1,0,1,0,0,1,3,1,0,0 613 | 0,0,2,5,1847,227,2,45,197,0,1,0,48,1,0,3,2,1,1,0,1,1,1,0,3,0,1,0,3,2,0,0,0,3,0,2,2,0,0,0 614 | 0,7,11,7,7188,42,2,13,41,0,1,0,7,3,2,0,0,1,0,0,1,1,1,0,0,0,1,3,0,3,1,0,3,0,0,1,3,1,0,0 615 | 0,1,1,0,0,0,0,1,61,0,0,0,0,1,1,0,0,1,1,0,2,2,1,0,0,0,1,0,0,9,0,0,0,0,0,4,0,0,0,0 616 | 0,1,4,1,4870,19,13,7,75,0,6,0,1,0,1,0,0,1,2,0,2,1,0,0,0,0,2,0,0,1,0,0,0,0,0,1,0,0,0,1 617 | 0,99,0,0,2986,6,9,0,33,0,2,0,0,2,0,0,0,1,3,0,1,1,0,0,0,0,2,0,0,1,0,0,0,0,2,2,0,0,0,1 618 | 0,1,3,0,25931,0,0,19,20,0,0,0,0,4,0,0,0,1,2,0,4,1,1,0,0,0,2,0,0,1,0,1,2,0,0,1,0,7,0,0 619 | 3,2,14,10,12,8,16,11,43,2,11,0,8,0,2,0,0,1,4,0,4,1,0,0,0,0,1,0,0,4,0,0,2,0,0,1,0,1,0,0 620 | 0,0,10,27,12284,181,2,37,144,0,2,0,27,2,8,3,2,1,2,0,2,1,0,0,3,0,1,0,3,2,7,0,0,3,0,0,2,0,0,0 621 | 1,1,37,8,339,38,1,8,10,1,1,1,10,6,14,0,0,1,2,0,6,1,1,0,0,0,1,0,0,4,0,1,2,0,0,1,0,3,0,0 622 | 0,1,2,0,4367,127,7,17,86,0,1,0,0,1,4,2,2,2,3,0,1,1,0,0,2,0,1,4,2,1,4,0,0,2,0,1,2,0,0,0 623 | 0,2,1,6,5594,124,7,30,129,0,2,0,6,9,3,0,0,1,3,0,0,1,0,0,0,0,2,0,0,1,5,1,1,0,0,1,0,1,0,0 624 | 0,7,1,3,1959,71,5,11,39,0,2,0,3,1,0,0,5,1,2,0,1,1,0,0,0,0,2,0,0,1,0,2,1,0,0,3,6,5,2,0 625 | 1,3,0,6,624,9,1,8,8,1,1,0,6,1,1,0,0,1,3,0,2,1,1,0,0,0,3,0,0,3,0,0,0,0,0,5,0,0,0,0 626 | 3,1128,5,1,31,1,11,3,3,2,6,0,1,1,0,0,0,1,3,0,1,1,0,0,0,0,2,0,0,1,0,1,2,0,0,2,1,1,0,0 627 | 1,0,36,4,2,4,1,1,4,1,1,0,4,1,0,0,0,5,2,0,1,1,1,0,0,0,2,0,0,2,0,0,2,0,0,1,0,2,0,1 628 | 0,62,19,4,5076,28,2,6,43,0,2,0,4,2,6,0,0,1,2,0,4,1,0,3,0,4,3,0,0,2,0,0,2,0,0,1,0,3,0,0 629 | 0,4,11,4,33111,22,0,4,6,0,0,0,4,1,2,0,0,1,0,0,1,1,1,0,0,0,3,0,0,5,1,1,1,0,0,1,0,1,0,0 630 | 0,0,3,2,7607,0,0,3,10,0,0,0,2,1,0,0,0,4,1,0,7,1,1,0,0,0,1,0,0,5,0,0,0,0,0,4,0,0,0,0 631 | 0,36,9,0,4468,0,0,1,47,0,0,0,0,1,2,0,0,1,2,0,1,1,1,0,0,0,2,2,0,2,1,0,3,0,0,1,0,1,0,0 632 | 0,4,12,4,34414,0,0,4,29,0,0,0,4,4,3,0,0,1,1,0,1,1,1,0,0,0,2,0,0,5,5,1,3,0,0,4,3,1,0,0 633 | 33,946,6,2,449,31,33,32,32,1,1,0,3,1,0,0,0,1,1,0,2,1,0,0,0,0,2,0,0,1,0,1,3,0,0,3,4,6,1,0 634 | 0,151,1,4,2443,20,6,15,58,0,1,6,14,6,1,0,0,2,3,0,1,1,1,0,0,0,7,0,0,6,0,0,0,0,0,2,0,0,0,1 635 | 1,-1,33,6,5,6,3,5,9,1,2,0,6,1,0,0,0,1,5,0,2,1,1,0,0,0,2,0,0,8,0,1,1,0,0,1,0,5,0,1 636 | 0,2,6,20,2962,192,9,22,138,0,1,0,25,1,0,4,1,4,1,0,1,1,0,0,4,0,2,0,4,2,0,0,0,5,0,1,1,0,0,0 637 | 0,0,84,10,1612,39,8,12,39,0,1,0,24,1,12,0,0,1,1,0,1,1,0,0,0,0,2,0,0,1,10,0,3,0,0,7,0,6,0,1 638 | 0,0,115,27,2934,59,1,30,53,0,1,0,27,1,6,0,0,3,2,0,1,1,0,0,0,0,3,0,0,3,3,1,3,0,0,6,0,3,0,0 639 | 1,1,7,18,800,72,14,31,357,1,6,0,18,2,0,0,4,1,3,0,1,1,0,0,0,0,1,0,0,8,0,0,0,0,0,1,5,0,0,0 640 | 3,1,5,6,0,0,25,7,10,1,2,0,0,1,8,3,2,1,1,0,1,1,0,0,3,0,3,0,3,6,7,0,0,3,0,1,2,0,0,1 641 | 0,7,8,5,105111,0,0,8,57,0,0,0,5,2,2,0,0,3,1,0,0,2,0,0,0,0,2,2,0,3,1,1,2,0,0,2,4,1,1,0 642 | 0,29,9,4,8678,145,1,9,38,0,1,0,4,0,0,0,0,1,0,0,1,1,0,0,0,0,2,0,0,3,0,1,3,0,0,1,0,2,0,0 643 | 0,0,5,2,25806,0,0,2,2,0,0,0,2,1,1,0,0,6,1,0,1,1,1,0,0,0,3,0,0,1,0,0,0,0,0,3,0,0,0,0 644 | 1,0,133,0,495,63,1,27,28,1,1,2,28,2,0,0,0,1,3,0,1,1,0,0,0,0,2,0,0,8,0,1,2,0,1,2,3,1,0,0 645 | 0,-1,0,0,10416,67,9,0,70,0,2,0,0,6,0,0,0,1,1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,1 646 | 0,-1,0,0,17375,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,1,1,1,0,0,0,1,0,0,5,0,1,1,0,0,1,0,1,0,0 647 | 0,1,17,17,20406,151,68,17,254,0,5,0,17,1,0,0,0,1,4,0,1,1,0,0,0,0,3,0,0,4,0,0,0,0,0,3,0,0,0,0 648 | 0,0,13,2,24544,0,0,2,2,0,0,0,2,1,8,2,2,1,1,0,1,1,1,0,2,0,1,0,2,3,0,0,0,2,0,1,2,0,0,0 649 | 0,150,5,9,6321,17,10,11,16,0,1,0,9,3,0,2,2,2,2,0,1,1,1,0,2,0,2,0,2,1,0,1,2,2,0,1,2,3,0,1 650 | 0,5,0,0,6253,84,2,20,71,0,1,0,0,1,0,0,0,1,0,0,1,1,1,0,0,0,1,0,0,2,0,0,0,0,0,1,0,0,0,0 651 | 0,-1,0,0,18336,27,1,1,25,0,1,0,0,1,0,6,2,1,1,0,2,1,1,0,6,0,1,0,6,3,0,1,3,6,0,1,2,4,0,0 652 | 0,1453,8,3,7106,158,2,13,123,0,1,0,13,1,12,0,0,1,2,0,1,1,0,0,0,0,1,0,0,1,10,0,3,0,0,2,4,6,1,0 653 | 2,0,3,1,358,7,32,26,228,2,12,0,1,3,0,0,0,1,3,0,1,1,0,0,0,0,7,0,0,1,0,1,1,0,2,1,0,7,0,1 654 | 7,1,364,4,21,30,14,47,57,1,2,0,3,1,3,0,4,1,3,0,4,1,1,0,0,0,3,0,0,1,6,1,2,0,0,2,5,1,4,0 655 | 0,9,1,6,4327,247,3,14,94,0,1,0,6,3,4,2,2,1,2,0,1,1,0,0,2,0,1,4,2,2,4,0,0,2,1,1,2,0,0,0 656 | 12,0,74,19,34,19,38,18,279,1,5,0,19,2,0,0,0,1,2,0,1,1,0,0,0,0,2,0,0,8,0,1,2,0,0,1,0,1,0,0 657 | 1,45,32,14,4,14,1,23,14,1,1,0,1,3,10,0,0,1,1,0,1,1,0,0,0,0,1,0,0,3,0,1,2,0,0,1,0,2,0,0 658 | 0,26,128,7,0,191,2,15,110,0,1,0,2,0,10,0,0,1,1,0,1,1,0,0,0,0,2,0,0,2,0,1,2,0,1,2,0,2,0,0 659 | 0,271,1,1,0,0,0,3,21,0,0,0,1,0,1,0,0,1,2,0,1,2,1,0,0,0,2,0,0,9,0,0,0,0,0,1,5,0,0,0 660 | 0,-1,0,0,8521,64,32,0,138,0,9,0,0,3,1,0,0,1,1,0,1,1,0,0,0,0,2,0,0,1,0,0,0,0,0,3,0,0,0,1 661 | 0,365,24,46,43,181,52,33,343,0,6,0,39,1,0,0,0,1,4,0,1,1,0,0,0,0,6,0,0,4,0,0,3,0,0,3,0,5,0,1 662 | 0,0,23,18,1573,75,3,18,65,0,1,0,18,1,16,0,0,1,4,0,1,1,0,0,0,0,2,0,0,2,13,2,1,0,0,2,0,0,0,0 663 | 0,0,92,6,893008,0,0,7,90,0,0,0,6,1,3,0,3,1,2,0,1,2,0,0,0,0,2,0,0,1,6,1,3,0,0,1,3,1,4,0 664 | 0,1,1,0,38940,151,1,3,78,0,0,0,0,1,6,0,0,1,2,0,1,1,0,0,0,0,3,0,0,2,3,0,1,0,0,1,4,3,1,0 665 | 3,32,0,10,46,8,4,7,26,1,2,0,8,3,3,0,0,1,1,0,1,1,1,0,0,0,2,0,0,2,0,1,3,0,0,1,3,1,0,0 666 | 3,82,36,6,0,0,69,19,464,1,12,0,0,1,2,0,0,2,4,0,1,1,0,4,0,5,6,0,0,1,1,1,2,0,0,2,4,1,0,0 667 | 0,64,6,1,25950,0,0,1,1,0,0,0,1,1,0,0,0,1,1,0,1,2,0,0,0,0,2,0,0,2,0,0,2,0,1,2,0,2,0,0 668 | 0,0,8,13,1650,0,0,5,13,0,0,0,13,4,2,0,0,1,0,0,3,1,0,0,0,0,1,3,0,1,1,1,2,0,0,1,3,1,0,0 669 | 4,0,139,14,23,21,4,12,14,1,1,0,14,5,3,0,3,1,0,0,1,1,0,0,0,0,3,0,0,2,6,1,2,0,0,1,3,1,4,0 670 | 0,25,5,2,10036,0,0,21,0,0,0,0,2,5,15,0,0,2,1,0,1,1,1,0,0,0,1,0,0,2,0,0,0,0,0,1,7,0,0,0 671 | 0,60,1,1,145,74,4,1,43,0,3,0,1,1,0,0,0,1,3,0,1,1,0,2,0,2,1,0,0,1,0,0,0,0,0,1,0,0,0,0 672 | 0,-1,0,0,76921,0,0,0,4,0,0,0,0,2,1,0,0,2,1,0,1,2,0,0,0,0,1,0,0,1,0,0,0,0,0,2,0,0,0,0 673 | 0,58,4,2,3068,11,29,3,240,0,4,2,2,1,2,0,0,1,0,0,3,1,0,0,0,0,2,0,0,8,0,0,3,0,0,1,0,1,0,1 674 | 1,19,20,11,391,27,31,23,340,1,6,0,11,1,2,5,3,1,1,0,1,1,0,0,5,0,4,0,5,1,12,3,2,4,0,1,3,1,3,0 675 | 0,0,2,13,2904,104,1,3,100,0,1,0,13,0,21,0,0,3,2,0,3,1,2,0,0,0,0,0,0,1,0,0,1,0,1,1,4,4,1,0 676 | 0,71,0,0,11796,830,2,33,205,0,1,0,0,1,0,0,0,1,1,0,2,1,0,0,0,0,3,0,0,1,0,0,0,0,0,3,0,0,0,0 677 | 0,71,0,2,5011,3,33,2,50,0,8,0,2,1,0,0,0,4,2,0,2,1,0,0,0,0,5,0,0,1,0,0,0,0,0,3,0,0,0,1 678 | 68,0,81,23,56,40,282,48,469,1,7,1,23,4,0,0,0,1,1,0,2,1,0,0,0,0,2,0,0,8,0,1,1,0,0,7,0,1,0,0 679 | 0,577,0,8,1920,214,78,35,922,0,13,1,8,5,2,0,0,2,1,0,1,1,0,0,0,0,1,3,0,4,1,0,3,0,0,1,0,1,0,0 680 | 0,1,16,4,0,0,0,4,4,0,0,0,4,1,0,0,0,3,1,0,2,2,1,0,0,0,2,0,0,9,0,1,1,0,0,4,0,10,0,0 681 | 0,57,3,4,25466,22,7,4,22,0,1,0,4,1,15,0,0,1,0,0,1,1,0,0,0,0,2,0,0,1,0,0,0,0,0,1,7,0,0,0 682 | 0,252,4,0,1324,0,0,27,12,0,0,0,9,1,5,1,1,1,4,0,2,1,0,0,1,0,4,1,1,1,2,0,0,1,0,2,1,0,0,0 683 | 0,3,2,1,7283,0,0,2,143,0,0,0,1,1,2,0,0,1,2,0,3,1,0,0,0,0,5,0,0,4,1,0,1,0,0,2,0,0,0,0 684 | 0,0,1,2,1323,119,24,13,176,0,5,1,2,2,1,0,0,5,1,0,1,1,1,0,0,0,3,0,0,4,0,0,0,0,1,2,0,0,0,0 685 | 0,34,3,4,0,0,0,4,14,0,0,0,4,1,0,0,0,1,3,0,1,2,1,0,0,3,6,0,0,9,0,0,0,0,2,5,0,0,0,1 686 | 0,2,51,7,1673,201,1,6,131,0,1,0,8,2,0,0,0,4,0,0,1,1,0,3,0,4,3,0,0,1,0,0,1,0,0,1,0,3,0,0 687 | 0,0,67,14,28797,1342,1,33,69,0,1,0,14,2,13,0,0,1,0,2,1,1,1,1,0,1,2,0,0,5,11,0,1,0,0,1,0,2,0,0 688 | 9,28,0,16,329,172,210,35,5637,1,12,39,150,3,1,0,0,1,1,1,1,1,0,1,0,1,2,0,0,6,0,0,0,0,1,1,0,0,0,0 689 | 9,3,0,11,578,22,9,11,22,1,1,0,11,3,18,0,0,1,2,0,1,1,0,0,0,0,3,0,0,1,0,0,0,0,0,1,0,0,0,0 690 | 0,2,82,13,7958,88,17,13,21,0,7,0,13,0,3,0,4,1,3,0,2,1,0,0,0,0,3,0,0,6,6,1,2,0,1,5,5,1,4,0 691 | 0,1,5,1,235117,0,0,0,1,0,0,0,1,3,1,0,0,6,1,0,2,2,1,0,0,0,2,0,0,7,0,0,0,0,0,4,0,0,0,0 692 | 0,87,7,13,9083,13,27,12,13,0,3,0,13,0,14,0,0,2,5,0,1,1,0,0,0,0,2,0,0,1,0,1,2,0,0,1,0,3,0,1 693 | 11,47,5,6,57,6,24,10,12,1,2,0,6,1,11,0,0,1,2,0,1,1,0,0,0,0,2,0,0,1,0,1,1,0,0,1,0,2,0,0 694 | 0,-1,0,0,24842,109,21,10,19,0,2,0,0,6,0,0,0,2,1,0,8,1,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0 695 | 0,1,31,14,13821,0,0,14,0,0,0,0,14,4,0,0,0,2,2,0,4,1,0,0,0,0,3,0,0,2,0,0,0,0,0,3,0,0,0,1 696 | 0,58,6,0,0,0,0,0,9,0,0,0,0,2,2,0,0,1,0,0,5,2,1,0,0,0,1,3,0,9,1,0,3,0,0,4,0,1,0,0 697 | 0,0,2,2,68381,0,0,3,4,0,0,0,2,3,3,0,3,2,2,0,2,2,0,0,0,0,4,0,0,1,6,1,2,0,0,6,3,1,4,0 698 | 0,65,9,9,38934,42,4,11,14,0,0,0,9,2,0,0,0,4,0,0,1,1,1,0,0,0,3,0,0,1,0,1,2,0,0,4,0,4,0,0 699 | 1,-1,1,5,2,5,1,1,5,1,1,0,5,1,1,0,0,1,1,0,1,1,0,0,0,0,3,0,0,3,0,0,0,0,1,8,0,0,0,1 700 | 0,1,1,2,16125,77,1,11,73,0,1,0,2,0,4,6,2,1,6,0,1,1,0,0,6,0,1,4,6,3,4,0,0,6,1,1,2,0,0,0 701 | 1,0,109,4,10,0,32,26,562,1,12,0,0,1,3,0,3,1,2,0,4,1,0,0,0,0,3,0,0,1,6,1,2,0,2,2,3,1,0,0 702 | 5,-1,0,0,383,11,5,4,4,1,1,0,0,3,9,0,0,1,0,0,2,1,0,0,0,0,5,0,0,1,0,0,0,0,0,1,0,0,0,0 703 | 0,1,3,5,23,0,0,4,5,0,0,0,5,1,0,0,0,1,1,0,2,1,1,0,0,0,2,0,0,1,0,0,0,0,1,4,0,0,0,0 704 | 15,5,1,0,328,0,0,25,0,1,0,0,2,1,1,0,0,2,1,0,3,1,0,0,0,0,1,0,0,1,0,0,0,0,0,5,0,0,0,1 705 | 0,2082,8,1,0,0,0,5,6,0,0,0,1,2,1,0,0,1,3,0,1,2,1,0,0,0,1,0,0,9,0,0,0,0,0,4,0,0,0,0 706 | 0,8,2,2,5783,0,0,7,2,0,0,0,2,3,2,0,0,1,0,0,1,1,0,0,0,0,1,3,0,1,1,1,1,0,0,1,0,1,0,0 707 | 0,1,18,13,4327,13,1,13,13,0,1,0,13,3,16,0,0,2,4,0,4,1,0,0,0,0,2,0,0,3,13,1,1,0,0,7,0,1,0,0 708 | 0,0,1,0,238983,0,0,1,3,0,0,0,1,2,0,0,0,1,1,0,1,2,1,0,0,0,2,0,0,7,0,0,0,0,0,4,0,0,0,0 709 | 0,1,8,4,4360,21,1,18,97,0,1,0,4,1,0,0,0,0,2,0,8,1,0,0,0,0,3,0,0,2,0,0,1,0,1,1,0,1,0,0 710 | 0,1,1,0,1604,2,13,2,6,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,2,0,0,1,0,1,1,0,0,1,0,1,0,0 711 | 0,25,70,12,16092,56,15,15,41,0,4,0,13,1,2,5,3,1,0,0,1,1,0,0,5,0,4,0,5,3,12,3,2,4,0,1,3,1,3,0 712 | 0,30,1,1,30227,8,3,6,9,0,1,0,1,0,1,0,0,1,3,0,2,2,0,0,0,0,1,0,0,1,0,0,0,0,0,2,0,0,0,1 713 | 0,6,2,25,3034,264,1,1,247,0,1,0,38,1,6,0,0,1,1,0,1,1,0,0,0,0,2,0,0,3,3,1,3,0,0,2,4,1,1,0 714 | 0,3,1,1,42481,0,0,10,1,0,0,0,1,4,18,0,0,2,1,0,6,1,0,0,0,0,3,0,0,1,0,0,0,0,0,1,0,0,0,0 715 | 0,1,0,0,6540,589,42,0,349,0,6,0,0,0,0,4,1,2,1,0,1,1,0,0,4,0,2,0,4,1,0,0,0,5,0,3,1,0,0,0 716 | 0,-1,0,0,1765,47,2,0,68,0,2,0,0,0,0,0,0,1,5,0,1,1,0,0,0,0,5,0,0,3,0,0,0,0,0,1,0,0,0,0 717 | 0,54,13,9,3411,75,3,21,113,0,2,0,9,2,2,0,0,1,2,0,1,1,0,0,0,0,1,3,0,4,1,1,1,0,0,1,4,1,0,0 718 | 0,155,1,1,7233,0,0,13,60,0,0,0,1,1,0,0,0,1,1,0,1,1,0,0,0,0,1,0,0,8,0,0,0,0,0,1,0,0,0,0 719 | 0,2369,0,5,1586,48,4,22,403,0,4,0,5,1,3,0,0,1,4,0,1,1,1,0,0,0,5,0,0,1,5,1,3,0,0,1,3,1,0,0 720 | 0,0,12,27,15065,150,12,41,107,0,1,0,27,1,0,3,2,1,1,0,1,1,0,0,3,0,2,0,3,1,0,0,0,3,2,1,2,0,0,0 721 | 0,3,23,0,4357,95,1,8,49,0,1,0,10,2,14,0,0,1,0,0,6,1,0,0,0,0,1,0,0,3,0,1,2,0,0,1,0,3,0,0 722 | 0,976,9,5,1450,0,0,6,6,0,0,0,6,3,7,0,0,0,5,0,1,1,0,0,0,0,2,0,0,7,0,1,3,0,0,1,7,2,0,0 723 | 0,6,0,0,7269,334,1,1,31,0,1,0,0,1,0,0,0,1,3,0,1,1,0,0,0,0,1,0,0,3,0,0,0,0,0,1,0,0,0,0 724 | 0,1,1,1,6147,0,0,10,11,0,0,0,1,1,20,4,1,2,1,0,1,1,0,0,4,0,2,0,4,1,0,0,0,5,0,6,1,0,0,0 725 | 0,0,7,4,1571,5,4,5,29,0,2,0,5,1,0,0,0,1,1,0,1,1,0,0,0,0,1,0,0,1,0,0,3,0,0,1,0,0,0,1 726 | 0,0,13,2,4281,343,2,10,69,0,2,0,8,1,8,2,2,1,1,0,1,1,1,0,2,0,2,0,2,2,0,0,0,2,0,2,2,0,0,0 727 | 0,36,30,2,0,0,0,2,2,0,0,0,2,5,3,0,0,1,6,0,1,2,1,0,0,0,1,0,0,9,5,1,3,0,0,4,0,1,0,0 728 | 0,-2,4,1,201,0,0,1,1,0,0,0,1,1,0,0,0,1,3,0,2,1,1,0,0,0,2,0,0,7,0,1,2,0,0,1,0,4,0,0 729 | 2,91,1,2,254,46,12,10,43,1,3,0,20,1,0,1,1,1,3,0,1,1,0,0,1,0,3,0,1,1,0,0,0,1,0,2,1,0,0,0 730 | 0,3118,0,0,5888,188,2,23,112,0,1,0,0,2,0,1,1,1,2,0,1,1,0,0,1,0,1,0,1,2,0,0,0,1,1,1,1,0,0,0 731 | 4,46,2,0,11,0,10,4,6,1,4,0,0,1,7,0,0,1,0,0,1,1,0,0,0,0,2,0,0,1,9,0,1,0,0,1,0,2,0,0 732 | 0,24,23,20,7,0,0,40,37,0,0,0,4,1,0,0,0,1,3,0,2,1,1,0,0,0,2,0,0,5,0,1,1,0,1,3,3,1,0,0 733 | 0,12,5,3,0,0,0,3,44,0,0,0,3,1,1,0,0,1,1,0,1,2,1,0,0,0,2,0,0,9,0,0,0,0,2,6,0,0,0,1 734 | 0,44,1,0,2710,0,0,1,39,0,0,0,1,6,0,0,0,1,1,0,4,1,1,0,0,0,1,0,0,5,0,0,0,0,0,5,0,0,0,1 735 | 0,0,2,5,3211,82,3,5,54,0,1,0,5,1,0,0,4,1,0,0,1,1,1,0,0,0,1,0,0,4,0,0,0,0,0,1,5,0,0,1 736 | 0,0,0,1,3346,368,3,42,97,0,2,0,43,4,4,3,2,1,2,0,1,1,0,2,3,2,1,0,3,1,8,0,0,3,0,1,2,0,0,0 737 | 0,13,11,12,4754,192,24,18,255,0,3,0,12,1,0,0,0,1,1,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,2,0,0,0,0 738 | 0,179,14,0,5221,347,2,9,129,0,1,0,9,3,0,0,0,3,3,0,1,1,1,0,0,0,1,0,0,2,0,0,0,0,0,1,5,0,0,0 739 | 45,0,16,5,24,5,51,5,276,1,3,1,5,8,6,0,0,3,2,0,2,1,0,0,0,0,3,0,0,4,3,1,1,0,2,1,4,3,0,0 740 | 0,3,0,0,2340,202,29,22,523,0,5,0,19,5,0,4,1,0,2,0,1,1,0,0,4,0,3,0,4,1,0,0,0,5,1,3,1,0,0,0 741 | 6,14,54,20,60,21,143,39,934,2,31,3,21,1,13,0,0,1,1,1,1,1,0,1,0,1,1,0,0,6,11,0,1,0,0,1,0,9,0,0 742 | 0,1,1,0,48317,58,0,6,27,0,0,0,0,2,0,0,0,1,1,0,1,2,0,0,0,0,2,0,0,2,0,1,2,0,0,2,0,4,0,0 743 | 1,1,0,7,70,8,2,9,400,1,2,0,8,1,3,0,0,1,1,0,3,1,1,0,0,0,2,0,0,2,0,1,3,0,0,1,3,1,0,0 744 | 1,0,1,0,227,1,173,18,50,1,7,1,0,0,19,0,0,1,6,0,1,1,0,0,0,0,1,0,0,4,0,0,3,0,0,5,0,8,0,1 745 | 0,5,10,0,128747,0,0,0,6,0,0,0,0,1,13,0,0,5,1,0,1,2,1,1,0,1,2,0,0,5,11,1,1,0,0,1,4,1,1,0 746 | 1,2,48,3,20,3,6,21,21,1,3,0,3,0,21,0,0,0,1,0,2,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,4,4,1,0 747 | 0,754,16,0,4845,507,29,2,115,0,9,0,1,3,0,0,0,1,3,0,1,1,2,0,0,0,1,0,0,8,0,0,3,0,0,1,0,1,0,0 748 | 1,-1,0,0,597,9,12,14,63,1,2,0,0,8,0,0,0,6,0,0,1,1,0,0,0,0,2,0,0,1,0,1,2,0,0,1,3,1,0,0 749 | 0,0,0,0,138676,0,0,4,123,0,0,0,0,0,1,0,0,1,1,0,1,2,1,0,0,0,1,0,0,5,0,0,0,0,0,4,0,0,0,0 750 | 0,21,2,2,13580,131,3,10,110,0,1,0,2,3,0,0,0,1,3,0,1,1,0,0,0,0,3,0,0,1,0,0,0,0,0,1,0,0,0,1 751 | 0,15,53,3,3581,49,1,14,117,0,1,0,13,1,0,0,0,1,1,0,1,1,1,0,0,0,3,0,0,1,0,1,2,0,0,2,0,4,0,0 752 | 2,2119,1,0,741,1,2,0,0,1,1,0,0,1,19,0,0,1,1,0,4,1,2,0,0,0,2,0,0,2,0,1,2,0,0,1,6,8,0,0 753 | 0,0,15,17,3863,74,10,18,63,0,1,0,17,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 754 | 7,1,4,4,1,5,12,23,92,2,5,10,4,1,0,0,0,1,0,0,0,1,1,0,0,0,2,0,0,6,0,0,0,0,0,1,0,0,0,1 755 | 0,0,1,1,1483,86,1,31,58,0,1,0,1,0,4,3,2,1,3,0,3,1,0,2,3,2,3,0,3,3,8,0,0,3,0,1,2,0,0,0 756 | 0,0,42,12,1516,107,2,15,16,0,1,0,16,2,11,0,0,2,0,0,1,1,0,0,0,0,1,0,0,2,0,1,3,0,0,4,0,2,0,0 757 | 1,1,108,49,46,32,5,49,201,1,3,0,26,1,0,0,0,4,0,0,3,1,0,0,0,0,1,0,0,1,0,1,2,0,0,1,0,5,0,0 758 | 1,3,2,2,59,2,8,12,352,1,5,0,2,5,3,0,0,1,1,0,8,1,0,0,0,0,2,0,0,1,5,1,1,0,2,2,3,1,0,0 759 | 0,28,3,5,2947,11,1,6,7,0,1,0,5,1,15,0,0,0,0,0,6,1,0,0,0,0,2,0,0,3,0,0,0,0,0,1,7,0,0,0 760 | 0,197,4,1,25,0,0,1,1,0,0,0,1,3,0,0,0,1,3,0,4,1,0,2,0,2,1,0,0,7,0,0,0,0,0,2,5,0,0,0 761 | 0,0,114,12,36047,560,7,14,196,0,0,0,12,2,0,0,0,1,1,0,1,1,0,0,0,0,3,0,0,1,0,1,2,0,0,1,0,3,0,0 762 | 0,2,7,26,5539,0,0,12,6,0,0,0,33,3,0,0,0,1,1,0,5,1,1,0,0,0,2,0,0,5,0,1,3,0,1,1,0,4,0,0 763 | 0,-1,5,0,7748,149,2,0,27,0,1,0,0,1,12,0,0,1,2,0,2,1,0,0,0,0,7,0,0,2,10,0,1,0,0,1,4,6,1,0 764 | 0,60,2,0,27285,0,0,21,0,0,0,0,2,7,0,1,1,1,1,0,1,1,0,0,1,0,3,0,1,3,0,0,0,1,0,3,1,0,0,0 765 | 1,874,0,0,329,44,1,38,44,1,1,0,38,2,0,3,2,1,1,0,1,1,0,0,3,0,1,0,3,3,0,1,3,3,2,2,2,5,0,0 766 | 0,1,5,8,5640,416,31,47,1016,0,13,4,8,2,9,0,0,3,1,0,1,1,1,0,0,0,1,0,0,6,0,0,0,0,0,2,0,0,0,0 767 | 1,-1,16,6,541,27,21,20,248,1,4,0,6,1,6,0,0,2,4,0,8,1,0,0,0,0,2,0,0,1,3,0,1,0,0,3,0,6,0,0 768 | 2,66,6,8,233,10,14,11,60,1,3,0,8,0,1,0,0,1,1,0,1,1,0,0,0,0,3,0,0,1,0,0,0,0,0,3,0,0,0,0 769 | 2,1,36,4,384,42,6,7,65,1,4,0,4,2,7,0,0,1,2,0,1,1,1,0,0,0,5,0,0,1,9,0,1,0,2,2,0,0,0,0 770 | 1,1,2,1,5,1,1,1,1,1,1,0,1,1,0,0,0,4,1,0,1,1,4,0,0,0,3,0,0,3,0,0,1,0,0,1,0,0,0,0 771 | 4,12,73,12,0,3,4,11,7,1,1,0,3,3,7,0,0,2,1,0,0,1,0,2,0,2,2,0,0,1,9,1,3,0,0,1,0,1,0,0 772 | 0,0,1,1,2412,18,2,12,12,0,1,0,1,1,6,0,0,1,2,0,2,1,0,0,0,0,1,0,0,2,3,1,3,0,0,5,0,8,0,0 773 | 0,1,15,20,6003,0,0,23,165,0,0,0,20,0,9,0,0,1,1,0,2,1,0,0,0,0,1,0,0,7,0,0,0,0,0,1,0,0,0,0 774 | 13,1,13,13,48,19,13,8,13,2,2,1,13,2,2,5,3,1,4,0,4,1,3,0,5,0,2,0,5,4,12,3,1,4,0,2,3,1,3,1 775 | 0,1,1,1,1692,101,1,9,10,0,1,0,1,8,14,0,0,5,1,0,1,1,0,0,0,0,3,0,0,1,0,1,2,0,0,3,0,3,0,0 776 | 0,10,7,10,29815,0,0,13,70,0,0,0,10,2,4,1,1,1,4,0,2,1,0,0,1,0,1,0,1,7,0,0,0,1,0,4,1,0,0,0 777 | 0,6,7,12,5472,146,2,46,131,0,1,0,12,1,8,2,2,2,2,0,1,1,1,0,2,0,2,0,2,2,7,0,0,2,0,4,2,0,0,0 778 | 8,-1,11,10,377,82,60,5,1251,1,15,1,82,1,3,0,3,1,1,0,5,1,0,0,0,0,3,0,0,8,6,1,3,0,0,3,3,1,0,0 779 | 17,-1,2,1,433,30,20,42,82,2,3,0,1,1,3,0,3,1,1,0,1,1,3,0,0,0,1,0,0,1,6,1,2,0,0,2,3,1,0,1 780 | 3,6,58,44,0,0,71,49,763,1,18,0,0,3,0,0,0,6,2,0,1,1,0,0,0,0,3,0,0,1,0,1,2,0,0,3,0,1,0,0 781 | 0,-1,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,2,0,4,2,1,0,0,0,2,0,0,9,0,0,0,0,1,1,0,0,0,0 782 | 0,1,10,2,832,38,2,5,5,0,1,0,2,1,1,0,0,1,1,0,1,1,0,0,0,0,1,0,0,7,0,0,0,0,0,1,0,0,0,0 783 | 1,13,12,7,537,159,1,4,149,1,1,0,83,0,1,0,0,1,1,0,1,1,0,0,0,0,5,0,0,3,0,0,0,0,0,3,0,0,0,0 784 | 0,1,4,5,25905,614,6,14,183,0,1,0,14,1,0,1,1,2,1,0,1,1,1,0,1,0,3,0,1,1,0,0,0,1,0,4,1,0,0,0 785 | 0,1,7,11,16593,405,1,16,257,0,1,0,16,3,8,2,2,1,1,0,0,1,1,0,2,0,1,0,2,3,7,0,0,2,0,4,2,0,0,0 786 | 0,0,11,9,16221,892,8,45,437,0,2,0,10,1,0,1,1,1,1,0,1,1,1,0,1,0,2,0,1,1,0,0,0,1,0,7,1,0,0,1 787 | 0,9,0,0,14332,262,24,0,220,0,5,0,0,1,18,0,0,3,2,0,2,1,0,0,0,0,2,0,0,1,0,0,0,0,1,2,0,0,0,1 788 | 30,327,41,2,4,0,153,6,11,2,13,0,0,0,0,0,0,1,6,0,4,1,0,0,0,0,7,0,0,1,0,0,1,0,1,1,0,10,0,1 789 | 8,1,5,11,0,0,66,22,387,2,5,0,0,2,17,1,1,1,1,2,1,1,0,1,1,1,1,0,1,1,0,0,0,1,0,1,1,0,0,1 790 | 0,1086,0,16,9326,0,0,0,241,0,0,0,17,6,0,0,0,1,4,0,3,1,0,0,0,0,1,0,0,7,0,0,0,0,0,1,0,0,0,0 791 | 0,19,1,1,1781,108,6,17,127,0,1,0,1,7,0,0,0,1,1,0,1,1,1,0,0,0,1,0,0,1,0,0,0,0,0,1,2,0,0,0 792 | 1,124,0,2,40,55,1,2,2,1,1,0,2,2,15,0,0,1,1,0,1,1,1,0,0,0,1,0,0,3,0,0,0,0,0,1,7,0,0,0 793 | 0,16,1,5,1746,19,8,8,18,0,2,0,5,1,18,0,0,1,2,0,1,1,0,0,0,0,3,0,0,1,0,0,0,0,0,4,0,0,0,0 794 | 30,-1,42,2,4,0,153,6,11,2,13,0,0,0,0,0,0,1,6,0,1,1,0,0,0,0,7,0,0,1,0,0,1,0,1,1,0,10,0,1 795 | 0,-1,0,0,1946,13,75,14,107,0,15,0,0,3,1,0,0,2,1,0,1,1,0,0,0,0,2,0,0,8,0,0,0,0,0,3,5,0,0,0 796 | 0,545,0,0,7408,58,7,14,9,0,1,0,0,3,7,0,0,2,1,0,1,1,0,0,0,3,3,0,0,1,9,0,1,0,0,1,0,2,0,0 797 | 0,18,0,0,72789,0,0,0,0,0,0,0,0,1,1,0,0,1,4,0,2,2,0,0,0,0,5,0,0,2,0,0,0,0,0,0,0,0,0,0 798 | 0,0,1,2,306,0,0,28,28,0,0,0,2,0,14,0,0,1,2,0,1,1,1,0,0,0,2,0,0,5,0,1,1,0,0,4,0,3,0,0 799 | 0,1,18,4,9156,305,1,35,65,0,1,0,20,1,4,3,2,1,1,0,2,1,0,0,3,0,2,0,3,3,4,0,0,3,0,1,2,0,0,0 800 | 0,85,1,30,4291,116,11,39,96,0,2,0,30,1,20,4,1,1,1,0,1,1,1,0,4,0,3,0,4,1,0,0,0,5,0,1,1,0,0,0 801 | 15,1,11,9,1383,18,38,17,145,0,4,0,15,2,0,0,0,1,2,0,1,1,0,0,0,0,2,0,0,1,0,0,0,0,0,6,0,0,0,0 802 | 0,-2,3,27,626,1321,0,15,102,0,0,0,27,0,0,0,0,1,1,0,8,1,0,0,0,0,1,0,0,1,0,0,3,0,0,1,0,5,0,1 803 | 0,1,0,3,22118,406,1,35,230,0,1,0,19,2,20,4,1,1,1,0,1,1,0,0,4,0,2,0,4,3,0,0,0,5,0,1,1,0,0,0 804 | 0,0,1,1,0,0,0,1,2,0,0,0,1,2,0,0,0,2,3,0,2,2,1,0,0,0,3,0,0,9,0,0,0,0,0,0,0,0,0,1 805 | 4,772,0,7,38,1,5,19,68,2,3,0,1,1,0,0,0,1,3,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0 806 | 1,0,120,0,21,31,1,38,31,1,1,0,0,1,7,0,0,4,1,0,1,1,0,0,0,0,1,0,0,3,9,0,1,0,0,5,0,2,0,0 807 | 1,1,15,1,61,2,1,1,1,1,1,1,1,4,0,0,0,1,3,0,1,1,1,0,0,0,3,0,0,4,0,1,2,0,0,2,0,0,0,0 808 | 1,0,87,0,59,5,1,0,0,1,1,0,0,1,12,0,0,0,1,0,4,1,0,0,0,0,2,0,0,3,10,0,1,0,1,1,0,6,0,0 809 | 0,1,11,1,10408,0,0,1,197,0,0,0,1,1,3,0,0,3,4,0,2,1,0,0,0,0,2,0,0,1,5,1,3,0,0,1,0,1,0,0 810 | 35,295,41,41,67,45,40,47,823,1,4,0,42,4,0,0,0,1,1,0,3,1,0,0,0,0,2,0,0,8,0,1,2,0,0,3,6,3,0,0 811 | 0,16,9,17,2972,621,13,42,564,0,2,0,17,2,9,0,0,1,1,0,2,1,0,0,0,0,2,0,0,1,0,0,0,0,2,3,0,0,0,0 812 | 0,75,6,8,240,48,42,31,618,0,10,0,19,2,9,0,0,1,1,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,5,0,0,0,1 813 | 0,0,1,0,1782,203,3,2,15,0,2,0,0,1,0,0,0,1,1,0,1,1,2,0,0,0,7,0,0,2,0,2,1,0,1,1,0,9,0,0 814 | 0,1,2,0,132827,721,0,0,48,0,0,0,0,0,2,0,0,1,1,0,0,2,0,4,0,5,2,2,0,1,1,0,3,0,0,2,0,9,0,0 815 | 2,61,101,5,432,137,2,27,27,1,1,0,27,0,11,0,0,1,1,0,1,1,0,0,0,0,1,0,0,1,0,1,3,0,0,1,0,2,0,0 816 | 0,1,37,5,6253,0,0,12,69,0,0,0,5,0,1,0,0,0,3,0,1,1,0,0,0,0,7,0,0,7,0,0,0,0,0,1,0,0,0,1 817 | 0,0,5,13,24695,0,0,38,218,0,0,0,67,1,0,0,0,1,1,0,1,1,0,0,0,0,2,0,0,1,0,1,2,0,0,2,0,9,0,0 818 | 30,6,1,1,149,6,31,11,80,2,3,0,1,2,6,0,0,1,0,0,1,1,0,3,0,4,2,0,0,1,0,0,2,0,0,1,0,3,0,1 819 | 1,0,1,1,430,40,1,1,3,1,1,0,1,1,2,5,3,2,1,0,4,1,0,0,5,0,2,0,5,3,12,1,2,4,2,2,3,1,3,1 820 | 0,1,46,15,1481,54,4,46,66,0,2,0,15,3,0,0,0,1,3,0,1,1,4,0,0,0,2,0,0,1,0,0,1,0,2,2,4,0,1,0 821 | 0,0,43,20,15865,46,1,26,43,0,1,0,20,2,7,0,0,3,1,0,1,1,0,0,0,0,2,0,0,3,9,0,3,0,2,3,0,2,0,0 822 | 0,0,8,5,8,56,47,41,379,0,18,0,3,3,0,0,0,1,1,0,1,1,1,0,0,0,3,0,0,4,0,1,3,0,1,5,0,7,0,0 823 | 0,9,7,12,1643,18,1,12,21,0,1,0,12,4,2,0,0,1,0,0,1,1,0,0,0,0,1,3,0,4,1,1,3,0,0,1,4,1,0,1 824 | 0,-1,1,4,22282,202,1,4,5,0,1,0,4,1,0,0,0,1,1,0,1,1,1,0,0,0,1,0,0,3,0,0,0,0,0,4,0,0,0,0 825 | 0,16,45,18,1500,108,3,17,18,0,1,0,18,1,7,0,0,1,1,0,6,1,0,0,0,0,4,0,0,2,0,0,2,0,0,1,0,2,0,0 826 | 4,-1,0,0,7,0,4,0,0,1,1,0,0,2,0,0,0,1,0,0,2,1,0,0,0,0,1,0,0,1,0,1,2,0,0,1,3,1,0,1 827 | 29,18,4,15,1,4,29,37,15,1,1,0,4,0,8,2,2,1,1,0,1,1,0,0,2,0,1,0,2,1,0,0,0,2,1,8,2,0,0,0 828 | 7,686,40,58,73,61,7,36,101,1,1,0,61,1,6,0,0,2,4,0,1,1,0,0,0,0,1,0,0,2,3,1,1,0,0,1,0,3,0,0 829 | 0,105,2,2,0,0,0,8,10,0,0,0,2,1,1,0,0,1,1,0,3,2,1,0,0,0,1,0,0,9,0,0,0,0,0,4,0,0,0,0 830 | 0,324,4,1,5735,56,2,3,15,0,1,0,1,3,15,0,0,1,2,0,1,1,0,0,0,0,2,0,0,2,0,0,0,0,0,2,7,0,0,0 831 | 0,0,12,8,36326,0,0,28,257,0,0,0,21,0,8,2,2,0,1,0,1,1,1,0,2,0,2,0,2,5,7,0,0,2,1,4,2,0,0,0 832 | 14,10,2,8,1137,10,16,10,29,0,2,1,8,1,18,0,0,1,3,0,1,1,0,0,0,0,2,0,0,4,0,0,0,0,1,2,0,0,0,0 833 | 2,23,10,10,1431,12,3,11,11,0,1,2,10,9,1,0,0,6,3,0,1,1,1,0,0,0,1,0,0,8,0,0,0,0,2,2,0,0,0,0 834 | 0,6,54,2,44064,0,0,2,2,0,0,0,2,5,21,0,0,2,4,0,1,1,0,0,0,0,1,0,0,7,0,1,3,0,0,1,0,1,0,0 835 | 2,384,4,3,139,40,13,15,51,1,3,0,3,1,0,0,0,1,0,0,3,1,0,3,0,4,2,0,0,1,0,1,1,0,0,1,4,0,1,0 836 | 0,8,1,1,43,0,0,1,1,0,0,0,1,1,0,0,0,1,6,0,7,1,0,0,0,0,0,0,0,7,0,0,0,0,2,0,0,0,0,0 837 | 2,3,6,6,2,1,13,5,58,1,4,0,1,2,2,0,0,3,1,0,1,1,0,0,0,0,3,0,0,1,1,1,1,0,0,3,0,1,0,0 838 | 28,7,6,2,4,0,28,3,3,1,1,0,0,2,6,0,0,2,2,0,6,1,0,0,0,0,1,0,0,4,3,0,3,0,1,1,0,3,0,0 839 | 0,1,0,11,4338,137,23,12,544,0,5,0,20,1,0,0,4,1,3,0,4,1,0,0,0,0,3,0,0,1,0,0,0,0,0,1,5,0,0,0 840 | 0,71,29,4,9597,37,2,26,37,0,1,0,20,4,0,0,0,1,5,0,0,1,1,0,0,0,3,0,0,3,0,1,2,0,0,3,0,0,0,0 841 | 0,1,40,6,10104,0,0,5,0,0,0,0,6,1,3,0,3,1,1,0,1,1,0,0,0,0,4,0,0,1,6,1,2,0,0,1,3,1,4,0 842 | 8,1,62,14,479,52,8,43,52,1,1,0,37,1,2,0,0,1,1,0,6,1,0,0,0,0,2,2,0,3,1,1,1,0,0,2,4,1,1,0 843 | 0,48,13,12,2940,775,2,7,193,0,0,0,12,1,0,0,0,1,1,0,4,1,0,0,0,0,1,0,0,1,0,0,0,0,2,5,3,0,0,1 844 | 0,3,2,2,2337,135,2,49,104,0,1,0,2,2,9,0,0,1,1,0,1,1,0,0,0,0,2,0,0,2,0,0,0,0,0,1,0,0,0,0 845 | 0,597,8,7,7,289,1,21,515,0,1,0,0,1,9,0,0,1,1,0,2,1,0,0,0,0,1,0,0,1,0,0,0,0,0,8,0,0,0,1 846 | 4,213,5,3,2,0,9,25,46,1,6,0,0,1,0,0,0,1,3,0,1,1,0,0,0,0,3,0,0,1,0,1,2,0,2,6,1,1,0,0 847 | 0,16,55,10,9025,70,10,10,31,0,3,0,10,1,0,0,0,1,1,0,1,1,1,0,0,0,3,0,0,1,0,1,1,0,0,8,0,5,0,0 848 | 0,160,19,38,4286,47,3,19,48,0,1,2,41,3,7,0,0,1,2,0,2,1,0,0,0,0,2,0,0,8,9,0,1,0,0,1,4,2,1,0 849 | 1,2773,1,0,5,0,1,0,0,1,1,0,0,0,1,0,0,4,1,0,2,1,1,0,0,0,1,0,0,3,0,0,0,0,1,4,0,0,0,0 850 | 0,29,10,9,2046,88,2,17,21,0,1,0,10,1,5,1,1,1,3,0,2,1,0,0,1,0,4,1,1,3,2,0,0,1,0,1,1,0,0,0 851 | 0,2,0,27,5754,0,0,42,31,0,0,0,31,1,0,0,0,1,1,0,3,1,1,0,0,0,1,0,0,5,0,0,0,0,0,4,0,0,0,0 852 | 0,127,0,1,4309,439,1,10,93,0,1,0,1,1,0,4,1,1,2,0,1,1,0,0,4,0,1,0,4,3,0,0,0,5,0,1,1,0,0,0 853 | 0,0,1,4,503,698,4,4,152,0,1,0,6,0,3,0,0,4,0,0,1,1,0,0,0,0,2,0,0,1,0,1,3,0,0,2,3,1,0,1 854 | 0,61,7,27,3602,0,0,41,130,0,0,0,30,2,0,0,0,1,2,0,1,1,1,0,0,0,1,0,0,5,0,0,0,0,2,4,0,0,0,0 855 | 0,-1,1,0,3162,78,3,7,63,0,1,0,0,0,0,0,0,1,2,0,1,1,1,0,0,0,1,0,0,4,0,1,2,0,0,0,0,1,0,0 856 | 4,10,16,8,309,31,21,12,73,2,5,0,13,1,0,0,0,1,4,0,3,1,0,0,0,0,1,0,0,1,0,0,1,0,0,5,4,1,1,0 857 | 0,0,11,0,1609,68,0,0,108,0,0,0,0,3,0,0,0,1,3,0,1,1,0,0,0,0,0,0,0,1,0,1,3,0,2,2,0,0,0,0 858 | 5,2,26,13,1,2,6,13,13,1,2,0,2,2,12,0,0,1,0,0,1,1,1,0,0,0,3,0,0,1,10,0,3,0,0,1,0,6,0,0 859 | 0,0,1,0,2954,22,5,4,64,0,2,0,0,1,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,6,0,0,0,0 860 | 2,23,0,17,361,57,2,7,58,1,1,0,46,5,10,0,0,1,6,0,1,1,0,0,0,3,1,0,0,2,0,1,1,0,0,2,0,1,0,0 861 | 3,910,0,0,563,16,3,7,7,1,1,0,0,1,1,0,0,1,1,0,3,1,0,0,0,0,1,0,0,1,0,0,0,0,0,5,0,0,0,0 862 | 0,1,3,3,43231,0,0,7,14,0,0,0,4,1,1,0,0,1,3,0,1,2,0,0,0,0,1,0,0,4,0,0,0,0,0,2,0,0,0,0 863 | 0,403,13,0,4554,0,0,6,38,0,0,0,3,1,0,0,0,1,1,0,1,1,4,0,0,0,2,0,0,7,0,1,3,0,0,1,0,1,0,0 864 | 1,-1,63,24,214,33,1,28,38,1,1,1,32,1,14,0,0,0,2,0,1,1,0,0,0,0,1,0,0,6,0,1,2,0,0,1,0,3,0,0 865 | 0,1,4,4,2933,0,0,41,56,0,0,0,4,5,0,0,0,1,1,0,2,1,0,0,0,0,1,0,0,7,0,0,0,0,2,1,0,0,0,0 866 | 3,265,34,17,46,17,3,16,17,1,1,0,17,1,0,0,0,4,3,0,1,1,0,0,0,0,1,0,0,2,0,0,3,0,1,0,0,9,0,1 867 | 0,-1,5,3,7205,24,1,4,18,0,1,0,3,2,16,0,0,6,1,0,4,1,0,0,0,0,3,0,0,8,13,0,3,0,0,2,4,0,1,0 868 | 0,3,0,36,1823,133,79,6,2299,0,13,0,36,1,0,0,0,1,2,0,2,1,0,0,0,0,2,0,0,1,0,1,1,0,0,3,0,5,0,0 869 | 0,86,29,0,17949,113,3,1,11,0,1,0,0,1,2,5,3,1,5,0,5,1,0,0,5,0,4,0,5,2,12,3,2,4,0,1,3,1,3,0 870 | 0,800,0,3,9066,97,2,5,84,0,1,0,5,1,0,0,0,1,0,0,2,1,0,0,0,0,3,0,0,2,0,0,0,0,0,1,0,0,0,0 871 | 0,3024,7,0,38370,437,3,4,95,0,0,0,4,3,4,3,2,1,0,0,1,1,0,0,3,0,1,4,3,1,4,0,0,3,0,1,2,0,0,0 872 | 0,1,45,24,11551,137,39,34,133,0,2,0,29,2,13,0,0,1,2,1,1,1,0,1,0,1,1,0,0,6,11,0,3,0,0,1,0,2,0,0 873 | 4,5,2,2,299,47,4,48,47,1,1,0,2,3,0,0,0,1,1,0,1,1,2,0,0,0,2,0,0,1,0,1,2,0,2,2,6,2,0,0 874 | 0,4,1,1,69428,0,0,9,2,0,0,0,1,0,10,0,0,4,1,0,1,2,0,0,0,0,3,0,0,3,0,1,2,0,0,2,0,2,0,0 875 | 3,5,1,7,943,29,4,17,108,1,2,0,10,1,0,5,3,3,1,0,0,1,1,0,5,0,2,0,5,3,0,1,2,4,0,1,3,1,0,0 876 | 0,28,4,15,4714,1019,1,18,211,0,1,0,19,2,9,0,0,1,2,0,1,1,0,0,0,0,1,0,0,4,0,0,0,0,0,1,0,0,0,0 877 | 6,26,0,79,44,63,10,32,340,1,2,0,63,1,20,4,1,1,1,0,2,1,0,0,4,0,2,0,4,1,0,0,0,5,0,1,1,0,0,1 878 | 0,6,2,0,3597,93,2,7,22,0,1,0,0,1,7,0,0,2,1,0,1,1,0,0,0,2,5,0,0,4,9,0,1,0,0,1,0,0,0,1 879 | 29,798,3,11,194,40,29,12,13,1,1,0,13,2,0,0,0,1,1,0,1,1,0,0,0,3,1,0,0,1,0,0,3,0,0,1,0,1,0,1 880 | 0,2,69,13,16407,54,1,13,53,0,1,0,13,6,0,0,0,4,1,0,8,1,0,0,0,0,3,0,0,3,0,1,2,0,0,1,0,4,0,0 881 | 0,70,3,5,4626,103,8,9,116,0,1,0,5,9,0,0,0,4,3,0,3,1,0,0,0,0,1,0,0,1,0,0,0,0,0,1,5,0,0,0 882 | 0,16,1,1,45750,477,0,14,72,0,0,0,1,1,0,0,0,1,1,0,2,2,0,0,0,0,1,0,0,1,0,0,0,0,0,1,2,0,0,0 883 | 0,1,1,0,3277,0,0,19,2,0,0,2,0,5,4,3,2,2,2,0,1,1,0,0,3,0,1,4,3,8,4,0,0,3,0,2,2,0,0,0 884 | 0,30,3,18,11776,0,0,24,129,0,0,0,18,1,9,0,0,1,1,0,1,1,0,0,0,0,1,0,0,7,0,0,0,0,0,1,0,0,0,0 885 | 1,52,1,7,169,12,27,15,360,1,11,0,7,2,6,0,0,1,5,0,1,1,0,0,0,0,2,0,0,1,0,0,2,0,0,1,0,3,0,0 886 | 0,137,0,0,126,0,0,0,0,0,0,0,0,1,1,0,0,1,2,0,1,1,0,0,0,0,1,0,0,8,0,0,0,0,0,1,0,0,0,0 887 | 0,3401,0,0,39594,401,1,0,21,0,0,0,0,5,0,0,0,1,5,0,1,1,0,0,0,0,1,0,0,2,0,0,0,0,0,1,0,0,0,0 888 | 0,58,4,0,26360,302,2,2,124,0,1,0,6,8,8,2,2,1,1,0,1,2,1,0,2,0,2,0,2,3,7,0,0,2,2,2,2,0,0,0 889 | 0,0,0,1,4448,1833,5,48,148,0,1,0,1,3,4,6,2,1,1,0,1,1,1,0,6,0,3,0,6,1,8,0,0,6,0,3,2,0,0,0 890 | 0,31,1,2,1696,0,0,23,47,0,0,0,2,3,5,1,1,1,3,0,5,1,1,0,1,0,4,1,1,5,2,0,0,1,0,6,1,0,0,0 891 | 0,158,1,1,34902,0,0,1,102,0,0,0,1,6,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,5,0,0,0,0,0,4,0,0,0,0 892 | 0,61,10,16,3748,25,5,8,25,0,1,0,16,2,21,0,0,1,0,0,1,1,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,4,0,0 893 | 0,-1,0,0,9980,193,2,0,20,0,2,0,0,2,1,0,0,1,1,0,5,1,0,0,0,0,2,0,0,2,0,0,0,0,0,1,0,0,0,0 894 | 0,0,1,0,18627,449,9,0,359,0,4,0,0,5,0,0,0,1,1,0,2,1,0,0,0,0,2,0,0,1,0,0,0,0,1,2,0,0,0,0 895 | 0,1,3,4,263,0,0,40,817,0,0,0,4,0,8,2,2,1,1,0,3,1,0,0,2,0,3,0,2,2,7,0,0,2,1,3,2,0,0,0 896 | 0,133,0,0,2960,402,1,39,387,0,1,0,56,1,0,2,2,1,1,0,4,1,0,0,2,0,1,0,2,1,0,0,0,2,0,2,2,0,0,0 897 | 0,10,11,9,10062,1053,6,26,900,0,2,0,9,2,0,0,0,2,1,0,2,1,0,0,0,0,1,0,0,6,0,0,0,0,0,1,3,0,0,0 898 | 0,4,8,8,33180,0,0,8,226,0,0,0,8,1,0,0,0,1,3,0,0,1,1,0,0,0,1,0,0,5,0,0,0,0,0,4,0,0,0,0 899 | 0,0,0,0,4216,0,11,0,0,0,5,0,0,1,2,0,0,1,0,0,1,1,0,0,0,0,2,2,0,1,1,0,3,0,0,1,0,1,0,1 900 | 24,597,0,5,56,6,24,5,6,1,1,0,6,1,0,0,5,3,1,0,1,1,1,0,0,0,2,0,0,1,0,0,3,0,0,2,6,4,2,1 901 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | import numpy as np 2 | 3 | import torch 4 | import torch.optim as optim 5 | from torch.utils.data import DataLoader 6 | from torch.utils.data import sampler 7 | 8 | from model.DeepFM import DeepFM 9 | from data.dataset import CriteoDataset 10 | 11 | # 900000 items for training, 10000 items for valid, of all 1000000 items 12 | Num_train = 800 13 | 14 | # load data 15 | train_data = CriteoDataset('./data', train=True) 16 | loader_train = DataLoader(train_data, batch_size=50, 17 | sampler=sampler.SubsetRandomSampler(range(Num_train))) 18 | val_data = CriteoDataset('./data', train=True) 19 | loader_val = DataLoader(val_data, batch_size=50, 20 | sampler=sampler.SubsetRandomSampler(range(Num_train, 899))) 21 | 22 | feature_sizes = np.loadtxt('./data/feature_sizes.txt', delimiter=',') 23 | feature_sizes = [int(x) for x in feature_sizes] 24 | print(feature_sizes) 25 | 26 | model = DeepFM(feature_sizes, use_cuda=False) 27 | optimizer = optim.Adam(model.parameters(), lr=1e-4, weight_decay=0.0) 28 | model.fit(loader_train, loader_val, optimizer, epochs=100, verbose=True) 29 | 30 | # test 31 | 32 | 33 | #xi[:,36,:] 34 | #d = defaultdict(int) 35 | #from collections import defaultdict 36 | #for ii in range(13, 39): 37 | # for t, (xi, xv, y) in enumerate(loader_train): 38 | # d = defaultdict(int) 39 | # for k in xi[:, ii, :]: 40 | # d[int(k)] += 1 41 | # print(d) 42 | -------------------------------------------------------------------------------- /model/DeepFM.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | A pytorch implementation of DeepFM for rates prediction problem. 5 | """ 6 | 7 | import torch 8 | import torch.nn as nn 9 | import torch.nn.functional as F 10 | import torch.optim as optim 11 | 12 | from time import time 13 | 14 | 15 | class DeepFM(nn.Module): 16 | """ 17 | A DeepFM network with RMSE loss for rates prediction problem. 18 | 19 | There are two parts in the architecture of this network: fm part for low 20 | order interactions of features and deep part for higher order. In this 21 | network, we use bachnorm and dropout technology for all hidden layers, 22 | and "Adam" method for optimazation. 23 | 24 | You may find more details in this paper: 25 | DeepFM: A Factorization-Machine based Neural Network for CTR Prediction, 26 | Huifeng Guo, Ruiming Tang, Yunming Yey, Zhenguo Li, Xiuqiang He. 27 | """ 28 | 29 | def __init__(self, feature_sizes, embedding_size=4, 30 | hidden_dims=[32, 32], num_classes=10, dropout=[0.5, 0.5], 31 | use_cuda=True, verbose=False): 32 | """ 33 | Initialize a new network 34 | 35 | Inputs: 36 | - feature_size: A list of integer giving the size of features for each field. 37 | - embedding_size: An integer giving size of feature embedding. 38 | - hidden_dims: A list of integer giving the size of each hidden layer. 39 | - num_classes: An integer giving the number of classes to predict. For example, 40 | someone may rate 1,2,3,4 or 5 stars to a film. 41 | - batch_size: An integer giving size of instances used in each interation. 42 | - use_cuda: Bool, Using cuda or not 43 | - verbose: Bool 44 | """ 45 | super().__init__() 46 | self.field_size = len(feature_sizes) 47 | self.feature_sizes = feature_sizes 48 | self.embedding_size = embedding_size 49 | self.hidden_dims = hidden_dims 50 | self.num_classes = num_classes 51 | self.dtype = torch.float 52 | 53 | """ 54 | check if use cuda 55 | """ 56 | if use_cuda and torch.cuda.is_available(): 57 | self.device = torch.device('cuda') 58 | else: 59 | self.device = torch.device('cpu') 60 | """ 61 | init fm part 62 | """ 63 | 64 | # self.fm_first_order_embeddings = nn.ModuleList( 65 | # [nn.Embedding(feature_size, 1) for feature_size in self.feature_sizes]) 66 | fm_first_order_Linears = nn.ModuleList( 67 | [nn.Linear(feature_size, self.embedding_size) for feature_size in self.feature_sizes[:13]]) 68 | fm_first_order_embeddings = nn.ModuleList( 69 | [nn.Embedding(feature_size, self.embedding_size) for feature_size in self.feature_sizes[13:40]]) 70 | self.fm_first_order_models = fm_first_order_Linears.extend(fm_first_order_embeddings) 71 | 72 | # self.fm_second_order_embeddings = nn.ModuleList( 73 | # [nn.Embedding(feature_size, self.embedding_size) for feature_size in self.feature_sizes]) 74 | fm_second_order_Linears = nn.ModuleList( 75 | [nn.Linear(feature_size, self.embedding_size) for feature_size in self.feature_sizes[:13]]) 76 | fm_second_order_embeddings = nn.ModuleList( 77 | [nn.Embedding(feature_size, self.embedding_size) for feature_size in self.feature_sizes[13:40]]) 78 | self.fm_second_order_models = fm_second_order_Linears.extend(fm_second_order_embeddings) 79 | 80 | """ 81 | init deep part 82 | """ 83 | all_dims = [self.field_size * self.embedding_size] + \ 84 | self.hidden_dims + [self.num_classes] 85 | for i in range(1, len(hidden_dims) + 1): 86 | setattr(self, 'linear_'+str(i), 87 | nn.Linear(all_dims[i-1], all_dims[i])) 88 | # nn.init.kaiming_normal_(self.fc1.weight) 89 | setattr(self, 'batchNorm_' + str(i), 90 | nn.BatchNorm1d(all_dims[i])) 91 | setattr(self, 'dropout_'+str(i), 92 | nn.Dropout(dropout[i-1])) 93 | 94 | def forward(self, Xi, Xv): 95 | """ 96 | Forward process of network. 97 | 98 | Inputs: 99 | - Xi: A tensor of input's index, shape of (N, field_size, 1) 100 | - Xv: A tensor of input's value, shape of (N, field_size, 1) 101 | """ 102 | """ 103 | fm part 104 | """ 105 | emb = self.fm_first_order_models[20] 106 | # print(Xi.size()) 107 | for num in Xi[:, 20, :][0]: 108 | if num > self.feature_sizes[20]: 109 | print("index out") 110 | 111 | # fm_first_order_emb_arr = [(torch.sum(emb(Xi[:, i, :]), 1).t() * Xv[:, i]).t() for i, emb in enumerate(self.fm_first_order_models)] 112 | # fm_first_order_emb_arr = [(emb(Xi[:, i, :]) * Xv[:, i]) for i, emb in enumerate(self.fm_first_order_models)] 113 | fm_first_order_emb_arr = [] 114 | for i, emb in enumerate(self.fm_first_order_models): 115 | if i <=12: 116 | Xi_tem = Xi[:, i, :].to(device=self.device, dtype=torch.float) 117 | fm_first_order_emb_arr.append((torch.sum(emb(Xi_tem).unsqueeze(1), 1).t() * Xv[:, i]).t()) 118 | else: 119 | Xi_tem = Xi[:, i, :].to(device=self.device, dtype=torch.long) 120 | fm_first_order_emb_arr.append((torch.sum(emb(Xi_tem), 1).t() * Xv[:, i]).t()) 121 | # print("successful") 122 | # print(len(fm_first_order_emb_arr)) 123 | fm_first_order = torch.cat(fm_first_order_emb_arr, 1) 124 | # use 2xy = (x+y)^2 - x^2 - y^2 reduce calculation 125 | # fm_second_order_emb_arr = [(torch.sum(emb(Xi[:, i, :]), 1).t() * Xv[:, i]).t() for i, emb in enumerate(self.fm_second_order_models)] 126 | # fm_second_order_emb_arr = [(emb(Xi[:, i]) * Xv[:, i]) for i, emb in enumerate(self.fm_second_order_embeddings)] 127 | fm_second_order_emb_arr = [] 128 | for i, emb in enumerate(self.fm_second_order_models): 129 | if i <=12: 130 | Xi_tem = Xi[:, i, :].to(device=self.device, dtype=torch.float) 131 | fm_second_order_emb_arr.append((torch.sum(emb(Xi_tem).unsqueeze(1), 1).t() * Xv[:, i]).t()) 132 | else: 133 | Xi_tem = Xi[:, i, :].to(device=self.device, dtype=torch.long) 134 | fm_second_order_emb_arr.append((torch.sum(emb(Xi_tem), 1).t() * Xv[:, i]).t()) 135 | 136 | fm_sum_second_order_emb = sum(fm_second_order_emb_arr) 137 | fm_sum_second_order_emb_square = fm_sum_second_order_emb * \ 138 | fm_sum_second_order_emb # (x+y)^2 139 | fm_second_order_emb_square = [ 140 | item*item for item in fm_second_order_emb_arr] 141 | fm_second_order_emb_square_sum = sum( 142 | fm_second_order_emb_square) # x^2+y^2 143 | fm_second_order = (fm_sum_second_order_emb_square - 144 | fm_second_order_emb_square_sum) * 0.5 145 | """ 146 | deep part 147 | """ 148 | # print(len(fm_second_order_emb_arr)) 149 | # print(torch.cat(fm_second_order_emb_arr, 1).shape) 150 | deep_emb = torch.cat(fm_second_order_emb_arr, 1) 151 | deep_out = deep_emb 152 | for i in range(1, len(self.hidden_dims) + 1): 153 | deep_out = getattr(self, 'linear_' + str(i))(deep_out) 154 | deep_out = getattr(self, 'batchNorm_' + str(i))(deep_out) 155 | deep_out = getattr(self, 'dropout_' + str(i))(deep_out) 156 | # print("successful") 157 | """ 158 | sum 159 | """ 160 | # print("1",torch.sum(fm_first_order, 1).shape) 161 | # print("2",torch.sum(fm_second_order, 1).shape) 162 | # print("deep",torch.sum(deep_out, 1).shape) 163 | # print("bias",bias.shape) 164 | bias = torch.nn.Parameter(torch.randn(Xi.size(0))) 165 | total_sum = torch.sum(fm_first_order, 1) + \ 166 | torch.sum(fm_second_order, 1) + \ 167 | torch.sum(deep_out, 1) + bias 168 | return total_sum 169 | 170 | def fit(self, loader_train, loader_val, optimizer, epochs=1, verbose=False, print_every=5): 171 | """ 172 | Training a model and valid accuracy. 173 | 174 | Inputs: 175 | - loader_train: I 176 | - loader_val: . 177 | - optimizer: Abstraction of optimizer used in training process, e.g., "torch.optim.Adam()""torch.optim.SGD()". 178 | - epochs: Integer, number of epochs. 179 | - verbose: Bool, if print. 180 | - print_every: Integer, print after every number of iterations. 181 | """ 182 | """ 183 | load input data 184 | """ 185 | model = self.train().to(device=self.device) 186 | criterion = F.binary_cross_entropy_with_logits 187 | 188 | for epoch in range(epochs): 189 | for t, (xi, xv, y) in enumerate(loader_train): 190 | xi = xi.to(device=self.device, dtype=self.dtype) 191 | xv = xv.to(device=self.device, dtype=torch.float) 192 | y = y.to(device=self.device, dtype=self.dtype) 193 | 194 | total = model(xi, xv) 195 | # print(total.shape) 196 | # print(y.shape) 197 | loss = criterion(total, y) 198 | optimizer.zero_grad() 199 | loss.backward() 200 | optimizer.step() 201 | 202 | if verbose and t % print_every == 0: 203 | print('Epoch %d Iteration %d, loss = %.4f' % (epoch, t, loss.item())) 204 | self.check_accuracy(loader_val, model) 205 | print() 206 | 207 | def check_accuracy(self, loader, model): 208 | if loader.dataset.train: 209 | print('Checking accuracy on validation set') 210 | else: 211 | print('Checking accuracy on test set') 212 | num_correct = 0 213 | num_samples = 0 214 | model.eval() # set model to evaluation mode 215 | with torch.no_grad(): 216 | for xi, xv, y in loader: 217 | xi = xi.to(device=self.device, dtype=self.dtype) # move to device, e.g. GPU 218 | xv = xv.to(device=self.device, dtype=self.dtype) 219 | y = y.to(device=self.device, dtype=self.dtype) 220 | total = model(xi, xv) 221 | preds = (F.sigmoid(total) > 0.5).to(dtype=self.dtype) 222 | # print(preds.dtype) 223 | # print(y.dtype) 224 | # print(preds.eq(y).cpu().sum()) 225 | num_correct += (preds == y).sum() 226 | num_samples += preds.size(0) 227 | # print("successful") 228 | acc = float(num_correct) / num_samples 229 | print('Got %d / %d correct (%.2f%%)' % (num_correct, num_samples, 100 * acc)) 230 | 231 | 232 | 233 | 234 | 235 | -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyfred/Pytorch_DeepFM/e1cb5a3f70ede9e22780d9cff1815a41728cf1c2/model/__init__.py -------------------------------------------------------------------------------- /model/__pycache__/DeepFM.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyfred/Pytorch_DeepFM/e1cb5a3f70ede9e22780d9cff1815a41728cf1c2/model/__pycache__/DeepFM.cpython-36.pyc -------------------------------------------------------------------------------- /model/__pycache__/DeepFM_hy.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyfred/Pytorch_DeepFM/e1cb5a3f70ede9e22780d9cff1815a41728cf1c2/model/__pycache__/DeepFM_hy.cpython-36.pyc -------------------------------------------------------------------------------- /model/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyfred/Pytorch_DeepFM/e1cb5a3f70ede9e22780d9cff1815a41728cf1c2/model/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyfred/Pytorch_DeepFM/e1cb5a3f70ede9e22780d9cff1815a41728cf1c2/utils/__init__.py -------------------------------------------------------------------------------- /utils/datapreprocess.py: -------------------------------------------------------------------------------- 1 | """ 2 | Preprocess Criteo dataset. This dataset was used for the Display Advertising 3 | Challenge (https://www.kaggle.com/c/criteo-display-ad-challenge). 4 | """ 5 | import os 6 | import sys 7 | import click 8 | import random 9 | import collections 10 | 11 | # There are 13 integer features and 26 categorical features 12 | continous_features = range(1, 14) 13 | categorial_features = range(14, 40) 14 | 15 | # Clip integer features. The clip point for each integer feature 16 | # is derived from the 95% quantile of the total values in each feature 17 | continous_clip = [20, 600, 100, 50, 64000, 500, 100, 50, 500, 10, 10, 10, 50] 18 | 19 | 20 | class CategoryDictGenerator: 21 | """ 22 | Generate dictionary for each of the categorical features 23 | """ 24 | 25 | def __init__(self, num_feature): 26 | self.dicts = [] 27 | self.num_feature = num_feature 28 | for i in range(0, num_feature): 29 | self.dicts.append(collections.defaultdict(int)) 30 | 31 | def build(self, datafile, categorial_features, cutoff=0): 32 | with open(datafile, 'r') as f: 33 | for line in f: 34 | features = line.rstrip('\n').split('\t') 35 | for i in range(0, self.num_feature): 36 | if features[categorial_features[i]] != '': 37 | self.dicts[i][features[categorial_features[i]]] += 1 38 | for i in range(0, self.num_feature): 39 | self.dicts[i] = filter(lambda x: x[1] >= cutoff, 40 | self.dicts[i].items()) 41 | self.dicts[i] = sorted(self.dicts[i], key=lambda x: (-x[1], x[0])) 42 | vocabs, _ = list(zip(*self.dicts[i])) 43 | self.dicts[i] = dict(zip(vocabs, range(1, len(vocabs) + 1))) 44 | self.dicts[i][''] = 0 45 | 46 | def gen(self, idx, key): 47 | if key not in self.dicts[idx]: 48 | res = self.dicts[idx][''] 49 | else: 50 | res = self.dicts[idx][key] 51 | return res 52 | 53 | def dicts_sizes(self): 54 | return [len(self.dicts[idx]) for idx in range(0, self.num_feature)] 55 | 56 | 57 | class ContinuousFeatureGenerator: 58 | """ 59 | Clip continuous features. 60 | """ 61 | 62 | def __init__(self, num_feature): 63 | self.num_feature = num_feature 64 | 65 | def build(self, datafile, continous_features): 66 | with open(datafile, 'r') as f: 67 | for line in f: 68 | features = line.rstrip('\n').split('\t') 69 | for i in range(0, self.num_feature): 70 | val = features[continous_features[i]] 71 | if val != '': 72 | val = int(val) 73 | if val > continous_clip[i]: 74 | val = continous_clip[i] 75 | 76 | def gen(self, idx, val): 77 | if val == '': 78 | return 0.0 79 | val = float(val) 80 | return val 81 | 82 | 83 | # @click.command("preprocess") 84 | # @click.option("--datadir", type=str, help="Path to raw criteo dataset") 85 | # @click.option("--outdir", type=str, help="Path to save the processed data") 86 | def preprocess(datadir, outdir): 87 | """ 88 | All the 13 integer features are normalzied to continous values and these 89 | continous features are combined into one vecotr with dimension 13. 90 | Each of the 26 categorical features are one-hot encoded and all the one-hot 91 | vectors are combined into one sparse binary vector. 92 | """ 93 | dists = ContinuousFeatureGenerator(len(continous_features)) 94 | dists.build(os.path.join(datadir, 'train.txt'), continous_features) 95 | 96 | dicts = CategoryDictGenerator(len(categorial_features)) 97 | dicts.build( 98 | os.path.join(datadir, 'train.txt'), categorial_features, cutoff=10) 99 | 100 | dict_sizes = dicts.dicts_sizes() 101 | categorial_feature_offset = [0] 102 | for i in range(1, len(categorial_features)): 103 | offset = categorial_feature_offset[i - 1] + dict_sizes[i - 1] 104 | categorial_feature_offset.append(offset) 105 | 106 | with open(os.path.join(outdir, 'feature_sizes.txt'), 'w') as feature_sizes: 107 | sizes = [1] * len(continous_features) + dict_sizes 108 | sizes = [str(i) for i in sizes] 109 | feature_sizes.write(','.join(sizes)) 110 | 111 | random.seed(0) 112 | 113 | # Saving the data used for training. 114 | with open(os.path.join(outdir, 'train.txt'), 'w') as out_train: 115 | with open(os.path.join(datadir, 'train.txt'), 'r') as f: 116 | for line in f: 117 | features = line.rstrip('\n').split('\t') 118 | 119 | continous_vals = [] 120 | for i in range(0, len(continous_features)): 121 | val = dists.gen(i, features[continous_features[i]]) 122 | continous_vals.append("{0:.6f}".format(val).rstrip('0') 123 | .rstrip('.')) 124 | categorial_vals = [] 125 | for i in range(0, len(categorial_features)): 126 | # val = dicts.gen(i, features[categorial_features[ 127 | # i]]) + categorial_feature_offset[i] 128 | val = dicts.gen(i, features[categorial_features[i]]) #修改过 129 | categorial_vals.append(str(val)) 130 | 131 | continous_vals = ','.join(continous_vals) 132 | categorial_vals = ','.join(categorial_vals) 133 | label = features[0] 134 | out_train.write(','.join([continous_vals, categorial_vals, label]) + '\n') 135 | 136 | 137 | with open(os.path.join(outdir, 'test.txt'), 'w') as out: 138 | with open(os.path.join(datadir, 'test.txt'), 'r') as f: 139 | for line in f: 140 | features = line.rstrip('\n').split('\t') 141 | 142 | continous_vals = [] 143 | for i in range(0, len(continous_features)): 144 | val = dists.gen(i, features[continous_features[i] - 1]) 145 | continous_vals.append("{0:.6f}".format(val).rstrip('0') 146 | .rstrip('.')) 147 | categorial_vals = [] 148 | for i in range(0, len(categorial_features)): 149 | # val = dicts.gen(i, features[categorial_features[ 150 | # i] - 1]) + categorial_feature_offset[i] 151 | val = dicts.gen(i, features[categorial_features[i] - 1]) #修改过 152 | categorial_vals.append(str(val)) 153 | 154 | continous_vals = ','.join(continous_vals) 155 | categorial_vals = ','.join(categorial_vals) 156 | out.write(','.join([continous_vals, categorial_vals]) + '\n') 157 | 158 | if __name__ == "__main__": 159 | preprocess('../data/raw', '../data') 160 | 161 | #for test 0923 162 | 163 | #datadir = '../data/raw' 164 | #outdir = '../data' 165 | #dicts = CategoryDictGenerator(len(categorial_features)) 166 | #dicts.build( 167 | # os.path.join(datadir, 'train.txt'), categorial_features, cutoff=10) 168 | #dict_sizes,dict_test = dicts.dicts_sizes() 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | --------------------------------------------------------------------------------