literature
Literature search, citation extraction, and bibliography processing.
Examples:
>>> from ures.literature import CitationManager
>>> CitationManager().citations
[]
BibTypeRule
dataclass
BibTypeRule(entry_type: str, standard_name: str = 'default', required_fields: List[str] = list(), suggested_fields: List[str] = list(), optional_fields: List[str] = list(), forbidden_fields: List[str] = list(), field_mappings: Dict[str, str] = dict(), formatting: FormattingRules = FormattingRules(), output: OutputRules = OutputRules(), version: str = '1.0')
Rules for a specific BibTeX entry type.
to_dict
to_dict() -> Dict[str, Any]
Convert to dictionary for serialization.
Source code in ures/literature/citation/rules/data_type.py
63 64 65 | |
FormattingRules
dataclass
FormattingRules(year_range: tuple[int, int] = (1000, 2100), page_separator: str = '--', proceedings_style: str = 'full')
Formatting rules for bibliography entries.
OutputRules
dataclass
OutputRules(field_order: List[str] = list(), conditional_fields: Dict[str, str] = dict(), required_middlewares: List[Type[BlockMiddleware]] = list(), max_authors: int = 5)
Output formatting rules.
CitationInfo
dataclass
CitationInfo(key: str, sources: List[CitationSource] = list(), bibliography: Optional[Entry] = None)
The data structure to hold citation information.
OutputOnlyDesiredFieldsMiddleware
OutputOnlyDesiredFieldsMiddleware(rule_register: Optional[BibRuleRegister] = None)
Bases: CitationMiddleware
Keep only desired fields in the output.
Source code in ures/literature/citation/middlewares.py
329 330 331 | |
OutputCleanupNoneResultMiddleware
OutputCleanupNoneResultMiddleware(rule_register: Optional[BibRuleRegister] = None)
Bases: CitationMiddleware
Cleanup entries that are invalid or have missing required fields.
Source code in ures/literature/citation/middlewares.py
30 31 32 | |
OutputLimitMaxAuthors
OutputLimitMaxAuthors(rule_register: Optional[BibRuleRegister] = None)
Bases: CitationMiddleware
Keep only desired fields in the output.
Source code in ures/literature/citation/middlewares.py
362 363 364 | |
TypeNormalizationMiddleware
TypeNormalizationMiddleware(rule_register: Optional[BibRuleRegister] = None)
Bases: CitationMiddleware
Normalize entry types (conference -> inproceedings, etc.)
Source code in ures/literature/citation/middlewares.py
30 31 32 | |
RuleBasedValidationMiddleware
RuleBasedValidationMiddleware(rule_register: Optional[BibRuleRegister] = None)
Bases: CitationMiddleware
Validate entries against predefined rules.
Source code in ures/literature/citation/middlewares.py
264 265 266 | |
transform_entry
transform_entry(entry: Entry, *args, **kwargs)
Validate entry using dataclass rules.
Source code in ures/literature/citation/middlewares.py
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 | |
AcmConferenceVenueMiddleware
AcmConferenceVenueMiddleware(rule_register: Optional[BibRuleRegister] = None)
Bases: CitationMiddleware
Put the conference city on the field ACM actually prints.
ACM-Reference-Format appends location or city to the booktitle
and prints address after the publisher. Zotero's BibTeX export has
only address for Place, and that Place is the venue city. BibLaTeX
venue is the event location. For ACM and the default style, move the venue city onto location
when location and city are empty. A publisher address is
left in place when venue already holds the city. Books and IEEE
entries are unchanged.
Source code in ures/literature/citation/middlewares.py
30 31 32 | |
FieldNormalizationMiddleware
FieldNormalizationMiddleware(rule_register: Optional[BibRuleRegister] = None)
Bases: CitationMiddleware
Normalize field names (journaltitle -> journal, etc.)
Source code in ures/literature/citation/middlewares.py
30 31 32 | |
transform_entry
transform_entry(entry: Entry, *args, **kwargs) -> Entry
Transform entry fields.
Source code in ures/literature/citation/middlewares.py
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | |
LanguageAsciiNormalizationMiddleware
LanguageAsciiNormalizationMiddleware(rule_register: Optional[BibRuleRegister] = None)
Bases: CitationMiddleware
Source code in ures/literature/citation/middlewares.py
30 31 32 | |
normalize_language
normalize_language(language_str: str) -> Any
Normalize language string to ISO 639-1 code.
Source code in ures/literature/citation/middlewares.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | |
ProceedingsNormalizationMiddleware
ProceedingsNormalizationMiddleware(rule_register: Optional[BibRuleRegister] = None)
Bases: CitationMiddleware
Source code in ures/literature/citation/middlewares.py
30 31 32 | |
normailize_proceedings
normailize_proceedings(proceedings_str: str) -> str
Normalize proceedings string to standard format.
Source code in ures/literature/citation/middlewares.py
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | |
CitationManager
CitationManager(bibliography_files: Optional[Union[Union[str, Path], List[Union[str, Path]]]] = None, bibliography_style: str = 'default')
Load bibliography files and import citations from TeX or BBL sources.
Examples:
>>> from ures.literature import CitationManager
>>> manager = CitationManager(bibliography_style="acm")
>>> manager.citations
[]
Source code in ures/literature/citation/__init__.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | |
import_citations
import_citations(files: List[Union[str, Path]], cleanup: bool = False) -> dict[str, CitationInfo]
Import citations from the given files.
Parameters:
-
files(List[Union[str, Path]]) โList of file paths to import citations from.
-
cleanup(bool, default:False) โWhether to clean up the citations previously stored. Defaults to False.
Returns:
-
dict[str, CitationInfo]โList[CitationInfo]: List of imported citations.
Source code in ures/literature/citation/__init__.py
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | |
display_invalid_citations
display_invalid_citations() -> None
Display citations that do not have corresponding bibliography entries.
Source code in ures/literature/citation/__init__.py
143 144 145 146 147 148 149 150 151 152 | |
to_library
to_library() -> bibtexparser.Library
Convert all citations to a bibtexparser Library.
Source code in ures/literature/citation/__init__.py
154 155 156 157 158 159 160 161 162 | |
save_bibliography
save_bibliography(file_path: str, middlewares: Optional[List[Union[Type[BlockMiddleware], BlockMiddleware]]] = None) -> None
Save all bibliography entries to a BibTeX file.
Parameters:
-
file_path(Union[str, Path]) โPath to save the BibTeX file.
-
middlewares(Optional[List[Type[CitationMiddleware]]], default:None) โList of middleware classes to process the entries before saving. If None, no additional middleware will be applied. Defaults to None.
Source code in ures/literature/citation/__init__.py
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | |
AdapterFactory
Factory class for creating database adapters.
create_adapter
staticmethod
create_adapter(database_name: str, **kwargs) -> Optional[DatabaseAdapter]
Create a database adapter instance.
Parameters:
-
database_name(str) โName of the database
-
**kwargs(Any, default:{}) โAdapter options such as api_key or rate_limit.
Returns:
-
Optional[DatabaseAdapter]โDatabaseAdapter instance or None if not supported
Source code in ures/literature/search/adapters.py
1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 | |
get_supported_databases
staticmethod
get_supported_databases() -> List[str]
Get list of supported database names.
Source code in ures/literature/search/adapters.py
1147 1148 1149 1150 | |
get_adapter_requirements
staticmethod
get_adapter_requirements(database_name: str) -> Dict[str, Any]
Get requirements for a specific adapter.
Source code in ures/literature/search/adapters.py
1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 | |
QueryParser
QueryParser()
Parse complex Boolean search queries and convert to database-specific formats.
Source code in ures/literature/search/adapters.py
21 22 | |
parse_boolean_query
parse_boolean_query(query: str) -> Dict[str, Any]
Parse Boolean query into structured format.
Source code in ures/literature/search/adapters.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | |
to_arxiv_query
to_arxiv_query(parsed_query: Dict) -> str
Convert parsed query to arXiv format.
Source code in ures/literature/search/adapters.py
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | |
to_ieee_query
to_ieee_query(parsed_query: Dict) -> str
Convert parsed query to IEEE format.
Source code in ures/literature/search/adapters.py
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | |
to_simple_query
to_simple_query(parsed_query: Dict) -> str
Convert to simple query for basic APIs.
Source code in ures/literature/search/adapters.py
153 154 155 156 157 158 159 160 161 162 163 164 165 | |
to_google_scholar_query
to_google_scholar_query(parsed_query: Dict) -> str
Convert parsed query to Google Scholar format.
Source code in ures/literature/search/adapters.py
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | |
Paper
dataclass
Paper(title: str, authors: List[str], abstract: str = '', year: int = 0, venue: str = '', doi: str = '', arxiv_id: str = '', url: str = '', citations: int = 0, keywords: List[str] = None, database_source: str = '', pdf_url: str = '', publication_type: str = '', issue: str = '', volume: str = '', pages: str = '', publisher: str = '')
A research paper with standardized metadata.
Examples:
>>> from ures.literature import Paper
>>> paper = Paper(title="CXL memory", authors=["Doe, J."], year=2024)
>>> paper.title
'CXL memory'
get_canonical_id
get_canonical_id() -> str
Generate a canonical identifier for deduplication.
Source code in ures/literature/search/paper.py
108 109 110 111 112 113 114 115 116 117 118 | |
to_dict
to_dict() -> Dict
Convert to dictionary representation.
Source code in ures/literature/search/paper.py
120 121 122 | |
from_dict
classmethod
from_dict(data: Dict) -> Paper
Create Paper instance from dictionary.
Source code in ures/literature/search/paper.py
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | |
similarity_score
similarity_score(other: Paper) -> float
Calculate similarity score with another paper (0-1).
Source code in ures/literature/search/paper.py
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 | |
PaperFormatter
Unified formatter for normalizing papers from different database sources.
format_arxiv_paper
staticmethod
format_arxiv_paper(entry_data: Dict) -> Paper
Format arXiv entry data into standardized Paper object.
Source code in ures/literature/search/paper.py
787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 | |
format_ieee_paper
staticmethod
format_ieee_paper(entry_data: Dict) -> Paper
Format IEEE entry data into standardized Paper object.
Source code in ures/literature/search/paper.py
829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 | |
format_elsevier_paper
staticmethod
format_elsevier_paper(entry_data: Dict) -> Paper
Format Elsevier/ScienceDirect entry data.
Source code in ures/literature/search/paper.py
863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 | |
format_springer_paper
staticmethod
format_springer_paper(entry_data: Dict) -> Paper
Format Springer entry data.
Source code in ures/literature/search/paper.py
904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 | |
format_wiley_paper
staticmethod
format_wiley_paper(entry_data: Dict) -> Paper
Format Wiley entry data.
Source code in ures/literature/search/paper.py
940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 | |
LiteratureSearchEngine
LiteratureSearchEngine(config_dir: Optional[str] = None, app_name: str = 'literature-search')
Search one or more literature databases with optional caching.
Examples:
>>> from ures.literature import LiteratureSearchEngine
>>> engine = LiteratureSearchEngine()
>>> papers = engine.search("CXL memory", databases=["arxiv"], max_results=5)
>>> isinstance(papers, list)
True
Initialize the Literature Search Engine.
Parameters:
-
config_dir(Optional[str], default:None) โPath to a directory used to store configuration file
-
app_name(str, default:'literature-search') โApplication name for key management
Source code in ures/literature/search/search.py
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 | |
search
search(query: str, databases: List[str] = None, max_results: int = None, use_cache: bool = True, year_min: int = None, **kwargs) -> List[Paper]
Search multiple databases with Boolean query support.
Parameters:
-
query(str) โBoolean search query
-
databases(List[str], default:None) โList of database names to search
-
max_results(int, default:None) โMaximum results per database
-
use_cache(bool, default:True) โWhether to use cached results
-
year_min(int, default:None) โMinimum publication year
-
**kwargs(Any, default:{}) โExtra search options forwarded to adapters.
Returns:
Source code in ures/literature/search/search.py
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 | |
get_cached_papers
get_cached_papers(query: str = None, year_min: int = None, database_source: str = None, limit: int = None) -> List[Paper]
Retrieve papers from local cache.
Source code in ures/literature/search/search.py
428 429 430 431 432 433 434 435 436 | |
export_results
export_results(papers: List[Paper], format: str = None, filename: str = None, include_abstracts: bool = None) -> Optional[str]
Export search results to various formats.
Parameters:
-
papers(List[Paper]) โList of papers to export
-
format(str, default:None) โExport format ('json', 'csv', 'bibtex')
-
filename(str, default:None) โOutput filename
-
include_abstracts(bool, default:None) โWhether to include abstracts
Returns:
Source code in ures/literature/search/search.py
438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 | |
analyze_search_coverage
analyze_search_coverage(query: str, databases: List[str] = None) -> Dict[str, Any]
Analyze search coverage across databases.
Source code in ures/literature/search/search.py
569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 | |
get_engine_stats
get_engine_stats() -> Dict[str, Any]
Get comprehensive engine statistics.
Source code in ures/literature/search/search.py
627 628 629 630 631 632 633 634 635 636 637 638 639 640 | |
cleanup_cache
cleanup_cache(days_old: int = None) -> bool
Clean up old cache entries.
Source code in ures/literature/search/search.py
642 643 644 645 646 647 | |
find_duplicates
find_duplicates(similarity_threshold: float = None) -> List[List[Paper]]
Find potential duplicate papers in cache.
Source code in ures/literature/search/search.py
649 650 651 652 653 654 | |
reload_adapters
reload_adapters()
Reload all database adapters (useful after config changes).
Source code in ures/literature/search/search.py
656 657 658 659 660 | |
DatabaseConfig
DatabaseConfig(config_dir: Optional[str] = None, app_name: str = 'literature-search')
Enhanced configuration management with secure API key integration.
Source code in ures/literature/search/search.py
16 17 18 19 20 21 22 23 24 | |
get_database_config
get_database_config(db_name: str) -> Dict
Get configuration for a specific database.
Source code in ures/literature/search/search.py
121 122 123 | |
is_database_enabled
is_database_enabled(db_name: str) -> bool
Check if a database is enabled.
Source code in ures/literature/search/search.py
125 126 127 | |
get_api_key
get_api_key(db_name: str) -> Optional[str]
Get API key for a database using secure storage.
Source code in ures/literature/search/search.py
129 130 131 132 133 134 135 136 137 | |
set_api_key
set_api_key(db_name: str, api_key: str, method: StorageMethod = StorageMethod.ENCRYPTED) -> bool
Set API key for a database using secure storage.
Parameters:
-
db_name(str) โDatabase name
-
api_key(str) โAPI key or reference (depends on method)
-
method(StorageMethod, default:ENCRYPTED) โStorage method ('encrypted', 'env', '1password', 'keychain')
Returns:
-
bool(bool) โSuccess status
Source code in ures/literature/search/search.py
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | |
list_api_keys
list_api_keys() -> Dict[str, Dict]
List all stored API keys (without revealing actual keys).
Source code in ures/literature/search/search.py
173 174 175 | |
delete_api_key
delete_api_key(db_name: str) -> bool
Delete API key for a database.
Source code in ures/literature/search/search.py
177 178 179 180 181 182 183 184 185 186 187 | |
update_config
update_config(section: str, key: str, value: Any) -> bool
Update a configuration value.
Source code in ures/literature/search/search.py
189 190 191 192 193 194 195 196 197 198 199 200 | |
get_config_value
get_config_value(section: str, key: str, default=None)
Get a configuration value.
Source code in ures/literature/search/search.py
202 203 204 | |
LiteratureSearchCLI
LiteratureSearchCLI()
Enhanced command-line interface for literature search.
Source code in ures/literature/search_cli.py
276 277 278 279 | |
setup_logging
setup_logging(level: str = 'INFO')
Setup logging configuration.
Source code in ures/literature/search_cli.py
281 282 283 284 285 286 287 | |
init_engine
init_engine(config_dir: Optional[str] = None) -> bool
Initialize the search engine.
Source code in ures/literature/search_cli.py
289 290 291 292 293 294 295 296 297 | |
cmd_init
cmd_init(args)
Initialize the literature search system interactively.
Source code in ures/literature/search_cli.py
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 | |
cmd_status
cmd_status(args)
Show comprehensive system status.
Source code in ures/literature/search_cli.py
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 | |
cmd_search
cmd_search(args)
Perform literature search with enhanced output.
Source code in ures/literature/search_cli.py
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 | |
cmd_config
cmd_config(args)
Configuration management.
Source code in ures/literature/search_cli.py
597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 | |
cmd_cache
cmd_cache(args)
Enhanced cache management.
Source code in ures/literature/search_cli.py
631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 | |
run
run()
Main CLI entry point with comprehensive command structure.
Source code in ures/literature/search_cli.py
700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 | |
cmd_coverage
cmd_coverage(args)
Analyze search coverage across databases.
Source code in ures/literature/search_cli.py
893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 | |
cmd_quick
cmd_quick(args)
Quick search operations for common use cases.
Source code in ures/literature/search_cli.py
972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 | |