diff --git a/README.md b/README.md index 5cbd97106597a2d285ecaaba8fe7240644a2f2b0..51e45169f6c03cf459bcccb9e86ebfd313c193fa 100644 --- a/README.md +++ b/README.md @@ -46,8 +46,8 @@ language_bcp47: ## Dataset Description - **Homepage:** [sites.usp.br/corpuscarolina](https://sites.usp.br/corpuscarolina/) -- **Current Version:** 1.1 (Ada) -- **Point of Contact:** [Guilherme L. Mello](mailto:guilhermelmello@ime.usp.br) +- **Current Version:** 1.2 (Ada) +- **Point of Contact:** [LaViHD](mailto:lavihd@usp.br) ### Dataset Summary @@ -67,6 +67,10 @@ The documents are clustered into taxonomies and the corpus can be loaded in comp - `uni` : university domains; - `wik` : wikis. +Dataset Vesioning: + +The Carolina Corpus is under continuous development resulting in multiple vesions. The current version is v1.2, but v1.1 is also available. You can access diferent vesions of the corpus using the `revision` parameter on `load_dataset`. + Usage Example: ```python @@ -77,6 +81,9 @@ corpus_carolina = load_dataset("carolina-c4ai/corpus-carolina") # to load social media documents social_media = load_dataset("carolina-c4ai/corpus-carolina", taxonomy="soc") + +# to load previous version +corpus_carolina = load_dataset("carolina-c4ai/corpus-carolina", revision="v1.1") ``` ### Supported Tasks @@ -110,14 +117,14 @@ Every instance have the following structure. | Code | Taxonomy | Instances | Size | |:----:|:---------------------------|----------:|-------:| -| | **Total** | 1745187 | 7.3 GB | -| dat | Datasets and other Corpora | 1098717 | 3.3 GB | -| wik | Wikis | 603968 | 2.6 GB | -| jud | Judicial Branch | 38068 | 1.4 GB | -| leg | Legislative Branch | 14 | 20 MB | -| soc | Social Media | 3449 | 15 MB | -| uni | University Domains | 945 | 9.4 MB | -| pub | Public Domain Works | 26 | 3.6 MB | +| | **Total** | 2107045 | 11 GB | +| dat | Datasets and other Corpora | 1102049 | 4.4 GB | +| wik | Wikis | 960139 | 5.2 GB | +| jud | Judicial Branch | 40464 | 1.5 GB | +| leg | Legislative Branch | 13 | 25 MB | +| soc | Social Media | 3413 | 17 MB | +| uni | University Domains | 941 | 10 MB | +| pub | Public Domain Works | 26 | 4.5 MB | || diff --git a/corpus-carolina.py b/corpus-carolina.py index 1a00a392f981657ad2db67339dc51ea3c10e774f..7f8eb45c520ecbad750b60ad0e0151a7830c910b 100644 --- a/corpus-carolina.py +++ b/corpus-carolina.py @@ -14,9 +14,11 @@ # limitations under the License. """Carolina Corpus""" +from collections import defaultdict from lxml import etree import os import datasets +import gzip _HOMEPAGE = "https://sites.usp.br/corpuscarolina/" @@ -30,7 +32,7 @@ robust volume of texts of varied typology in contemporary Brazilian Portuguese _CITATION = r""" -@misc{corpusCarolinaV1.1, +@misc{corpusCarolinaV1.2, title={ Carolina: The Open Corpus for Linguistics and Artificial Intelligence}, @@ -52,7 +54,7 @@ _CITATION = r""" Palma, Mayara Feliciano}, howpublished={\url{https://sites.usp.br/corpuscarolina/corpus}}, year={2022}, - note={Version 1.1 (Ada)}, + note={Version 1.2 (Ada)}, } """ @@ -81,13 +83,13 @@ def _taxonomies(): leg="legislative branch", pub="public domain works", soc="social media", - uni="university_domains", + uni="university domains", wik="wikis", ) -_VERSION = "1.1.0" -_CORPUS_URL = "corpus/{taxonomy}/" +_VERSION = "1.2.0" +_CORPUS_URL = "corpus/{tax}/" _CHECKSUM_FNAME = _CORPUS_URL + "checksum.sha256" @@ -140,6 +142,7 @@ class Carolina(datasets.GeneratorBasedBuilder): return datasets.DatasetInfo( description=_DESCRIPTION, + supervised_keys=None, homepage=_HOMEPAGE, citation=_CITATION, features=features, @@ -153,37 +156,26 @@ class Carolina(datasets.GeneratorBasedBuilder): else: taxonomies = [_taxonomies()[self.config.taxonomy]] - zip_urls = dict() - for taxonomy in taxonomies: - # download checksum file - checksum_path = _CHECKSUM_FNAME.format(taxonomy=taxonomy) - checksum_path = dl_manager.download(checksum_path) + # download checksum files + checksum_urls = {t: _CHECKSUM_FNAME.format(tax=t) for t in taxonomies} + checksum_paths = dl_manager.download(checksum_urls) - tax_url = _CORPUS_URL.format(taxonomy=taxonomy) - - # extract and build zip urls - with open(checksum_path, encoding="utf-8") as cfile: + # prepare xml file name and zip urls + gzip_urls = list() + for tax, cpath in checksum_paths.items(): + tax_path = _CORPUS_URL.format(tax=tax) + with open(cpath, encoding="utf-8") as cfile: for line in cfile: - fname = line.split()[1] - if fname.endswith(".xml.zip"): - zip_url = tax_url + fname # download url - fname = os.path.split(fname)[1] # removes subdirs - fname = fname[:-4] # removes .zip - zip_urls[fname] = zip_url # xml -> zip url - - # extractions are made in cache folders and - # the path returned is the folder path, not the - # extracted file (or files). It is necessary to - # build the xml file path. It is made using the - # zip_urls dict structure. - extracted = dl_manager.download_and_extract(zip_urls) - xml_files = [os.path.join(v, k) for k, v in extracted.items()] - xml_files = sorted(xml_files) + xml_tax_path = line.split()[1] # xml file inside taxonomy + zip_fname = xml_tax_path + ".gz" # zip file inside taxonomy + zip_fpath = os.path.join(tax_path, zip_fname) # path inside corpus + gzip_urls.append(zip_fpath) + gzip_files = dl_manager.download(gzip_urls) return [ datasets.SplitGenerator( name="corpus", - gen_kwargs={"filepaths": xml_files} + gen_kwargs={"filepaths": gzip_files} ) ] @@ -197,14 +189,21 @@ class Carolina(datasets.GeneratorBasedBuilder): _key = 0 for path in filepaths: - # parse xml file - for _, tei in etree.iterparse(path, **parser_params): + gzip_file = gzip.GzipFile(path, "rb") + for _, tei in etree.iterparse(gzip_file, **parser_params): header = tei.find(f"{TEI_NS}teiHeader") - example = { - "meta": etree.tostring( - header, encoding="utf-8").decode("utf-8"), - "text": tei.find(f".//{TEI_NS}body/{TEI_NS}p").text + meta = etree.tostring( + header, encoding="utf-8").decode("utf-8") + text = ' '.join([e.text + for e in tei.findall(f".//{TEI_NS}body/{TEI_NS}p") + if e.text is not None + ]) + + yield _key, { + "meta": meta, + "text": text } - yield _key, example _key += 1 + + gzip_file.close() diff --git a/corpus/datasets and other corpora/checksum.sha256 b/corpus/datasets and other corpora/checksum.sha256 index 57af557058485e1f29a0991c80bb53df8929a26d..4bf58993a1c31bd821514efd3248b9895075f038 100644 --- a/corpus/datasets and other corpora/checksum.sha256 +++ b/corpus/datasets and other corpora/checksum.sha256 @@ -1,68 +1,153 @@ -25d054cf72869195fa622eb919024ea7c37dbf446dd0dd0c571e68bdc0765e76 pt-BR/DAT_000030.xml.zip -8625d7564e93668c21f224236b186f07b17b44dfd852f4a9355820bfc52523d3 pt-BR/DAT_000031.xml.zip -584bbf8ba98de288fbc8c393dc3226c6f3c3933a61a003cf96d3d92679ce3bd7 pt-BR/DAT_000032.xml.zip -9f042e48c9789cec5bfc796be5d301567fccaa885fb7f156b0b394fa6f08a54a pt-BR/DAT_000033.xml.zip -da8354df9cb2376b854453545c0428c2f625a7f02aea87ff6e2770b6d945ab55 pt-BR/DAT_000034.xml.zip -6aef685ecf4f7a7ff4d51353821ea16c0640d704e58db4282810efabd4face54 pt-BR/DAT_000035.xml.zip -cbc1cd6d5662e7eeab81abd267b3f5bb0f5e65b6d3aae902fd4311b815f87b7a pt-BR/DAT_000036.xml.zip -7bf07b0616c199fd1751a8e208b3b6b6a90304c45ffd8faa9807ef66ef9eb560 pt-BR/DAT_000037.xml.zip -4b874fe520018d1bb6b4afd675a3f6f996e9e3a8dd529fabf48b364e8a734a76 pt-BR/DAT_000038.xml.zip -8719068949072d64721be43dabe5540650f8cf74d7771e12ed6d8eef28151254 pt-BR/DAT_000039.xml.zip -c96165f078ad061554a6a3186c68e3d97c3155cda5fbdfd3b30de8a68bb76c81 pt-BR/DAT_000040.xml.zip -0394edd6892cbe64de574ef5132d17a0a267dea8b14bae28b8662608b9666045 pt-BR/DAT_000041.xml.zip -f3fb0142b34eef1f5397fcf6547f39c97a90d37d8c2d9a913e0870d32de7acea pt-BR/DAT_000042.xml.zip -c23d93624dc9eddbe44ca0032d16501e1f76ea54dfc8c875a8229bb983e921ff pt-BR/DAT_000043.xml.zip -0a47b3ed0a612b2440e6453aa12bf9345b1ac6424e16a80f72ce5f4c62a3fdd7 pt-BR/DAT_000044.xml.zip -7e334befd9fbaea5702cc68ebaa9c5e769c167316f831239f178493477917d34 pt-BR/DAT_000045.xml.zip -d5af7a555992b42801ad0c6e0585898b5f2a94e619589cca7b84db52d4c0c344 pt-BR/DAT_000046.xml.zip -1496c4a1f1196bbd24a6fe1960cc656c8584e0e1a71b5a61aab5f98460273193 pt-BR/DAT_000047.xml.zip -eec0aba58e3761010b3f2c90f8810f1abd89756e78dafa8e089afd30f490a3f6 pt-BR/DAT_000048.xml.zip -98d0e6c1af84b43d28e014b225876d8b64987bb810f6ba692ab20c3d4cecc54f pt-BR/DAT_000049.xml.zip -5d6cd8755fa965305bd28e51e29b61ed097daf2427dd65192399294daf6030b8 pt-BR/DAT_000050.xml.zip -cf2a0732ac1282163116250a3a68eeb60686f140636f0daed002d5b026f33293 pt-BR/DAT_000051.xml.zip -b4a78b3acc34c1342ea01a5355d2474564e664995ab505f87559d71f630b569d pt-BR/DAT_000052.xml.zip -90d19d371c54a8a2b4ca2da4cba46f3fbf1eedae7cc73652e5f2cf2b7883844f pt-BR/DAT_000053.xml.zip -6422206aacfb0499e96e9ed139ec0fd8c2f981369bf43d821a94aaba463182f9 pt-BR/DAT_000054.xml.zip -1bf5a82d272811dcda9ae39b6044f2110af5d30031da31950745b308b4dffb73 pt-BR/DAT_000055.xml.zip -ef69c581c1fd2fe3bec8f5248be9903c2cabde75c186e04e9b7979d86caa2e35 pt-BR/DAT_000056.xml.zip -484532df406ac4f09a01688e75befeb9df3536648ad244dbdd0620edf91f618b pt-BR/DAT_000057.xml.zip -0651c568a4dcfc747ace3f76b6c24eeeba3d0fe9b4eba432a829134e2ff6a874 pt-BR/DAT_000058.xml.zip -0b827aca7cf4c862911d47d1c67ad2cc8a17c5c028f1bea0b1c9d9240ebf4dff pt-BR/DAT_000059.xml.zip -7a322370afd728493f3b93b680edf64ea246187e5e4506020e10f009f9c6fcbf pt-BR/DAT_000060.xml.zip -0d4202343d7f75451b93ab2f50b82188badd32a43059d18a47b5f0ed36e4b00c pt-BR/DAT_000061.xml.zip -9cdbe1ed07756ff2bfba35df4f15dd49ffc95cf37556e287ec4e195b7b7e261b pt-BR/DAT_000062.xml.zip -4477f628f3eef8e882a6cd9d6c9d28edb186170a346ac834dbe126c6a946a49d pt-BR/DAT_000063.xml.zip -e125655246ea042df8866bf610c16d36a6a307052cbed18b49af0d5eaef15dba pt-BR/DAT_000064.xml.zip -247d57278f7cdd1497c94d319728e9061cd8080bd1f89231ded8303cb2874d81 pt-BR/DAT_000065.xml.zip -5236adc30e0f78948597ace945a067bf8b6d5c1ec506912742172d414251ae3e pt-BR/DAT_000066.xml.zip -0b4e9655b8f17f8b1001fd0648b103992896e193770cc261d0edc5a833c5b267 pt-BR/DAT_000067.xml.zip -3de874e51e7a5e2ee93c133d6c6939968742269698aad022d00a4639a3bd5ed9 pt-BR/DAT_000068.xml.zip -1d0e25222486872317a6f8ec362207de5e1720235a607f799032ec5313d6322b pt/DAT_000001.xml.zip -b6543b7b18e518c9eb5aeb980e87f7f918e4565f063607b754b797f519eff9c3 pt/DAT_000002.xml.zip -ee591bb37fd7211aa7e97ebdeb924ea199ddd72b56d3aa0b9ccf22957e494330 pt/DAT_000003.xml.zip -0fb88df81f24310c39d99d9420b60cabe4aaebcc7c94e1fd37e9c8e59f9d8f82 pt/DAT_000004.xml.zip -1c5614d91cf085434c5844221c26baf9644ce21b662075ce7a18972d8ba84786 pt/DAT_000005.xml.zip -49ca26da3bf63ffc28dd431705b76ecfc99770be6c06a5113fe0e41ca80ff0a3 pt/DAT_000006.xml.zip -2ed0f35299e0a112b730ebbcf642b071088f633bff502cf51cd0725f872a6d95 pt/DAT_000007.xml.zip -39128432cbff4046e43b4ffd49bcd7ab93d25bdbf705f1beea0012dc8f2b2a29 pt/DAT_000008.xml.zip -d3e42c6cc6cb2f586114a80eabf5f3f431f38418688a5ae3ca9c8fc0bffe5ea0 pt/DAT_000009.xml.zip -9668642acb3b7840bbd7242f66d4bd49a947a7f92351780f25667e2d6e7bca77 pt/DAT_000010.xml.zip -e61bbbfae3f6659da9ed100c80b55c373ea8c4dbc2184c64ef6cb76e166b9896 pt/DAT_000011.xml.zip -842a822ab97df60fa3f0a7bb964a4567b9f4fae3432bc997a3d48da711e58ce4 pt/DAT_000012.xml.zip -3508f7643fe9ce130f63301ff54c4527ab120e6cf6ffc598940ffbb07148b3f5 pt/DAT_000013.xml.zip -66a85f9d3014c0d5e6dfbb80cc25273dfc98ee6893c62825a95781b87de8cc9c pt/DAT_000014.xml.zip -d4be9a715e134967c2d520184faae9cc3fd2daa80c1591ca7466da311ee2f5d4 pt/DAT_000015.xml.zip -d97d7f0a047c2be327804b093d712ea78dddd565345df0c4d9b8a8e83081a554 pt/DAT_000016.xml.zip -1be5f02cdd832b7b89e27f15c9b46ac64cf71de0efb2eb0b9bcc606a518f6184 pt/DAT_000017.xml.zip -00725c6cdfc56547478429c8601aa0c0e872aa45dbd0f1e35da9364a08132d02 pt/DAT_000018.xml.zip -3a842a52286b79b158de9db28396fd29346dc2fe7839f42109c713a2b2300b6b pt/DAT_000019.xml.zip -a175bbd094a43810d799968fa538feedbb7f54f22156f23cb072981137e746c1 pt/DAT_000020.xml.zip -02f1e0f535d9ed4782946de15453c117b8d7361507492ab03a9b7546c5bb66b4 pt/DAT_000021.xml.zip -74550a173db31c71f1a7f7608ea0a4c276c149f4838b62885ad286f9bccf4f7c pt/DAT_000022.xml.zip -1cbee81e08b70617c6cd0abb51e9c6a834c18c230c92e161fb7900ff4e5dc1e0 pt/DAT_000023.xml.zip -2670e0d393839e804ceab68c0f16a1ac41e9cd524d32a3528fd54ea9ef3d1b5a pt/DAT_000024.xml.zip -60d7c2680e2ae5a33510c3759900b7369971d28df754ca1a23ae47de004b215c pt/DAT_000025.xml.zip -b9749e696f0b23faee48c083507af4ebdd449c7421bedce19bb37c3a02bac0ec pt/DAT_000026.xml.zip -9952daa5e776bc9eeb0106d8c80d561e10545d76c0549e71afa6f5ed99d981b7 pt/DAT_000027.xml.zip -ea7ad75adcdffd96caefef51822c79c6dd6b5cfc706446977eca9c476d96e2b4 pt/DAT_000028.xml.zip -c2d5764b94f3c79ad22d29df1e628b7ed5fef16354e7fe7755e7256ec0730a2b pt/DAT_000029.xml.zip +208a5f7a0d6b45b0184b8fdb2ba21d2486cdee3086745afe50eeeddc1d115a3d pt-BR/DATa.xml +90acee523272739a19ba1798151c20a8d233bacd1aefe0d338bb1f73df76b3b8 pt-BR/DATaa.xml +f61c6f4ad5fe61b8fafbfb942650287edc37ad17ea28e56a1b233423990a4958 pt-BR/DATab.xml +657e99a1e4481829f7b02cc17315dfdcf62f473c5158dad8f9b7371ca26f2e3f pt-BR/DATac.xml +4421072f4bff4edd9fdb74d9aef6a08d152b2e676ff22770eb9d7d230b89ee14 pt-BR/DATad.xml +6a67927ff8d35fa224647b0d0640c093838708241bef4bffb322a66598faf634 pt-BR/DATae.xml +b5873c9160a08509b1fe17060664623d87b2a8be912700b7a4124cbdf1a40d87 pt-BR/DATaf.xml +2952a51ae736eb4e1f0c3375cb81455ee1ed51b59a0749fc8a0f47aea1a4f149 pt-BR/DATag.xml +58d7f92dadd66ca5999ac012ef931d71012da3052f926579333639bf7ceb39dc pt-BR/DATah.xml +257665efecab47ebe8c23d375e363ac19d15c10c85ebf6d63fef88c4fa4cca01 pt-BR/DATai.xml +ba0ab449f95e58883930480bda6b835a6b842926b67f886cfc682f7d142c9c0d pt-BR/DATaj.xml +515c29752aba20c40d3922a5684b76bffbfe52163eec77a298a53c89a00a6a7e pt-BR/DATak.xml +8260445ae09484d21ab8ea9ee2190a9a7daa122a93ee8c0b151fbab98dbdd0f3 pt-BR/DATal.xml +d694efc4b62adccc73c6043ee6f158ab188482de5b3e00c0585a8a85937b30a8 pt-BR/DATam.xml +4e92df823b2a8173592c5404980e834a7e7d5a21b7ee0e0622353e5eb4ad766b pt-BR/DATan.xml +31d63d92b74712cdce38d8b26a387c4ee161952c6e35943c2702de372b465029 pt-BR/DATao.xml +f45b5b2eea2adebc1f9cf417d80e733ed9b3b21aee8b03823739e5503800fcba pt-BR/DATap.xml +c2e59e08a6a9b89da7eae59a365186c2f5be22cc407d1cc523195b87c56cdb0d pt-BR/DATaq.xml +1d55a2e66be8900fba40ceeb240c9c6bbfd3d73c7d5800cb0ef74337e8efea86 pt-BR/DATar.xml +b1feaa692986420ba72fe78558fca97d03e2cc52bd4bc00ec634659d7116c87f pt-BR/DATas.xml +53310e035780ca71bc3e7de497016bc7648f4f6e2274eee6f25bffcb08faa321 pt-BR/DATat.xml +baa4dee4d08f1a5fedd470418145e0a9f8861b0edf7002f61e93beab1e033477 pt-BR/DATau.xml +17e002e3e7515cafa2735db241a89c7fe9ab77b9065496bfde9f32543e855689 pt-BR/DATav.xml +487e5f9bb14353cb089a7497bd3d112f1d27e6df93ae5a8801cd931a17b48b17 pt-BR/DATaw.xml +b9cf97afdb7f7828651813b5ff4a7967d605ca21e86c3d9a0fa941cda2de9622 pt-BR/DATax.xml +471c307dfe2298f53b00fa50dfe4b30df46c3977774585533b5267f22463bdf9 pt-BR/DATay.xml +1d56b20be57042b6b96c398fbbfad7506c3a199eeeea7d0f32ca0d1e603ab117 pt-BR/DATaz.xml +bcf14f61f2895dbc4f1649b457151b1977687cdec28e691807f535b1dcd66078 pt-BR/DATb.xml +7f24b1c44e7eb11fc52c46d1e02d414f89054ec66ad81bdb7506fcc101b40a3c pt-BR/DATba.xml +7b22f4bca0bf5be6bdd27326fdbec94f586e23b92661202f06de10ed9a970d02 pt-BR/DATbb.xml +316da5b1ee9eeffc1331179d7e35f1766603e7dc0f53ba2bf3ffd12adfe5f881 pt-BR/DATbc.xml +4e809f6b8cf60e404cafdb0286359cf11bb61cb93d94ea989883b430cc87e3ce pt-BR/DATbd.xml +8a485e9d576967f6b481215d72c2f0c7e8bc16d934e9204d7788c64f193b61ea pt-BR/DATbe.xml +978d63510f67a1b2bfaff89de7aaf8513f86ca0c4b8823e9e755019ee82d991c pt-BR/DATbf.xml +92a0f01402f913fb13185c0e8ca22683223e00ce31f46a184426321621f73bd2 pt-BR/DATbg.xml +3b3bedf40dba3f0f3da7a154eba8f43dd03f36fdccf437fc22bfdbf4e8f52a0c pt-BR/DATbh.xml +4abe0682a9f504859a56d895b2fc357ed0d9e66e27adbafbd5874bd3c9d38020 pt-BR/DATbi.xml +e11cbe83cd411f41ac970b54f10a34b97732aa15de39c773774a72cf44f244ea pt-BR/DATbj.xml +38b8d53b46b90b408fc987a26b01ee366b3be4e535e0f57ca3c93cd8fc314d1b pt-BR/DATbk.xml +bd0f633c4fe58957eeabe95520e6060447bd9934b381ffdad5b7cf5c03a41f5b pt-BR/DATbl.xml +e9c72ee79a356974aebf34190abfcdd4271a1c14a02104845529e0d7081a9811 pt-BR/DATbm.xml +fda5ef57c37f4223330b57a52f98005de719b9c63715c38b7316fe460eeceb4e pt-BR/DATbn.xml +92632657a7a26610a1e132f29bacdf4b52dabedb87d7543291c3676b1c28eb00 pt-BR/DATbo.xml +fd04cdca6a3635ebe3fb2a4977cfb73ce56f4fab3a283062d4482613a3350481 pt-BR/DATbp.xml +d8097b141d6d431b03504027ef38f8a279ed877eb75dfe6ec533555cac1792c4 pt-BR/DATbq.xml +cad76183dc00150c77fb4ec718bb5adadca92b6f29e80b50b56a0a9c12b5af39 pt-BR/DATbr.xml +97f2b419a79b58f8414f6032a45fc710dc59051c2eb312734ae89b9747c0671f pt-BR/DATbs.xml +0299f57dea014fb2f4a6e2d2b9d464dba53a38b82ffed5108a6b7a67cbc8c2eb pt-BR/DATbt.xml +f1d7a3c5edd08acb3796129c871f10c4c5549e919388e59386458398f8fa5c94 pt-BR/DATbu.xml +105bc5914297b87e5107b31e4810e18cb5db7363f81ff9a7b5e4e3382296f8c0 pt-BR/DATbv.xml +2a90712899a6ea256ee5b183e3af78f81cfe73b47414378f33def4504c9ed68b pt-BR/DATbw.xml +928dd830c4d22eac9b8134d57edde46acc748a585fed221e380cb022e18da3c1 pt-BR/DATbx.xml +8602ca2059ce44385dc4aae3a78a8450c65bc76a7e0d1553ed3c22d6a0e39064 pt-BR/DATby.xml +ee0b997376c84cc9e87371082681869e47abcfcd6033d640e25845065c044e0c pt-BR/DATbz.xml +3caf7d1d8f9656367f3ac23deae3639b157acd39cba2a3aed55e0849fc3c7836 pt-BR/DATc.xml +23eb0fec5c03e76420cd6c1f9e7f7dc0845cdf3bcec1dcc2f4c65d25f1fad4a4 pt-BR/DATca.xml +f38e2644a48eea6654ea118eb0e78b4098bea1ee411038c1a272791255077b6d pt-BR/DATcb.xml +55e17681431bd17e86b550ba038ac961c4a622096988e38dfff9c5e717d31970 pt-BR/DATcc.xml +c1f723dd73955202b7fe2e5a3d30a2f1add4006ba948e7c3d4f106d81fc163b2 pt-BR/DATcd.xml +d19b9fb2f553348dca933d3656154295a2db5b0a5d31222021bd3e20ab6c2038 pt-BR/DATce.xml +1642b80914395d31349ab8890db8076a59a7d25610166bf66a0b66cee6cd13c1 pt-BR/DATcf.xml +222f1b59cefe3dfef4ffe7355bd464cfa9162d4d78f7b3fea32bc8b4ea5738ca pt-BR/DATcg.xml +e0f126702ea689872c868aa681fbd5b0354c30e9b0ef091221aae67b3c47ffca pt-BR/DATch.xml +cba6b6d9e6dbf494b4447459e76a42694d1407928983946d027820898a0a42f1 pt-BR/DATci.xml +7f99350eb6b4634f803820b08a9a99bfdd45b03369bb2947055eb16f0e4f8333 pt-BR/DATcj.xml +8382e19ca3950a6728c448bd27baa57a3fbe333a9b1abb4f3502bd16c5286a2c pt-BR/DATck.xml +acda4a4a3a2142c8301ddac860c669c50a7f80bc96194824333d6f950b89c690 pt-BR/DATcl.xml +0a52a2230effac4c439d20ee0e9caae31a12122af85fd07cfda050722f8ce25e pt-BR/DATd.xml +3a6db2c1e2794f09679be123db1ed366509ba0e743d4ad104b2f83bea408f430 pt-BR/DATe.xml +83113cb6a62eef0fcfd863ef2658a11e7729f2ed3f9420e196b0b99e8ba02efc pt-BR/DATf.xml +dcc73f82c5b4a361f3497b9a3a62efff725254c0de4482640fbcd490d01109f8 pt-BR/DATg.xml +5c7e0cd51aa1db809594c7537092f962e71b9d07b40b4cba96b884ef3bf9cd02 pt-BR/DATh.xml +ad4f23bf907b6192997df2d24fefca25329b6b3303a40776e568507881715da4 pt-BR/DATi.xml +35f8a4c7fb611745826d7344f6781ffb977a696c57ba8191ecdf4d18d351f614 pt-BR/DATj.xml +6ac49c8dcd4453fce8e65df004800cccaf94c3bb853c74eba1bf1bbc875c9378 pt-BR/DATk.xml +1048a9d7dd277cd9836200a188ecfbc65b1c621ee68c98beff983bb54cdfc6be pt-BR/DATl.xml +2feba5f4d4507df2bbebd3233d1aff6e453a120c9d429c049210b1bbc13e9ea8 pt-BR/DATm.xml +8289ef82bfb293a6e5d110980c673c54f11029412931be6e2159a7d7c5d83cc2 pt-BR/DATn.xml +50cf6e63fe48433bbf676cf0af61e17c33d212412b300412c06dcb42408d8e6b pt-BR/DATo.xml +74bfd26832d0aeea425522c8198725626af9086381633533658b30452dd990b0 pt-BR/DATp.xml +8249802797ed4a28e778b1c536dd955c11fac5e78a03218428510610c27f0883 pt-BR/DATq.xml +e6de8ffd4fa802b785b3d4490904b48b09cb7fbbaa75c117dbad665c1824a2e1 pt-BR/DATr.xml +06b7c30c3b80520bc5950850d0e5d9d8f5be06bb64ced0791c81c31ef070aca7 pt-BR/DATs.xml +1de62f7181079bd8fdf85d4b8d6c6af01e6cfe33c40a716c900ad8ba588eb9ac pt-BR/DATt.xml +9a6b0c5eeeb98cf49b7bd0ddfeabb5e04760549c266d1701e7532b8b9b12d159 pt-BR/DATu.xml +1b0fefbc2eff09b211a98a0934d9bf7bb97cd47fe7091a723bcd39992bc77e07 pt-BR/DATv.xml +99f5401d8ada169990bacfbd1f25e38d89463025b267f55c65f52df173e648c3 pt-BR/DATw.xml +0a90c86f71c2a7e11683f9faa741458349732c94a4d5d55b4c83066d4df66c78 pt-BR/DATx.xml +47301b9897f66d7d6a558c364e3b02f869f038ce99176f3c4faad5eb0565bd66 pt-BR/DATy.xml +dc0e023f46de35bed9470ca9d1d761d9a1dd597066497492e4d8819314b9eef7 pt-BR/DATz.xml +d734d93b009deb48b539f62d06fdc68e70e88960ff85bbed49f80d403ecd0616 pt/DATcm.xml +e8f650ad927807dc75df3dbbfd6e30016ec9ce96b19af542d919c747f76692fa pt/DATcn.xml +1fb1b3567fb8cc0feb5d0ba64fec0263c50b4f9b9d69dbe4eb526ecd2b3e09a1 pt/DATco.xml +bd04488ed5581c15b01eca388f6e1bce6826c145ece8718eb0a3b8b7afef3177 pt/DATcp.xml +9dc2460595481d12df17eeb2272a81f9436db1122429dcd0613c2eeb796e76ad pt/DATcq.xml +e696a26bc282638eb1a3d62174886eb330cd7731dda07e2e02aac5770a484d71 pt/DATcr.xml +33113606600beea77b97315e4b4907e856e21fbeb302cfc3761d5eb83cab9c12 pt/DATcs.xml +7df8abf4aef245b711a5ee862653bd669741a07e85d7afd6049140ce67c9db5d pt/DATct.xml +a35cdfbd2f002e8f87e9930c8348ba50d877f295a6ddc586bac9d58ec8e2afbc pt/DATcu.xml +e8e5ae636ddc84b14ff35d73f5e8381eda4b95d81993f5ca1f5bddcbcc17fc69 pt/DATcv.xml +3ee9540a0862c1945d9774ec82c5d3c20f2fcacd8c94dee1cd95cdbbf1357b20 pt/DATcw.xml +1cc45a2b70c1602e26c2b1ddc935f3272d78f5dedc3bbf9eec7e0b074c0aa996 pt/DATcx.xml +6a00fc3adb06239f0c342db1dfdd7f61ce47fef84f3bc5c9e7053db4624d048c pt/DATcy.xml +4daa2e6d2a6e2725ee8de8127102c8ce03d733a1889c850c3f2e54f21450d70d pt/DATcz.xml +d45de53a41f5d76526e33c50675b014a811df1e9e2827971873f965b42814a21 pt/DATda.xml +f8e776ce351b68ca8b1f90200e64413cde325fb6605a3d86bc5aaa1a18980d6d pt/DATdb.xml +d4a202840e9980340f027a7ad163bb8332f853983ab1fd55cd97fcb25e1d8444 pt/DATdc.xml +691190e2013cc321de57898b8760e3a8fd2f73cea524d8de6df1f3a2b019869e pt/DATdd.xml +b8bc0592ee5da6f23cdce8ae804f006ef1850f395a7338ae3143cfc8c28809cd pt/DATde.xml +3dff55c926cb1d9eefbb3ac2375bb8f45b80f539488611bcad89057017b88ae1 pt/DATdf.xml +08ff209cc5cc7ad33d40b3941c18d9e23a953d6345cd64cd41ec44a33a058a9b pt/DATdg.xml +f821615a61262240e0179ce85c2c4760747cf5697a6a7ef2b4534b704ce4c3ef pt/DATdh.xml +6a0049a8f50e5000c52372c3deb976684549d79c0be48ebab97765b59977f78d pt/DATdi.xml +392aaa3494bdd4a2caa6f3360b14c5e9aa7672b017bc6c2a7f2631928be2a799 pt/DATdj.xml +4292cb21303ea150bffbdea440720dd248a9327f7f4594725ad013dca68ea41e pt/DATdk.xml +df4f49dd40c7e75b8a6aa1567e082058dd00d73ab766a963a55d16951b88d3bf pt/DATdl.xml +4ae0fc8023ad6c68010da87384fb732c30b5e689623a0983becd1c90b81ee9f7 pt/DATdm.xml +25f2364510cf2b816cff4cd0fdffdca0cf542f00628f19fd288dd7c4722741f2 pt/DATdn.xml +b941d95ff623620569e3786d771e2ba3dbb9eaca88db9b6923a46e3ce3f970ad pt/DATdo.xml +8d383e4d32fdf0e70cd059ba8656b54b3ce00c4ff5e06933650ef637d3c0e8a7 pt/DATdp.xml +93b9b7ead3d8990bfc60b007bdf521d0cbd0f3e2150dd3abf439c766853a7bc1 pt/DATdq.xml +6b9425f334b6ac0a255ab03c64338a47e17a1ce04768744ed204caa7ab788b8e pt/DATdr.xml +a37dbf45abbe65c6f9ab7f924bac045a63830e096ce62a51a19b98a161d92c86 pt/DATds.xml +2cce89a4ab9ccb6067ef3eaf8fe54c28c78924b2b9e6c325600e5e0a07760e87 pt/DATdt.xml +9e8c3de822ecf5ac5f15e19c248e741ed69e55f89761de0f678a377cc53f9684 pt/DATdu.xml +383b8682a0ad056783a98a424a7d667243295159845ec14a9e4c85b7c3cec704 pt/DATdv.xml +b45c92df5feb5c91b79663c52461dda29fe0138053cdadd8fa7a9ff5ec32ec2f pt/DATdw.xml +106ad40c62ded08719d4120cd6fb5fb2e76983ae73bfdfd408196fda5007be95 pt/DATdx.xml +68a58d59d969e29eab3d793d92d1712b5c6b545ee4d46d24c7357202ee34fd54 pt/DATdy.xml +5d169f5458a24b9a26a5eda95b5ea0c94b4e37f024f89813cb59af0bcf0977ff pt/DATdz.xml +3ba49a892a1991b00c30d7457d3105a7bc792fadc150c0e4c8e22d1ad249fba9 pt/DATea.xml +daad4a27014e5e6a74a2691ce61823d60b6d68f2792ad2abbfb183e90116a23f pt/DATeb.xml +e6af3ac9a3edcd93baac5a8d4f7f6a98391ad43040711f2b18b3dbcfbdd38cec pt/DATec.xml +f9ef404d9e7676ca887178b23d8cfa83bb1abf9ecaf16b279f3e29210a39fa9f pt/DATed.xml +2757e743228b809582b43ed6f01cd253b8a53500a29f098a5eeb83514f36e34c pt/DATee.xml +3ebfc69afc6515b448c7741ff4dc55617483b494be6ddc0b7da3e64349a6026c pt/DATef.xml +d7b6d4788489e74f58a1ec2ff6bfa0fcfd449afec577bf0606abd291415bb229 pt/DATeg.xml +396d28cbcd4e41ce78261948263da7e873a53550673ad35f5d389e6b7e73df90 pt/DATeh.xml +afe26387b5bebe804148317c186a5f9ae01563b72556f512c444b140e75aca82 pt/DATei.xml +76f1d2f8cb5694a290b19b2d90da0180270fc2bcc873436ed6faabd06412a2e6 pt/DATej.xml +53ef1bb3f3dd3a538663f3ad459bcf05335001cf69bffd960951bb0be10bce01 pt/DATek.xml +9e015d2025c3b6dea7dcf624ed3cb985fa2478c8af65209c0e2b8485a236bf14 pt/DATel.xml +f75ec1fb4c835671bda9bfa8aefd7f6a115c62f1366b4070a71c828dec087127 pt/DATem.xml +87f95a3147207b882fab7b0e0becde2953b9caa89b60c12c05417324f1ca59da pt/DATen.xml +f81a73bd2a3a7330718d1a787a717019d197963f32c8ce0457f96401e880d78e pt/DATeo.xml +8f6fdfb68203635bd970d1e42d632e8b13e5a565ed32f84e73b2ed7d09a6636d pt/DATep.xml +7a2a5c41f4b103a6738484040896cabdd972f8a69ad27eb537aabb0352336559 pt/DATeq.xml +c70f1dffcdd8d0ca4c3615282309881a7273c604577ef908fb6e4ea5abb752ad pt/DATer.xml +9791c90faf52ec3707a16afca79bc78a365c5d0838f96adc38dc28d4f9426e5e pt/DATes.xml +f20b13dd306730f4f6fa02a8ae066e78034f42d1edbd80ac8643425dec4c16c1 pt/DATet.xml +6f4d77352d1172056e29c8d4a17707577496f1ff6d7b1e5811c33108e91fc727 pt/DATeu.xml +c3e260402cef24c8662a2b0b22ed2cc3b67acc5f656610d658c93dd4dc571c53 pt/DATev.xml +a326ca54e5dea29046e366418bd44017efed0e2a1600d15df3b2276b3477024f pt/DATew.xml diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000030.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000030.xml.zip deleted file mode 100644 index cd5596ccfe88ddcc6ebe911df0d9bd4da0c76857..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000030.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:25d054cf72869195fa622eb919024ea7c37dbf446dd0dd0c571e68bdc0765e76 -size 3898338 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000031.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000031.xml.zip deleted file mode 100644 index 5257dcb3e2534288862bee6678bc21ce0db89ec3..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000031.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8625d7564e93668c21f224236b186f07b17b44dfd852f4a9355820bfc52523d3 -size 5844296 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000032.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000032.xml.zip deleted file mode 100644 index 02d0e2517c2b3c2f2f3fdda7bc14e4658b47240c..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000032.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:584bbf8ba98de288fbc8c393dc3226c6f3c3933a61a003cf96d3d92679ce3bd7 -size 13629413 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000033.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000033.xml.zip deleted file mode 100644 index a8f47f936eb838636d55cf6e2b88e4ab5f194112..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000033.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9f042e48c9789cec5bfc796be5d301567fccaa885fb7f156b0b394fa6f08a54a -size 13509914 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000034.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000034.xml.zip deleted file mode 100644 index 480756d3e4c9075c196b8bc72a98cc1acd19f505..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000034.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:da8354df9cb2376b854453545c0428c2f625a7f02aea87ff6e2770b6d945ab55 -size 13362131 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000035.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000035.xml.zip deleted file mode 100644 index e264c9086640d22bb6ea338a17e7d5f79608e102..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000035.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6aef685ecf4f7a7ff4d51353821ea16c0640d704e58db4282810efabd4face54 -size 13323941 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000036.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000036.xml.zip deleted file mode 100644 index af3a65d6ccf8768e32dea2c3556fd8de0f051b87..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000036.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cbc1cd6d5662e7eeab81abd267b3f5bb0f5e65b6d3aae902fd4311b815f87b7a -size 13247990 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000037.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000037.xml.zip deleted file mode 100644 index d7caddf5b0c4c07fd131a5214b5a302c2bd8d42e..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000037.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7bf07b0616c199fd1751a8e208b3b6b6a90304c45ffd8faa9807ef66ef9eb560 -size 13268272 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000038.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000038.xml.zip deleted file mode 100644 index dff2b0e0118ca3e023a1731c0f84e93a12d9ac3d..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000038.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4b874fe520018d1bb6b4afd675a3f6f996e9e3a8dd529fabf48b364e8a734a76 -size 13121359 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000039.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000039.xml.zip deleted file mode 100644 index cc35f2d899ca23085a92f0aa21b61fea83f8f9db..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000039.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8719068949072d64721be43dabe5540650f8cf74d7771e12ed6d8eef28151254 -size 12950539 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000040.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000040.xml.zip deleted file mode 100644 index 90808983f05d99d246f9f5ec03782dd76bd566e4..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000040.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c96165f078ad061554a6a3186c68e3d97c3155cda5fbdfd3b30de8a68bb76c81 -size 12981767 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000041.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000041.xml.zip deleted file mode 100644 index c093a35ed6d8f8a0981c7a5f5f99e30dc0da0222..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000041.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0394edd6892cbe64de574ef5132d17a0a267dea8b14bae28b8662608b9666045 -size 13043974 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000042.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000042.xml.zip deleted file mode 100644 index 0cb6e344348438b7f137da529cdeffeffc4b6841..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000042.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f3fb0142b34eef1f5397fcf6547f39c97a90d37d8c2d9a913e0870d32de7acea -size 12981490 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000043.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000043.xml.zip deleted file mode 100644 index 79e680029b310a3bd250bd2ae240ba0f536b3749..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000043.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c23d93624dc9eddbe44ca0032d16501e1f76ea54dfc8c875a8229bb983e921ff -size 12778418 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000044.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000044.xml.zip deleted file mode 100644 index 074b3f4f148f04b81cb6e5c6fa798e003c75cc67..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000044.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0a47b3ed0a612b2440e6453aa12bf9345b1ac6424e16a80f72ce5f4c62a3fdd7 -size 12613183 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000045.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000045.xml.zip deleted file mode 100644 index 27b702b97d501e14a080ebd42a18828c33fc5c3b..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000045.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7e334befd9fbaea5702cc68ebaa9c5e769c167316f831239f178493477917d34 -size 11971969 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000046.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000046.xml.zip deleted file mode 100644 index 79567ebac4ad037c0f65f9c113b4512b6ec4e080..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000046.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d5af7a555992b42801ad0c6e0585898b5f2a94e619589cca7b84db52d4c0c344 -size 13086002 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000047.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000047.xml.zip deleted file mode 100644 index 73713cf095a82e2413e4ac17ba26122ccebce3ae..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000047.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1496c4a1f1196bbd24a6fe1960cc656c8584e0e1a71b5a61aab5f98460273193 -size 16890834 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000048.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000048.xml.zip deleted file mode 100644 index 1ea842fcc86f2ec18968504d18e4b435670fe880..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000048.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:eec0aba58e3761010b3f2c90f8810f1abd89756e78dafa8e089afd30f490a3f6 -size 17178985 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000049.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000049.xml.zip deleted file mode 100644 index 4d684d4515291044f8491dc81bc22d7fcfa4f685..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000049.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:98d0e6c1af84b43d28e014b225876d8b64987bb810f6ba692ab20c3d4cecc54f -size 17437285 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000050.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000050.xml.zip deleted file mode 100644 index f51b4c20f4b39d2c3869e264c5b8205878dce39b..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000050.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5d6cd8755fa965305bd28e51e29b61ed097daf2427dd65192399294daf6030b8 -size 16801412 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000051.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000051.xml.zip deleted file mode 100644 index b9086775a0374c7f9839af5ee4a22d2e0f7819fd..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000051.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cf2a0732ac1282163116250a3a68eeb60686f140636f0daed002d5b026f33293 -size 17205573 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000052.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000052.xml.zip deleted file mode 100644 index 24180a7fb7e1c7c6b29e20848b6b2c617ebe8dbc..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000052.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b4a78b3acc34c1342ea01a5355d2474564e664995ab505f87559d71f630b569d -size 17121513 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000053.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000053.xml.zip deleted file mode 100644 index 21f50387745fb16e425f925af793dd0eb961651e..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000053.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:90d19d371c54a8a2b4ca2da4cba46f3fbf1eedae7cc73652e5f2cf2b7883844f -size 17172302 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000054.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000054.xml.zip deleted file mode 100644 index aec05d3024aa12d3addd2d63983a278b2af9ec69..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000054.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6422206aacfb0499e96e9ed139ec0fd8c2f981369bf43d821a94aaba463182f9 -size 17020918 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000055.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000055.xml.zip deleted file mode 100644 index c787004d3f6dd20377e946e57a6a3affe0be40a2..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000055.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1bf5a82d272811dcda9ae39b6044f2110af5d30031da31950745b308b4dffb73 -size 17155215 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000056.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000056.xml.zip deleted file mode 100644 index 6b1bc2e2e7a70097780952756cbbc2305da0c1a0..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000056.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ef69c581c1fd2fe3bec8f5248be9903c2cabde75c186e04e9b7979d86caa2e35 -size 17604402 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000057.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000057.xml.zip deleted file mode 100644 index cbf0d3b210fc61bfac3c769f3bbca917b26bf71b..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000057.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:484532df406ac4f09a01688e75befeb9df3536648ad244dbdd0620edf91f618b -size 17134609 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000058.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000058.xml.zip deleted file mode 100644 index 4d43eaebc511086e9a5362ef6f6b0888cd26c996..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000058.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0651c568a4dcfc747ace3f76b6c24eeeba3d0fe9b4eba432a829134e2ff6a874 -size 17263452 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000059.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000059.xml.zip deleted file mode 100644 index 9e5227b8b9fd748158bcbf4fc3ec7a894c11d7c3..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000059.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0b827aca7cf4c862911d47d1c67ad2cc8a17c5c028f1bea0b1c9d9240ebf4dff -size 17148987 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000060.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000060.xml.zip deleted file mode 100644 index 4fb48ff1b52744e1d52b74d34ade203fcf738065..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000060.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7a322370afd728493f3b93b680edf64ea246187e5e4506020e10f009f9c6fcbf -size 17313884 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000061.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000061.xml.zip deleted file mode 100644 index 45a1ec594992a2da569f51b4c11e2836df689f23..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000061.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0d4202343d7f75451b93ab2f50b82188badd32a43059d18a47b5f0ed36e4b00c -size 14494259 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000062.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000062.xml.zip deleted file mode 100644 index 4d4239be7f75fa690cc2f1bbeeca9ce2c469d53c..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000062.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9cdbe1ed07756ff2bfba35df4f15dd49ffc95cf37556e287ec4e195b7b7e261b -size 11085454 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000063.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000063.xml.zip deleted file mode 100644 index e45605d2d32cba323ec3b9a191766199a1d7c605..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000063.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4477f628f3eef8e882a6cd9d6c9d28edb186170a346ac834dbe126c6a946a49d -size 2600640 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000064.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000064.xml.zip deleted file mode 100644 index 04e648012ce3340ce6aa08b11b4785f672128aea..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000064.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e125655246ea042df8866bf610c16d36a6a307052cbed18b49af0d5eaef15dba -size 2671663 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000065.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000065.xml.zip deleted file mode 100644 index 0962f632fffca77f0604ce53802d60f64b5d4525..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000065.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:247d57278f7cdd1497c94d319728e9061cd8080bd1f89231ded8303cb2874d81 -size 2581142 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000066.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000066.xml.zip deleted file mode 100644 index bfa556605ad26e9cda2ca1b01c81e3ac411cb22f..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000066.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5236adc30e0f78948597ace945a067bf8b6d5c1ec506912742172d414251ae3e -size 2561896 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000067.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000067.xml.zip deleted file mode 100644 index fa5516a25b3083fea2f053e71f3a0209e078d9c5..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000067.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0b4e9655b8f17f8b1001fd0648b103992896e193770cc261d0edc5a833c5b267 -size 2552048 diff --git a/corpus/datasets and other corpora/pt-BR/DAT_000068.xml.zip b/corpus/datasets and other corpora/pt-BR/DAT_000068.xml.zip deleted file mode 100644 index 1e1664ef562c3709f661452d4491e92f6167dca8..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt-BR/DAT_000068.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3de874e51e7a5e2ee93c133d6c6939968742269698aad022d00a4639a3bd5ed9 -size 13790 diff --git a/corpus/datasets and other corpora/pt-BR/DATa.xml.gz b/corpus/datasets and other corpora/pt-BR/DATa.xml.gz new file mode 100644 index 0000000000000000000000000000000000000000..c181bcc7b53e999faa1dbffd1fc6031f4019bc1e --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATa.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:663636cdbecd6f7c9d52eb577cc6d36e3971335ae37d4e17ecc5d7bd26781570 +size 7272129 diff --git a/corpus/datasets and other corpora/pt-BR/DATaa.xml.gz b/corpus/datasets and other corpora/pt-BR/DATaa.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..ee0b09bce1253d6bf8bd25278a8a4318d0e73958 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATaa.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17f61f361df0ef697e75a311cf6d04e9560d62bdac1ab020a8e1f4afdad6ffd6 +size 6421393 diff --git a/corpus/datasets and other corpora/pt-BR/DATab.xml.gz b/corpus/datasets and other corpora/pt-BR/DATab.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..f7a57b241291fb5bb42805ec48e9bfa0679eda29 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATab.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9729ebbc7f304b7887c285dafd8ab27ff227e7ba7a926e225c95bc429e04c3bf +size 6412067 diff --git a/corpus/datasets and other corpora/pt-BR/DATac.xml.gz b/corpus/datasets and other corpora/pt-BR/DATac.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..61be22485270f60bc6db3791d6c31bac999cc530 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATac.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7368818cbfb35c187e32567ea1f58ea5fc86d4bf3d65bd03513e869ad5f45750 +size 6365744 diff --git a/corpus/datasets and other corpora/pt-BR/DATad.xml.gz b/corpus/datasets and other corpora/pt-BR/DATad.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..ce56debd19e981ce5dbd82a46c60cdbfde3c2b60 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATad.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ef03860d0fd68157b8439d29c80c83d26be48008cfdea27d6e8638706177e33 +size 6376987 diff --git a/corpus/datasets and other corpora/pt-BR/DATae.xml.gz b/corpus/datasets and other corpora/pt-BR/DATae.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..7ff977e24b9e74dacd5111f5950c55c4465169a4 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATae.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8d94022910d33c29daf7ada0fb31312693347c6916ebf3437424050a1e2f553 +size 6397484 diff --git a/corpus/datasets and other corpora/pt-BR/DATaf.xml.gz b/corpus/datasets and other corpora/pt-BR/DATaf.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..a598fed39983c1e9913d5d079c7285a4c3570699 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATaf.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b170a52e596881fa92f59927af620e67fddf8430cafa62e5acbeb676bdc603e +size 6410178 diff --git a/corpus/datasets and other corpora/pt-BR/DATag.xml.gz b/corpus/datasets and other corpora/pt-BR/DATag.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..6d076b00761d124635ac8230c617b3066d323aeb --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATag.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6b7dadfc848c95f4dcf5f86c5c302232bad4f0dd2a764bca37b8ceefb796339 +size 6376217 diff --git a/corpus/datasets and other corpora/pt-BR/DATah.xml.gz b/corpus/datasets and other corpora/pt-BR/DATah.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..89d0373e6a8062405612f037e9ab11302448a376 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATah.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7bd1b2b2f8fd3def2f9267d8c06d09b2b0672b7d02e2ecdf9bf80a500b557c4 +size 6315265 diff --git a/corpus/datasets and other corpora/pt-BR/DATai.xml.gz b/corpus/datasets and other corpora/pt-BR/DATai.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..68a76c7983e46098d0b77f967c7c5c4a44a79355 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATai.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5499b4281935a1a68e6220807e8e2b905b66a26ed3b2029a32b34a28e506829 +size 6264241 diff --git a/corpus/datasets and other corpora/pt-BR/DATaj.xml.gz b/corpus/datasets and other corpora/pt-BR/DATaj.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..28b7537868fb1d80e730b8046601944442c09943 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATaj.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55c9d6f26dfe199650c00bd59db1803382b4e79828b0f5a9730d5e16058cb096 +size 6276126 diff --git a/corpus/datasets and other corpora/pt-BR/DATak.xml.gz b/corpus/datasets and other corpora/pt-BR/DATak.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..6f47989335f3fd742cd3595e137f32d157effe96 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATak.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e73fd5aab9d0a6cb7477cb6425d615ec234bc7dbb207b5d973abdf35fc0626f +size 6289430 diff --git a/corpus/datasets and other corpora/pt-BR/DATal.xml.gz b/corpus/datasets and other corpora/pt-BR/DATal.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..96865de3df20908273b7b07639381c08d5a4f270 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATal.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c6e53332e7c48e23552329c4e12c1e2b86665290b2af11c054b278fad2f364d +size 6301629 diff --git a/corpus/datasets and other corpora/pt-BR/DATam.xml.gz b/corpus/datasets and other corpora/pt-BR/DATam.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..7380fe9543f914b7e3bb6f67a9af25002b17097d --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATam.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dea991ec439df813cc4849e083134ad2c952b8b4eb5f57d0938d86416dabf219 +size 6327434 diff --git a/corpus/datasets and other corpora/pt-BR/DATan.xml.gz b/corpus/datasets and other corpora/pt-BR/DATan.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..b0406aea6a47e3f1c399938a5adb82daf12eee4c --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATan.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee5b3513e97a17adedff9d94ebbbeba8cbdc12f757edd759073290ba01fa8600 +size 6291739 diff --git a/corpus/datasets and other corpora/pt-BR/DATao.xml.gz b/corpus/datasets and other corpora/pt-BR/DATao.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..348091e9bf91cc58e2297ef5d9c05acd9798e732 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATao.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d69d8aa5a542c01b3e620f15013a345f9bb53f2ba03d80f5197a2b62b5468a1e +size 6331946 diff --git a/corpus/datasets and other corpora/pt-BR/DATap.xml.gz b/corpus/datasets and other corpora/pt-BR/DATap.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..a62df8fc13f27d07aee0e8239966f2498c88aa26 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATap.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01a651c64ad7e40fef1e45a5adb9db44d569405feaea0ddeacf96e62c30ef623 +size 6252264 diff --git a/corpus/datasets and other corpora/pt-BR/DATaq.xml.gz b/corpus/datasets and other corpora/pt-BR/DATaq.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..147412057063c7ab7e103c14af46d09096150ebc --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATaq.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40c42d834eabe0c899337c14b07bc3aa2e554bc8f62a68e3b853bb4c0febf2c1 +size 6248914 diff --git a/corpus/datasets and other corpora/pt-BR/DATar.xml.gz b/corpus/datasets and other corpora/pt-BR/DATar.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..1dd546b5419d01481ae6f6148c75acbdf5bbb3c9 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATar.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18fa5c472bb4b83416d688974c5d70920ec1fc948b99f52a61810a7a74638fb7 +size 6165976 diff --git a/corpus/datasets and other corpora/pt-BR/DATas.xml.gz b/corpus/datasets and other corpora/pt-BR/DATas.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..008475f313e080779a4d86f33c18599541b422df --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATas.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2faa0ee62f295bc6827cee3aef6b8d97f4ebdfba16a78200a1805b3d3cb8e97 +size 6181999 diff --git a/corpus/datasets and other corpora/pt-BR/DATat.xml.gz b/corpus/datasets and other corpora/pt-BR/DATat.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..f88f757cbc8b98186f792fd5ddd31753c7b43a1f --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATat.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91af70399a821e06d880c617c3a3b208f70537e4ea07c00a1392330016b5126f +size 6148197 diff --git a/corpus/datasets and other corpora/pt-BR/DATau.xml.gz b/corpus/datasets and other corpora/pt-BR/DATau.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..0378648753d6d9caaea8a2e598e6df6b72acd399 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATau.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c4f49b00047d8882700bcd5081df26c9e5a9e31e478f149c746dc9d1a90339e +size 6021829 diff --git a/corpus/datasets and other corpora/pt-BR/DATav.xml.gz b/corpus/datasets and other corpora/pt-BR/DATav.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..32ad40d4b216bb3445522e828e473aebffa10672 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATav.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b2dd9302baa7553dbddaf6efdcf5cd3d163335f033c7de36bfbb7f03f095419 +size 5860170 diff --git a/corpus/datasets and other corpora/pt-BR/DATaw.xml.gz b/corpus/datasets and other corpora/pt-BR/DATaw.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..be87aa40026fa4082ed6001177209037eb922228 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATaw.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb33597ee66aa04e6580e5173f64297e412fc3f83c2bb370604aea022346fcaf +size 5730316 diff --git a/corpus/datasets and other corpora/pt-BR/DATax.xml.gz b/corpus/datasets and other corpora/pt-BR/DATax.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..b880c4d5fa6ad768ba82297eaf244dd90b898b25 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATax.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b3ef46514018f1130bcb37bbe420507b70a7d991f2b697c47cd3f6eef9d0124 +size 5790529 diff --git a/corpus/datasets and other corpora/pt-BR/DATay.xml.gz b/corpus/datasets and other corpora/pt-BR/DATay.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..a99d630ca4045f811e5edea5f65cda0f7d82e110 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATay.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68780ca6e23cdbb7df35e9e72c53cb26435919d28b34c22247b7b4d91d786784 +size 6057619 diff --git a/corpus/datasets and other corpora/pt-BR/DATaz.xml.gz b/corpus/datasets and other corpora/pt-BR/DATaz.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..c0157d9c2f495307043c82b66d53c829a495cf85 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATaz.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0db8dff19bca6c056709514e16d917b49c146e41d32488f934f8cff267f2afd +size 7541184 diff --git a/corpus/datasets and other corpora/pt-BR/DATb.xml.gz b/corpus/datasets and other corpora/pt-BR/DATb.xml.gz new file mode 100644 index 0000000000000000000000000000000000000000..534c9fd3c8205583e6e50050bed08621a6144c6e --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATb.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c2a6881a308fc4d4c68128f862b8b148ff7743660a1207427e2718def1c0f0d +size 6545082 diff --git a/corpus/datasets and other corpora/pt-BR/DATba.xml.gz b/corpus/datasets and other corpora/pt-BR/DATba.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..f1f3fc635f9f5dbabc674e14766e570353d106b4 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATba.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9817df8d3f8b25d160cb35ecb61a0715d3f4965e3d382448bbe5d93794d79162 +size 7685686 diff --git a/corpus/datasets and other corpora/pt-BR/DATbb.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbb.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..0811a2d3f1d32b296c174aacd6e7292ae477df70 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbb.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d1471e9aa0a4524aaf3d3a9482362d2282c94d3df9cba71583ac1a9002e824b +size 8051831 diff --git a/corpus/datasets and other corpora/pt-BR/DATbc.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbc.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..8d4038805ba19ed3a37ef4ccb0c0d3041fc24c8c --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbc.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb07621244d44d06fc7cdf0e709d220dd593eb8208c45abbeef8bdad9ee7ee0 +size 7748306 diff --git a/corpus/datasets and other corpora/pt-BR/DATbd.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbd.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..719f3702cf25c5a1e8e273791f289cac3697a425 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbd.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85d7f03119575bfcf8e6fb4f93a6b85296f913a3ad3ffa84b198aee4e1c56dcc +size 7718004 diff --git a/corpus/datasets and other corpora/pt-BR/DATbe.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbe.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..5a61b1c225d08ed6d157e0bf36b541059203be07 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbe.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:345a032e590ba887757929b1cbdf2fd54250b9fa4ff44dc78b2e3b5785eae6e8 +size 7956327 diff --git a/corpus/datasets and other corpora/pt-BR/DATbf.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbf.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..97b03d55caae26cc3cffc6d9286d355615ab1891 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbf.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:523b556cab1b2f3a031f297f7088267d40bc5edcbc654555f5d779f00eea4197 +size 8018016 diff --git a/corpus/datasets and other corpora/pt-BR/DATbg.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbg.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..128f31214bd49e357b120a3bb24e2073ca496ad8 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbg.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beb6620e2d30e8864bd3c4adbec480cf6ff52055f65deea2841d87f3b16d6c0f +size 7637712 diff --git a/corpus/datasets and other corpora/pt-BR/DATbh.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbh.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..10784c94ff498aa87fb69271fa8d5c814f11431d --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbh.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f517954c9350589efddc62eabad6d7975854396a51acdcb98713410c4bbb238 +size 7999651 diff --git a/corpus/datasets and other corpora/pt-BR/DATbi.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbi.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..4756ed2f1b9fe339606ec31132b87364cdcb76a7 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbi.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bebda7b5907939d0060a407e48a3b99447c79e82b8c1393c9f004eace96f5d27 +size 7537472 diff --git a/corpus/datasets and other corpora/pt-BR/DATbj.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbj.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..c2651b9f140b12ac6a3533be637f9c22302b9831 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbj.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c754cbc875ffe843043c122cac9945644c682af3bc2ed23632098c8233f3a236 +size 7611603 diff --git a/corpus/datasets and other corpora/pt-BR/DATbk.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbk.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..644b30cb7c14a35a796624aa5e4edca708eacf8a --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbk.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4efd4c41ee96bb17286e4159cc9f0fa301c985e8c864dfd40c1d62899a0b426d +size 8025901 diff --git a/corpus/datasets and other corpora/pt-BR/DATbl.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbl.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..201c04005cc6cd32195cab5a667bab0a81963175 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbl.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eedf47a2f96f413f6c89f1455526d7a3f1b5fe35d57fa5a9e7813105cbfe635c +size 7816443 diff --git a/corpus/datasets and other corpora/pt-BR/DATbm.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbm.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..a466d5e8b09aadfdb72005071c638930324ba7d6 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbm.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99575c55ce3290961829a9af98dfc7421021e3d19251d44794c23175e1498ce2 +size 7732104 diff --git a/corpus/datasets and other corpora/pt-BR/DATbn.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbn.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..d06e9e88fc3b1a03f9445af5dcb0c9a8b8e74a01 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbn.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcafd12622f7476ea00b5f6cc12b9f876418edd498a686120d70fda09086aa74 +size 8036595 diff --git a/corpus/datasets and other corpora/pt-BR/DATbo.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbo.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..ec004a6a87b1da22a7cdd8a6b83d4f6409aadc37 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbo.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad741ca65fdaa8ebea401fc355a057e9c9e65d4faa02164c24f180e1fd9865ad +size 7594378 diff --git a/corpus/datasets and other corpora/pt-BR/DATbp.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbp.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..57a828c380b988764af8c9f3a8f4e897532fc1e2 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbp.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81bb425a4974b2206a52170d36713b77cb226b7b1bb8a4e46bb473ddee482cdf +size 7835398 diff --git a/corpus/datasets and other corpora/pt-BR/DATbq.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbq.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..0ef4c0ecd9fa6292d2aeede5b7038f38d09da502 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbq.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:672ee1ba4e77d81f68a7a46eb71d03c28f93dc5640db70e777e61856f438fe36 +size 7715067 diff --git a/corpus/datasets and other corpora/pt-BR/DATbr.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbr.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..d2cbcb4d929d4cdd5ac817c1a36273497f9f29aa --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbr.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d36bab8caf833a324c86253d0984b626d4c323aed20a868b33157199cd55b97c +size 7801062 diff --git a/corpus/datasets and other corpora/pt-BR/DATbs.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbs.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..4488e7282f23986b791acd3e759e7901c74ec418 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbs.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6ef0aba630700ec4cf4ffa1e0deeaac9131989e02896d3f5675d93c31281105 +size 7768040 diff --git a/corpus/datasets and other corpora/pt-BR/DATbt.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbt.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..500951c6be1d088317f21c794f882da262368821 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbt.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991237ed01e9b76fd861c9f784831122c12c4338225a39db1993aa55e44c9332 +size 7739332 diff --git a/corpus/datasets and other corpora/pt-BR/DATbu.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbu.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..9b89ea5faba78040e55eb8c302b647b93ec73b6b --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbu.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab1835deacfeca014e8072630c5f9e786cd159863cede5e0cef21387c074607 +size 7671185 diff --git a/corpus/datasets and other corpora/pt-BR/DATbv.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbv.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..480b8b54f8d3486bb133642ef72ba78d2aeaade2 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbv.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a20ba4948a1469b6d71e724317d230aef089402fdfaf38dc26205551d5bdcfd +size 7677038 diff --git a/corpus/datasets and other corpora/pt-BR/DATbw.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbw.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..ccceaf381ea9f253d4b8e688b649f8619135f895 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbw.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c76a25e2598f77aa4f245978bc920f5c8c40c9575ca0d48782b494c297262e7f +size 8070168 diff --git a/corpus/datasets and other corpora/pt-BR/DATbx.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbx.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..6133c8a86f3f6b367302994bd5026d48d3798a58 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbx.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a716ef20b2326aae931647b238168d39e8efa5e36f936f0ed507bca52a62222 +size 7968790 diff --git a/corpus/datasets and other corpora/pt-BR/DATby.xml.gz b/corpus/datasets and other corpora/pt-BR/DATby.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..770e7a7229efb4dfccf91469f044e3b6e9bbcfd3 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATby.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dcbf97978af3f59bc19eae1ba7e201aab72803f13debd2980c924c61455e406 +size 7934718 diff --git a/corpus/datasets and other corpora/pt-BR/DATbz.xml.gz b/corpus/datasets and other corpora/pt-BR/DATbz.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..eaf299a3a473da571b16e90c638f3444462c03d2 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATbz.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:555a226b51b72c3aeb4f09d7b906ca501a6f7892ce845378e4f6c5383590f509 +size 7922849 diff --git a/corpus/datasets and other corpora/pt-BR/DATc.xml.gz b/corpus/datasets and other corpora/pt-BR/DATc.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..1a2aa978eb75eaf11cb5bcbca5ac3785419e22e0 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATc.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a3c3580e5f35b11a45738c640291b1c3c7c88fa2068772186bf2b2351d09f33 +size 917120 diff --git a/corpus/datasets and other corpora/pt-BR/DATca.xml.gz b/corpus/datasets and other corpora/pt-BR/DATca.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..d157645f585d93e7bb0b16d36d5bce11d16f8361 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATca.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca15a09933c6ee324450459fb5d5ec4620c6cb86625e94bc00c4e3bc1d61b78a +size 7907963 diff --git a/corpus/datasets and other corpora/pt-BR/DATcb.xml.gz b/corpus/datasets and other corpora/pt-BR/DATcb.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..57bee349fa701b1332dc9f1630d13545ef8f625c --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATcb.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f84f40e5db47edaa8a36adc91a2439862e691e14a1237ebdf649e8258ef0e9b +size 7809313 diff --git a/corpus/datasets and other corpora/pt-BR/DATcc.xml.gz b/corpus/datasets and other corpora/pt-BR/DATcc.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..c014b9dd7b6168e066a8291e4ed164022877d0b6 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATcc.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d4b30ea3bd85e529d9ffd9e3dd041de0de2f2c3581cc79e0d53e191e439129c +size 7930237 diff --git a/corpus/datasets and other corpora/pt-BR/DATcd.xml.gz b/corpus/datasets and other corpora/pt-BR/DATcd.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..860ecc17071cf9eb81fb18544ffdae976d947562 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATcd.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57cb01a6f2ca9ecbf8f29bd2ddcb08c7910ad19bf84fe6da043370e68646c877 +size 7843689 diff --git a/corpus/datasets and other corpora/pt-BR/DATce.xml.gz b/corpus/datasets and other corpora/pt-BR/DATce.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..8f9bd6e86f8b19fca93306bd106d039848c5eabe --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATce.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a577ae85d8a1da28ed45e529f4951c3646bb424863d1767f051e303ecdc7ba86 +size 7711252 diff --git a/corpus/datasets and other corpora/pt-BR/DATcf.xml.gz b/corpus/datasets and other corpora/pt-BR/DATcf.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..e09f86105610e0e73eb6248cb51c395678a3eb9d --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATcf.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eb611f7550b734f1335a5490cd509f15e6c9a293772a5d501991063a6a4c22b +size 7886670 diff --git a/corpus/datasets and other corpora/pt-BR/DATcg.xml.gz b/corpus/datasets and other corpora/pt-BR/DATcg.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..fab6f27dbd1af6114626ad9aeb01675470f48de3 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATcg.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c148a566d7f72547e97ddb21f3126f46b403208753e51fa6b10c4e8f19f17c26 +size 7869705 diff --git a/corpus/datasets and other corpora/pt-BR/DATch.xml.gz b/corpus/datasets and other corpora/pt-BR/DATch.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..1e3b2274bf24f8405b028c6a59dbbcb65959f49e --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATch.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3417ca9da0762611a3a8ae43e930f39eec1fa7436347f6cd99b6761226eee078 +size 7768621 diff --git a/corpus/datasets and other corpora/pt-BR/DATci.xml.gz b/corpus/datasets and other corpora/pt-BR/DATci.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..298df81b77d6d26f172f534c392556081b66bb57 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATci.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9007c5e8f08c990ab73d7dc031ecda7d3733caa103235375b239dd5e2672575d +size 7691621 diff --git a/corpus/datasets and other corpora/pt-BR/DATcj.xml.gz b/corpus/datasets and other corpora/pt-BR/DATcj.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..6dcee65a233b5a433dae313aaff2c77ac4cc64b1 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATcj.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:029df434a95410532013598d2633df06dfcb82dcc0dcee338aa59de06247eb98 +size 7771463 diff --git a/corpus/datasets and other corpora/pt-BR/DATck.xml.gz b/corpus/datasets and other corpora/pt-BR/DATck.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..26d064f82efbcabc41fad745bb1e03a2122cdf74 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATck.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e4465bfe5b29d0803be535348d30707a6b2d3be0942e50df7fe39a93072c0b7 +size 7939532 diff --git a/corpus/datasets and other corpora/pt-BR/DATcl.xml.gz b/corpus/datasets and other corpora/pt-BR/DATcl.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..022340511b3439c5acdbc54071d05eec48db05f8 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATcl.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eb5836531cec9ed4405e9660de4fea13a64624b083d69f090f139040ec96ee8 +size 4103754 diff --git a/corpus/datasets and other corpora/pt-BR/DATd.xml.gz b/corpus/datasets and other corpora/pt-BR/DATd.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..625e7d0352e5375fdbbac05cd17181fc77b4fea2 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATd.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a419f53863c504dd0e4c5e61e390ee725658f66140d514b022ae2a24a9a0e9f +size 919131 diff --git a/corpus/datasets and other corpora/pt-BR/DATe.xml.gz b/corpus/datasets and other corpora/pt-BR/DATe.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..fd53ebdc57a487e58e0419945dd9430f3cc8131c --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATe.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:768180600da680adfbe2cddde4230f36c0265941132779ffb11a4bf30ed7e10b +size 911839 diff --git a/corpus/datasets and other corpora/pt-BR/DATf.xml.gz b/corpus/datasets and other corpora/pt-BR/DATf.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..ac83e3e50817e0f307b0960f0f63b941635d030e --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATf.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9edd782c9ab132ed2e7f189765574d1fceeb29478e551069954254406462d867 +size 1225276 diff --git a/corpus/datasets and other corpora/pt-BR/DATg.xml.gz b/corpus/datasets and other corpora/pt-BR/DATg.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..a8215495daf003bce305d18edcf3119183386359 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATg.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50166d43aef2a2e58dbeae3ec132d1ec3bb7930767dc0b2713d06bca47bd3915 +size 1314007 diff --git a/corpus/datasets and other corpora/pt-BR/DATh.xml.gz b/corpus/datasets and other corpora/pt-BR/DATh.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..0c04befd2768eb55ddf2d248dab9f3eaa0dcb6e2 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATh.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a9d983d6286c295f78f9df8f21aceca17a81d1a14526a4b73c1492cdbd64828 +size 1316970 diff --git a/corpus/datasets and other corpora/pt-BR/DATi.xml.gz b/corpus/datasets and other corpora/pt-BR/DATi.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..c26f11c21ce73544658f59b2629ae1aadedc67b9 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATi.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b902678f39b346e85668c4440aa4ab4d9f4918c50b3e6c0db19df1b0bf4fa6c3 +size 1402145 diff --git a/corpus/datasets and other corpora/pt-BR/DATj.xml.gz b/corpus/datasets and other corpora/pt-BR/DATj.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..6d5f6785079b10eb21f234167dd18af96257b0c5 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATj.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aec0cd0fe1e2142fc8dcd136f69a8593594196d7c33cf3b4ee893d7f8c1e006d +size 1305931 diff --git a/corpus/datasets and other corpora/pt-BR/DATk.xml.gz b/corpus/datasets and other corpora/pt-BR/DATk.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..621757da5c161eeba44196098a68261777a18fc5 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATk.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88dc021af79bd42bad4524928cab5d98c94e25153b9b6d2fe9f51965d73f00b8 +size 1308493 diff --git a/corpus/datasets and other corpora/pt-BR/DATl.xml.gz b/corpus/datasets and other corpora/pt-BR/DATl.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..3fe5ba3e4f99a51792814d05eec77efa4e0a7a82 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATl.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18946c20194b29e3ae488b023e1ff9e18fbb8d202226ef197d2a6f1f169c0b3a +size 1305300 diff --git a/corpus/datasets and other corpora/pt-BR/DATm.xml.gz b/corpus/datasets and other corpora/pt-BR/DATm.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..feeace14d1a5e747c236c181561b3360f45ea5dd --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATm.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68abdbddad326e05ac610d6d80fc4ab2adb4d1c8cbac837cae5f51c0e1b5ee9d +size 1308949 diff --git a/corpus/datasets and other corpora/pt-BR/DATn.xml.gz b/corpus/datasets and other corpora/pt-BR/DATn.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..6a7f1519f2337b46ebb0fe8415e791e5577e0be0 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATn.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec3bf36e9af5fe48282973a1dae23068ce29551f4b77d47921cd11048cec453 +size 1297905 diff --git a/corpus/datasets and other corpora/pt-BR/DATo.xml.gz b/corpus/datasets and other corpora/pt-BR/DATo.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..852d694798d1dbc6e4afff8aae4f09a12b45e29d --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATo.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08ea84aa9f67662020e3e350d2352289f78e2151bb330a7901839c8233249f74 +size 1275063 diff --git a/corpus/datasets and other corpora/pt-BR/DATp.xml.gz b/corpus/datasets and other corpora/pt-BR/DATp.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..a4329159c5a339bccb062473419638b782054bda --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATp.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c727da218e4257d93b92ff59b46551a38207db64619be41f78945b8811ef71a +size 1289505 diff --git a/corpus/datasets and other corpora/pt-BR/DATq.xml.gz b/corpus/datasets and other corpora/pt-BR/DATq.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..adf1bfeec59fc0af9e3f5dd2ad6c00c1e67da563 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATq.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:767783152ad9d64fa3098435351437ce14f7bef5781264d23cfe4715daad3e83 +size 1003235 diff --git a/corpus/datasets and other corpora/pt-BR/DATr.xml.gz b/corpus/datasets and other corpora/pt-BR/DATr.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..9ecd065f3661a7745ee9db4f7fd8491d340becc2 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATr.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f640fcc6732b416974eeebddfa9afa63d7e4ddb3dda5162cfb88d27ce55cc76 +size 4308696 diff --git a/corpus/datasets and other corpora/pt-BR/DATs.xml.gz b/corpus/datasets and other corpora/pt-BR/DATs.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..478351fab144b6a38836efb257b16f2cd5605c29 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATs.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da94f3c4ee0f14c747a21e6f02a270829488b1d5a1aa6c69ca7ed63e7af56d2c +size 6576394 diff --git a/corpus/datasets and other corpora/pt-BR/DATt.xml.gz b/corpus/datasets and other corpora/pt-BR/DATt.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..837c2cb5576013468bc4e0246eb1dd4b55cc15f0 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATt.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dca0eedc9ad43e0ad32d5d4b733a4e5a10f4ec1c924dae6ff3f4fce570a4ed3 +size 6619281 diff --git a/corpus/datasets and other corpora/pt-BR/DATu.xml.gz b/corpus/datasets and other corpora/pt-BR/DATu.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..0ed3a33139899deb3ab1810f1a4b7a37822d2ba1 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATu.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d6746e7d879161f1c349a1c79080b95051349a13d581979d3d37ec55c4117d1 +size 6555499 diff --git a/corpus/datasets and other corpora/pt-BR/DATv.xml.gz b/corpus/datasets and other corpora/pt-BR/DATv.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..af9c330957b627b59d1117420e6d89d50960c2e6 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATv.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80ff91b6d870bc2ca6313b370815c3653b296e409ee205127d4e45e5341b0246 +size 6517491 diff --git a/corpus/datasets and other corpora/pt-BR/DATw.xml.gz b/corpus/datasets and other corpora/pt-BR/DATw.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..d1e97e414b75db4facddd595b2677f410fcc8e9e --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATw.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1935a3e997deee534e6b477c4f83ebadd134bad9434a42a2e1489549a411a36e +size 6525321 diff --git a/corpus/datasets and other corpora/pt-BR/DATx.xml.gz b/corpus/datasets and other corpora/pt-BR/DATx.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..08b54ec53484a0befbab099c4a34135192365940 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATx.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beff1dba178f97cca1016a7591375dd5cfdcece354df7e2337f2da591e79e9d2 +size 6465260 diff --git a/corpus/datasets and other corpora/pt-BR/DATy.xml.gz b/corpus/datasets and other corpora/pt-BR/DATy.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..9e32e7ba8820230c1feb3c5defeea60d17063830 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATy.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73b20d280ccec0815d5b1d2eeffec95e9dba4acfe398cd1f8ca8c5f8c6dfe7da +size 6441058 diff --git a/corpus/datasets and other corpora/pt-BR/DATz.xml.gz b/corpus/datasets and other corpora/pt-BR/DATz.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..a29459b902d6877de6c493a537f8a52de3775940 --- /dev/null +++ b/corpus/datasets and other corpora/pt-BR/DATz.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc7e0fb7251244f733d7f4455f2694c39354a483dfbccd997c3f193292db8f60 +size 6458153 diff --git a/corpus/datasets and other corpora/pt/DAT_000001.xml.zip b/corpus/datasets and other corpora/pt/DAT_000001.xml.zip deleted file mode 100644 index cac31038c019807d7aa2b2413a365e395c6b9113..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000001.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1d0e25222486872317a6f8ec362207de5e1720235a607f799032ec5313d6322b -size 2474114 diff --git a/corpus/datasets and other corpora/pt/DAT_000002.xml.zip b/corpus/datasets and other corpora/pt/DAT_000002.xml.zip deleted file mode 100644 index 576870bf676be00c312806e4f5dcf7b3d3940b3f..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000002.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b6543b7b18e518c9eb5aeb980e87f7f918e4565f063607b754b797f519eff9c3 -size 2058748 diff --git a/corpus/datasets and other corpora/pt/DAT_000003.xml.zip b/corpus/datasets and other corpora/pt/DAT_000003.xml.zip deleted file mode 100644 index 920c2f6201df9ba46abdce3109e5f37416cdbaef..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000003.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ee591bb37fd7211aa7e97ebdeb924ea199ddd72b56d3aa0b9ccf22957e494330 -size 2007296 diff --git a/corpus/datasets and other corpora/pt/DAT_000004.xml.zip b/corpus/datasets and other corpora/pt/DAT_000004.xml.zip deleted file mode 100644 index fd1916db7e451ef8c65083ff3df43bc4ecbf9b46..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000004.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0fb88df81f24310c39d99d9420b60cabe4aaebcc7c94e1fd37e9c8e59f9d8f82 -size 1766187 diff --git a/corpus/datasets and other corpora/pt/DAT_000005.xml.zip b/corpus/datasets and other corpora/pt/DAT_000005.xml.zip deleted file mode 100644 index 5937453205ef310779163c924446b261f78f2ae9..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000005.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1c5614d91cf085434c5844221c26baf9644ce21b662075ce7a18972d8ba84786 -size 1734830 diff --git a/corpus/datasets and other corpora/pt/DAT_000006.xml.zip b/corpus/datasets and other corpora/pt/DAT_000006.xml.zip deleted file mode 100644 index bcc12373f4ede9e28693efb23d6cc78d12cf4f47..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000006.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:49ca26da3bf63ffc28dd431705b76ecfc99770be6c06a5113fe0e41ca80ff0a3 -size 1742237 diff --git a/corpus/datasets and other corpora/pt/DAT_000007.xml.zip b/corpus/datasets and other corpora/pt/DAT_000007.xml.zip deleted file mode 100644 index b7f9f1ff4a302ccc994043161bf835e0746ec6ab..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000007.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2ed0f35299e0a112b730ebbcf642b071088f633bff502cf51cd0725f872a6d95 -size 1902425 diff --git a/corpus/datasets and other corpora/pt/DAT_000008.xml.zip b/corpus/datasets and other corpora/pt/DAT_000008.xml.zip deleted file mode 100644 index 871c53605b7215203d54fc77f5c7a7dbc75ab339..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000008.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:39128432cbff4046e43b4ffd49bcd7ab93d25bdbf705f1beea0012dc8f2b2a29 -size 1802029 diff --git a/corpus/datasets and other corpora/pt/DAT_000009.xml.zip b/corpus/datasets and other corpora/pt/DAT_000009.xml.zip deleted file mode 100644 index fa65a77974f8c64b3c559618e93b4c6f9bf9280d..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000009.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d3e42c6cc6cb2f586114a80eabf5f3f431f38418688a5ae3ca9c8fc0bffe5ea0 -size 1852722 diff --git a/corpus/datasets and other corpora/pt/DAT_000010.xml.zip b/corpus/datasets and other corpora/pt/DAT_000010.xml.zip deleted file mode 100644 index f6f5c9fab3038cf06a8aef231d37731268652a55..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000010.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9668642acb3b7840bbd7242f66d4bd49a947a7f92351780f25667e2d6e7bca77 -size 1851665 diff --git a/corpus/datasets and other corpora/pt/DAT_000011.xml.zip b/corpus/datasets and other corpora/pt/DAT_000011.xml.zip deleted file mode 100644 index a4591d5959db75fc3a7ff748abf78ee7ae573ba6..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000011.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e61bbbfae3f6659da9ed100c80b55c373ea8c4dbc2184c64ef6cb76e166b9896 -size 1852525 diff --git a/corpus/datasets and other corpora/pt/DAT_000012.xml.zip b/corpus/datasets and other corpora/pt/DAT_000012.xml.zip deleted file mode 100644 index 6fed4c695e6610f798a0acd9112fe9f9cfb42db8..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000012.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:842a822ab97df60fa3f0a7bb964a4567b9f4fae3432bc997a3d48da711e58ce4 -size 1740983 diff --git a/corpus/datasets and other corpora/pt/DAT_000013.xml.zip b/corpus/datasets and other corpora/pt/DAT_000013.xml.zip deleted file mode 100644 index 580bf4fcf2c68bc28a4bbc525de591170b6b696c..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000013.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3508f7643fe9ce130f63301ff54c4527ab120e6cf6ffc598940ffbb07148b3f5 -size 1776632 diff --git a/corpus/datasets and other corpora/pt/DAT_000014.xml.zip b/corpus/datasets and other corpora/pt/DAT_000014.xml.zip deleted file mode 100644 index 880b50e52212a3531e4d79107b7bee9963b666b5..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000014.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:66a85f9d3014c0d5e6dfbb80cc25273dfc98ee6893c62825a95781b87de8cc9c -size 1824754 diff --git a/corpus/datasets and other corpora/pt/DAT_000015.xml.zip b/corpus/datasets and other corpora/pt/DAT_000015.xml.zip deleted file mode 100644 index caa4f4bb89ba18963108cfde996b865804e59654..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000015.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d4be9a715e134967c2d520184faae9cc3fd2daa80c1591ca7466da311ee2f5d4 -size 1912027 diff --git a/corpus/datasets and other corpora/pt/DAT_000016.xml.zip b/corpus/datasets and other corpora/pt/DAT_000016.xml.zip deleted file mode 100644 index 411d5fd6ab3e08f8758b1cb530964f138889921d..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000016.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d97d7f0a047c2be327804b093d712ea78dddd565345df0c4d9b8a8e83081a554 -size 1808334 diff --git a/corpus/datasets and other corpora/pt/DAT_000017.xml.zip b/corpus/datasets and other corpora/pt/DAT_000017.xml.zip deleted file mode 100644 index 3402d9f7a264e9df490bc50ae3406e0c4eea6d1b..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000017.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1be5f02cdd832b7b89e27f15c9b46ac64cf71de0efb2eb0b9bcc606a518f6184 -size 1864137 diff --git a/corpus/datasets and other corpora/pt/DAT_000018.xml.zip b/corpus/datasets and other corpora/pt/DAT_000018.xml.zip deleted file mode 100644 index 1cf21173c78480ac8e6f5e8dd2db1a6de09cd356..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000018.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:00725c6cdfc56547478429c8601aa0c0e872aa45dbd0f1e35da9364a08132d02 -size 1953561 diff --git a/corpus/datasets and other corpora/pt/DAT_000019.xml.zip b/corpus/datasets and other corpora/pt/DAT_000019.xml.zip deleted file mode 100644 index 111a71aeeb9a7beb306cf4752e48cfdcc4bd37d8..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000019.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3a842a52286b79b158de9db28396fd29346dc2fe7839f42109c713a2b2300b6b -size 1857766 diff --git a/corpus/datasets and other corpora/pt/DAT_000020.xml.zip b/corpus/datasets and other corpora/pt/DAT_000020.xml.zip deleted file mode 100644 index d97d6e4c85bccdf4153f55cb1064fec7a716257d..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000020.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a175bbd094a43810d799968fa538feedbb7f54f22156f23cb072981137e746c1 -size 1854002 diff --git a/corpus/datasets and other corpora/pt/DAT_000021.xml.zip b/corpus/datasets and other corpora/pt/DAT_000021.xml.zip deleted file mode 100644 index 97babdb750b614abdefa63b577fc54f26ce596ba..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000021.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:02f1e0f535d9ed4782946de15453c117b8d7361507492ab03a9b7546c5bb66b4 -size 1836794 diff --git a/corpus/datasets and other corpora/pt/DAT_000022.xml.zip b/corpus/datasets and other corpora/pt/DAT_000022.xml.zip deleted file mode 100644 index 621ef513a97c1f082593322c0acff0a3b445d867..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000022.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:74550a173db31c71f1a7f7608ea0a4c276c149f4838b62885ad286f9bccf4f7c -size 1874693 diff --git a/corpus/datasets and other corpora/pt/DAT_000023.xml.zip b/corpus/datasets and other corpora/pt/DAT_000023.xml.zip deleted file mode 100644 index 9e4a91e61e425ce4b743ae1e8bd9dc3f198bd5b8..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000023.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1cbee81e08b70617c6cd0abb51e9c6a834c18c230c92e161fb7900ff4e5dc1e0 -size 2009699 diff --git a/corpus/datasets and other corpora/pt/DAT_000024.xml.zip b/corpus/datasets and other corpora/pt/DAT_000024.xml.zip deleted file mode 100644 index fa5f5f33f9b983d74dcf1ea8bebbee1e7567033b..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000024.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2670e0d393839e804ceab68c0f16a1ac41e9cd524d32a3528fd54ea9ef3d1b5a -size 1819917 diff --git a/corpus/datasets and other corpora/pt/DAT_000025.xml.zip b/corpus/datasets and other corpora/pt/DAT_000025.xml.zip deleted file mode 100644 index 7b22c7ba10fa5f9acd3787bb7e7ee5c700eb5afc..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000025.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60d7c2680e2ae5a33510c3759900b7369971d28df754ca1a23ae47de004b215c -size 2040772 diff --git a/corpus/datasets and other corpora/pt/DAT_000026.xml.zip b/corpus/datasets and other corpora/pt/DAT_000026.xml.zip deleted file mode 100644 index 80726697a8a12e6d1058581d3c8a3c1dd08de131..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000026.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b9749e696f0b23faee48c083507af4ebdd449c7421bedce19bb37c3a02bac0ec -size 2180783 diff --git a/corpus/datasets and other corpora/pt/DAT_000027.xml.zip b/corpus/datasets and other corpora/pt/DAT_000027.xml.zip deleted file mode 100644 index 43319028afd7952f264764f6300ecf2027a1ee8d..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000027.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9952daa5e776bc9eeb0106d8c80d561e10545d76c0549e71afa6f5ed99d981b7 -size 2571503 diff --git a/corpus/datasets and other corpora/pt/DAT_000028.xml.zip b/corpus/datasets and other corpora/pt/DAT_000028.xml.zip deleted file mode 100644 index 76b3ae4b616ada3009246300d28506fc62d375da..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000028.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ea7ad75adcdffd96caefef51822c79c6dd6b5cfc706446977eca9c476d96e2b4 -size 2561706 diff --git a/corpus/datasets and other corpora/pt/DAT_000029.xml.zip b/corpus/datasets and other corpora/pt/DAT_000029.xml.zip deleted file mode 100644 index 7745e76c205502d0c0a566de825c4a04a4e63fd0..0000000000000000000000000000000000000000 --- a/corpus/datasets and other corpora/pt/DAT_000029.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c2d5764b94f3c79ad22d29df1e628b7ed5fef16354e7fe7755e7256ec0730a2b -size 1508261 diff --git a/corpus/datasets and other corpora/pt/DATcm.xml.gz b/corpus/datasets and other corpora/pt/DATcm.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..52d15912d19c1f3040b4c14a47b3ba203b67e36b --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATcm.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d87c62bd8d6125738e0f5018fd5b8239ea98f540ab7f0aaa7fa7e3c1a30541b5 +size 1045247 diff --git a/corpus/datasets and other corpora/pt/DATcn.xml.gz b/corpus/datasets and other corpora/pt/DATcn.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..00d6f07137660850b7581a0203392a41048ddd08 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATcn.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dee3edb78a5909fbd5a2b3563a3fc897073bcc0347b83e48d465c467455774be +size 1023810 diff --git a/corpus/datasets and other corpora/pt/DATco.xml.gz b/corpus/datasets and other corpora/pt/DATco.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..23e79e7e5e82cda39068cd802b198f2f42fc2882 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATco.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09f9cf6c4878932e2110606bb3cdfc45f73f4f6c51e3fc9050dac9e73264c8d9 +size 1033590 diff --git a/corpus/datasets and other corpora/pt/DATcp.xml.gz b/corpus/datasets and other corpora/pt/DATcp.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..53fe221911ce685115b5d56689aec84b3d820fe2 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATcp.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e6916ab1ad07ec0c8bf1df14d064cf76e0467f8ba5d6cf7d0a72b46dd9e6de +size 1048609 diff --git a/corpus/datasets and other corpora/pt/DATcq.xml.gz b/corpus/datasets and other corpora/pt/DATcq.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..de4e6c3c0a4d2b63d404ee71872facc6e100847d --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATcq.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57f4a838e6e28791a1360988c9353fca0bc283ad3d24c736db5df75737a75f25 +size 1006839 diff --git a/corpus/datasets and other corpora/pt/DATcr.xml.gz b/corpus/datasets and other corpora/pt/DATcr.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..55c8a6329714b42eb68237309382c010f0f5862d --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATcr.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e984d92a8ec4d6ff46d3e84ee6eccefa2f335a4ca2c032d43c3c2c358fbf46b8 +size 899878 diff --git a/corpus/datasets and other corpora/pt/DATcs.xml.gz b/corpus/datasets and other corpora/pt/DATcs.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..0f95aaf5d8b4baa8105fdd688f21a09125685e83 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATcs.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39fc820fec59ac57aaaad29d505ad31b3a227990cc80da5a82df991af0c991f2 +size 903590 diff --git a/corpus/datasets and other corpora/pt/DATct.xml.gz b/corpus/datasets and other corpora/pt/DATct.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..fc7fcb998209d72934d8ffaacf00f7ce8a7c4fb1 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATct.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:530287d65b022cca243daf4c1c7e83d2c707122385181bcf76ec4c87836a7f35 +size 891100 diff --git a/corpus/datasets and other corpora/pt/DATcu.xml.gz b/corpus/datasets and other corpora/pt/DATcu.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..a2e168a689b476a3dcfbbfe6b3b092c2a3951f88 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATcu.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c632c040e67649ddebd8f04e9648a4e65267aea4187df4e46da94aec9f6d834 +size 888484 diff --git a/corpus/datasets and other corpora/pt/DATcv.xml.gz b/corpus/datasets and other corpora/pt/DATcv.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..c50a6dc138aad79c0d5ae9edd770713b981608d3 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATcv.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4ff84dc668849d38bfd7f975e8777bb9dd558e60667600375d5f2e00343b9cc +size 879904 diff --git a/corpus/datasets and other corpora/pt/DATcw.xml.gz b/corpus/datasets and other corpora/pt/DATcw.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..17339fef79a37570c2d72b9e4d18833e9e794f63 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATcw.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a861769f2460ee7be7fdc956b5f88b8fdcc3f88b3b1a9ebcf706cd7ec4953fb +size 880574 diff --git a/corpus/datasets and other corpora/pt/DATcx.xml.gz b/corpus/datasets and other corpora/pt/DATcx.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..523aa1503f2142328942107a8d32eadcc35316bc --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATcx.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f34286805a70e40f2ca06c09bf4bd91d67960bf92736317adbe1ce8c7bf572c +size 909796 diff --git a/corpus/datasets and other corpora/pt/DATcy.xml.gz b/corpus/datasets and other corpora/pt/DATcy.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..9bcaa179db728976ece5e3b5600a6ccce2201ef7 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATcy.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f96edcff21dd5af091fd791d9b4dabce01ee87cad5067b71cb8e83afeb8221f +size 976459 diff --git a/corpus/datasets and other corpora/pt/DATcz.xml.gz b/corpus/datasets and other corpora/pt/DATcz.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..761786a999e176924823623c065965e2863c4bc4 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATcz.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f6338944a9a76e52a0f9fb1a8370b91d53d7fdb3a0e4e016d7b0f43362fccc +size 962770 diff --git a/corpus/datasets and other corpora/pt/DATda.xml.gz b/corpus/datasets and other corpora/pt/DATda.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..39a9ddb165afba5020392538c5fd232926b5761f --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATda.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4a0471421856aa689a56ac61db36f591a0ddd491535d0deded02e2477606414 +size 925897 diff --git a/corpus/datasets and other corpora/pt/DATdb.xml.gz b/corpus/datasets and other corpora/pt/DATdb.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..3fb5eeda60907335d5bb64e862eaa81876233856 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdb.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fda22edd85c26f6ba884c78e36feb6459da5c7d0b2b1fb0900676ad37842ab3 +size 908107 diff --git a/corpus/datasets and other corpora/pt/DATdc.xml.gz b/corpus/datasets and other corpora/pt/DATdc.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..116bb2395c40a2d3ad6bc7efbc74a57b2c8c773f --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdc.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d31783189e115d7ad03fdc629312294f2f6bf703d41fc4039492dd2c7dc61981 +size 922544 diff --git a/corpus/judicial branch/JUD_000024.xml.zip b/corpus/datasets and other corpora/pt/DATdd.xml.gz old mode 100644 new mode 100755 similarity index 81% rename from corpus/judicial branch/JUD_000024.xml.zip rename to corpus/datasets and other corpora/pt/DATdd.xml.gz index 918f709631a1a4e3aad43e65121bcd65f15032d1..c24317088c140b278e5ef66c8db6e5518611f318 --- a/corpus/judicial branch/JUD_000024.xml.zip +++ b/corpus/datasets and other corpora/pt/DATdd.xml.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f3f0a9d628d3d2e2536923257f8163604f814da4e83790f29f10ed325e014ec3 -size 9119344 +oid sha256:fe7534a3ad9b057f4041bb3f7a2c62e6981f7e4638d4f2fd880cc2b33641f2a8 +size 941524 diff --git a/corpus/datasets and other corpora/pt/DATde.xml.gz b/corpus/datasets and other corpora/pt/DATde.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..7a4e46810f0e5f0cbf434da0527270f2150d7acc --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATde.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99edc9582b53fe8086c2bedea2e2f6baa860ced04be43996bbea43abc1b9715e +size 958607 diff --git a/corpus/datasets and other corpora/pt/DATdf.xml.gz b/corpus/datasets and other corpora/pt/DATdf.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..1125e9589cb2cb11c7ff5181b4b5aeb08befb3c5 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdf.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aef5e1937d29c3cce9313ab662274f0cec9dd5d73b17437e6386f96674dfbfc8 +size 929830 diff --git a/corpus/datasets and other corpora/pt/DATdg.xml.gz b/corpus/datasets and other corpora/pt/DATdg.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..e714736587c1777dc7d2faad801646b9f123642b --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdg.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7053cd387b1952e1039767c7ae443d9ebff794bf5b83aedfd5beff8f43386b07 +size 992390 diff --git a/corpus/datasets and other corpora/pt/DATdh.xml.gz b/corpus/datasets and other corpora/pt/DATdh.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..0dda471e5d7fa30656215a431cdc991e02b9bbaf --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdh.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c122d4953d799dd3ab38f432b67f7f6ba135fb928f1999ceb4fa4a25a4c0f1 +size 908611 diff --git a/corpus/datasets and other corpora/pt/DATdi.xml.gz b/corpus/datasets and other corpora/pt/DATdi.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..44d4ebedd22a05b8dae2bbdd06e3a988bc37dd5f --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdi.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c15a7623e51c65f8f00eb0cbbede672d41553a72857064b9a2db7f821c7b98a4 +size 891513 diff --git a/corpus/datasets and other corpora/pt/DATdj.xml.gz b/corpus/datasets and other corpora/pt/DATdj.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..3a2382fc4409175bfd0f2cb4980af0e4863512ec --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdj.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7b57acc9ef33b28f5f51124f3e0c486f81808b3bbc435521a845a436221ed91 +size 888537 diff --git a/corpus/datasets and other corpora/pt/DATdk.xml.gz b/corpus/datasets and other corpora/pt/DATdk.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..191a801ab72b54770b9a9d2b87954edf24ceebb8 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdk.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93621c47d673d7a83ea473241ee47ad91784ab6931d4c6b3584806ce1a9ced96 +size 909905 diff --git a/corpus/datasets and other corpora/pt/DATdl.xml.gz b/corpus/datasets and other corpora/pt/DATdl.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..23c80faf30eaf60ffc3463155443215249e56586 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdl.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88dc99c13f2bcbd2c63b7180fa3e29d4d9dad3536c7dc50527a9e0a551863ff0 +size 859898 diff --git a/corpus/datasets and other corpora/pt/DATdm.xml.gz b/corpus/datasets and other corpora/pt/DATdm.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..2b1637fb61fe0513f3bced7622c04522def09127 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdm.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d5adf0b09a93b568b3508875aa3ac3bb06fc05e411b06e845283e01abbca69f +size 939481 diff --git a/corpus/datasets and other corpora/pt/DATdn.xml.gz b/corpus/datasets and other corpora/pt/DATdn.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..cf31214ef184b2d768e159c3ddeadee86b31c1df --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdn.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27a8058cdf2e2026749f030b020c28e2959b31c0fb235cf44b8c65e36153a26d +size 926320 diff --git a/corpus/datasets and other corpora/pt/DATdo.xml.gz b/corpus/datasets and other corpora/pt/DATdo.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..a55a85680f3042415023ee7a0eda46098ec581cd --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdo.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1261f8e06abd89ea52fc0f2d4653d10b488263f672da494a52168cddb4f236e6 +size 913579 diff --git a/corpus/datasets and other corpora/pt/DATdp.xml.gz b/corpus/datasets and other corpora/pt/DATdp.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..bad21304d5729bbd09175eae3c17edfda5e2a86a --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdp.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d1e2701c2bb15f93fe406fedd0b37a8de7a6214b302d59e603a58f0c84e6278 +size 952285 diff --git a/corpus/datasets and other corpora/pt/DATdq.xml.gz b/corpus/datasets and other corpora/pt/DATdq.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..75895b7ef0895c7db4466eaf78ca8fa04264dba3 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdq.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f939e8d134d3952bb023b1583f69b1664ca464a61ac0579600132c01da95335 +size 985592 diff --git a/corpus/datasets and other corpora/pt/DATdr.xml.gz b/corpus/datasets and other corpora/pt/DATdr.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..057d442c5ed211b1bd39c7eba8ff281dc30ccabf --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdr.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eb06d525c8e2411a4fbb01ecaae00b50d8d6341d0cf85e09e32c3cbe4edfe08 +size 930800 diff --git a/corpus/datasets and other corpora/pt/DATds.xml.gz b/corpus/datasets and other corpora/pt/DATds.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..44dc6404eebea20afb34b6e45b4e12c3a832b0e7 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATds.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54d1f8b019d437bcf2f220c75e664f9b162a7b9d5d1874cb2ff6582f8ea50ed1 +size 911416 diff --git a/corpus/datasets and other corpora/pt/DATdt.xml.gz b/corpus/datasets and other corpora/pt/DATdt.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..d7ae8b53af97bd4ff4638183204c001715210536 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdt.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce7ec74aad2af6d6c0ca08fb662d1b61cff6cddb3618355e3b46f15f6b508a2 +size 930660 diff --git a/corpus/datasets and other corpora/pt/DATdu.xml.gz b/corpus/datasets and other corpora/pt/DATdu.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..f68240155546a3a381fdbc07308f8b9c29af2807 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdu.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:589b18db12fa57c790a5cee9b879249542b8342e7c04540fdcf294375ac816c4 +size 976732 diff --git a/corpus/datasets and other corpora/pt/DATdv.xml.gz b/corpus/datasets and other corpora/pt/DATdv.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..32a9cdece4505b6d7af1eaf5a394c2d3aa5ddc2d --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdv.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1abff259f4e5ab5f69321e3cd3c2042e9dd7e4efec70487aff9091988af70eb +size 964888 diff --git a/corpus/datasets and other corpora/pt/DATdw.xml.gz b/corpus/datasets and other corpora/pt/DATdw.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..8d83fd02cd460f438ebd526f0f33373a0e11998e --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdw.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c03ac19dd750757efa6ac828f2a4ff5c104a2260a0f92c3d7509f230e1b321f8 +size 981777 diff --git a/corpus/datasets and other corpora/pt/DATdx.xml.gz b/corpus/datasets and other corpora/pt/DATdx.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..e432e89855ed297a86b4846e87054eac8c086e18 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdx.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0753671bcb3477a86f05f88762ee2207e34d925802f46c58a426b186f7cf8b43 +size 971315 diff --git a/corpus/datasets and other corpora/pt/DATdy.xml.gz b/corpus/datasets and other corpora/pt/DATdy.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..98eaac8f51f2e414996bcafc16cbf7b6f84a039f --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdy.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceb42c52c52c05855108a54451e62b31944510865920165051c6e94df600c16b +size 959740 diff --git a/corpus/datasets and other corpora/pt/DATdz.xml.gz b/corpus/datasets and other corpora/pt/DATdz.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..6189ebf4b42e64158b79af5550485afab2e94890 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATdz.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21b4482d4665d7814d399019f65eb1ea5fac3e7fd1e953f9569c351d9ebea1a3 +size 916013 diff --git a/corpus/datasets and other corpora/pt/DATea.xml.gz b/corpus/datasets and other corpora/pt/DATea.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..dfa1f11a12978f36dba0f123c577933bd5b3c6cd --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATea.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83ef36ef3a5ede60777327a14fe0c1f2d2aedc9e7828179f13a9ab4f126ec81c +size 979368 diff --git a/corpus/datasets and other corpora/pt/DATeb.xml.gz b/corpus/datasets and other corpora/pt/DATeb.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..b3c746fa99d43eb096fa65dc6d4984ea5a384a61 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATeb.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf341d3866cacfcccf99e83cf39c4ede677f0884a5516428a942ecbada9818f7 +size 911328 diff --git a/corpus/datasets and other corpora/pt/DATec.xml.gz b/corpus/datasets and other corpora/pt/DATec.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..e5f6db1e4d6bc593379ce28d713f53bc1aff4974 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATec.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:282dc20defdc90a5d3528f22e2edf04e0157ace8c12d1590d86733ad3f019370 +size 905915 diff --git a/corpus/datasets and other corpora/pt/DATed.xml.gz b/corpus/datasets and other corpora/pt/DATed.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..73ff97e57a67a497202765f796dbe1e0444f03ea --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATed.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c6393ff64c0c9b7f6037504168d0a5a2eb7a0276bbad4d541677f50c256ff74 +size 941587 diff --git a/corpus/datasets and other corpora/pt/DATee.xml.gz b/corpus/datasets and other corpora/pt/DATee.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..c498d6b4922003602765a2fc0bbc8c635e2c825c --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATee.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e67a1c1d119954c0332506cf56646afe9951f6e53f293b6dfc4cc5c511cab1d3 +size 923212 diff --git a/corpus/datasets and other corpora/pt/DATef.xml.gz b/corpus/datasets and other corpora/pt/DATef.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..bf30ec165dc0e5b56c5e68627b7f18cb8dbd21cb --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATef.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f43952eb260c185207d6ab3be7910d9e84f825b344af6b04d4df6fb2e3ae59c +size 986227 diff --git a/corpus/datasets and other corpora/pt/DATeg.xml.gz b/corpus/datasets and other corpora/pt/DATeg.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..f6b1e6ad2c2e0938f41d296c474cf849ad9a5aa8 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATeg.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be5670e851e8083e04e3ed57d6d5aa17e18738a1115f1f69a997f9010ff88f23 +size 922792 diff --git a/corpus/datasets and other corpora/pt/DATeh.xml.gz b/corpus/datasets and other corpora/pt/DATeh.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..b67afcb2bf6a02ca25fbe7e05523b0f40a1c51f7 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATeh.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03f10e8a9c6078e81b5389c2988895ad413a568087826c61c5a97e80b8d8435b +size 1049014 diff --git a/corpus/datasets and other corpora/pt/DATei.xml.gz b/corpus/datasets and other corpora/pt/DATei.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..3a14931f907a5cd559d93b5ee03c48376e73480d --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATei.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f3665d61c8b93d3d395d7f5c990764f4179ff3520934c07aa5da82cf4f25fdd +size 989152 diff --git a/corpus/datasets and other corpora/pt/DATej.xml.gz b/corpus/datasets and other corpora/pt/DATej.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..e5698e8de9f065f03ba92d287c2e8141fd2a3819 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATej.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e9d181d572049f8f7e50933e3f8ed900a296bc9d46beb3730ed5c21d244997a +size 937573 diff --git a/corpus/datasets and other corpora/pt/DATek.xml.gz b/corpus/datasets and other corpora/pt/DATek.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..0edd3b446cbe656d49cdbe9b82a8a068660d278c --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATek.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bd2c68fc040cab003de2e9b00b441c4275bb3ce98f4f0ab889c0e82c30f1743 +size 927407 diff --git a/corpus/datasets and other corpora/pt/DATel.xml.gz b/corpus/datasets and other corpora/pt/DATel.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..666370b2cabf5ab604d125f1fc2391caa6cd7f98 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATel.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c991fcfb2a09d68e5c9c662a58572e4846289ab2c62c53db8f75a23666c6d709 +size 1085981 diff --git a/corpus/datasets and other corpora/pt/DATem.xml.gz b/corpus/datasets and other corpora/pt/DATem.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..c812800ad070261778d6054b82f2a5bc7b09e04e --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATem.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d60f01033d8aa748595c51daddbe4e02126d85d4a6f41b312b1779b3cfff4036 +size 945127 diff --git a/corpus/datasets and other corpora/pt/DATen.xml.gz b/corpus/datasets and other corpora/pt/DATen.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..c55229ab29e9eeb11e578d692536912e089c6721 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATen.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8650179f7256e41b5947bc6a42e467ecf89d7e74134b318d34c09cace396674b +size 1351249 diff --git a/corpus/datasets and other corpora/pt/DATeo.xml.gz b/corpus/datasets and other corpora/pt/DATeo.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..f24dc8583a7f0cc8fcac550ff1dd9722a182db7b --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATeo.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56d2012a4e9b94e22930a2ec4d0ea32a9618822e370b93fb2915486c4d058ab5 +size 1085983 diff --git a/corpus/datasets and other corpora/pt/DATep.xml.gz b/corpus/datasets and other corpora/pt/DATep.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..80928ae2eb14b120bd13ad325049ba2198730e69 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATep.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e5f7405fdd6f23e8c08bc6e96395ab9f3ba0a559711273c5c891b4ed6707a84 +size 1076499 diff --git a/corpus/datasets and other corpora/pt/DATeq.xml.gz b/corpus/datasets and other corpora/pt/DATeq.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..6a43872e8cbc74c45dc4726ffdb00f3fb55b74e0 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATeq.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8daaa3cc3b2681d7a9fbd6d1d75f2745553b2148c47bb7e572ae72c205c7d1c +size 1078162 diff --git a/corpus/datasets and other corpora/pt/DATer.xml.gz b/corpus/datasets and other corpora/pt/DATer.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..c67d231e27aadff17301415a671aa27989bde7f2 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATer.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f74def0656aaad8461530a91d75c8ec825f0ec57d429915a4eb77e3594984c1 +size 1259881 diff --git a/corpus/datasets and other corpora/pt/DATes.xml.gz b/corpus/datasets and other corpora/pt/DATes.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..c5b34ddf9decc029a7d5ea506f6a088b269d0861 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATes.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1ecc8f92f3f6691cbe3883ccd2c36ffe065658dd0755be5639d1184149458c3 +size 1328272 diff --git a/corpus/datasets and other corpora/pt/DATet.xml.gz b/corpus/datasets and other corpora/pt/DATet.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..13a4e3728664aa3c643f27b8fae40fad5c772363 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATet.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc59c496e444b6b4b9c84211a0448d21ce4bd9d4ba63971e9422ed6095ba124c +size 1269676 diff --git a/corpus/datasets and other corpora/pt/DATeu.xml.gz b/corpus/datasets and other corpora/pt/DATeu.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..51e294bd901272c4958c15308bcd37dcbe4e9fc4 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATeu.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef65777a5455d1830c08da0ff07ed144fc61124e2d63863f888bb313a9d845fd +size 1241683 diff --git a/corpus/datasets and other corpora/pt/DATev.xml.gz b/corpus/datasets and other corpora/pt/DATev.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..fa634f5cae8d0321b2d86eeb09a76a6d48c50555 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATev.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:615c5130cdace395cf27f06dee52cdb9911f6621b5c8a6af32f00ecee9088352 +size 1321878 diff --git a/corpus/datasets and other corpora/pt/DATew.xml.gz b/corpus/datasets and other corpora/pt/DATew.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..9c1ec72a3045f46e56ede1f29c86133836c13485 --- /dev/null +++ b/corpus/datasets and other corpora/pt/DATew.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4605eede31d7f574a936ee81d94ff46134ed13c8c558ab4be7be6d220408fae +size 229022 diff --git a/corpus/judicial branch/JUD_000001.xml.zip b/corpus/judicial branch/JUD_000001.xml.zip deleted file mode 100644 index de4575d9fda1ae5966e2ba72b08e8c352e60df60..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000001.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ed012b250bad80577b6f9a01f7a4e44adae6f660c2ceae92232f9b4674db41c7 -size 8035541 diff --git a/corpus/judicial branch/JUD_000002.xml.zip b/corpus/judicial branch/JUD_000002.xml.zip deleted file mode 100644 index d864c8f46207c1b5421bd2bcd0cf7436be983295..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000002.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3affe36e96504f1d732e153aad1ab0f2d4784441eab04f312c8bf04595ad3948 -size 7988246 diff --git a/corpus/judicial branch/JUD_000003.xml.zip b/corpus/judicial branch/JUD_000003.xml.zip deleted file mode 100644 index a31518410b15ef0b1502d9e1ab08d50706350bbd..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000003.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f8008aeb3081d2404d672729525c3ae0df037c4b4786a64802962d88b4c777c2 -size 7997071 diff --git a/corpus/judicial branch/JUD_000004.xml.zip b/corpus/judicial branch/JUD_000004.xml.zip deleted file mode 100644 index 5bc4351131fc9e2930e4d95451b36aba5f8fe2e8..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000004.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1aeb408f8b10738afcbeb8cc5715a95ab7f50ac76a17e436690e64e06b0e33e3 -size 7964163 diff --git a/corpus/judicial branch/JUD_000005.xml.zip b/corpus/judicial branch/JUD_000005.xml.zip deleted file mode 100644 index 905c36ed2c01e5f33e261953e5966de6262116e7..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000005.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8b575ee616bbf533ceec27bf3a1fc1acada3f332db32d05afa72d42525babd3f -size 8065389 diff --git a/corpus/judicial branch/JUD_000006.xml.zip b/corpus/judicial branch/JUD_000006.xml.zip deleted file mode 100644 index c7f03ff27263fd0be3569fd189db5e62cfeca2ce..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000006.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f9e2e53a47c11f4c3b6608d8e828725d734a8d9a0e5c106cd109a10159020c21 -size 7942112 diff --git a/corpus/judicial branch/JUD_000007.xml.zip b/corpus/judicial branch/JUD_000007.xml.zip deleted file mode 100644 index a43da2d0e0a64bb32b87c2d6d3cbbb29f3616b0a..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000007.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b1b612c9f0ff48e463b5c75fc1485d7d67264538a87dbaa2b8c10c9d6835fa82 -size 8143276 diff --git a/corpus/judicial branch/JUD_000008.xml.zip b/corpus/judicial branch/JUD_000008.xml.zip deleted file mode 100644 index 787aa7317748588c3b5d674152077ed3ffd9ef1f..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000008.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5716a30f47bd8148462432f13cd8086fe99f1223a4eeec88ca39ec3997e462d6 -size 7918368 diff --git a/corpus/judicial branch/JUD_000009.xml.zip b/corpus/judicial branch/JUD_000009.xml.zip deleted file mode 100644 index 583dce248ffbead28c9b8aa1e8406ad753cd4e0c..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000009.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3182069cb834feee8e28c8800b82c363fe28e5e37a4e5ee5e597fe20b269e652 -size 8041846 diff --git a/corpus/judicial branch/JUD_000010.xml.zip b/corpus/judicial branch/JUD_000010.xml.zip deleted file mode 100644 index 4125ce32935a39698f7f86a2b021a227aae24628..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000010.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ee85b47e854b9c0e48b319530ecc023c158454f7a25b6627f3213046e8f1a303 -size 8037422 diff --git a/corpus/judicial branch/JUD_000011.xml.zip b/corpus/judicial branch/JUD_000011.xml.zip deleted file mode 100644 index 33645364f78136d28408fcc33455d945561f0649..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000011.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0a2077bd5df12cd13f4d3a6524294472449bc28294e61da731170f865b79354d -size 8044930 diff --git a/corpus/judicial branch/JUD_000012.xml.zip b/corpus/judicial branch/JUD_000012.xml.zip deleted file mode 100644 index 704c3b7e7855af9c534bc210ac7ea156cf082867..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000012.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6deed449f0523b9feb83444538d19851b4995d7e6bb15f31cd12f765c18f717c -size 8166411 diff --git a/corpus/judicial branch/JUD_000013.xml.zip b/corpus/judicial branch/JUD_000013.xml.zip deleted file mode 100644 index a77c010922334f0435eb80ed1ada392e2fe610c4..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000013.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:70c7f79411725b08ff74db43b560e980102aab157b516e2d3927776408bd0634 -size 8146426 diff --git a/corpus/judicial branch/JUD_000014.xml.zip b/corpus/judicial branch/JUD_000014.xml.zip deleted file mode 100644 index 6d5ae8a8177b38b219741cd8d661636c59a75809..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000014.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fcc088a72aa355eb847b1ef5f553d6a7e62da4df17442be91df92aa8934288d3 -size 8005679 diff --git a/corpus/judicial branch/JUD_000016.xml.zip b/corpus/judicial branch/JUD_000016.xml.zip deleted file mode 100644 index cb265b107b4e2d385d317ce4d89bfdc4152ecceb..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000016.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e5c7afe9ccf11e2a3eb2a8965c2144947eaad483a13776ae37c2565573b84634 -size 8010930 diff --git a/corpus/judicial branch/JUD_000017.xml.zip b/corpus/judicial branch/JUD_000017.xml.zip deleted file mode 100644 index b420d96887aebc186b7d6af2901a2f176421afda..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000017.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c07233b1f707ba4e24d93c7c33ddaa1c429cbc4916a32247810cf0f01c478639 -size 7899799 diff --git a/corpus/judicial branch/JUD_000018.xml.zip b/corpus/judicial branch/JUD_000018.xml.zip deleted file mode 100644 index 9fca7b3228ab4be4407d3adc31b28777cc8ec012..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000018.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f4c5e64b68c0574d0459cf68e6ffd8f5c18607ed6dd2d8db7736dc68e070051f -size 8077953 diff --git a/corpus/judicial branch/JUD_000019.xml.zip b/corpus/judicial branch/JUD_000019.xml.zip deleted file mode 100644 index 13b5460cda65e84b615360399d34db930ca1f2a5..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000019.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7357b9a885e21205dafaeed5a457f14f40fc9129ee0bdad49c8ad605445bd3ec -size 8066395 diff --git a/corpus/judicial branch/JUD_000020.xml.zip b/corpus/judicial branch/JUD_000020.xml.zip deleted file mode 100644 index 87d821ae54066841e8a4cd27fd48ce39edf7c71e..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000020.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1e6f6d56d0337752ae0fa80d7e9e9d8c27a98321bdb556cbe2d68534e249f5e1 -size 7956334 diff --git a/corpus/judicial branch/JUD_000021.xml.zip b/corpus/judicial branch/JUD_000021.xml.zip deleted file mode 100644 index 5b6d6ad6f1add39c3df64e7ac955afffc4ccca44..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000021.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c52d1301e9db53522ae21a353894ee945e7a8a979fab03be7f579fa17fc67599 -size 7935820 diff --git a/corpus/judicial branch/JUD_000022.xml.zip b/corpus/judicial branch/JUD_000022.xml.zip deleted file mode 100644 index b7f63089e294bb7e338f80eb38800cb17558077a..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000022.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6e8b101480e2d31ff36180499f0cd88a40db8f583e66a4e1bf0a3b1db8a7c7de -size 7997851 diff --git a/corpus/judicial branch/JUD_000023.xml.zip b/corpus/judicial branch/JUD_000023.xml.zip deleted file mode 100644 index c0b7ce0c5b8f3162dc9e6418dce115912ced8f2b..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000023.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8b21dbb6663c99f2898239a87d43f49039414c29ab0f6dcb083aa87d0b9349c2 -size 7939302 diff --git a/corpus/judicial branch/JUD_000025.xml.zip b/corpus/judicial branch/JUD_000025.xml.zip deleted file mode 100644 index 2c97d1810ba9ad0bc783575c3464836e15469b71..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000025.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b49dcd00e7a4d97406816711f0fd4ee8275deb4caecebb7a6d944c0eef8f6654 -size 14054543 diff --git a/corpus/judicial branch/JUD_000026.xml.zip b/corpus/judicial branch/JUD_000026.xml.zip deleted file mode 100644 index 7078f48728103bb58ca58bc81aa34d6bc593e193..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000026.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3bf29c6b8605be49df38afa03bc2a0c96da2bb6b56a537d9653645a7685fd150 -size 13972248 diff --git a/corpus/judicial branch/JUD_000027.xml.zip b/corpus/judicial branch/JUD_000027.xml.zip deleted file mode 100644 index a8a4c072d06b1cc716b494d77310bd8f84296387..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000027.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d5a3dcb89005c54d73f91f16ff1b0d798d3def60b40fbec819a711354f5a6e73 -size 14033223 diff --git a/corpus/judicial branch/JUD_000028.xml.zip b/corpus/judicial branch/JUD_000028.xml.zip deleted file mode 100644 index 558d642e265deeb95c8a22d199a3cf4d3a9d3f7c..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000028.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:72d6c9d4a8ee493fe07e6d7e116d3eefa6b0ef553063c929fbccf64a9d746390 -size 14932201 diff --git a/corpus/judicial branch/JUD_000029.xml.zip b/corpus/judicial branch/JUD_000029.xml.zip deleted file mode 100644 index bd9db446a997bb9cf38586d1e5c4a7d28e86c193..0000000000000000000000000000000000000000 --- a/corpus/judicial branch/JUD_000029.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a19de24a4306fa82c3b704179a8462c8dbf924ed07130166ddbe0d467a8cd319 -size 3621967 diff --git a/corpus/judicial branch/JUDa.xml.gz b/corpus/judicial branch/JUDa.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..23921c7aa49136561d427537a7c1fd0cb8485c70 --- /dev/null +++ b/corpus/judicial branch/JUDa.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1055870c3394bccc624529cdee13212861e8b3970061c6735a685e5e2cd6692 +size 3835195 diff --git a/corpus/judicial branch/JUDaa.xml.gz b/corpus/judicial branch/JUDaa.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..5196bb80b1659edb983da686603ec093e5dfdeef --- /dev/null +++ b/corpus/judicial branch/JUDaa.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16ce1f6f843793f16e204dbcba0642b447bf202326af49ae2b45e322aa0e67cf +size 3870637 diff --git a/corpus/judicial branch/JUDab.xml.gz b/corpus/judicial branch/JUDab.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..a14bd9b0c75916d4a4c5fa43eab6845e7bd674c5 --- /dev/null +++ b/corpus/judicial branch/JUDab.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a32a0b62139b955c52565e752395d1d475b5a19ca2bfa1cf74acde2b414ef1ec +size 4027868 diff --git a/corpus/judicial branch/JUDac.xml.gz b/corpus/judicial branch/JUDac.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..0b5d5dccbdf708ed5737e11d9f3fd599e45e2e34 --- /dev/null +++ b/corpus/judicial branch/JUDac.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4189449905f165ef4c2571a474e68dba5f470d6b77cd3fb53c43146844ab4cf +size 3819365 diff --git a/corpus/judicial branch/JUDad.xml.gz b/corpus/judicial branch/JUDad.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..a390a5148a3e6a54516aa7826a506a4ccbc0d18f --- /dev/null +++ b/corpus/judicial branch/JUDad.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c433f535adc2b16e2a1277185659ff1201a4ec42e3e7e4e0bba80122b3e790b +size 3910375 diff --git a/corpus/judicial branch/JUDae.xml.gz b/corpus/judicial branch/JUDae.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..b839992fdb9f4ff3dd91a37301db73a376ccabe4 --- /dev/null +++ b/corpus/judicial branch/JUDae.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6d7ecc83f22b126e3b608b9092bfcd8da0f66b6ded945274ff66634e32e3daf +size 3796881 diff --git a/corpus/judicial branch/JUDaf.xml.gz b/corpus/judicial branch/JUDaf.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..f15575909163d9d80f73132e9210259784ffd8ed --- /dev/null +++ b/corpus/judicial branch/JUDaf.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a81034d405be560b6ba85943aca3a6f8f773c75908be6ab0c957d5426e1b16a5 +size 3928374 diff --git a/corpus/judicial branch/JUDag.xml.gz b/corpus/judicial branch/JUDag.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..0427b59c029fcd4deac082f72fd3c686e54a5786 --- /dev/null +++ b/corpus/judicial branch/JUDag.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da46cf3811f490f1add8da984ed1a1c0a76fa0df5299e72c95c621761be4d3cb +size 3924889 diff --git a/corpus/judicial branch/JUDah.xml.gz b/corpus/judicial branch/JUDah.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..ec4ffcea5f920f7ddd83d7895bf57c300c3329a4 --- /dev/null +++ b/corpus/judicial branch/JUDah.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58a89c18aea5b812a305859cceeb178545a44d0eed418200e406954cfcda519f +size 3816567 diff --git a/corpus/judicial branch/JUDai.xml.gz b/corpus/judicial branch/JUDai.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..381f26df53664a2badc34bd8e5000f301f2265a9 --- /dev/null +++ b/corpus/judicial branch/JUDai.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a6fa69947c9c68da2db06e9e5db6f6d044059a3c92c47f714626fa4cf86d413 +size 3826862 diff --git a/corpus/judicial branch/JUDaj.xml.gz b/corpus/judicial branch/JUDaj.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..f04182474a53e5d6dcc6d11bdd2a4caf86feea8d --- /dev/null +++ b/corpus/judicial branch/JUDaj.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cef04c9759bf937b11925b0f67c2e175524d5ff0ab0addf1d01cab6cc0d741a2 +size 3762866 diff --git a/corpus/judicial branch/JUDak.xml.gz b/corpus/judicial branch/JUDak.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..9c70102f962af74dc8f12c1b9079b46d24872141 --- /dev/null +++ b/corpus/judicial branch/JUDak.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6ccabbe2af2dd42eec2cecaf16ad41d532d5155a4a548cf7dba564802044421 +size 3844082 diff --git a/corpus/judicial branch/JUDal.xml.gz b/corpus/judicial branch/JUDal.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..001b3f762f6fb0022409d1497ef29a43cb013580 --- /dev/null +++ b/corpus/judicial branch/JUDal.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:567acd7208d0d06e9fb6f968c3cb87791c3528b039fdf82dfc456181b27bff37 +size 3860433 diff --git a/corpus/judicial branch/JUDam.xml.gz b/corpus/judicial branch/JUDam.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..b8e452838ca404d6ae7d0733fdf61faf96914939 --- /dev/null +++ b/corpus/judicial branch/JUDam.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d2b167f9c9a189b3ff7e1eb1643f29c0519f22f70a070d7463b690bc9cd8de2 +size 3918302 diff --git a/corpus/judicial branch/JUDan.xml.gz b/corpus/judicial branch/JUDan.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..72f97c9c6ab7f0d8d162c13df1fa61c03010b2df --- /dev/null +++ b/corpus/judicial branch/JUDan.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31855cb8620fedf3add6f81504f74ffd5d3e6790b70fd7fa078be4350972bb0f +size 3905652 diff --git a/corpus/judicial branch/JUDao.xml.gz b/corpus/judicial branch/JUDao.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..7cb4fb6c9ac7063288c97ed965660b1c048a7b65 --- /dev/null +++ b/corpus/judicial branch/JUDao.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ebe6f0aed2a8edeb2a273228830d2b8e5fcda66c1ad989cb71a73377edcbb18 +size 3866860 diff --git a/corpus/judicial branch/JUDap.xml.gz b/corpus/judicial branch/JUDap.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..cdd6113b13ac6ea459c83dfa84fd94c39f4e6c86 --- /dev/null +++ b/corpus/judicial branch/JUDap.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eb8ab1f112fb1c6516a75af587679488c93f429864a4b3cecb39b40068ec407 +size 3826256 diff --git a/corpus/judicial branch/JUDaq.xml.gz b/corpus/judicial branch/JUDaq.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..9f5ef15d5e8cc435d649ca5e27815c41f452939f --- /dev/null +++ b/corpus/judicial branch/JUDaq.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c713c333d9af5d71a17033012f5ba5af263b9302af954c06a5aa30f922627fe +size 3865748 diff --git a/corpus/judicial branch/JUDar.xml.gz b/corpus/judicial branch/JUDar.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..634eed3cce956dd14162bb1e9997d3782cf97ff1 --- /dev/null +++ b/corpus/judicial branch/JUDar.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dc7f0e4d75c4b76d5d8e958f237e6058518f97f52503e2ebfa5ad8c5b08168a +size 3791817 diff --git a/corpus/judicial branch/JUDas.xml.gz b/corpus/judicial branch/JUDas.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..27ee3a36839b8ebfee5504d93819d20cb249e73d --- /dev/null +++ b/corpus/judicial branch/JUDas.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d34a29504dc0566d5769bbd36159e303f4bf1ba0e51ad3293890ce1ced7829 +size 3844652 diff --git a/corpus/judicial branch/JUDat.xml.gz b/corpus/judicial branch/JUDat.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..7eb9f105faffc145a7171b7075520290e6e35a44 --- /dev/null +++ b/corpus/judicial branch/JUDat.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d645575d77f1bcd7759bb972a2db04b6c8f71d5e98264a1bf6edcd5cec4c2a1e +size 3843126 diff --git a/corpus/judicial branch/JUDau.xml.gz b/corpus/judicial branch/JUDau.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..23d069c02322324c6b9401d238a4503f93befa9f --- /dev/null +++ b/corpus/judicial branch/JUDau.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48eb75dc8c861363c4f9f790e2dc95cc0fbd5db4ccbaac67af016b024952b980 +size 3844518 diff --git a/corpus/judicial branch/JUDav.xml.gz b/corpus/judicial branch/JUDav.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..2559b79f4abb0729aceaf8f1d4114cb33feb9aaf --- /dev/null +++ b/corpus/judicial branch/JUDav.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f08761ceca9b2a724f4ccc056fcb42ed863c5a2bc8a1cfb20fc6e9a5eccb143 +size 3813576 diff --git a/corpus/judicial branch/JUDaw.xml.gz b/corpus/judicial branch/JUDaw.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..038ca9272b1a8a5d79b2b5a838252c205552c129 --- /dev/null +++ b/corpus/judicial branch/JUDaw.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a70d4ef3a8e83954251939cfde2686be75b99e2d724ea605b93de16a95197581 +size 3835103 diff --git a/corpus/judicial branch/JUDax.xml.gz b/corpus/judicial branch/JUDax.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..4164f223bdc26e7d5f0eb8b9a248591d88377e94 --- /dev/null +++ b/corpus/judicial branch/JUDax.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e501034192e1d8b44650f9b6455d572ce99f9f2a4a913f32f00f907b0dc7af04 +size 3897490 diff --git a/corpus/judicial branch/JUDay.xml.gz b/corpus/judicial branch/JUDay.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..b9b4c5969c14b0fa39c115098b3fe95e19ef1456 --- /dev/null +++ b/corpus/judicial branch/JUDay.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:606a018d900e0aac5854a27c13c796be5294822fd5b7b23ad35056fba46871b1 +size 3825396 diff --git a/corpus/judicial branch/JUDaz.xml.gz b/corpus/judicial branch/JUDaz.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..29d657292413e53f27bb6049ba322b80d04f7381 --- /dev/null +++ b/corpus/judicial branch/JUDaz.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5399409db67c3942203a549e47d74e48f8a1e276c89fa1f790bb57101b25366 +size 6158217 diff --git a/corpus/judicial branch/JUDb.xml.gz b/corpus/judicial branch/JUDb.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..417273ae0fc2b50a64bef55221d927674e5120b6 --- /dev/null +++ b/corpus/judicial branch/JUDb.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fd41a2c0775a51710d8d8272e9839822be375a6e14c34d07e991a15bc5fa462 +size 3921014 diff --git a/corpus/judicial branch/JUDba.xml.gz b/corpus/judicial branch/JUDba.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..9dd65166d3662b56191b350453978c31b93c5dfd --- /dev/null +++ b/corpus/judicial branch/JUDba.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:187cdb6236a1c0d42d2d5d48d0684c2cda3cac2b2af413843e76dec0664ea5e2 +size 6554240 diff --git a/corpus/judicial branch/JUDbb.xml.gz b/corpus/judicial branch/JUDbb.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..f03976f73416b259efc9ce9d526a0d3d3f9d5d1e --- /dev/null +++ b/corpus/judicial branch/JUDbb.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d923b28c04f9897d83b9ef8ccd3676700b84a2a16c9bb3864442d57d3d2649 +size 6471833 diff --git a/corpus/judicial branch/JUDbc.xml.gz b/corpus/judicial branch/JUDbc.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..bc890e1b4105731532553314d444c81d68dc3b82 --- /dev/null +++ b/corpus/judicial branch/JUDbc.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41b1da6366f7b308adad934716fd589a4a645e5794e041fda6fc422a1797359b +size 6696045 diff --git a/corpus/judicial branch/JUDbd.xml.gz b/corpus/judicial branch/JUDbd.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..29c3ccbb82815123067d41c46342a9c1c5161c63 --- /dev/null +++ b/corpus/judicial branch/JUDbd.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bc47cd1f717637bccc2486544b3b0b9e856342bb7bd52e2f795a5a03b6cae72 +size 6640766 diff --git a/corpus/judicial branch/JUDbe.xml.gz b/corpus/judicial branch/JUDbe.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..c9b4990a3096c9eaa5aa7917ebc731eb01784acb --- /dev/null +++ b/corpus/judicial branch/JUDbe.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0256379523962cb4567cfa438a0c80a052e0dae640b3fe3841e1d12b0fb1429 +size 6653984 diff --git a/corpus/judicial branch/JUDbf.xml.gz b/corpus/judicial branch/JUDbf.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..11ec771023e8249ca795da4b849946d9adba5d3d --- /dev/null +++ b/corpus/judicial branch/JUDbf.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a6ed1418b4406479a5dfbc370d59889acbacf12b633966aa278d5b7917c55a0 +size 6592041 diff --git a/corpus/judicial branch/JUDbg.xml.gz b/corpus/judicial branch/JUDbg.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..7fe508c8bd33510f7817de535d8b1dd6fdf34bd9 --- /dev/null +++ b/corpus/judicial branch/JUDbg.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7de784c0fe1540490b6df9462c930c716f6b78aef0f13fec7f525d30a62091b6 +size 6566121 diff --git a/corpus/judicial branch/JUDbh.xml.gz b/corpus/judicial branch/JUDbh.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..29174edb4ebfc09a6aa8fad089c58a4381bb4dcb --- /dev/null +++ b/corpus/judicial branch/JUDbh.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9e56bdd0c9cb3de62c3e86cf455008199e7c562f60a87ead5ffb6525d16844d +size 6525658 diff --git a/corpus/judicial branch/JUDbi.xml.gz b/corpus/judicial branch/JUDbi.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..dd1b752ac79398ad0ce6a19bb52856772ebb80df --- /dev/null +++ b/corpus/judicial branch/JUDbi.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a7b78a80f3881424130fe7dd9139a0c6d861c71ca882bc018836655d16197e5 +size 6140209 diff --git a/corpus/judicial branch/JUDbj.xml.gz b/corpus/judicial branch/JUDbj.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..b3a52918cffdfac33450b1b094163e886eef45ef --- /dev/null +++ b/corpus/judicial branch/JUDbj.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87c66a2d5f5e72340c76c22ec56b28cb25498ba74b59c825bc7d5f0304a8810f +size 7234456 diff --git a/corpus/judicial branch/JUDbk.xml.gz b/corpus/judicial branch/JUDbk.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..6538f9f3568ce7f15203e8c654785be064ee9b14 --- /dev/null +++ b/corpus/judicial branch/JUDbk.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:371dccde747ccfd50ac214ada5644f4a92b225b8f06cc24798fca1ca8291dc15 +size 5017729 diff --git a/corpus/judicial branch/JUDc.xml.gz b/corpus/judicial branch/JUDc.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..7357975784f1d1b8ddcabbb557cc4a0ed94d9443 --- /dev/null +++ b/corpus/judicial branch/JUDc.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:463b15b2f15b62d6561374eac4bcde8d295904efa9bc59b32faf396e094ebcdc +size 3820452 diff --git a/corpus/judicial branch/JUDd.xml.gz b/corpus/judicial branch/JUDd.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..f46a3774c2fb45cf7b11e6c9ab0a77b516e17da4 --- /dev/null +++ b/corpus/judicial branch/JUDd.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb3e42b5c9b7f98eff9f0357fd78d8eed49a3e3d207d73c5357b4c91dd3b6f5f +size 3886798 diff --git a/corpus/judicial branch/JUDe.xml.gz b/corpus/judicial branch/JUDe.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..754955147d5ab2aa487aa3ab88d45c0cf35e3e32 --- /dev/null +++ b/corpus/judicial branch/JUDe.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:332c9a37c65de97e6505863367bb3d60d5adb6bf9e38814efe93f11e6af6d897 +size 3802617 diff --git a/corpus/judicial branch/JUDf.xml.gz b/corpus/judicial branch/JUDf.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..8e539a057ab3391cb0503392631740a46c23b759 --- /dev/null +++ b/corpus/judicial branch/JUDf.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afb41652ed429acd443fe205d71b5b30022c4a70b123d82e1170e8c7e74fe2df +size 3874078 diff --git a/corpus/judicial branch/JUDg.xml.gz b/corpus/judicial branch/JUDg.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..f016bd7b30812b50154a7f0d81051623e608b69f --- /dev/null +++ b/corpus/judicial branch/JUDg.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5af1487a390bb4bd45c65798970d272f6981c8befdbfb8426594b60adbd8b802 +size 3814485 diff --git a/corpus/judicial branch/JUDh.xml.gz b/corpus/judicial branch/JUDh.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..b3c3ef94adaccddf5fd7cdcf287dfb9d1a3a700b --- /dev/null +++ b/corpus/judicial branch/JUDh.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:584c6d4668b24d60e60ae30820d02623b07c8edac36d1170a053a3180467fac5 +size 3859342 diff --git a/corpus/judicial branch/JUDi.xml.gz b/corpus/judicial branch/JUDi.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..26a72579f4a7859d1d311142ce260b660dc504b2 --- /dev/null +++ b/corpus/judicial branch/JUDi.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8661647b6d72c0253579c609a8cc8ba099aa3beebd4e6e927e2bc408e3d503cf +size 3824554 diff --git a/corpus/judicial branch/JUDj.xml.gz b/corpus/judicial branch/JUDj.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..feb2928efb45bfb0b25e3dba5598cf8ee6826063 --- /dev/null +++ b/corpus/judicial branch/JUDj.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2beb304e8ec55e3f2a4b779d54820f609ed4df6afb58abcacdf22e5f6f99c68f +size 3976029 diff --git a/corpus/judicial branch/JUDk.xml.gz b/corpus/judicial branch/JUDk.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..7ab33f59f72f2252e1c1364b94c32796a1385a47 --- /dev/null +++ b/corpus/judicial branch/JUDk.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3057494268c891d980766078bfc881ada8f9a4701c8fff36ee3790e2bbe2786f +size 3800478 diff --git a/corpus/judicial branch/JUDl.xml.gz b/corpus/judicial branch/JUDl.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..9d3e991255617c23db7ceb7a8c4980c656868be0 --- /dev/null +++ b/corpus/judicial branch/JUDl.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcfa966c2ba904a1fcf97011039e22d93c04337ad4b2bb7be8ba5cf56d22d2f1 +size 3819710 diff --git a/corpus/judicial branch/JUDm.xml.gz b/corpus/judicial branch/JUDm.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..dd1da3ccdec7b4ef772e5641d431e67654e4669a --- /dev/null +++ b/corpus/judicial branch/JUDm.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f847a8ad9c9a2537faa6141ebe9bbcf661975efe8e6c10dff2928dd47ad3738 +size 3846332 diff --git a/corpus/judicial branch/JUDn.xml.gz b/corpus/judicial branch/JUDn.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..b1f4f91ab364865f376fc2f80531d7d133a1db8f --- /dev/null +++ b/corpus/judicial branch/JUDn.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80ae582ca67ad3ce99a1815aa3f194adc3918dffd6a65941bccad8aa6317e60a +size 3804464 diff --git a/corpus/judicial branch/JUDo.xml.gz b/corpus/judicial branch/JUDo.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..d7f61f51768bd0ca5e8a7c6a7230de48d677612c --- /dev/null +++ b/corpus/judicial branch/JUDo.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15391d4201835b9f1dc0a8269e8f9fee1ad23180e4fe3b1d966b96051a54ba3c +size 4120276 diff --git a/corpus/judicial branch/JUDp.xml.gz b/corpus/judicial branch/JUDp.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..60d246fdbb936854bbc138767e27a55faadae704 --- /dev/null +++ b/corpus/judicial branch/JUDp.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8e5b0976d1ba5aabc06e46a1b1e87aaa828d2cb72c315225990579054750818 +size 3831853 diff --git a/corpus/judicial branch/JUDq.xml.gz b/corpus/judicial branch/JUDq.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..718b03d037ec4b12d83420036ee39ce5dcfbb949 --- /dev/null +++ b/corpus/judicial branch/JUDq.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aa2908050e83fded90497c02d3ee891b9c44347e956975ae83f964630e939c5 +size 3788344 diff --git a/corpus/judicial branch/JUDr.xml.gz b/corpus/judicial branch/JUDr.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..103e239ab665bb356a2e390f3b3cc90cc813003b --- /dev/null +++ b/corpus/judicial branch/JUDr.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60585465cc9f4357670b7328a12fa80695b57719640e36cd382539a231ac0197 +size 3844624 diff --git a/corpus/judicial branch/JUDs.xml.gz b/corpus/judicial branch/JUDs.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..06d773918d8792e7eb84bc7895314bb6929d8c99 --- /dev/null +++ b/corpus/judicial branch/JUDs.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44ad51bd94a52d11b7de91657cac503b679ca1c5bbe25be6d1bb38a77dbc60e8 +size 3903621 diff --git a/corpus/judicial branch/JUDt.xml.gz b/corpus/judicial branch/JUDt.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..7f327dda90f505e481cd81a7a7f4e9cfc551713a --- /dev/null +++ b/corpus/judicial branch/JUDt.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fd00c2c04e3b8487cf6d8e814a179fc9f5c3363420612f9f9bf0c46885f8a5e +size 4004950 diff --git a/corpus/judicial branch/JUDu.xml.gz b/corpus/judicial branch/JUDu.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..b2e4c46e30247883f46c5042d2e249c71ae57d7c --- /dev/null +++ b/corpus/judicial branch/JUDu.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:046125093ed9ccf63baec7365d4e508a1b7e01f51cbdb19848b35bbbc4ca6665 +size 3763128 diff --git a/corpus/judicial branch/JUDv.xml.gz b/corpus/judicial branch/JUDv.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..44ebe1584645a28a9a1dffa4fe751d2429918cc4 --- /dev/null +++ b/corpus/judicial branch/JUDv.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bbf3c14a90cd4fc621ee53088f9a0572c34caf6b58f437042d7f251bca461fa +size 3891678 diff --git a/corpus/judicial branch/JUDw.xml.gz b/corpus/judicial branch/JUDw.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..3312e125ed0ea116c08acdfca8579fb0a03ef4cf --- /dev/null +++ b/corpus/judicial branch/JUDw.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c3f874b2e862e11205e619a481f51ba42aa7cca53452a07f0572879dd340b87 +size 3837057 diff --git a/corpus/judicial branch/JUDx.xml.gz b/corpus/judicial branch/JUDx.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..a70436424778ade766b50461a86fde8b352a83ae --- /dev/null +++ b/corpus/judicial branch/JUDx.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9edbcb1ee578320f4a1accef4de97d405f355a8b1949778d8808c513cd5f6689 +size 3973111 diff --git a/corpus/judicial branch/JUDy.xml.gz b/corpus/judicial branch/JUDy.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..4a0479492244735bbb7932afa4a09e75415b2234 --- /dev/null +++ b/corpus/judicial branch/JUDy.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17bf8edbc8bbc5f0956051fcc85b9cef2c618d9b5fddd1974bbad359be3d00ba +size 3899395 diff --git a/corpus/judicial branch/JUDz.xml.gz b/corpus/judicial branch/JUDz.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..4ebd93612b56880ea18da63f0d40ebc74bc11fce --- /dev/null +++ b/corpus/judicial branch/JUDz.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a53764b3cbadb4300e9839171388e6ccbc16f2834ffa266870201fea36199aa4 +size 3820449 diff --git a/corpus/judicial branch/checksum.sha256 b/corpus/judicial branch/checksum.sha256 index e5ab94ea4096f0725349e295c22833131d7c193e..673f1dabf4feb256c12b906be74ab14dd4881981 100644 --- a/corpus/judicial branch/checksum.sha256 +++ b/corpus/judicial branch/checksum.sha256 @@ -1,29 +1,63 @@ -ed012b250bad80577b6f9a01f7a4e44adae6f660c2ceae92232f9b4674db41c7 JUD_000001.xml.zip -3affe36e96504f1d732e153aad1ab0f2d4784441eab04f312c8bf04595ad3948 JUD_000002.xml.zip -f8008aeb3081d2404d672729525c3ae0df037c4b4786a64802962d88b4c777c2 JUD_000003.xml.zip -1aeb408f8b10738afcbeb8cc5715a95ab7f50ac76a17e436690e64e06b0e33e3 JUD_000004.xml.zip -8b575ee616bbf533ceec27bf3a1fc1acada3f332db32d05afa72d42525babd3f JUD_000005.xml.zip -f9e2e53a47c11f4c3b6608d8e828725d734a8d9a0e5c106cd109a10159020c21 JUD_000006.xml.zip -b1b612c9f0ff48e463b5c75fc1485d7d67264538a87dbaa2b8c10c9d6835fa82 JUD_000007.xml.zip -5716a30f47bd8148462432f13cd8086fe99f1223a4eeec88ca39ec3997e462d6 JUD_000008.xml.zip -3182069cb834feee8e28c8800b82c363fe28e5e37a4e5ee5e597fe20b269e652 JUD_000009.xml.zip -ee85b47e854b9c0e48b319530ecc023c158454f7a25b6627f3213046e8f1a303 JUD_000010.xml.zip -0a2077bd5df12cd13f4d3a6524294472449bc28294e61da731170f865b79354d JUD_000011.xml.zip -6deed449f0523b9feb83444538d19851b4995d7e6bb15f31cd12f765c18f717c JUD_000012.xml.zip -70c7f79411725b08ff74db43b560e980102aab157b516e2d3927776408bd0634 JUD_000013.xml.zip -fcc088a72aa355eb847b1ef5f553d6a7e62da4df17442be91df92aa8934288d3 JUD_000014.xml.zip -79d8dfbf9f5022d17f58d295fab9f6b34f2f39b656d7eee7b2293e829fde140f JUD_000015.xml.zip -e5c7afe9ccf11e2a3eb2a8965c2144947eaad483a13776ae37c2565573b84634 JUD_000016.xml.zip -c07233b1f707ba4e24d93c7c33ddaa1c429cbc4916a32247810cf0f01c478639 JUD_000017.xml.zip -f4c5e64b68c0574d0459cf68e6ffd8f5c18607ed6dd2d8db7736dc68e070051f JUD_000018.xml.zip -7357b9a885e21205dafaeed5a457f14f40fc9129ee0bdad49c8ad605445bd3ec JUD_000019.xml.zip -1e6f6d56d0337752ae0fa80d7e9e9d8c27a98321bdb556cbe2d68534e249f5e1 JUD_000020.xml.zip -c52d1301e9db53522ae21a353894ee945e7a8a979fab03be7f579fa17fc67599 JUD_000021.xml.zip -6e8b101480e2d31ff36180499f0cd88a40db8f583e66a4e1bf0a3b1db8a7c7de JUD_000022.xml.zip -8b21dbb6663c99f2898239a87d43f49039414c29ab0f6dcb083aa87d0b9349c2 JUD_000023.xml.zip -f3f0a9d628d3d2e2536923257f8163604f814da4e83790f29f10ed325e014ec3 JUD_000024.xml.zip -b49dcd00e7a4d97406816711f0fd4ee8275deb4caecebb7a6d944c0eef8f6654 JUD_000025.xml.zip -3bf29c6b8605be49df38afa03bc2a0c96da2bb6b56a537d9653645a7685fd150 JUD_000026.xml.zip -d5a3dcb89005c54d73f91f16ff1b0d798d3def60b40fbec819a711354f5a6e73 JUD_000027.xml.zip -72d6c9d4a8ee493fe07e6d7e116d3eefa6b0ef553063c929fbccf64a9d746390 JUD_000028.xml.zip -a19de24a4306fa82c3b704179a8462c8dbf924ed07130166ddbe0d467a8cd319 JUD_000029.xml.zip +8869127caea7a3835dfd8103bf5514aa7725c8cfc75145841b86da2c34497562 JUDa.xml +27d2cfdd67eac500cf9aebc7b9016ee75f88aa2438e747aadd665d329dec95be JUDaa.xml +4738859f75a6458793048ee10db5e4204f4188334995f953b5ac763116f39940 JUDab.xml +90c2ec3aed8116b70378b3c8f6be56f0378d4fd278e036cafc7b61cf13be2efd JUDac.xml +840b3086c4b7c4020ec97ce39dfd5e20bc005bbe16a7ada137f005a8be932443 JUDad.xml +db2b650b8384f5472f8afcf2616c931604882bf6e6e0cf39229ee864ff2ba0f9 JUDae.xml +8fd9b9430306982e468093b322053f2ba24d40fb10b8ac40d2690a45584512cd JUDaf.xml +b8d9102721b7f4a7bc5ba9c7b07e9513e6f90a2e1cf83e414fd759e04cf958e2 JUDag.xml +41f137cbda8735f8de3b19ea95b203f29f7e8bd9dc424650e6e76091481c8ada JUDah.xml +a9898590b14a1c66f571bb30025f0ec8c25e1a92011b1e1832e139829a083642 JUDai.xml +6c8055c795a45ef1726ae94267448e8dfecaf61be747d136b0ff4d1d2fa2c432 JUDaj.xml +ec179424f1bc7d7d78b17a05e381d37775ad5b2f7c4d85d533779a7aa11d0df3 JUDak.xml +7c930a09198207dc82f957ed3e886cff3fb737ece6de6f7c5de431405530a669 JUDal.xml +f0c61aca583253f4035ceb5019e840ee0da88bffd76eaf63834da282e064a92c JUDam.xml +25dc9945fb3f8820dfcaea008c3e7856a2ad72b0db3f4dcdb30776698813c9ea JUDan.xml +6f9d2bae02c653dc73571e12c9d6f1e8bf99006cdf7d348715302e8abb40566c JUDao.xml +57a27ecfd5e9737baa48b3ef6e14f14715b21fecd93685ec0b9d71b980a115a0 JUDap.xml +e47364936b79d35ca04f8614435633cc173ab207628f6314f77a531fd1fe2180 JUDaq.xml +acdc06368d3d1676325646e4a04379508696a7b59bcb1f81274f714745e64914 JUDar.xml +86950a898fc8051e3c3b7883181b2e31a144901f1a21418341fc255a2d7d7684 JUDas.xml +4f0627453ca8b0cef6efa44ec76cc6e62b1110d95e8ec9708d4f6e2510131d9d JUDat.xml +7d411a5b4c12e9f8870b049b756f4c1b6f16ed113a0b5822d203b65816610b89 JUDau.xml +e2c6e9769a729ce75d82946c5ebc08ae7936f343538a7aaa10120804f972b473 JUDav.xml +6d67d0ad0e864ab5830339b6dac8d9938ad497bb4dc907c1f95e1fb4ec39553f JUDaw.xml +2c059cbe77ee15fc94d73d32b5cc7e0b1ceb2c1a74c61175ea29768109805c96 JUDax.xml +af9eb47701b34fe737672b88d37514ce3ded979a53f171aac8a9b626438c7d46 JUDay.xml +8a5eed13c2cc97216abb907281f90c30fc4fc5c9f26da0a05cf0c6f765a34049 JUDaz.xml +0420b6323e11848fee77633c001460fb7790db5065f066bd2eb90dd53c2974a9 JUDb.xml +190ae540ae8b266c43a999eecc163ea88988ef9d51b126e9b14d122f208e7199 JUDba.xml +b63c05d983bab4945049389f9713f8e6edef7afb42e844d3c75d836ed9b85afa JUDbb.xml +4a25f2dcb7f2c6eafd19a7a9b9aa1b17ae432eadbc7ca7197e736c8d2bb800e4 JUDbc.xml +4153af338c34edb815e8d7ab312372d00510c9bd0b819b4ba696e7a894c39707 JUDbd.xml +dbcc474602539ed0a815cc0721a8a775bdd46ce901078f4cc6fb5d691fbd4b59 JUDbe.xml +8679277be048e8bbe4c215de69cd5f1b79e7ffa4b45412c21f1a48b9b3928894 JUDbf.xml +b1db28b5847d24b16c877ad4c7b7b262315e2c7414a3ee396212d2c77c3e7b8b JUDbg.xml +2ff179482ca0675413dfc91ca6df14d62885e6a9eb4b907ee3ec6ffaac9a78a8 JUDbh.xml +6cde41c6d6701973d2a894d53b3fd326b15202e4036d79fdb4db4af2903e6f1b JUDbi.xml +19f46ae17b35f29a2d3002a51469bb76e93c92f938d24abba71d4240fc2f7966 JUDbj.xml +c20960f21ea196412c42df7a0170c07eb2ddf0d1828f97acd2a804f7e1753dcb JUDbk.xml +68641b4898f50410794540ef06412756435ffe893fce2d065f02807d7efe9d88 JUDc.xml +e35e57a970ff318ab6fdbd5b926cd51ae65bc91b09c2d375caab88ec96f5cbd3 JUDd.xml +c2ca6626cf13e779dd653d4a9ea9af8d6dacb762b1109fcdb3bd803ded813668 JUDe.xml +82ce618b5be9c41f3437922749aec76634b6a0b9c157e5507fc83b3bf8cce0bd JUDf.xml +40b3762732539450fc84a55abb4739a91e0fbda4feada8de0e37c13c58f7f132 JUDg.xml +b75f8dd3a1881f6923f2eb47e2fd9c7c87f5e38fc636de69125396fed535e81a JUDh.xml +ac9eab233aa6de59a5fef0d60e70095afe34c92a9378652cf002d8bed248fc6a JUDi.xml +b7b1af9fd82d1f61ce5d6666b08bcc4289b5536029efd74fd597456d83942983 JUDj.xml +ac711aa76351302d4fc79a681477e04fc5fa0345017275d0a465d8cf6bf9f217 JUDk.xml +13ca3c268f936fbcc55cad801a73972a912baaf26faf0a9fde03c5bc60885db7 JUDl.xml +ad5e9ba4888554f49d972b70284b84645f74cc4d3815ea04fc802af6f02851b7 JUDm.xml +c49932c0c4fe4f17a061cdf6f9acf5b8de74d08376a049f0f9ad4dd7900f95d0 JUDn.xml +84a6ff2c11ce84173092c7b933e72d6729339974fe34af574b5a244068042b3c JUDo.xml +dc57d2aeb4cf0861d795ef6c512f9b414a8224dc7c81437653e0b6feb9cd7a55 JUDp.xml +68d64eaa62fa8345c7ebd53644ccd394c2820116b38cf79b76b3cb741ab4be43 JUDq.xml +35e63c3125deef90d4a992fd1eeda0524a3b60ff8139323b9179666007942920 JUDr.xml +6a346d119c59cf45a0ccade5d408505e2245ca742fa561893249c73c26f4d70d JUDs.xml +201ebbe7184d4fa25ffc5b80096e26ebfe3ec55ef6d5183a77eab25ea319b243 JUDt.xml +121fab3cec9d3ebfe24d6808e2f2b9101848b665b278331ac0167750c11a376e JUDu.xml +f58ecb0abf9c9ebd3ed694c08eb3e34f4b8fed53dfaee93ead78e79b6268a42d JUDv.xml +c01cde13d4a9067c50794a98a4b5018a00a4c0f4f60ce4490ef9edd1e32e8d0a JUDw.xml +e7345b2aafc555cc97ee1b1fa10784c37ad296d7e159e6fe224d30f3ec513f3c JUDx.xml +f729b11c1b6c0831d078aff1765157621d11086d39e5c11bab23c8828cf0fa6e JUDy.xml +f2a559b74dd35bb743588ad0359cb6220389f56a31159271987c51ae4b1f7235 JUDz.xml diff --git a/corpus/legislative branch/LEG_000001.xml.zip b/corpus/legislative branch/LEG_000001.xml.zip deleted file mode 100644 index e32ef03fd80379bf0ebd54e725c3834ee4c2b293..0000000000000000000000000000000000000000 --- a/corpus/legislative branch/LEG_000001.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f2f9e441b2d71450131359df04500a084f4bd195425d52d98a09415778bae359 -size 5875312 diff --git a/corpus/legislative branch/LEGa.xml.gz b/corpus/legislative branch/LEGa.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..a8a8a6ae09b430831b63a9df7590710c47fdf148 --- /dev/null +++ b/corpus/legislative branch/LEGa.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5958401ecec97c77b02823a0bab6955ca3a1e86b9aa3e6e11885c6f6b8862af5 +size 6700575 diff --git a/corpus/legislative branch/checksum.sha256 b/corpus/legislative branch/checksum.sha256 index a82d2d698e4e503d1e57e3d0997dafb0e693e93d..1206f269780d5cba9634a59290f174955004910b 100644 --- a/corpus/legislative branch/checksum.sha256 +++ b/corpus/legislative branch/checksum.sha256 @@ -1 +1 @@ -f2f9e441b2d71450131359df04500a084f4bd195425d52d98a09415778bae359 LEG_000001.xml.zip +488d8c515367fd5b233da94006cb858cfc30a64c27d3d4ee51fc591f1b5f822a LEGa.xml diff --git a/corpus/public domain works/PUB_000001.xml.zip b/corpus/public domain works/PUB_000001.xml.zip deleted file mode 100644 index 0204c5638df76e89504c660ba62b7c7a68cfaebb..0000000000000000000000000000000000000000 --- a/corpus/public domain works/PUB_000001.xml.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e8f0fe497037994c0982e9eec55d6d140e0f68a09bcb90f4818bfaa181813e5c -size 1356184 diff --git a/corpus/public domain works/PUBa.xml.gz b/corpus/public domain works/PUBa.xml.gz new file mode 100755 index 0000000000000000000000000000000000000000..b5fe05332ad816d96aea9547946be96c0d850363 --- /dev/null +++ b/corpus/public domain works/PUBa.xml.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2cf4fe52bdc816e41f3db6b8e76d21f6c002fcc971a7a966f188cf19dd0c048 +size 1566897 diff --git a/corpus/public domain works/checksum.sha256 b/corpus/public domain works/checksum.sha256 index 0903d2cfbf84a26ccad0b86872ff7114210a4394..7aeb9dc40f60394a5c7c5c21038a7be3728047b9 100644 --- a/corpus/public domain works/checksum.sha256 +++ b/corpus/public domain works/checksum.sha256 @@ -1 +1 @@ -e8f0fe497037994c0982e9eec55d6d140e0f68a09bcb90f4818bfaa181813e5c PUB_000001.xml.zip +9fff1511f810b23a70e0d947bd44a3bd9dd18447ecc217cb3a86db7a7aa87f07 PUBa.xml diff --git a/corpus/schema.rng b/corpus/schema.rng index 4c8de4dbb71944202ae4e71c3bcc8eba86e96387..9e4e253cb160f1c975c63cd6434972d485de6648 100644 --- a/corpus/schema.rng +++ b/corpus/schema.rng @@ -5,7 +5,7 @@ xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" ns="http://www.tei-c.org/ns/1.0">