1. Introduction

The PubChemR package introduces a pivotal function, get_pug_rest, designed to facilitate seamless access to the vast chemical data repository of PubChem. This function leverages the capabilities of PubChem’s Power User Gateway (PUG) REST service, providing a straightforward and efficient means for users to programmatically interact with PubChem’s extensive database. This vignette aims to elucidate the structure and usage of the PUG REST service, offering a range of illustrative use cases to aid new users in understanding its operation and constructing effective requests.

2. PUG REST: A Gateway to Chemical Data

PUG REST, standing for Power User Gateway RESTful interface, is a simplified access route to PubChem’s data and services. It is designed for scripts, web page embedded JavaScript, and third-party applications, eliminating the need for the more complex XML and SOAP envelopes required by other PUG variants. PUG REST’s design revolves around the PubChem identifier (SID for substances, CID for compounds, and AID for assays) and is structured into three main request components: input (identifiers), operation (actions on identifiers), and output (desired information format).

2.1. Key Features of PUG REST:

  • Flexibility and Combinatorial Use: PUG REST allows a wide range of combinations of inputs, operations, and outputs, enabling users to create customized requests.
  • Support for Various Formats: It supports multiple output formats, including XML, JSON, CSV, PNG, and plain text, catering to different application needs.
  • RESTful Design: The service is based on HTTP requests with details encoded in the URL path, making it RESTful and user-friendly.

Usage Policy:

  • PUG REST is not intended for extremely high-volume requests (millions). Users are advised to limit their requests to no more than 5 per second to prevent server overload.
  • For large data sets, users are encouraged to contact PubChem for optimized query approaches.

3. Accessing PUG REST with get_pug_rest

Overview

The get_pug_rest function in the PubChemR package provides a versatile interface to access a wide range of chemical data from the PubChem database. This section of the vignette focuses on various methods to retrieve chemical structure information and other related data using the PUG REST service. The function is designed to be flexible, accommodating different input methods, operations, and output formats.

This function sends a request to the PubChem PUG REST API to retrieve various types of data for a given identifier. It supports fetching data in different formats and allows saving the output.

get_pug_rest(
  identifier = NULL,
  namespace = "cid",
  domain = "compound",
  operation = NULL,
  output = "JSON",
  searchtype = NULL,
  property = NULL,
  options = NULL,
  save = FALSE,
  dpi = 300,
  path = NULL,
  file_name = NULL,
  ...
)

Arguments

  • identifier: A vector of identifiers for the query, either numeric or character. This is the main input for querying the PubChem database.

  • namespace: A character string specifying the namespace for the request. Default is ‘cid’. This defines the type of identifier being used, such as ‘cid’ (Compound ID), ‘sid’ (Substance ID), etc.

  • domain: A character string specifying the domain for the request. Default is ‘compound’. This indicates the type of entity being queried, such as ‘compound’, ‘substance’, etc.

  • operation: An optional character string specifying the operation for the request. This can be used to specify particular actions or methods within the API.

  • output: A character string specifying the output format. Possible values are ‘SDF’, ‘JSON’, ‘JSONP’, ‘CSV’, ‘TXT’, and ‘PNG’. Default is ‘JSON’. This defines the format in which the data will be returned.

  • searchtype: An optional character string specifying the search type. This allows for specifying the nature of the search being performed.

  • property: An optional character string specifying the property for the request. This can be used to filter or specify particular properties of the data being retrieved.

  • options: A list of additional options for the request. This allows for further customization and fine-tuning of the request parameters.

  • save: A logical value indicating whether to save the output as a file or image. Default is FALSE. When set to TRUE, the function will save the retrieved data to a specified file.

  • dpi: An integer specifying the DPI for image output. Default is 300. This is relevant when the output format is an image, determining the resolution of the saved image.

  • path: A character string specifying the directory path where the file will be saved. If not provided, the current working directory is used.

  • file_name: A character string of length 1. Defines the name of the file (without file extension) to save. If NULL, the default file name is set as “files_downloaded”.

  • : Additional arguments to be passed to the request.

Value

The function returns different types of content based on the specified output format:

JSON: Returns a list. CSV and TXT: Returns a data frame. SDF: Returns an SDF file of the requested identifier. PNG: Returns an image object or saves an image file.

3.1. Input Methods

In the context of the PubChem PUG REST API, the input methods define how records of interest are specified for a request. There are several ways to define this input, with the most common methods being outlined below:

1. By Identifier: The most straightforward method to specify input is by using identifiers directly. These identifiers can be Substance IDs (SIDs) or Compound IDs (CIDs). For example, to retrieve the names of a substance with CID 2244, you can use the get_pug_rest function as follows:

result <- get_pug_rest(identifier = "2244", namespace = "cid", domain = "compound", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Compound
#>   - Namespace: CID
#>   - Operation: <NULL>
#>   - Identifier: 2244
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.

The pubChemData function then processes the result to extract and display the retrieved data. Here’s an interpretation of the output for CID 2244:

pubChemDataResult <- pubChemData(result)

The JSON response contains detailed information about the compound identified by CID 2244. The PC_Compounds array holds the compound data, and within it, each element corresponds to a specific compound.

For CID 2244, the following information is retrieved:

ID: Confirms the compound identifier is CID 2244.

pubChemDataResult$PC_Compounds[[1]]$id
#> $id
#>  cid 
#> 2244

Atoms: Details the atomic composition, with an aid array listing the atom IDs and an element array listing the atomic numbers (e.g., 6 for carbon, 8 for oxygen, 1 for hydrogen).

pubChemDataResult$PC_Compounds[[1]]$atoms
#> $aid
#>  [1]  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21
#> 
#> $element
#>  [1] 8 8 8 8 6 6 6 6 6 6 6 6 6 1 1 1 1 1 1 1 1

Bonds: Describes the bonds between atoms, including arrays for the IDs of the atoms involved (aid1 and aid2) and the bond order.

pubChemDataResult$PC_Compounds[[1]]$bonds
#> $aid1
#>  [1]  1  1  2  2  3  4  5  5  6  6  7  7  8  8  9  9 10 12 13 13 13
#> 
#> $aid2
#>  [1]  5 12 11 21 11 12  6  7  8 11  9 14 10 15 10 16 17 13 18 19 20
#> 
#> $order
#>  [1] 1 1 1 1 2 2 1 2 2 1 1 1 1 1 2 1 1 1 1 1 1

Coordinates: Provides the spatial coordinates (x and y) for each atom, which can be used to visualize the molecular structure.

pubChemDataResult$PC_Compounds[[1]]$coords
#> [[1]]
#> [[1]]$type
#> [1]   1   5 255
#> 
#> [[1]]$aid
#>  [1]  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21
#> 
#> [[1]]$conformers
#> [[1]]$conformers[[1]]
#> [[1]]$conformers[[1]]$x
#>  [1] 3.7320 6.3301 4.5981 2.8660 4.5981 5.4641 4.5981 6.3301 5.4641 6.3301
#> [11] 5.4641 2.8660 2.0000 4.0611 6.8671 5.4641 6.8671 2.3100 1.4631 1.6900
#> [21] 6.3301
#> 
#> [[1]]$conformers[[1]]$y
#>  [1] -0.0600  1.4400  1.4400 -1.5600 -0.5600 -0.0600 -1.5600 -0.5600 -2.0600
#> [10] -1.5600  0.9400 -0.5600 -0.0600 -1.8700 -0.2500 -2.6800 -1.8700  0.4769
#> [19]  0.2500 -0.5969  2.0600
#> 
#> [[1]]$conformers[[1]]$style
#> [[1]]$conformers[[1]]$style$annotation
#> [1] 8 8 8 8 8 8
#> 
#> [[1]]$conformers[[1]]$style$aid1
#> [1] 5 5 6 7 8 9
#> 
#> [[1]]$conformers[[1]]$style$aid2
#> [1]  6  7  8  9 10 10

Charge: Indicates the compound’s charge, which is 0 in this case.

pubChemDataResult$PC_Compounds[[1]]$charge
#> [1] 0

Properties: Lists various properties of the compound, including:

Compound Complexity: A measure of the molecular complexity.

pubChemDataResult$PC_Compounds[[1]]$props[[2]]
#> $urn
#> $urn$label
#> [1] "Compound Complexity"
#> 
#> $urn$datatype
#> [1] 7
#> 
#> $urn$implementation
#> [1] "E_COMPLEXITY"
#> 
#> $urn$version
#> [1] "3.4.8.18"
#> 
#> $urn$software
#> [1] "Cactvs"
#> 
#> $urn$source
#> [1] "Xemistry GmbH"
#> 
#> $urn$release
#> [1] "2021.10.14"
#> 
#> 
#> $value
#> fval 
#>  212

Hydrogen Bond Acceptor/Donor Count: Indicates the number of hydrogen bond acceptors and donors.

pubChemDataResult$PC_Compounds[[1]]$props[[3]]
#> $urn
#> $urn$label
#> [1] "Count"
#> 
#> $urn$name
#> [1] "Hydrogen Bond Acceptor"
#> 
#> $urn$datatype
#> [1] 5
#> 
#> $urn$implementation
#> [1] "E_NHACCEPTORS"
#> 
#> $urn$version
#> [1] "3.4.8.18"
#> 
#> $urn$software
#> [1] "Cactvs"
#> 
#> $urn$source
#> [1] "Xemistry GmbH"
#> 
#> $urn$release
#> [1] "2021.10.14"
#> 
#> 
#> $value
#> ival 
#>    4
pubChemDataResult$PC_Compounds[[1]]$props[[4]]
#> $urn
#> $urn$label
#> [1] "Count"
#> 
#> $urn$name
#> [1] "Hydrogen Bond Donor"
#> 
#> $urn$datatype
#> [1] 5
#> 
#> $urn$implementation
#> [1] "E_NHDONORS"
#> 
#> $urn$version
#> [1] "3.4.8.18"
#> 
#> $urn$software
#> [1] "Cactvs"
#> 
#> $urn$source
#> [1] "Xemistry GmbH"
#> 
#> $urn$release
#> [1] "2021.10.14"
#> 
#> 
#> $value
#> ival 
#>    1

Rotatable Bond Count: The number of rotatable bonds, which impacts the molecule’s flexibility.

pubChemDataResult$PC_Compounds[[1]]$props[[5]]
#> $urn
#> $urn$label
#> [1] "Count"
#> 
#> $urn$name
#> [1] "Rotatable Bond"
#> 
#> $urn$datatype
#> [1] 5
#> 
#> $urn$implementation
#> [1] "E_NROTBONDS"
#> 
#> $urn$version
#> [1] "3.4.8.18"
#> 
#> $urn$software
#> [1] "Cactvs"
#> 
#> $urn$source
#> [1] "Xemistry GmbH"
#> 
#> $urn$release
#> [1] "2021.10.14"
#> 
#> 
#> $value
#> ival 
#>    3

IUPAC Names: Various standardized names for the compound, such as “2-acetoxybenzoic acid” and “2-acetyloxybenzoic acid”.

pubChemDataResult$PC_Compounds[[1]]$props[[7]]
#> $urn
#> $urn$label
#> [1] "IUPAC Name"
#> 
#> $urn$name
#> [1] "Allowed"
#> 
#> $urn$datatype
#> [1] 1
#> 
#> $urn$version
#> [1] "2.7.0"
#> 
#> $urn$software
#> [1] "Lexichem TK"
#> 
#> $urn$source
#> [1] "OpenEye Scientific Software"
#> 
#> $urn$release
#> [1] "2021.10.14"
#> 
#> 
#> $value
#>                    sval 
#> "2-acetoxybenzoic acid"

InChI and InChIKey: Standardized identifiers for the chemical structure.

pubChemDataResult$PC_Compounds[[1]]$props[[13]]
#> $urn
#> $urn$label
#> [1] "InChI"
#> 
#> $urn$name
#> [1] "Standard"
#> 
#> $urn$datatype
#> [1] 1
#> 
#> $urn$version
#> [1] "1.0.6"
#> 
#> $urn$software
#> [1] "InChI"
#> 
#> $urn$source
#> [1] "iupac.org"
#> 
#> $urn$release
#> [1] "2021.10.14"
#> 
#> 
#> $value
#>                                                                   sval 
#> "InChI=1S/C9H8O4/c1-6(10)13-8-5-3-2-4-7(8)9(11)12/h2-5H,1H3,(H,11,12)"
pubChemDataResult$PC_Compounds[[1]]$props[[14]]
#> $urn
#> $urn$label
#> [1] "InChIKey"
#> 
#> $urn$name
#> [1] "Standard"
#> 
#> $urn$datatype
#> [1] 1
#> 
#> $urn$version
#> [1] "1.0.6"
#> 
#> $urn$software
#> [1] "InChI"
#> 
#> $urn$source
#> [1] "iupac.org"
#> 
#> $urn$release
#> [1] "2021.10.14"
#> 
#> 
#> $value
#>                          sval 
#> "BSYNRYMUTXBXSQ-UHFFFAOYSA-N"

Log P: The partition coefficient, indicating the compound’s hydrophobicity.

pubChemDataResult$PC_Compounds[[1]]$props[[15]]
#> $urn
#> $urn$label
#> [1] "Log P"
#> 
#> $urn$name
#> [1] "XLogP3"
#> 
#> $urn$datatype
#> [1] 7
#> 
#> $urn$version
#> [1] "3.0"
#> 
#> $urn$source
#> [1] "sioc-ccbg.ac.cn"
#> 
#> $urn$release
#> [1] "2021.10.14"
#> 
#> 
#> $value
#> fval 
#>  1.2

Molecular Formula: The chemical formula of the compound, which is C9H8O4.

pubChemDataResult$PC_Compounds[[1]]$props[[17]]
#> $urn
#> $urn$label
#> [1] "Molecular Formula"
#> 
#> $urn$datatype
#> [1] 1
#> 
#> $urn$version
#> [1] "2.2"
#> 
#> $urn$software
#> [1] "PubChem"
#> 
#> $urn$source
#> [1] "ncbi.nlm.nih.gov"
#> 
#> $urn$release
#> [1] "2021.10.14"
#> 
#> 
#> $value
#>     sval 
#> "C9H8O4"

Molecular Weight: The compound’s molecular weight, 180.16 g/mol.

pubChemDataResult$PC_Compounds[[1]]$props[[18]]
#> $urn
#> $urn$label
#> [1] "Molecular Weight"
#> 
#> $urn$datatype
#> [1] 1
#> 
#> $urn$version
#> [1] "2.2"
#> 
#> $urn$software
#> [1] "PubChem"
#> 
#> $urn$source
#> [1] "ncbi.nlm.nih.gov"
#> 
#> $urn$release
#> [1] "2021.10.14"
#> 
#> 
#> $value
#>     sval 
#> "180.16"

SMILES: Canonical and isomeric Simplified Molecular Input Line Entry System (SMILES) strings, which are text representations of the chemical structure. Topological Polar Surface Area: A measure of the molecule’s surface area that can form hydrogen bonds.

pubChemDataResult$PC_Compounds[[1]]$props[[19]]
#> $urn
#> $urn$label
#> [1] "SMILES"
#> 
#> $urn$name
#> [1] "Canonical"
#> 
#> $urn$datatype
#> [1] 1
#> 
#> $urn$version
#> [1] "2.3.0"
#> 
#> $urn$software
#> [1] "OEChem"
#> 
#> $urn$source
#> [1] "OpenEye Scientific Software"
#> 
#> $urn$release
#> [1] "2021.10.14"
#> 
#> 
#> $value
#>                       sval 
#> "CC(=O)OC1=CC=CC=C1C(=O)O"

For multiple IDs, a vector of IDs can be used. For instance, to retrieve a CSV table of compound properties:

result <- get_pug_rest(identifier = c("1","2","3","4","5"), namespace = "cid", domain = "compound", property = c("MolecularFormula","MolecularWeight","CanonicalSMILES"), output = "CSV")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Compound
#>   - Namespace: CID
#>   - Operation: <NULL>
#>   - Identifier: 1, 2, ... and 3 more.
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.

The output of this request, when processed with pubChemData, provides a data frame containing the specified properties for each CID:

pubChemData(result)
#>   CID MolecularFormula MolecularWeight                  CanonicalSMILES
#> 1   1         C9H17NO4          203.24 CC(=O)OC(CC(=O)[O-])C[N+](C)(C)C
#> 2   2        C9H18NO4+          204.24    CC(=O)OC(CC(=O)O)C[N+](C)(C)C
#> 3   3           C7H8O4          156.14         C1=CC(C(C(=C1)C(=O)O)O)O
#> 4   4           C3H9NO           75.11                          CC(CN)O
#> 5   5         C3H8NO5P          169.07             C(C(=O)COP(=O)(O)O)N

Each row in the table corresponds to a different CID and lists the requested properties, facilitating easy comparison and further analysis.

2. By Name: In addition to using direct identifiers, you can refer to a chemical by its common name. This method allows users to search for compounds using familiar names instead of numerical identifiers. It’s important to note that a single name might correspond to multiple records in the PubChem database. For example, the name “glucose” can refer to several different compounds or isomers. Here’s how you can retrieve Compound IDs (CIDs) for “glucose”:

result <- get_pug_rest(identifier = "glucose", namespace = "name", domain = "compound", operation = "cids", output = "TXT")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Compound
#>   - Namespace: Name
#>   - Operation: cids
#>   - Identifier: glucose
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.

The pubChemData function is then used to process the result and extract the retrieved data. The function retrieves the output in data frame. The output indicates that the search for “glucose” returned a single CID:

pubChemData(result)
#>     V1
#> 1 5793

This output reveals that the common name “glucose” corresponds to the CID 5793. This CID can then be used in further queries to retrieve detailed information about the compound, such as its molecular structure, properties, and associated bioactivities.

Using a common name for searching can simplify the process, especially when the numerical identifiers are not known. However, because a name can map to multiple records, the results might need further filtering or validation to ensure they correspond to the specific compound of interest.

3. By Structure Identity: Another method to specify a compound in PubChem PUG REST API requests is by using structural identifiers such as SMILES or InChI keys. This approach allows for precise identification of chemical structures by providing a textual representation of the molecule. For example, to retrieve the CID for the SMILES string “CCCC” (which represents butane), you can use the following code:

result <- get_pug_rest(identifier = "CCCC", namespace = "smiles", domain = "compound", operation = "cids", output = "TXT")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Compound
#>   - Namespace: SMILES
#>   - Operation: cids
#>   - Identifier: CCCC
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.

When the pubChemData(result) function is executed, it retrieves the output in data frame. The output indicates that the search for the SMILES string “CCCC” returned a single CID:

pubChemData(result)
#>     V1
#> 1 7843

This output reveals that the SMILES string “CCCC” corresponds to the CID 7843. This CID can then be used in further queries to gather detailed information about the compound, such as its molecular structure, physical and chemical properties, biological activities, and more.

Using structure-based identifiers like SMILES or InChI keys is particularly useful for precise and unambiguous chemical searches, as these identifiers provide a detailed representation of the molecule’s structure. This method ensures that the exact compound of interest is identified, reducing the risk of ambiguity that might arise with common names or other identifiers.

4. By Fast (Synchronous) Structure Search: In PubChem PUG REST API, fast (synchronous) structure search allows for quicker searches by identity, similarity, substructure, and superstructure, often returning results in a single call. This method is efficient for obtaining results quickly and is useful for various types of structural queries.

To illustrate, let’s perform a fast identity search for the compound with CID 5793, using the same connectivity option:

result <- get_pug_rest(identifier = "5793", namespace = "cid", domain = "compound", operation = "cids", output = "TXT", searchtype = "fastidentity", options = list("identity_type = same_connectivity"))
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Compound
#>   - Namespace: CID
#>   - Operation: cids
#>   - Identifier: 5793
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.

When the following code executed, it retrieves the output in data frame, listing all CIDs that match the fast identity search criteria.

pubChemData(result)
#>            V1
#> 1        5793
#> 2         206
#> 3        6036
#> 4       18950
#> 5       64689
#> 6       66371
#> 7       79025
#> 8       81696
#> 9      104724
#> 10     185698
#> 11     439353
#> 12     439357
#> 13     439507
#> 14     439583
#> 15     439680
#> 16     441032
#> 17     441033
#> 18     441034
#> 19     441035
#> 20     444314
#> 21     448388
#> 22     448702
#> 23     451187
#> 24     451188
#> 25     451189
#> 26     452245
#> 27     455147
#> 28     657055
#> 29    1549080
#> 30    2724488
#> 31    3000450
#> 32    3034742
#> 33    5319264
#> 34    6102790
#> 35    6321330
#> 36    6323336
#> 37    6400264
#> 38    6560213
#> 39    6971003
#> 40    6971007
#> 41    6971016
#> 42    6971096
#> 43    6971097
#> 44    6971098
#> 45    6992021
#> 46    6992084
#> 47    7018164
#> 48    7043897
#> 49    7044038
#> 50    7098663
#> 51    7098664
#> 52    7157007
#> 53    9794056
#> 54    9815418
#> 55    9834129
#> 56    9899007
#> 57   10035228
#> 58   10081060
#> 59   10103794
#> 60   10130220
#> 61   10197954
#> 62   10219674
#> 63   10219763
#> 64   10313382
#> 65   10329946
#> 66   10899282
#> 67   10954241
#> 68   11019447
#> 69   11030410
#> 70   11344362
#> 71   11367383
#> 72   11412863
#> 73   11480819
#> 74   11492034
#> 75   11571906
#> 76   11571917
#> 77   11600783
#> 78   11651921
#> 79   11672764
#> 80   11959770
#> 81   11970126
#> 82   12003287
#> 83   12193653
#> 84   12285853
#> 85   12285856
#> 86   12285861
#> 87   12285862
#> 88   12285863
#> 89   12285866
#> 90   12285868
#> 91   12285869
#> 92   12285870
#> 93   12285871
#> 94   12285873
#> 95   12285877
#> 96   12285878
#> 97   12285879
#> 98   12285885
#> 99   12285886
#> 100  12285889
#> 101  12285890
#> 102  12285891
#> 103  12285892
#> 104  12285893
#> 105  12285894
#> 106  16054987
#> 107  16211884
#> 108  16211941
#> 109  16211984
#> 110  16211986
#> 111  16212959
#> 112  16212960
#> 113  16212966
#> 114  16213546
#> 115  16213640
#> 116  16213872
#> 117  16217112
#> 118  16219580
#> 119  21355827
#> 120  22825318
#> 121  22836365
#> 122  22836366
#> 123  23424086
#> 124  24728695
#> 125  24802149
#> 126  24802163
#> 127  24802281
#> 128  24892722
#> 129  42626680
#> 130  44328781
#> 131  44328785
#> 132  46188479
#> 133  46780441
#> 134  46897877
#> 135  50939543
#> 136  51340651
#> 137  54445181
#> 138  54445182
#> 139  56845432
#> 140  56845995
#> 141  57197748
#> 142  57288387
#> 143  57483528
#> 144  57691826
#> 145  57973135
#> 146  58070804
#> 147  58265153
#> 148  58265160
#> 149  58265166
#> 150  58265178
#> 151  58265190
#> 152  58265196
#> 153  58300638
#> 154  58594768
#> 155  58595959
#> 156  58618581
#> 157  58969552
#> 158  59034276
#> 159  59036328
#> 160  59040622
#> 161  59083882
#> 162  59105109
#> 163  59125088
#> 164  59146659
#> 165  59383280
#> 166  59445439
#> 167  59503407
#> 168  59503411
#> 169  59886072
#> 170  59965103
#> 171  60052896
#> 172  60078648
#> 173  66629908
#> 174  67518639
#> 175  67615000
#> 176  67615455
#> 177  67641738
#> 178  67938791
#> 179  67944215
#> 180  67944290
#> 181  67950444
#> 182  68167579
#> 183  68324677
#> 184  68334110
#> 185  69528681
#> 186  70443535
#> 187  70543261
#> 188  71309028
#> 189  71309128
#> 190  71309129
#> 191  71309140
#> 192  71309397
#> 193  71309503
#> 194  71309513
#> 195  71309514
#> 196  71309671
#> 197  71309852
#> 198  71309905
#> 199  71309908
#> 200  71309927
#> 201  71317094
#> 202  71317095
#> 203  71317096
#> 204  71317097
#> 205  71317182
#> 206  71777654
#> 207  75357255
#> 208  76973265
#> 209  86278404
#> 210  87297824
#> 211  87929779
#> 212  87931119
#> 213  88255060
#> 214  88547603
#> 215  88974141
#> 216  89000581
#> 217  89200515
#> 218  89332529
#> 219  89374440
#> 220  89424182
#> 221  89742272
#> 222  89855666
#> 223  90057933
#> 224  90159939
#> 225  90346255
#> 226  90470917
#> 227  90472751
#> 228  90472752
#> 229  90472753
#> 230  90472761
#> 231  90472762
#> 232  90472770
#> 233  90473076
#> 234  90781811
#> 235  90895196
#> 236  91057721
#> 237  92043367
#> 238  92043446
#> 239 101015849
#> 240 101033892
#> 241 101254308
#> 242 101254309
#> 243 101254310
#> 244 101254311
#> 245 101254312
#> 246 101254313
#> 247 101254314
#> 248 101254315
#> 249 101469918
#> 250 101513786
#> 251 101718250
#> 252 101718251
#> 253 101796201
#> 254 102089288
#> 255 102447462
#> 256 102447463
#> 257 102601142
#> 258 102601177
#> 259 102601371
#> 260 102601743
#> 261 102601816
#> 262 117064633
#> 263 117064644
#> 264 117065485
#> 265 117633116
#> 266 117768413
#> 267 117938207
#> 268 118797420
#> 269 118797610
#> 270 118797621
#> 271 118797622
#> 272 118855887
#> 273 118855889
#> 274 118855904
#> 275 118855910
#> 276 118855920
#> 277 118855925
#> 278 118924468
#> 279 121494046
#> 280 121494058
#> 281 122360911
#> 282 122522140
#> 283 125309563
#> 284 125353406
#> 285 126704391
#> 286 129629038
#> 287 131698424
#> 288 131698425
#> 289 131698450
#> 290 131699179
#> 291 131842051
#> 292 131966764
#> 293 132939819
#> 294 132939820
#> 295 133119158
#> 296 133119249
#> 297 133121364
#> 298 133662560
#> 299 133662561
#> 300 133662562
#> 301 134695353
#> 302 134860471
#> 303 136898365
#> 304 137554722
#> 305 139025182
#> 306 140565377
#> 307 141697522
#> 308 142119910
#> 309 145874935
#> 310 153238571
#> 311 153238579
#> 312 154008122
#> 313 154724068
#> 314 155920671
#> 315 156615593
#> 316 162642814
#> 317 166450901
#> 318 166606713
#> 319 168357285
#> 320 168358828
#> 321 168361185
#> 322 168361364
#> 323 168361934
#> 324 168362043
#> 325 168363258
#> 326 168364204
#> 327 168365395
#> 328 168365574
#> 329 168366670
#> 330 168371870
#> 331 168372103
#> 332 168375045
#> 333 168375837
#> 334 168375921
#> 335 169440996
#> 336 169440997
#> 337 169493886
#> 338 169493887
#> 339 169494552

The output indicates that there are numerous compounds with similar connectivity to the compound identified by CID 5793. Each row in the output represents a different CID that shares the same connectivity pattern as the original compound. This extensive list includes hundreds of CIDs, showcasing the effectiveness of the fast identity search in identifying structurally related compounds quickly.

This method is advantageous for researchers needing to identify compounds with similar structures for further study, such as drug development, chemical analysis, or bioactivity screening. The fast response time and comprehensive results make it a valuable tool for various chemical and pharmaceutical applications.

5. By Cross-Reference (XRef): The cross-reference (XRef) method allows for reverse lookup of records using a cross-reference value. This method is particularly useful for linking external identifiers, such as patent numbers, to records in the PubChem database. For example, to find all SIDs linked to a specific patent identifier, you can use the following code:

result <- get_pug_rest(identifier = "US20050159403A1", namespace = "xref/PatentID", domain = "substance", operation = "sids", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Substance
#>   - Namespace: DomainSpecific
#>   - Operation: sids
#>   - Identifier: US20050159403A1
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.

pubChemData function retrieves all SIDs that are linked to the specified patent identifier. The output indicates that the specified patent identifier “US20050159403A1” is linked to a large number of SIDs. Each SID represents a different substance that has been referenced in the patent.

pubChemData(result)
#> $IdentifierList
#> $IdentifierList$SID
#>    [1] 127377127 127382334 127386382 127387376 127394906 127397376 127401897
#>    [8] 127417654 127421022 127427561 127429426 127432264 127440404 127440428
#>   [15] 127445646 127449926 127457867 127460434 127463574 127464134 127494894
#>   [22] 127496937 127498548 127529998 127543991 127546018 127550965 127560184
#>   [29] 127566278 127568614 127579066 127599056 127600815 127611817 127623534
#>   [36] 127625503 127632433 127671807 127679107 127688846 127691718 127697988
#>   [43] 127711332 127715174 127721611 127722233 127724090 127724974 127727269
#>   [50] 127740859 127774458 127786062 127790664 127793921 127794507 127795243
#>   [57] 127815192 127824113 127825299 127832880 127835824 127841389 127851147
#>   [64] 127855878 127884538 127887083 127907515 127915891 127918344 127926702
#>   [71] 127931871 127943403 127949193 127959361 127959362 127961945 127968700
#>   [78] 127974435 127988890 128003687 128016428 128024305 128030061 128033308
#>   [85] 128033392 128037075 128041901 128043208 128054804 128071903 128075872
#>   [92] 128078936 128080424 128086739 128096360 128107971 128108063 128108066
#>   [99] 128112623 128116501 128122481 128133149 128139949 128147430 128149266
#>  [106] 128164707 128171553 128181006 128199891 128202584 128204869 128208747
#>  [113] 128209556 128214152 128216313 128231608 128233622 128235075 128239224
#>  [120] 128247683 128253922 128254582 128257870 128265053 128273912 128287030
#>  [127] 128289228 128292761 128310374 128310447 128311517 128313782 128319875
#>  [134] 128321254 128324845 128327185 128328645 128338633 128344584 128358565
#>  [141] 128360063 128361597 128370060 128375029 128381421 128383506 128383593
#>  [148] 128385126 128390596 128391357 128391640 128397827 128407104 128414752
#>  [155] 128417831 128417970 128421724 128427165 128429151 128431035 128453144
#>  [162] 128454426 128459192 128479099 128485819 128490532 128490533 128496172
#>  [169] 128504855 128514984 128515903 128531133 128539521 128548161 128550853
#>  [176] 128555702 128571383 128573137 128579725 128582246 128587585 128600655
#>  [183] 128620771 128624545 128627105 128628584 128632557 128632828 128633726
#>  [190] 128633902 128634258 128639692 128642692 128646882 128649366 128675326
#>  [197] 128675957 128689052 128690685 128693396 128694828 128699310 128702849
#>  [204] 128706476 128716066 128720357 128723298 128723509 128731938 128749024
#>  [211] 128749163 128751829 128757815 128766098 128776154 128783768 128789021
#>  [218] 128789967 128791547 128796670 128801133 128801849 128804888 128804889
#>  [225] 128808454 128815642 128821150 128833107 128837247 128846910 128856633
#>  [232] 128862719 128865088 128873754 128874253 128880985 128881190 128894056
#>  [239] 128894682 128905743 128908713 128915047 128915536 128921696 128931918
#>  [246] 128934857 128935768 128953776 128955396 128970283 128981506 128988380
#>  [253] 128997690 129001067 129007663 129014483 129015035 129015817 129016179
#>  [260] 129017989 129017990 129026427 129044226 129053129 129054986 129068688
#>  [267] 129068801 129079556 129084855 129102578 129104885 129111825 129113828
#>  [274] 129115030 129122432 129128697 129130686 129133094 129136176 129140081
#>  [281] 129141617 129142896 129148181 129162993 129168398 129173408 129173457
#>  [288] 129176810 129177288 129184645 129192608 129202881 129203714 129205760
#>  [295] 129209673 129218442 129224837 129228814 129233871 129233873 129233874
#>  [302] 129255832 129266266 129272170 129288442 129292073 129294634 129302252
#>  [309] 129309716 129310311 129313799 129317146 129328896 129333065 129337106
#>  [316] 129337589 129345232 129349967 129351897 129359174 129365621 129366270
#>  [323] 129370686 129371805 129374061 129376455 129378267 129379472 129383430
#>  [330] 129384458 129389744 129403822 129421538 129440903 129455218 129456175
#>  [337] 129457573 129462203 129479103 129489229 129493774 129504746 129508593
#>  [344] 129517263 129521307 129526420 129534168 129538802 129547789 129551052
#>  [351] 129551258 129555666 129562150 129573817 129586364 129598381 129614967
#>  [358] 129617515 129624957 129625178 129625510 129627772 129627879 129629301
#>  [365] 129632951 129670298 129672175 129685831 129688258 129702886 129706999
#>  [372] 129709395 129711942 129715311 129726350 129728891 129729719 129736495
#>  [379] 129738647 129764614 129770055 129776398 129781417 129797152 129808214
#>  [386] 129809046 129809280 129811709 129815623 129815624 129818107 129838999
#>  [393] 129842321 129844561 129845709 129855419 129865464 129871639 129873187
#>  [400] 129873949 129879637 129880907 129894085 129894756 129894757 129906668
#>  [407] 129908561 129912020 129921074 129935955 129936330 129941294 129945069
#>  [414] 129950653 129962601 129975648 134359275 134393961 134412235 135747269
#>  [421] 135752889 135754219 135763149 135798297 135802614 135806152 135826617
#>  [428] 135837077 135842328 135847369 135857922 135878265 135887484 135892282
#>  [435] 135900333 135900801 135946050 135971530 136022349 136022812 136044641
#>  [442] 136052383 136057158 136072993 136080169 136099624 136116271 136118214
#>  [449] 136126969 136156103 136157629 136161084 136172216 136222651 136227638
#>  [456] 136234395 136261580 136265581 136269831 136272977 136273523 136275074
#>  [463] 136291195 136291391 136302881 136314053 136324561 136326756 137349406
#>  [470] 137349415 139042442 139667196 140037191 140037194 140254002 140254003
#>  [477] 140254004 140254005 140254006 140254007 140254008 140254009 140254010
#>  [484] 140254011 140254012 140254013 140254014 140254015 140254016 140254017
#>  [491] 140254018 140254019 140254020 140254021 140254022 140254023 140254024
#>  [498] 140254025 140254026 140254027 140254028 140254029 140254030 140254031
#>  [505] 140254032 140254033 140254034 140254035 140254036 140254037 140254038
#>  [512] 140254039 140254040 140254041 140254042 140254043 140254044 140254045
#>  [519] 140254046 140254047 140254048 140254049 140254050 140254051 140254052
#>  [526] 140254053 140254054 140254055 140254056 140254057 140254058 140254059
#>  [533] 140254060 140254061 140254062 140254063 140254064 140254065 140254066
#>  [540] 140254067 140254068 140254069 140254070 140254071 140254072 140254073
#>  [547] 140254074 140254075 140254076 140254077 140254078 140254079 140254080
#>  [554] 140254081 140254082 140254083 140254084 140254085 140254086 140254087
#>  [561] 140254088 140254089 140254090 140254091 140254092 140254093 140254094
#>  [568] 140254095 140254096 140254097 140254098 140254099 140254100 140262425
#>  [575] 140262449 140262456 140262460 140262471 140262478 140262480 140262481
#>  [582] 140262486 140262491 140262504 140297441 140297443 140343485 140343488
#>  [589] 140343490 140343491 140343493 140343497 140343499 140343505 140492225
#>  [596] 141972099 141972100 141989468 142047558 142047559 142059950 142086609
#>  [603] 142090637 142093192 142106350 142106351 142106355 142106365 142106373
#>  [610] 142130212 142216111 142266779 142289307 142290035 142292362 142292867
#>  [617] 142300477 142301161 142355996 142359434 142359441 142365242 142395042
#>  [624] 142395064 142396928 142396930 142396931 142398573 142405238 142418631
#>  [631] 142438154 142448656 142456985 142456989 142456990 142456991 142456995
#>  [638] 142457001 142457025 142457027 142457031 142457036 142457040 142457045
#>  [645] 142457053 142457055 142457058 142457059 142457063 142457067 142457072
#>  [652] 142457075 142457076 142457077 142457082 142457086 142457092 142457095
#>  [659] 142457098 142457099 142457106 142457115 142457119 142457130 142457134
#>  [666] 142457138 142457141 142457144 142457146 142457150 142457151 142457164
#>  [673] 142457170 142457176 142457178 142457181 142457183 142457188 142457195
#>  [680] 142457199 142457201 142457202 142457210 142457212 142457213 142457217
#>  [687] 142472709 142504653 142517754 142718650 142794296 142794297 142794298
#>  [694] 142976674 142976694 143004316 143078051 143078053 143078054 143078056
#>  [701] 143078060 143078078 143078326 143091452 143251864 143251865 143251867
#>  [708] 143251868 143251869 143251871 143251875 143251881 143251883 143251885
#>  [715] 143251886 143251887 143251888 143251890 143251892 143251894 143251895
#>  [722] 143274528 143298830 143319100 226393239 226393293 226393570 226393684
#>  [729] 226393819 226393829 226393830 226393853 226393858 226393970 226393971
#>  [736] 226394040 226394128 226394161 226394178 226394363 226394438 226394481
#>  [743] 226394721 226394839 226395300 226395327 226395471 226395557 226395600
#>  [750] 226395667 226395683 226395726 226395777 226395791 226395832 226395919
#>  [757] 226395920 226395976 226395977 226396049 226396167 226396198 226396401
#>  [764] 226396434 226396445 226396464 226396553 226396598 226396617 226396621
#>  [771] 226396627 226397203 226397214 226397352 226397529 226397954 226397955
#>  [778] 226398150 226398151 226398302 226398454 226399315 226399316 226399355
#>  [785] 226399517 226399539 226399589 226400026 226400044 226400188 226400189
#>  [792] 226400247 226400424 226401770 226402238 226405416 226405489 226405836
#>  [799] 226406284 226406322 226406323 226406337 226406377 226406378 226406714
#>  [806] 226406715 226406888 226407848 226408395 226408853 226409030 226409597
#>  [813] 226409697 226410719 226411068 226411348 226411370 226411403 226411806
#>  [820] 226412544 226412844 226412845 226412937 226413104 226413385 226413386
#>  [827] 226413604 226413605 226413606 226414206 226414262 226414263 226414297
#>  [834] 226414324 226419993 226419994 226420042 226420160 226420161 226420292
#>  [841] 226420293 226420456 226420457 226420566 226420567 226420640 226420681
#>  [848] 226420720 226420751 226420773 226420774 226420775 226420787 226420804
#>  [855] 226420877 226421001 226421002 226421003 226421699 226421728 226423326
#>  [862] 226423740 226423826 226424221 226424268 226424269 226424411 226424412
#>  [869] 226424915 226425111 226425112 226425266 226425785 226425786 226425915
#>  [876] 226425916 226426085 226426288 226426344 226426345 226426582 226426623
#>  [883] 226426904 226427860 226427861 226428721 226428722 226428885 226429123
#>  [890] 226429124 226432865 226432866 226433067 226433069 226433070 226433090
#>  [897] 226433091 226433125 226433126 226433141 226433192 226433193 226433202
#>  [904] 226433203 226433344 226433345 226433523 226433524 226433876 226434160
#>  [911] 226434771 226440330 226441562 226443823 226445144 226457181 226457266
#>  [918] 226457330 226457331 226457556 226458114 226458225 226458539 226459695
#>  [925] 226461214 226462543 226471608 226471621 226472159 226472161 226487293
#>  [932] 226487863 226487864 226489321 226490310 226490791 226492265 226492375
#>  [939] 226492435 226492437 226492438 226493640 226494285 226494502 226495017
#>  [946] 226495025 226497342 226503391 226503607 226506442 226506563 226516040
#>  [953] 226520272 226521124 226542800 226553920 226554136 226564914 226567033
#>  [960] 226567034 226567043 226567109 226567110 226567180 226567194 226567379
#>  [967] 226567380 226567400 226567435 226567443 226567450 226567458 226567459
#>  [974] 226567556 226567567 226567574 226567579 226567629 226567646 226567656
#>  [981] 226567670 226567681 226567699 226567701 226567702 226567706 226567717
#>  [988] 226567727 226567759 226567799 226567800 226567820 226567824 226567833
#>  [995] 226567848 226567862 226567886 226567894 226567923 226567935 226567950
#> [1002] 226567961 226567989 226568036 226568060 226568061 226568066 226568082
#> [1009] 226568123 226568127 226568139 226568146 226568177 226568234 226568241
#> [1016] 226568245 226568264 226568294 226568315 226568346 226568349 226568359
#> [1023] 226568362 226568364 226568408 226568416 226568417 226568432 226568449
#> [1030] 226568457 226568460 226568463 226568464 226568465 226568530 226568537
#> [1037] 226568633 226568641 226568645 226568657 226568663 226568670 226568680
#> [1044] 226568696 226568699 226568700 226568701 226568711 226568713 226568725
#> [1051] 226568734 226568738 226568746 226568772 226568798 226568876 226568911
#> [1058] 226568928 226568929 226568941 226568980 226569025 226569064 226569099
#> [1065] 226569118 226569177 226569196 226569204 226569217 226569220 226569226
#> [1072] 226569232 226569328 226569330 226569349 226569414 226569437 226569451
#> [1079] 226569464 226569471 226569516 226569535 226569554 226569573 226569593
#> [1086] 226569594 226569596 226569607 226569623 226569624 226569625 226569648
#> [1093] 226569680 226569683 226569748 226569754 226569769 226569783 226569821
#> [1100] 226569829 226569832 226569836 226569850 226569859 226569892 226569907
#> [1107] 226569908 226569912 226569959 226569976 226569984 226569988 226570060
#> [1114] 226570099 226570146 226570279 226570308 226570330 226570331 226570363
#> [1121] 226570382 226570383 226570483 226570745 226570749 226570755 226570849
#> [1128] 226571011 226573101 226573345 226574052 226574439 226582522 226584018
#> [1135] 226589272 226589273 226597434 226597505 226600715 226600746 226647066
#> [1142] 226648068 226656069 226667895 226668614 226668738 226668855 226669423
#> [1149] 226669639 226670087 226683506 226696380 226710719 226823612 226871249
#> [1156] 226876459 226876460 226936194 226965286 226972501 226973045 226973164
#> [1163] 227122429 227236737 227281952 227325851 227339001 227384742 227409508
#> [1170] 227461168 227461872 227474526 227511968 227511969 227564952 227748570
#> [1177] 227960305 227987782 227988458 227990171 227990458 227991140 228067840
#> [1184] 228093688 228094302 228094400 228094598 228099363 228140626 228159764
#> [1191] 228159766 228248383 228248928 228263743 228265260 228304181 228304246
#> [1198] 228355922 228361147 228452780 228639103 228770559 228770560 228819438
#> [1205] 228821051 228821054 228821055 228821056 228821057 228821058 228821059
#> [1212] 229280318 229294930 229334353 229337219 229634546 230157026 230160664
#> [1219] 230162107 230331623 230331934 230335306 230336805 230336809 230337506
#> [1226] 230337861 230338660 230338865 230922657 231379826 231380229 231380490
#> [1233] 231380595 231408598 231804558 231804593 231804765 231805001 231805228
#> [1240] 231805267 231805479 231805547 231805598 231805601 231805607 232099662
#> [1247] 232168843 242681556 242717650 242881388 242920991 242939316 243086546
#> [1254] 243093644 243247276 243279817 243310463 243530634 243738751 243781361
#> [1261] 243836721 244274765 244304819 244351778 244473144 244482943 244615862
#> [1268] 244627129 244636869 244759771 244861749 245029031 245033760 245283852
#> [1275] 245309404 245363541 245370020 245708899 245712680 245833937 245910951
#> [1282] 246055152 246059618 246152086 246185335 246302557 246328178 246352373
#> [1289] 246554028 246643596 246771767 246837580 246918682 246999746 247221074
#> [1296] 247555200 247576141 247608871 247940116 248042834 248050678 248370740
#> [1303] 248382919 248412763 248454658 248521494 248564737 248603625 248633503
#> [1310] 248880456 248936405 248962580 249096157 406908050 406924010 406974008
#> [1317] 407050344 407246776 407400630 407406725 407454637 407458795 407597864
#> [1324] 407694713 408147735 408215224 408217559 408259874 408364713 408470213
#> [1331] 408624647 408901036 409227565 409282571 409314082 409433585 409471800
#> [1338] 409673423 409688950 409807984 409808036 409844257 409847976 409898992
#> [1345] 409899538 409899617 409900700 409918668 409918859 409956750 410076269
#> [1352] 410111933 410112156 410199016 410250219 410310907 410320935 410358412
#> [1359] 410358870 410358993 410364139 410368205 410390548 410443241 410611603
#> [1366] 410656308 410714557 410730470 410800662 410813610 410878039 410889153
#> [1373] 411029050 411120346 411209812 411236714 411322314 411481111 411739633
#> [1380] 411848723 412068746 412190947 412223907 412476987 412478856 412516310
#> [1387] 412540966 412700950 412759940 412769395 412771380 412892589 413247619
#> [1394] 413431688 413450070 413450927 413457356 413457635 413458038 413458045
#> [1401] 413478250 413485032 413490608 413490982 413505830 413505848 413505864
#> [1408] 413505881 413515875 413516940 413517191 413517594 413517711 413517787
#> [1415] 413518248 413518286 413518452 413555803 413573934 413576342 413577607
#> [1422] 413578969 413583708 413584099 413596608 413598583 413598590 413647181
#> [1429] 413911986 413963852 414064183 414626516 414661397 414825813 414856510
#> [1436] 414892091 414935619 414945852 414956160 415069749 415110648 415136092
#> [1443] 415714536 415727884 415728598 415729189 415729254 415729316 415732559
#> [1450] 415732675 415732908 415732945 415732955 415732961 415732979 415733001
#> [1457] 415733004 415740875 415748816 415748861 415748865 415748910 415749238
#> [1464] 415749262 415749353 415750692 415812290 415816885 415821932 415824540
#> [1471] 415827755 415827762 415828559 415829165 415830681 415835565 415850432
#> [1478] 415850705 415851694 415853441 415855021 415857010 415859316 415871129
#> [1485] 415872890 415873239 415875742 415939267 415966755 415966911 415967507
#> [1492] 416129933 416132545 419476058 419476730 419479763 419480873 419480972
#> [1499] 419485881 419486666 419490957 419491152 419491791 419492671 419492675
#> [1506] 419492924 419493503 419494003 419494133 419494704 419495016 419495902
#> [1513] 419495947 419496295 419497698 419497700 419497832 419499306 419499403
#> [1520] 419499559 419499585 419499632 419499643 419499837 419499846 419499949
#> [1527] 419500086 419500181 419500734 419500914 419501182 419501547 419501734
#> [1534] 419502131 419502930 419503347 419503687 419503883 419503967 419504952
#> [1541] 419505428 419506158 419506282 419506849 419507096 419507450 419507595
#> [1548] 419510089 419512824 419513193 419513201 419513968 419514082 419514092
#> [1555] 419514098 419514102 419514108 419514115 419514117 419516874 419523755
#> [1562] 419524130 419524875 419525381 419526621 419527521 419531719 419531724
#> [1569] 419531750 419531947 419532553 419532839 419534378 419534410 419534469
#> [1576] 419534484 419535046 419535071 419535113 419536034 419536121 419546112
#> [1583] 419549332 419551105 419551195 419551405 419551879 419551899 419551910
#> [1590] 419552498 419553075 419553096 419553297 419554682 419555018 419555613
#> [1597] 419555769 419557728 419559147 419559194 419559505 419561476 419572553
#> [1604] 419574667 419574686 419578517 419585247 419590036 419590658 419590946
#> [1611] 419591129 419591195 419591612 419592226 419593794 419595719 419681507
#> [1618] 419682519 419690476 419700929 419701108 419705795 419714072 419714186
#> [1625] 419721779 419722600 419724974 419742001 419765198 419765456 419968009
#> [1632] 420012827 420028738 420028752 420028796 420028825 420121099 420132130
#> [1639] 420290406 420482162 420509561 420599383 420599583 420611634 420613278
#> [1646] 420625825 420634933 420662981 420668293 420713373 420762856 420764388
#> [1653] 421051216 421054472 421152487 421168189 421185220 421200485 421285150
#> [1660] 421467012 421467021 421467167 421467814 421467821 421467841 421468181
#> [1667] 421618729 421645675 422224723 422286156 422291469 422291508 422291541
#> [1674] 422291868 422294992 422295060 422302674 422302967 422308315 422308547
#> [1681] 422309266 422309809 422319370 422361298 422394972 422395317 422395612
#> [1688] 422397162 422397173 422397290 422423005 422425739 422425747 422425769
#> [1695] 422478595 422511204 422511386 422536544 422536551 422537057 422537069
#> [1702] 422537094 422537110 422537118 422550741 422568394 422568403 422571327
#> [1709] 422571343 422571354 422571402 422573560 422573909 423390419 424119783
#> [1716] 424296317 424306124 424306736 424309010 424309022 424757743 424766567
#> [1723] 424766737 424803005 424818908 424819603 424819823 424819832 424849043
#> [1730] 424877080 425113081 425114186 425165937 425171162 425193155 425312104
#> [1737] 425396324 425516770 425535208 425897534 425961463 425965903 425967206
#> [1744] 426045728 426078961 426089733 426103724 426106692 426108038 426109622
#> [1751] 426110449 426119983 426121923 426147338 426149755 426150549 426150787
#> [1758] 426157394 426159592 426272317 426288672 426294028 426310077 426324267
#> [1765] 426359948 426412333 426432571 426442188 426459973 426517444 427700056
#> [1772] 431577953 432891950 433323349 433323597 433567908 447595048 447853768
#> [1779] 447923060 448050232 448532098 448892836 449326453 449676699 449681106
#> [1786] 449910701 450051033 450232513 450235101 450485725 450532993 450630545
#> [1793] 450682277 451013988 451180599 451555494 451961792 452145594 452311423
#> [1800] 452516785 452986205 453242316 453516563 453664627 453678106 453867505
#> [1807] 453889148 454241035 454274907 454483135 454611257 454631768 456171974
#> [1814] 456295911 456370357 456371022 456411915 456468049 456636612 456671281
#> [1821] 456739466 456796473 456977526 457169682 457192620 457203572 457280508
#> [1828] 457282502 457310819 457311044 457459970 457460012 457584123 457655803
#> [1835] 457673794 457673796 457815268 457842244 458157987 458347242 458392451
#> [1842] 458393276 458393605 458393636 458393652 458393705 458393708 458393785
#> [1849] 458393799 458393801 458394569 458394830 458394859 458394861 458395827
#> [1856] 458396401 458396411 458396423 458397310 458397365 458427722 466349722
#> [1863] 482532917

This result provides a comprehensive list of substances associated with the specified patent, allowing for further exploration and analysis within the PubChem database.

3.2. Available Data

Once you’ve specified the records of interest in PUG REST, the next step is to define what information you want to retrieve about these records. PUG REST excels in providing access to specific data points about each record, such as individual properties or cross-references, without the need to download and sift through large datasets.

1. Full Records: PUG REST allows the retrieval of entire records in various formats like JSON, CSV, TXT, and SDF. For example, to retrieve the record for aspirin (CID 2244) in SDF format:

result <- get_pug_rest(identifier = "2244", namespace = "cid", domain = "compound", output = "SDF")

Multiple records can also be requested in a single call, though large lists may be subject to timeouts.

2. Images: Images of chemical structures can be retrieved by specifying PNG format. This works with various input methods, including chemical names, SMILES strings, and InChI keys. For example, to get an image for the chemical name “lipitor”:

get_pug_rest(identifier = "lipitor", namespace = "name", domain = "compound", output = "PNG")
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Compound
#>   - Namespace: Name
#>   - Operation: <NULL>
#>   - Identifier: lipitor
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.

3. Compound Properties: Pre-computed properties for PubChem compounds are accessible individually or in tables. For instance, to get the molecular weight of a compound:

result <- get_pug_rest(identifier = "2244", namespace = "cid", domain = "compound", property = "MolecularWeight", output = "TXT")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Compound
#>   - Namespace: CID
#>   - Operation: <NULL>
#>   - Identifier: 2244
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#>       V1
#> 1 180.16

Or to retrieve a CSV table of multiple compounds and properties:

result <- get_pug_rest(identifier = "1,2,3,4,5", namespace = "cid", domain = "compound", property = c("MolecularWeight", "MolecularFormula", "HBondDonorCount", "HBondAcceptorCount", "InChIKey", "InChI"), output = "CSV")
pubChemData(result)
#>   CID MolecularWeight MolecularFormula HBondDonorCount HBondAcceptorCount
#> 1   1          203.24         C9H17NO4               0                  4
#> 2   2          204.24        C9H18NO4+               1                  4
#> 3   3          156.14           C7H8O4               3                  4
#> 4   4           75.11           C3H9NO               2                  2
#> 5   5          169.07         C3H8NO5P               3                  6
#>                      InChIKey
#> 1 RDHQFKQIGNGIED-UHFFFAOYSA-N
#> 2 RDHQFKQIGNGIED-UHFFFAOYSA-O
#> 3 INCSWYKICIYAHB-UHFFFAOYSA-N
#> 4 HXKKHQJGJAFBHI-UHFFFAOYSA-N
#> 5 HIQNVODXENYOFK-UHFFFAOYSA-N
#>                                                                     InChI
#> 1     InChI=1S/C9H17NO4/c1-7(11)14-8(5-9(12)13)6-10(2,3)4/h8H,5-6H2,1-4H3
#> 2 InChI=1S/C9H17NO4/c1-7(11)14-8(5-9(12)13)6-10(2,3)4/h8H,5-6H2,1-4H3/p+1
#> 3      InChI=1S/C7H8O4/c8-5-3-1-2-4(6(5)9)7(10)11/h1-3,5-6,8-9H,(H,10,11)
#> 4                              InChI=1S/C3H9NO/c1-3(5)2-4/h3,5H,2,4H2,1H3
#> 5             InChI=1S/C3H8NO5P/c4-1-3(5)2-9-10(6,7)8/h1-2,4H2,(H2,6,7,8)

4. Synonyms: To view all synonyms of a compound, such as Vioxx:

result <- get_pug_rest(identifier = "vioxx", namespace = "name", domain = "compound", operation = "synonyms", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Compound
#>   - Namespace: Name
#>   - Operation: synonyms
#>   - Identifier: vioxx
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $InformationList
#> $InformationList$Information
#> $InformationList$Information[[1]]
#> $InformationList$Information[[1]]$CID
#> [1] 5090
#> 
#> $InformationList$Information[[1]]$Synonym
#>   [1] "rofecoxib"                                                  
#>   [2] "162011-90-7"                                                
#>   [3] "Vioxx"                                                      
#>   [4] "Ceoxx"                                                      
#>   [5] "MK 966"                                                     
#>   [6] "4-(4-(Methylsulfonyl)phenyl)-3-phenylfuran-2(5H)-one"       
#>   [7] "refecoxib"                                                  
#>   [8] "Vioxx Dolor"                                                
#>   [9] "MK-966"                                                     
#>  [10] "4-[4-(methylsulfonyl)phenyl]-3-phenylfuran-2(5H)-one"       
#>  [11] "MK0966"                                                     
#>  [12] "4-[4-(methylsulfonyl)phenyl]-3-phenyl-2(5H)-furanone"       
#>  [13] "MK 0966"                                                    
#>  [14] "MK-0966"                                                    
#>  [15] "rofecoxibum"                                                
#>  [16] "3-(4-methylsulfonylphenyl)-4-phenyl-2H-furan-5-one"         
#>  [17] "CCRIS 8967"                                                 
#>  [18] "HSDB 7262"                                                  
#>  [19] "TRM-201"                                                    
#>  [20] "UNII-0QTW8Z7MCR"                                            
#>  [21] "0QTW8Z7MCR"                                                 
#>  [22] "NSC-720256"                                                 
#>  [23] "NSC-758705"                                                 
#>  [24] "CHEBI:8887"                                                 
#>  [25] "DTXSID2023567"                                              
#>  [26] "M01AH02"                                                    
#>  [27] "MK966"                                                      
#>  [28] "3-phenyl-4-[4-(methylsulfonyl)phenyl]-2(5H)-furanone"       
#>  [29] "4-(4-(Methylsulfonyl)phenyl)-3-phenyl-2(5H)-furanone"       
#>  [30] "4-(p-(Methylsulfonyl)phenyl)-3-phenyl-2(5H)-furanone"       
#>  [31] "3-Phenyl-4-(4-(methylsulfonyl)phenyl))-2(5H)-furanone"      
#>  [32] "2(5H)-Furanone, 4-[4-(methylsulfonyl)phenyl]-3-phenyl-"     
#>  [33] "4-(4-methanesulfonylphenyl)-3-phenyl-2,5-dihydrofuran-2-one"
#>  [34] "CHEMBL122"                                                  
#>  [35] "4-(4-methylsulfonylphenyl)-3-phenyl-5H-furan-2-one"         
#>  [36] "DTXCID903567"                                               
#>  [37] "TRM201"                                                     
#>  [38] "NSC720256"                                                  
#>  [39] "NSC 720256"                                                 
#>  [40] "NSC 758705"                                                 
#>  [41] "2(5H)-Furanone, 4-(4-(methylsulfonyl)phenyl)-3-phenyl-"     
#>  [42] "NCGC00095118-01"                                            
#>  [43] "ROFECOXIB (MART.)"                                          
#>  [44] "ROFECOXIB [MART.]"                                          
#>  [45] "Vioxx (trademark)"                                          
#>  [46] "SMR000466331"                                               
#>  [47] "Vioxx (TN)"                                                 
#>  [48] "SR-01000762904"                                             
#>  [49] "3-phenyl-4-(4-(methylsulfonyl)phenyl)-2(5H)-furanone"       
#>  [50] "Rofecoxib (JAN/USAN/INN)"                                   
#>  [51] "Rofecoxib [USAN:INN:BAN]"                                   
#>  [52] "Rofecoxib (Vioxx)"                                          
#>  [53] "Rofecoxib [USAN]"                                           
#>  [54] "KS-1107"                                                    
#>  [55] "MK 0996"                                                    
#>  [56] "Spectrum_000119"                                            
#>  [57] "ROFECOXIB [INN]"                                            
#>  [58] "ROFECOXIB [JAN]"                                            
#>  [59] "SpecPlus_000669"                                            
#>  [60] "ROFECOXIB [MI]"                                             
#>  [61] "ROFECOXIB [HSDB]"                                           
#>  [62] "Spectrum2_000446"                                           
#>  [63] "Spectrum3_001153"                                           
#>  [64] "Spectrum4_000631"                                           
#>  [65] "Spectrum5_001598"                                           
#>  [66] "ROFECOXIB [VANDF]"                                          
#>  [67] "ROFECOXIB [WHO-DD]"                                         
#>  [68] "SCHEMBL3050"                                                
#>  [69] "BSPBio_002705"                                              
#>  [70] "KBioGR_001242"                                              
#>  [71] "KBioGR_002345"                                              
#>  [72] "KBioSS_000559"                                              
#>  [73] "KBioSS_002348"                                              
#>  [74] "MLS000759440"                                               
#>  [75] "MLS001165770"                                               
#>  [76] "MLS001195623"                                               
#>  [77] "MLS001424113"                                               
#>  [78] "MLS006010091"                                               
#>  [79] "BIDD:GT0399"                                                
#>  [80] "DivK1c_006765"                                              
#>  [81] "SPECTRUM1504235"                                            
#>  [82] "SPBio_000492"                                               
#>  [83] "3-(4-methanesulfonylphenyl)-2-phenyl-2-buten-4-olide"       
#>  [84] "GTPL2893"                                                   
#>  [85] "ROFECOXIB [ORANGE BOOK]"                                    
#>  [86] "BDBM22369"                                                  
#>  [87] "KBio1_001709"                                               
#>  [88] "KBio2_000559"                                               
#>  [89] "KBio2_002345"                                               
#>  [90] "KBio2_003127"                                               
#>  [91] "KBio2_004913"                                               
#>  [92] "KBio2_005695"                                               
#>  [93] "KBio2_007481"                                               
#>  [94] "KBio3_002205"                                               
#>  [95] "KBio3_002825"                                               
#>  [96] "EX-A708"                                                    
#>  [97] "cMAP_000024"                                                
#>  [98] "HMS1922H11"                                                 
#>  [99] "HMS2051G16"                                                 
#> [100] "HMS2089H20"                                                 
#> [101] "HMS2093E04"                                                 
#> [102] "HMS2232G21"                                                 
#> [103] "HMS3371P11"                                                 
#> [104] "HMS3393G16"                                                 
#> [105] "HMS3651F16"                                                 
#> [106] "HMS3713B07"                                                 
#> [107] "HMS3750I17"                                                 
#> [108] "HMS3885E05"                                                 
#> [109] "Pharmakon1600-01504235"                                     
#> [110] "BCP03619"                                                   
#> [111] "Tox21_111430"                                               
#> [112] "CCG-40253"                                                  
#> [113] "MFCD00935806"                                               
#> [114] "NSC758705"                                                  
#> [115] "s3043"                                                      
#> [116] "STK635144"                                                  
#> [117] "AKOS000280931"                                              
#> [118] "AB07701"                                                    
#> [119] "CS-0997"                                                    
#> [120] "DB00533"                                                    
#> [121] "NC00132"                                                    
#> [122] "SB19518"                                                    
#> [123] "NCGC00095118-02"                                            
#> [124] "NCGC00095118-03"                                            
#> [125] "NCGC00095118-04"                                            
#> [126] "NCGC00095118-05"                                            
#> [127] "NCGC00095118-08"                                            
#> [128] "NCGC00095118-17"                                            
#> [129] "NCGC00095118-18"                                            
#> [130] "AC-28318"                                                   
#> [131] "BR164362"                                                   
#> [132] "HY-17372"                                                   
#> [133] "NCI60_041175"                                               
#> [134] "SBI-0206774.P001"                                           
#> [135] "CAS-162011-90-7"                                            
#> [136] "NS00003940"                                                 
#> [137] "R0206"                                                      
#> [138] "SW219668-1"                                                 
#> [139] "C07590"                                                     
#> [140] "D00568"                                                     
#> [141] "AB00052090-06"                                              
#> [142] "AB00052090-08"                                              
#> [143] "AB00052090_09"                                              
#> [144] "AB00052090_10"                                              
#> [145] "EN300-7364304"                                              
#> [146] "A810324"                                                    
#> [147] "L000912"                                                    
#> [148] "Q411412"                                                    
#> [149] "Q-201676"                                                   
#> [150] "SR-01000762904-3"                                           
#> [151] "SR-01000762904-5"                                           
#> [152] "BRD-K21733600-001-02-6"                                     
#> [153] "BRD-K21733600-001-06-7"                                     
#> [154] "3-(4-methanesulfonyl-phenyl)-2-phenyl-2-buten-4-olide"      
#> [155] "4-(4'-(Methylsulfonyl)phenyl)-3-phenyl-2(5H)-furanone"      
#> [156] "Z2037279770"                                                
#> [157] "2(5H)-Furanone, 4-[4-(methyl-sulfonyl)phenyl]-3-phenyl-"    
#> [158] "3-(Phenyl)-4-(4-(methylsulfonyl)phenyl)-2-(5H)-furanone"    
#> [159] "3-Phenyl-4-(4-(Methylsulfonyl)Phenyl)-2-(5H)-Furanone"      
#> [160] "4-(4-METHANESULFONYL-PHENYL)-3-PHENYL-5H-FURAN-2-ONE"       
#> [161] "4-(4-methylsulfonylphenyl)-3-phenyl-2,5-dihydro-2-furanone"

5. Cross-References (XRefs): PUG REST provides access to various cross-references. For example, to retrieve MMDB identifiers for protein structures containing aspirin:

result <- get_pug_rest(identifier = "2244", namespace = "cid", domain = "compound", operation = c("xrefs","MMDBID"), output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Compound
#>   - Namespace: CID
#>   - Operation: xrefs
#>   - Identifier: 2244
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $InformationList
#> $InformationList$Information
#> $InformationList$Information[[1]]
#> $InformationList$Information[[1]]$CID
#> [1] 2244
#> 
#> $InformationList$Information[[1]]$MMDBID
#> [1] 115960 173465 230639  27242  27954  54234  70578  75951

Or to find all patent identifiers associated with a given SID:

result <- get_pug_rest(identifier = "137349406", namespace = "sid", domain = "substance", operation = c("xrefs","PatentID"), output = "TXT")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Substance
#>   - Namespace: SID
#>   - Operation: xrefs
#>   - Identifier: 137349406
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#>                 V1
#> 1  US20030181500A1
#> 2  US20050059720A1
#> 3  US20050124633A1
#> 4  US20050124634A1
#> 5  US20050159403A1
#> 6  US20060008862A1
#> 7  US20060135506A1
#> 8  US20070142442A1
#> 9  US20070179152A1
#> 10 US20070196421A1
#> 11 US20070197957A1
#> 12 US20070198063A1
#> 13 US20070208134A1
#> 14 US20070299043A1
#> 15 US20080125595A1
#> 16 US20090075960A1
#> 17 US20100144696A1
#> 18 US20100144697A1
#> 19 US20100267704A1
#> 20 US20110098273A1
#> 21 US20110177999A1
#> 22 US20110201811A1
#> 23       US7485653
#> 24       US7488721
#> 25       US7585978

These examples illustrate the versatility of PUG REST in fetching specific data efficiently. It’s an ideal tool for users who need quick access to particular pieces of information from the vast PubChem database without the overhead of processing bulk data.

3.3. BioAssays

PubChem BioAssays are complex entities containing a wealth of data. PUG REST provides access to both complete assay records and specific components of BioAssay data, allowing users to efficiently retrieve the information they need.

1. Assay Description: To obtain the description section of a BioAssay, which includes authorship, general description, protocol, and data readout definitions, use a request like:

result <- get_pug_rest(identifier = "504526", namespace = "aid", domain = "assay", operation = "description", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Assay
#>   - Namespace: AID
#>   - Operation: description
#>   - Identifier: 504526
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $PC_AssayContainer
#> $PC_AssayContainer[[1]]
#> $PC_AssayContainer[[1]]$assay
#> $PC_AssayContainer[[1]]$assay$descr
#> $PC_AssayContainer[[1]]$assay$descr$aid
#>      id version 
#>  504526       1 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$aid_source
#> $PC_AssayContainer[[1]]$assay$descr$aid_source$db
#> $PC_AssayContainer[[1]]$assay$descr$aid_source$db$name
#> [1] "Southern Research Specialized Biocontainment Screening Center"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$aid_source$db$source_id
#>       str 
#> "RSV_DR6" 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$aid_source$db$date
#> $PC_AssayContainer[[1]]$assay$descr$aid_source$db$date$std
#>  year month   day 
#>  2012     3    18 
#> 
#> 
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$name
#> [1] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$description
#> [1] "Southern Research's Specialized Biocontainment Screening Center (SRSBSC)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
#> [2] "Southern Research Institute (Birmingham, Alabama)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
#> [3] "NIH Molecular Libraries Probe Centers Network (MLPCN)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
#> [4] "Assay Provider: Dr. William Severson, Southern Research Institute "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
#> [5] "Grant number:  1 R03 MH082403-01A1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
#> [6] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
#> [7] "Assay Rationale and Summary:  Currently, there are no commercially available vaccines to protect humans against Respiratory syncytial virus (RSV). RSV is associated with substantial morbidity and mortality and is the most common cause of bronchiolitis and pneumonia among infants and children under one year of age.  Nevertheless, severe lower respiratory tract disease may occur at any age, especially among the elderly or among those with compromised cardiac, pulmonary, or immune systems. The existing therapies for the acute infection are ribavirin and the prophylactic humanized monoclonal antibody (Synagis from MedImmune) that is limited to use in high risk pediatric patients.  The economic impact of RSV infections due to hospitalizations and indirect medical costs is greater than $ 650 million annually.  The assay provider has developed and validated an HTS assay that measures cytopathic effect (CPE) induced in HEp-2 cells by RSV infection, using a luminescent-based detection system for signal endpoint.  We anticipate that the proposed studies utilizing the Molecular Libraries Probes Production Network (MLPCN) HTS resources will generate multiple scaffolds targeting various junctures in the RSV viral lifecycle.  These may be furthered developed into probes to construct novel single or combination therapeutics.  "
#> 
#> $PC_AssayContainer[[1]]$assay$descr$protocol
#>  [1] "Cell Culture: HEp-2 cells (ATCC CCL-23, American Tissue Culture Type) were maintained as adherent cell lines in Optimem 1 with 2 mM L-glutamine and 10% fetal bovine serum (FBS) at 37oC in a humidified 5% CO2 atmosphere. Cells were passaged as needed and harvested from flasks using 0.05% trypsin-EDTA. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
#>  [2] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
#>  [3] "Assay Media - Preparation of Complete DMEM/F12: 50 mL Pen/Strep/Glutamine (Gibco, Cat. No. 10378) was added to four liters of room temperature DMEM/F12 (Sigma, Cat. No. D6434) and the pH adjusted to 7.5 using 1N NaOH. The medium was sterile filtered through a 0.2 um filter and 10 mL of HI-FBS was added per 500 mL of media."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
#>  [4] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
#>  [5] "RSV culture: Human respiratory syncytial virus (HRSV) strain Long (ATCC VR-26) was used for screening. The RSV stock was prepared in HEp-2 cells using an initial stock obtained from ATCC. Briefly, HEp-2 cells were grown in two T-175 flasks to 50% confluence in Dulbecco's Modified Eagle Medium: Nutrient Mixture F-12 (CDMEM/F12), pH 7.5 with 2.5 mM L-glutamine, 2% FBS and 125 U of penicillin, 125 ug of streptomycin per ml. 0.2 ml of RSV was added to 25 ml of CDMEM/F12. After three days incubation at 37 degrees C, 5% C02 and high humidity, the supernatant was harvested and the cell debris pelleted by centrifuging at 1,000 rpm for 5 minutes at 18 degrees C. Trehalose and FBS were added to a final concentration of 10% each and the supernatant was aliquoted (1 ml per tube) fast freeze using 100% Ethanol dry ice for five minutes and stored at -80 degrees C. These virus stocks were titrated in HEp-2 cells using an agarose overlay plaque method and the titer was 6.0E+07 pfu/ml. "
#>  [6] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
#>  [7] "Dose Response Compound Preparation: For dose response screening, compounds or carrier control (DMSO) were diluted to 6x in Complete DMEM/F12. Test compounds were serially diluted 1:2 resulting in an 8 point dose response dilution series. (final plate well concentration ranging from 50 uM to 0.39 uM and a final DMSO concentration of 0.5%). Twenty ul of each dilution was dispensed to assay plates (3% DMSO) in triplicate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
#>  [8] "Control Drug: The positive control drug for this assay, ribavirin [1] (No. 196066, MP Biomedicals, Solon, OH) was solubilized in DMSO. It was diluted and added to the assay plates as described for test compounds. Final concentration for ribavirin was 100uM. All wells contained 0.5% DMSO."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
#>  [9] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
#> [10] "Preparation of HEp-2 cells: Cells were harvested and resuspended to 178,000 cells per ml in Complete DMEM/F12."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
#> [11] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
#> [12] "Assay Set up: Sixty ul of HEp-2 cells (10,595 cells/well) forty ul of media and 20 ul of 3% DMSO were plated in the cell control wells. Sixty ul of HEp-2 cells (10,595 cells/well), forty ul of a 1:500 dilution of virus (viral MOI = 0.45) and 20 ul of compound or ribavirin control drug were added to the virus control and compound wells. All cell plating was conducted using a Matrix WellMate and cells were maintained at room temperature with stirring during the plating process. The assay plates were incubated for six days at 37 degrees C, 5% CO2 and 90% relative humidity. "                                                                                                                                                                                                                                                                                                                                                                                                                       
#> [13] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
#> [14] "Data Analysis: Eight control wells containing cells only and four wells containing cells and virus were included on each assay plate and used to calculate Z' value for each plate and to normalize the data on a per plate basis.  Results are reported as percent (%) CPE inhibition and were calculated using the following formula: % CPE inhibition = 100*(Test Cmpd - Med Virus)/(Med Cells - Med Virus).  Four ribavirin positive control wells were included on each plate for quality control purposes. To quantify the viral cytopathic effect, IC50s were calculated for each substance using the 4 parameter Levenburg-Marquardt algorithm with the minimum and  maximum parameters locked at 0 and 100, respectively. "                                                                                                                                                                                                                                                                                     
#> 
#> $PC_AssayContainer[[1]]$assay$descr$comment
#> [1] "Possible artifacts in this assay include, but are not limited to, compounds that interfere with the luciferase reaction, absorb luminescence, or precipitate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
#> [2] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
#> [3] "Compounds that demonstrated at least 50% inhibition and were considered active. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
#> [4] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
#> [5] "The following tiered system has been implemented at Southern Research Institute for use with the PubChem Score. Compounds in the primary screen are scored on a scale of 0-40 based on inhibitory activity where a score of 40 corresponds to 100% inhibition. In the initial confirmatory dose response screen, active compounds were scored on a scale of 41-80 based on the IC50 result while compounds that did not confirm as actives were given the score of 0. In assays using purified and synthesized compounds a scale of 81-100 based on the IC50 result is used to denote a high level of confidence in both the substance and the data. Compounds that did not confirm activity were given the score of 0."
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref
#> $PC_AssayContainer[[1]]$assay$descr$xref[[1]]
#> $PC_AssayContainer[[1]]$assay$descr$xref[[1]]$xref
#>  aid 
#> 2391 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[1]]$comment
#> [1] "Primary and confirmatory screen."
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[2]]
#> $PC_AssayContainer[[1]]$assay$descr$xref[[2]]$xref
#>  aid 
#> 2410 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[2]]$comment
#> [1] "Cytotoxicity of primary screen hits."
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[3]]
#> $PC_AssayContainer[[1]]$assay$descr$xref[[3]]$xref
#>    aid 
#> 449732 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[3]]$comment
#> [1] "TCID50 on selected compounds."
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[4]]
#> $PC_AssayContainer[[1]]$assay$descr$xref[[4]]$xref
#>    aid 
#> 488972 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[4]]$comment
#> [1] "Confirmatory screen (2) on purified and synthesized compounds."
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[5]]
#> $PC_AssayContainer[[1]]$assay$descr$xref[[5]]$xref
#>    aid 
#> 488976 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[5]]$comment
#> [1] "Cytotoxicity screen (2) on purified and synthesized compounds."
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[6]]
#> $PC_AssayContainer[[1]]$assay$descr$xref[[6]]$xref
#>  aid 
#> 2440 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[6]]$comment
#> [1] "Summary AID."
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[7]]
#> $PC_AssayContainer[[1]]$assay$descr$xref[[7]]$xref
#>    aid 
#> 492966 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[7]]$comment
#> [1] "Confirmatory screen (3) on purified and synthesized compounds."
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[8]]
#> $PC_AssayContainer[[1]]$assay$descr$xref[[8]]$xref
#>    aid 
#> 492968 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[8]]$comment
#> [1] "Cytotoxicity screen (3) on purified and synthesized compounds."
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[9]]
#> $PC_AssayContainer[[1]]$assay$descr$xref[[9]]$xref
#>    aid 
#> 493016 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[9]]$comment
#> [1] "Confirmatory screen (4) on purified and synthesized compounds."
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[10]]
#> $PC_AssayContainer[[1]]$assay$descr$xref[[10]]$xref
#>    aid 
#> 493015 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[10]]$comment
#> [1] "Cytotoxicity screen (4) on purified and synthesized compounds."
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[11]]
#> $PC_AssayContainer[[1]]$assay$descr$xref[[11]]$xref
#>    aid 
#> 493088 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[11]]$comment
#> [1] "Confirmatory screen (5) on purified and synthesized compounds."
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[12]]
#> $PC_AssayContainer[[1]]$assay$descr$xref[[12]]$xref
#>    aid 
#> 493090 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[12]]$comment
#> [1] "Cytotoxicity screen (5) on purified and synthesized compounds."
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$xref[[13]]
#> $PC_AssayContainer[[1]]$assay$descr$xref[[13]]$xref
#> taxonomy 
#>    12814 
#> 
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results
#> $PC_AssayContainer[[1]]$assay$descr$results[[1]]
#> $PC_AssayContainer[[1]]$assay$descr$results[[1]]$tid
#> [1] 1
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[1]]$name
#> [1] "IC50 Modifier"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[1]]$type
#> [1] 4
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[1]]$unit
#> [1] 254
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[2]]
#> $PC_AssayContainer[[1]]$assay$descr$results[[2]]$tid
#> [1] 2
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[2]]$name
#> [1] "IC50"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[2]]$type
#> [1] 1
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[2]]$unit
#> [1] 5
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[2]]$ac
#> [1] TRUE
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[3]]
#> $PC_AssayContainer[[1]]$assay$descr$results[[3]]$tid
#> [1] 3
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[3]]$name
#> [1] "% CPE Inhibition @ 50 uM"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[3]]$description
#> [1] "Inhibition of cytopathic effect of virus at 50 uM"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[3]]$type
#> [1] 1
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[3]]$unit
#> [1] 15
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[3]]$tc
#> concentration          unit         dr_id 
#>            50             5             1 
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[4]]
#> $PC_AssayContainer[[1]]$assay$descr$results[[4]]$tid
#> [1] 4
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[4]]$name
#> [1] "% CPE Inhibition @ 25 uM"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[4]]$description
#> [1] "Inhibition of cytopathic effect of virus at 25 uM"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[4]]$type
#> [1] 1
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[4]]$unit
#> [1] 15
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[4]]$tc
#> concentration          unit         dr_id 
#>            25             5             1 
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[5]]
#> $PC_AssayContainer[[1]]$assay$descr$results[[5]]$tid
#> [1] 5
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[5]]$name
#> [1] "% CPE Inhibition @ 12.5 uM"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[5]]$description
#> [1] "Inhibition of cytopathic effect of virus at 12.50 uM"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[5]]$type
#> [1] 1
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[5]]$unit
#> [1] 15
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[5]]$tc
#> concentration          unit         dr_id 
#>          12.5           5.0           1.0 
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[6]]
#> $PC_AssayContainer[[1]]$assay$descr$results[[6]]$tid
#> [1] 6
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[6]]$name
#> [1] "% CPE Inhibition @ 6.25 uM"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[6]]$description
#> [1] "Inhibition of cytopathic effect of virus at 6.25 uM"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[6]]$type
#> [1] 1
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[6]]$unit
#> [1] 15
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[6]]$tc
#> concentration          unit         dr_id 
#>          6.25          5.00          1.00 
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[7]]
#> $PC_AssayContainer[[1]]$assay$descr$results[[7]]$tid
#> [1] 7
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[7]]$name
#> [1] "% CPE Inhibition @ 3.125 uM"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[7]]$description
#> [1] "Inhibition of cytopathic effect of virus at 3.125 uM"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[7]]$type
#> [1] 1
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[7]]$unit
#> [1] 15
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[7]]$tc
#> concentration          unit         dr_id 
#>         3.125         5.000         1.000 
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[8]]
#> $PC_AssayContainer[[1]]$assay$descr$results[[8]]$tid
#> [1] 8
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[8]]$name
#> [1] "% CPE Inhibition @ 1.563 uM"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[8]]$description
#> [1] "Inhibition of cytopathic effect of virus at 1.563 uM"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[8]]$type
#> [1] 1
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[8]]$unit
#> [1] 15
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[8]]$tc
#> concentration          unit         dr_id 
#>         1.563         5.000         1.000 
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[9]]
#> $PC_AssayContainer[[1]]$assay$descr$results[[9]]$tid
#> [1] 9
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[9]]$name
#> [1] "% CPE Inhibition @ 0.781 uM"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[9]]$description
#> [1] "Inhibition of cytopathic effect of virus at 0.781 uM"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[9]]$type
#> [1] 1
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[9]]$unit
#> [1] 15
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[9]]$tc
#> concentration          unit         dr_id 
#>         0.781         5.000         1.000 
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[10]]
#> $PC_AssayContainer[[1]]$assay$descr$results[[10]]$tid
#> [1] 10
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[10]]$name
#> [1] "% CPE Inhibition @ 0.391 uM"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[10]]$description
#> [1] "Inhibition of cytopathic effect of virus at 0.391 uM"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[10]]$type
#> [1] 1
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[10]]$unit
#> [1] 15
#> 
#> $PC_AssayContainer[[1]]$assay$descr$results[[10]]$tc
#> concentration          unit         dr_id 
#>         0.391         5.000         1.000 
#> 
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$revision
#> [1] 1
#> 
#> $PC_AssayContainer[[1]]$assay$descr$activity_outcome_method
#> [1] 2
#> 
#> $PC_AssayContainer[[1]]$assay$descr$dr
#> $PC_AssayContainer[[1]]$assay$descr$dr[[1]]
#> $PC_AssayContainer[[1]]$assay$descr$dr[[1]]$id
#> [1] 1
#> 
#> $PC_AssayContainer[[1]]$assay$descr$dr[[1]]$descr
#> [1] "CR Plot Labels 1"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$dr[[1]]$dn
#> [1] "Concentration"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$dr[[1]]$rn
#> [1] "Response"
#> 
#> 
#> 
#> $PC_AssayContainer[[1]]$assay$descr$grant_number
#> [1] "1R03 MH084847-01"
#> 
#> $PC_AssayContainer[[1]]$assay$descr$project_category
#> [1] 2

For a simplified summary format that includes target information, active and inactive SID and CID counts:

result <- get_pug_rest(identifier = "1000", namespace = "aid", domain = "assay", operation = "summary", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Assay
#>   - Namespace: AID
#>   - Operation: summary
#>   - Identifier: 1000
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $AssaySummaries
#> $AssaySummaries$AssaySummary
#> $AssaySummaries$AssaySummary[[1]]
#> $AssaySummaries$AssaySummary[[1]]$AID
#> [1] 1000
#> 
#> $AssaySummaries$AssaySummary[[1]]$SourceName
#> [1] "SRMLSC"
#> 
#> $AssaySummaries$AssaySummary[[1]]$SourceID
#> [1] "SPE-MK-Sec"
#> 
#> $AssaySummaries$AssaySummary[[1]]$Name
#> [1] "Screening for Inhibitors of the Mevalonate Pathway in Streptococcus Pneumoniae - MK Secondary Assay"
#> 
#> $AssaySummaries$AssaySummary[[1]]$Description
#>  [1] "Southern Research Molecular Libraries Screening Center (SRMLSC) "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
#>  [2] "Southern Research Institute (Birmingham, Alabama) "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
#>  [3] "NIH Molecular Libraries Screening Centers Network (MLSCN) "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
#>  [4] "Assay Provider: Dr. Thomas S. Leyh, Albert Einstein College of medicine of Yeshiva University "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
#>  [5] "Award: R03 MH078936-01"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
#>  [6] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
#>  [7] "Streptococcus pneumonia (SP) takes the lives of nearly 4,000 people daily and antibiotic resistant strains are becoming an increasing problem. Because of this, the discovery of drugs targeting novel pathways such as the mevalonate pathway has become increasingly important. The pathway produces isopentyl diphosphate (the molecular building block of isoprenoids) and is essential for the survival of the pathogen in mouse lung and serum. The mevalonate pathway is comprised of three consecutive reactions that are catalyzed by the enzymes mevalonate kinase (MK; E.C. 2.7.1.36), phosphomevalonate kinase (PMK; E.C. 2.7.4.2), and diphosphomevalonate decarboxylase (PDM-DC; E.C. 4.1.1.33). MK catalyzes the ATP dependent conversion of (R)-mevalonate to ADP plus (R)-5-phosphomevalonate. "
#>  [8] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
#>  [9] "The activity of MK was measured spectrophotometrically by coupling the formation of ADP to the reactions of pyruvate kinase and lactate dehydrogenase. The rate of ADP formation was quantitated by the reduction of absorbance (OD340) due to the oxidation of NADH to NAD by lactate dehydrogenase. A kinetic assay was chosen to minimize interference by compounds that absorbed at 340 nm."                                                                                                                                                                                                                                                                                                                                                                                                                 
#> [10] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
#> [11] "A total of 57 compounds were initially screened at a final concentration of 100 uM. Compounds with more than 20% inhibition at 100 uM were then tested in dose response assays at seven concentrations, ranging from 100 uM to 0.0156 uM depending on the % inhibition for each compound in the initial 100 uM screen. To confirm that the compounds were specifically inhibiting MK and not one of the other enzymes in the assay, the compounds were tested in parallel in an assay that contained hexokinase as the enzyme instead of MK and glucose as the substrate instead of mevalonate.  None of the compounds tested inhibited in this 'coupling enzymes' assay."                                                                                                                                       
#> 
#> $AssaySummaries$AssaySummary[[1]]$Protocol
#> [1] "Mevalonate Kinase Protocol for 1 mL cuvet assay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
#> [2] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
#> [3] "Purified recombinant MK enzyme was provided by Dr. Thomas Leyh, Albert Einstein College of Medicine of Yeshiva University. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
#> [4] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
#> [5] "590 uL of MK reagent mix which included NADH, mevalonate, ATP, phosphoenolpyruvate, MgCl2, KCl, pyruvate kinase, and lactate dehydrogenase in buffer was added to each UV-VIS semimicro cuvet. Compounds were then added to the cuvets in 10 uL volumes in DMSO. The reaction was initiated with the addition of 400 uL of MK, diluted in assay buffer. The final concentrations in the reaction were 0.4 mM NADH, 0.2 mM melalonate, 6 mM MgCl2, 50 mM KCl, 5 mM ATP, 2 mM potassium phosphoenolpyruvate, 3 units/mL each of rabbit muscle pyruvate kinase and rabbit muscle lactate dehydrogenase, 1% DMSO, and 60 nM Mevalonate Kinase (MK) diluted in 50 mM HEPES buffer (pH 7.8) in a final volume of 1000 uL. The cuvets were immediately transferred to a CARY 3E UV-Visible Spectrophotometer and absorbance was measured at 340 nm for 3 minutes.  Each compound was tested in triplicate for the initial 100 uM screen and for the dose response assays each concentration was in triplicate.  Full reaction controls were assays with 10 uL of DMSO added instead of compound.  Background controls were assays in which 400 uL of assay buffer was added instead of MK.  "
#> [6] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
#> [7] "The 'coupling enzyme' assays were performed as above by replacing MK with hexokinase and mevalonate with glucose."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
#> 
#> $AssaySummaries$AssaySummary[[1]]$Comment
#> [1] "Percent inhibition in the single dose assay was determined by comparing the reaction rates of the compounds to that of the rate for the full reaction after subtracting the background rate using the following equation: "                                  
#> [2] ""                                                                                                                                                                                                                                                            
#> [3] "% Inhib = 100*(1-((cmpd rate-bkgrd rate)/ (full rx rate-bkgrd rate))) "                                                                                                                                                                                      
#> [4] ""                                                                                                                                                                                                                                                            
#> [5] "Dose response curves were analyzed using the four parameter logistic formula in SigmaPlot Enzyme Kinetics software."                                                                                                                                         
#> [6] " "                                                                                                                                                                                                                                                           
#> [7] "In this confirmatory dose response screen active compounds were scored on a scale of 41-80 using an inverted linear correlation to EC50s between 0 and 40 uM. Compounds that did not confirm as actives in the dose response screen were given the score 0. "
#> 
#> $AssaySummaries$AssaySummary[[1]]$NumberOfTIDs
#> [1] 27
#> 
#> $AssaySummaries$AssaySummary[[1]]$HasScore
#> [1] TRUE
#> 
#> $AssaySummaries$AssaySummary[[1]]$Method
#> [1] "confirmatory"
#> 
#> $AssaySummaries$AssaySummary[[1]]$Target
#> $AssaySummaries$AssaySummary[[1]]$Target[[1]]
#>           Accession                Name 
#>         "YP_815859" "mevalonate kinase" 
#> 
#> 
#> $AssaySummaries$AssaySummary[[1]]$Version
#> [1] 1
#> 
#> $AssaySummaries$AssaySummary[[1]]$Revision
#> [1] 2
#> 
#> $AssaySummaries$AssaySummary[[1]]$LastDataChange
#>  Year Month   Day 
#>  2008     3     5 
#> 
#> $AssaySummaries$AssaySummary[[1]]$SIDCountAll
#> [1] 57
#> 
#> $AssaySummaries$AssaySummary[[1]]$SIDCountActive
#> [1] 36
#> 
#> $AssaySummaries$AssaySummary[[1]]$SIDCountInactive
#> [1] 21
#> 
#> $AssaySummaries$AssaySummary[[1]]$SIDCountInconclusive
#> [1] 0
#> 
#> $AssaySummaries$AssaySummary[[1]]$SIDCountUnspecified
#> [1] 0
#> 
#> $AssaySummaries$AssaySummary[[1]]$SIDCountProbe
#> [1] 0
#> 
#> $AssaySummaries$AssaySummary[[1]]$CIDCountAll
#> [1] 57
#> 
#> $AssaySummaries$AssaySummary[[1]]$CIDCountActive
#> [1] 36
#> 
#> $AssaySummaries$AssaySummary[[1]]$CIDCountInactive
#> [1] 21
#> 
#> $AssaySummaries$AssaySummary[[1]]$CIDCountInconclusive
#> [1] 0
#> 
#> $AssaySummaries$AssaySummary[[1]]$CIDCountUnspecified
#> [1] 0
#> 
#> $AssaySummaries$AssaySummary[[1]]$CIDCountProbe
#> [1] 0

2. Assay Data: To retrieve the entire data set of an assay in CSV format:

result <- get_pug_rest(identifier = "504526", namespace = "aid", domain = "assay", output = "CSV")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Assay
#>   - Namespace: AID
#>   - Operation: <NULL>
#>   - Identifier: 504526
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#>                PUBCHEM_RESULT_TAG PUBCHEM_SID PUBCHEM_CID
#> 1                     RESULT_TYPE          NA          NA
#> 2                    RESULT_DESCR          NA          NA
#> 3                     RESULT_UNIT          NA          NA
#> 4  RESULT_IS_ACTIVE_CONCENTRATION          NA          NA
#> 5       RESULT_ATTR_CONC_MICROMOL          NA          NA
#> 6                               1   103061373     6619281
#> 7                               2   103904139     2971528
#> 8                               3   109967230    50897767
#> 9                               4   109967232    50897761
#> 10                              5   109967235    50897759
#> 11                              6   104222572    22429344
#> 12                              7   104169543    49842897
#> 13                              8   104169547     6619281
#> 14                              9   104169544    49842896
#> 15                             10   104169548    49842898
#> 16                             11   103904144     4969604
#> 17                             12   109967231    50897764
#> 18                             13   109967233    50897765
#> 19                             14   109967234    50897766
#> 20                             15   109967236    50897760
#> 21                             16   109967237    50897763
#> 22                             17   109967238    50897762
#> 23                             18   109967239    50897768
#> 24                             19   104222567    49852456
#> 25                             20   104222568    49852454
#> 26                             21   104222569    22429370
#> 27                             22   104222570    15996204
#> 28                             23   104222571    49852455
#> 29                             24   104169545     1077725
#> 30                             25   104169546     5308867
#>                                              PUBCHEM_EXT_DATASOURCE_SMILES
#> 1                                                                         
#> 2                                                                         
#> 3                                                                         
#> 4                                                                         
#> 5                                                                         
#> 6                 COC1=CC=CC=C1CNC(=O)C2CCN(CC2)S(=O)(=O)C3=CC=CC4=NON=C43
#> 7           C1CC2=CC=CC=C2N(C1)S(=O)(=O)C3=CC=C(C=C3)NC(=O)C4CC=CCC4C(=O)O
#> 8         CC1=CC=C(C=C1)CN2C3=CC=CC=C3C(=O)N(C2=O)CC4=CC=C(C=C4)C(=O)NCCOC
#> 9         CC1=C(C=C(C=C1)Cl)NC(=O)[C@@H]2CCCN2S(=O)(=O)C3=CC=CC4=C3N=CC=C4
#> 10        CC1=C(C=C(C=C1)OC)NC(=O)[C@@H]2CCCN2S(=O)(=O)C3=CC=CC4=C3N=CC=C4
#> 11                C1CN(CCC1C(=O)NCC2=CC=CC=C2Cl)S(=O)(=O)C3=CC=CC4=NON=C43
#> 12         CC1=CC(=C(C=C1)C)NC(=O)[C@@H]2CCCN2S(=O)(=O)C3=CC=CC4=C3N=CC=C4
#> 13                COC1=CC=CC=C1CNC(=O)C2CCN(CC2)S(=O)(=O)C3=CC=CC4=NON=C43
#> 14         CC1=C(C(=CC=C1)C)NC(=O)[C@@H]2CCCN2S(=O)(=O)C3=CC=CC4=C3N=CC=C4
#> 15            COC1=CC=CC=C1CNC(=O)[C@@H]2CCCN2S(=O)(=O)C3=CC=CC4=C3N=CC=C4
#> 16           COC1=CC=CC=C1NCC(=O)NC2=C(C=CC(=C2)S(=O)(=O)N3CCOCC3)N4CCOCC4
#> 17 CC1=CC=C(C=C1)CN2C3=C(C=CC(=C3)Cl)C(=O)N(C2=O)CC4=CC=C(C=C4)C(=O)NCCCOC
#> 18     CC1=C(C=C(C=C1)C(C)C)NC(=O)[C@@H]2CCCN2S(=O)(=O)C3=CC=CC4=C3N=CC=C4
#> 19        CC1=CC(=C(C=C1)OC)NC(=O)[C@@H]2CCCN2S(=O)(=O)C3=CC=CC4=C3N=CC=C4
#> 20        CC1=CC(=C(C=C1)Cl)NC(=O)[C@@H]2CCCN2S(=O)(=O)C3=CC=CC4=C3N=CC=C4
#> 21  CC1=C(C=C(C=C1)C(F)(F)F)NC(=O)[C@@H]2CCCN2S(=O)(=O)C3=CC=CC4=C3N=CC=C4
#> 22  CC1=C(C=C(C=C1)C(C)(C)C)NC(=O)[C@@H]2CCCN2S(=O)(=O)C3=CC=CC4=C3N=CC=C4
#> 23          COCCCNC(=O)C1=CC=C(C=C1)CN2C(=O)C3=CC=CC=C3N(C2=O)CC4=CC=CC=C4
#> 24                COC1=CC=CC=C1CNC(=O)C2CCN(CC2)S(=O)(=O)C3=CC=CC4=C3N=CS4
#> 25                        COC1=CC=CC=C1CNC(=O)C2CCN(CC2)CC3=CC=CC4=NON=C43
#> 26              COC1=CC=CC(=C1)CNC(=O)C2CCN(CC2)S(=O)(=O)C3=CC=CC4=NON=C43
#> 27              COC1=CC=C(C=C1)CNC(=O)C2CCN(CC2)S(=O)(=O)C3=CC=CC4=NON=C43
#> 28                 CC1=CC=CC=C1CNC(=O)C2CCN(CC2)S(=O)(=O)C3=CC=CC4=NON=C43
#> 29                      COC1=CC=CC=C1CNC(=O)C2CCN(CC2)S(=O)(=O)C3=CC=CC=C3
#> 30              COC1=CC=CC=C1CNC(=O)C2CCN(CC2)S(=O)(=O)C3=CC=CC4=C3N=CC=C4
#>    PUBCHEM_ACTIVITY_OUTCOME PUBCHEM_ACTIVITY_SCORE PUBCHEM_ACTIVITY_URL
#> 1                                               NA                   NA
#> 2                                               NA                   NA
#> 3                                               NA                   NA
#> 4                                               NA                   NA
#> 5                                               NA                   NA
#> 6                    Active                     99                   NA
#> 7                    Active                     88                   NA
#> 8                    Active                     99                   NA
#> 9                    Active                    100                   NA
#> 10                   Active                     99                   NA
#> 11                   Active                     98                   NA
#> 12                   Active                     98                   NA
#> 13                   Active                     99                   NA
#> 14                   Active                     87                   NA
#> 15                   Active                     93                   NA
#> 16                 Inactive                     81                   NA
#> 17                 Inactive                     81                   NA
#> 18                 Inactive                     81                   NA
#> 19                 Inactive                     81                   NA
#> 20                 Inactive                     81                   NA
#> 21                 Inactive                     81                   NA
#> 22                 Inactive                     81                   NA
#> 23                 Inactive                     81                   NA
#> 24                 Inactive                     81                   NA
#> 25                 Inactive                     81                   NA
#> 26                 Inactive                     81                   NA
#> 27                 Inactive                     81                   NA
#> 28                 Inactive                     81                   NA
#> 29                 Inactive                     81                   NA
#> 30                 Inactive                     81                   NA
#>    PUBCHEM_ASSAYDATA_COMMENT IC50.Modifier       IC50
#> 1                         NA        STRING      FLOAT
#> 2                         NA                         
#> 3                         NA          NONE MICROMOLAR
#> 4                         NA                     TRUE
#> 5                         NA                         
#> 6                         NA                      3.6
#> 7                         NA                     31.4
#> 8                         NA                     2.32
#> 9                         NA                     0.22
#> 10                        NA                     3.51
#> 11                        NA                      6.9
#> 12                        NA                      5.1
#> 13                        NA                      4.7
#> 14                        NA                     34.6
#> 15                        NA                     18.8
#> 16                        NA             >         50
#> 17                        NA             >         50
#> 18                        NA             >         50
#> 19                        NA             >         50
#> 20                        NA             >         50
#> 21                        NA             >         50
#> 22                        NA             >         50
#> 23                        NA             >         50
#> 24                        NA             >         50
#> 25                        NA             >         50
#> 26                        NA             >         50
#> 27                        NA             >         50
#> 28                        NA             >         50
#> 29                        NA             >         50
#> 30                        NA             >         50
#>                            X..CPE.Inhibition...50.uM
#> 1                                              FLOAT
#> 2  Inhibition of cytopathic effect of virus at 50 uM
#> 3                                            PERCENT
#> 4                                                   
#> 5                                                 50
#> 6                                              78.38
#> 7                                              47.67
#> 8                                             107.05
#> 9                                               7.51
#> 10                                             88.79
#> 11                                             78.03
#> 12                                             43.94
#> 13                                             85.88
#> 14                                             59.74
#> 15                                             72.51
#> 16                                              0.42
#> 17                                              2.59
#> 18                                             30.79
#> 19                                               9.1
#> 20                                               3.2
#> 21                                             12.15
#> 22                                              2.49
#> 23                                               2.1
#> 24                                              0.59
#> 25                                              0.58
#> 26                                              0.96
#> 27                                              1.83
#> 28                                                 2
#> 29                                              0.55
#> 30                                              0.51
#>                            X..CPE.Inhibition...25.uM
#> 1                                              FLOAT
#> 2  Inhibition of cytopathic effect of virus at 25 uM
#> 3                                            PERCENT
#> 4                                                   
#> 5                                                 25
#> 6                                               97.5
#> 7                                              68.41
#> 8                                              90.78
#> 9                                               9.47
#> 10                                             90.14
#> 11                                             86.65
#> 12                                             91.27
#> 13                                             92.21
#> 14                                             42.48
#> 15                                             61.24
#> 16                                              0.56
#> 17                                              2.63
#> 18                                             21.08
#> 19                                              11.2
#> 20                                              6.08
#> 21                                              3.83
#> 22                                              4.66
#> 23                                              2.52
#> 24                                              0.77
#> 25                                              0.54
#> 26                                              0.98
#> 27                                               1.5
#> 28                                              2.18
#> 29                                              0.69
#> 30                                              0.51
#>                             X..CPE.Inhibition...12.5.uM
#> 1                                                 FLOAT
#> 2  Inhibition of cytopathic effect of virus at 12.50 uM
#> 3                                               PERCENT
#> 4                                                      
#> 5                                                  12.5
#> 6                                                 94.84
#> 7                                                 16.83
#> 8                                                 87.53
#> 9                                                  60.4
#> 10                                                77.74
#> 11                                                83.45
#> 12                                                82.68
#> 13                                                91.99
#> 14                                                21.56
#> 15                                                40.57
#> 16                                                 0.62
#> 17                                                 2.32
#> 18                                                27.55
#> 19                                                10.88
#> 20                                                34.16
#> 21                                                 8.53
#> 22                                                 4.19
#> 23                                                 1.87
#> 24                                                 0.76
#> 25                                                 0.53
#> 26                                                 0.94
#> 27                                                 1.11
#> 28                                                 1.73
#> 29                                                 0.74
#> 30                                                 0.52
#>                            X..CPE.Inhibition...6.25.uM
#> 1                                                FLOAT
#> 2  Inhibition of cytopathic effect of virus at 6.25 uM
#> 3                                              PERCENT
#> 4                                                     
#> 5                                                 6.25
#> 6                                                95.43
#> 7                                                 2.14
#> 8                                               101.19
#> 9                                                79.75
#> 10                                               66.47
#> 11                                               47.02
#> 12                                               66.81
#> 13                                               78.58
#> 14                                                8.54
#> 15                                                  19
#> 16                                                0.43
#> 17                                                2.49
#> 18                                               17.89
#> 19                                                7.76
#> 20                                               17.15
#> 21                                                39.9
#> 22                                                3.38
#> 23                                                1.93
#> 24                                                0.94
#> 25                                                0.49
#> 26                                                0.89
#> 27                                                0.77
#> 28                                                1.56
#> 29                                                0.88
#> 30                                                0.43
#>                            X..CPE.Inhibition...3.125.uM
#> 1                                                 FLOAT
#> 2  Inhibition of cytopathic effect of virus at 3.125 uM
#> 3                                               PERCENT
#> 4                                                      
#> 5                                                 3.125
#> 6                                                 35.06
#> 7                                                  1.07
#> 8                                                 80.54
#> 9                                                 72.51
#> 10                                                48.34
#> 11                                                 12.2
#> 12                                                39.43
#> 13                                                14.87
#> 14                                                 4.49
#> 15                                                 8.08
#> 16                                                 0.51
#> 17                                                 1.96
#> 18                                                 6.44
#> 19                                                 4.61
#> 20                                                 8.56
#> 21                                                30.03
#> 22                                                 2.38
#> 23                                                 1.62
#> 24                                                 0.79
#> 25                                                  0.5
#> 26                                                 1.09
#> 27                                                 0.64
#> 28                                                 1.19
#> 29                                                 0.95
#> 30                                                 0.58
#>                            X..CPE.Inhibition...1.563.uM
#> 1                                                 FLOAT
#> 2  Inhibition of cytopathic effect of virus at 1.563 uM
#> 3                                               PERCENT
#> 4                                                      
#> 5                                                 1.563
#> 6                                                  3.21
#> 7                                                  0.93
#> 8                                                 15.81
#> 9                                                 59.35
#> 10                                                 32.2
#> 11                                                 2.23
#> 12                                                18.27
#> 13                                                 2.15
#> 14                                                 2.69
#> 15                                                 3.66
#> 16                                                 0.38
#> 17                                                  1.8
#> 18                                                 3.41
#> 19                                                 3.29
#> 20                                                 4.66
#> 21                                                14.27
#> 22                                                  1.7
#> 23                                                 1.42
#> 24                                                  0.8
#> 25                                                 0.39
#> 26                                                 0.98
#> 27                                                 0.51
#> 28                                                 0.93
#> 29                                                 0.78
#> 30                                                 0.46
#>                            X..CPE.Inhibition...0.781.uM
#> 1                                                 FLOAT
#> 2  Inhibition of cytopathic effect of virus at 0.781 uM
#> 3                                               PERCENT
#> 4                                                      
#> 5                                                 0.781
#> 6                                                  1.08
#> 7                                                  0.84
#> 8                                                  4.66
#> 9                                                 35.87
#> 10                                                15.81
#> 11                                                 0.77
#> 12                                                 6.99
#> 13                                                 0.79
#> 14                                                 1.51
#> 15                                                 1.59
#> 16                                                 0.44
#> 17                                                 1.19
#> 18                                                 2.54
#> 19                                                 2.06
#> 20                                                 3.13
#> 21                                                 5.48
#> 22                                                 1.37
#> 23                                                 1.31
#> 24                                                 0.77
#> 25                                                 0.36
#> 26                                                 0.89
#> 27                                                 0.48
#> 28                                                  0.8
#> 29                                                 0.75
#> 30                                                 0.62
#>                            X..CPE.Inhibition...0.391.uM
#> 1                                                 FLOAT
#> 2  Inhibition of cytopathic effect of virus at 0.391 uM
#> 3                                               PERCENT
#> 4                                                      
#> 5                                                 0.391
#> 6                                                   0.7
#> 7                                                  0.74
#> 8                                                  2.32
#> 9                                                 13.62
#> 10                                                 5.72
#> 11                                                 0.65
#> 12                                                 4.01
#> 13                                                 0.54
#> 14                                                 0.94
#> 15                                                 1.04
#> 16                                                 0.45
#> 17                                                 1.06
#> 18                                                 1.48
#> 19                                                 1.52
#> 20                                                 1.93
#> 21                                                 3.58
#> 22                                                 1.06
#> 23                                                 1.27
#> 24                                                 0.73
#> 25                                                 0.53
#> 26                                                 0.71
#> 27                                                 0.57
#> 28                                                 0.74
#> 29                                                  0.7
#> 30                                                 0.51

For a subset of data rows, specify the SIDs:

result <- get_pug_rest(identifier = "504526", namespace = "aid", domain = "assay", operation = "JSON?sid=104169547,109967232", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Assay
#>   - Namespace: AID
#>   - Operation: JSON?sid=104169547,109967232
#>   - Identifier: 504526
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
result <- pubChemData(result)
result$PC_AssaySubmit$assay
#> $descr
#> $descr$aid
#>      id version 
#>  504526       1 
#> 
#> $descr$aid_source
#> $descr$aid_source$db
#> $descr$aid_source$db$name
#> [1] "Southern Research Specialized Biocontainment Screening Center"
#> 
#> $descr$aid_source$db$source_id
#>       str 
#> "RSV_DR6" 
#> 
#> $descr$aid_source$db$date
#> $descr$aid_source$db$date$std
#>  year month   day 
#>  2012     3    18 
#> 
#> 
#> 
#> 
#> $descr$name
#> [1] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> 
#> $descr$description
#> [1] "Southern Research's Specialized Biocontainment Screening Center (SRSBSC)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
#> [2] "Southern Research Institute (Birmingham, Alabama)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
#> [3] "NIH Molecular Libraries Probe Centers Network (MLPCN)"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
#> [4] "Assay Provider: Dr. William Severson, Southern Research Institute "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
#> [5] "Grant number:  1 R03 MH082403-01A1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
#> [6] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
#> [7] "Assay Rationale and Summary:  Currently, there are no commercially available vaccines to protect humans against Respiratory syncytial virus (RSV). RSV is associated with substantial morbidity and mortality and is the most common cause of bronchiolitis and pneumonia among infants and children under one year of age.  Nevertheless, severe lower respiratory tract disease may occur at any age, especially among the elderly or among those with compromised cardiac, pulmonary, or immune systems. The existing therapies for the acute infection are ribavirin and the prophylactic humanized monoclonal antibody (Synagis from MedImmune) that is limited to use in high risk pediatric patients.  The economic impact of RSV infections due to hospitalizations and indirect medical costs is greater than $ 650 million annually.  The assay provider has developed and validated an HTS assay that measures cytopathic effect (CPE) induced in HEp-2 cells by RSV infection, using a luminescent-based detection system for signal endpoint.  We anticipate that the proposed studies utilizing the Molecular Libraries Probes Production Network (MLPCN) HTS resources will generate multiple scaffolds targeting various junctures in the RSV viral lifecycle.  These may be furthered developed into probes to construct novel single or combination therapeutics.  "
#> 
#> $descr$protocol
#>  [1] "Cell Culture: HEp-2 cells (ATCC CCL-23, American Tissue Culture Type) were maintained as adherent cell lines in Optimem 1 with 2 mM L-glutamine and 10% fetal bovine serum (FBS) at 37oC in a humidified 5% CO2 atmosphere. Cells were passaged as needed and harvested from flasks using 0.05% trypsin-EDTA. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
#>  [2] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
#>  [3] "Assay Media - Preparation of Complete DMEM/F12: 50 mL Pen/Strep/Glutamine (Gibco, Cat. No. 10378) was added to four liters of room temperature DMEM/F12 (Sigma, Cat. No. D6434) and the pH adjusted to 7.5 using 1N NaOH. The medium was sterile filtered through a 0.2 um filter and 10 mL of HI-FBS was added per 500 mL of media."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
#>  [4] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
#>  [5] "RSV culture: Human respiratory syncytial virus (HRSV) strain Long (ATCC VR-26) was used for screening. The RSV stock was prepared in HEp-2 cells using an initial stock obtained from ATCC. Briefly, HEp-2 cells were grown in two T-175 flasks to 50% confluence in Dulbecco's Modified Eagle Medium: Nutrient Mixture F-12 (CDMEM/F12), pH 7.5 with 2.5 mM L-glutamine, 2% FBS and 125 U of penicillin, 125 ug of streptomycin per ml. 0.2 ml of RSV was added to 25 ml of CDMEM/F12. After three days incubation at 37 degrees C, 5% C02 and high humidity, the supernatant was harvested and the cell debris pelleted by centrifuging at 1,000 rpm for 5 minutes at 18 degrees C. Trehalose and FBS were added to a final concentration of 10% each and the supernatant was aliquoted (1 ml per tube) fast freeze using 100% Ethanol dry ice for five minutes and stored at -80 degrees C. These virus stocks were titrated in HEp-2 cells using an agarose overlay plaque method and the titer was 6.0E+07 pfu/ml. "
#>  [6] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
#>  [7] "Dose Response Compound Preparation: For dose response screening, compounds or carrier control (DMSO) were diluted to 6x in Complete DMEM/F12. Test compounds were serially diluted 1:2 resulting in an 8 point dose response dilution series. (final plate well concentration ranging from 50 uM to 0.39 uM and a final DMSO concentration of 0.5%). Twenty ul of each dilution was dispensed to assay plates (3% DMSO) in triplicate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
#>  [8] "Control Drug: The positive control drug for this assay, ribavirin [1] (No. 196066, MP Biomedicals, Solon, OH) was solubilized in DMSO. It was diluted and added to the assay plates as described for test compounds. Final concentration for ribavirin was 100uM. All wells contained 0.5% DMSO."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
#>  [9] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
#> [10] "Preparation of HEp-2 cells: Cells were harvested and resuspended to 178,000 cells per ml in Complete DMEM/F12."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
#> [11] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
#> [12] "Assay Set up: Sixty ul of HEp-2 cells (10,595 cells/well) forty ul of media and 20 ul of 3% DMSO were plated in the cell control wells. Sixty ul of HEp-2 cells (10,595 cells/well), forty ul of a 1:500 dilution of virus (viral MOI = 0.45) and 20 ul of compound or ribavirin control drug were added to the virus control and compound wells. All cell plating was conducted using a Matrix WellMate and cells were maintained at room temperature with stirring during the plating process. The assay plates were incubated for six days at 37 degrees C, 5% CO2 and 90% relative humidity. "                                                                                                                                                                                                                                                                                                                                                                                                                       
#> [13] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
#> [14] "Data Analysis: Eight control wells containing cells only and four wells containing cells and virus were included on each assay plate and used to calculate Z' value for each plate and to normalize the data on a per plate basis.  Results are reported as percent (%) CPE inhibition and were calculated using the following formula: % CPE inhibition = 100*(Test Cmpd - Med Virus)/(Med Cells - Med Virus).  Four ribavirin positive control wells were included on each plate for quality control purposes. To quantify the viral cytopathic effect, IC50s were calculated for each substance using the 4 parameter Levenburg-Marquardt algorithm with the minimum and  maximum parameters locked at 0 and 100, respectively. "                                                                                                                                                                                                                                                                                     
#> 
#> $descr$comment
#> [1] "Possible artifacts in this assay include, but are not limited to, compounds that interfere with the luciferase reaction, absorb luminescence, or precipitate."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
#> [2] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
#> [3] "Compounds that demonstrated at least 50% inhibition and were considered active. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
#> [4] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
#> [5] "The following tiered system has been implemented at Southern Research Institute for use with the PubChem Score. Compounds in the primary screen are scored on a scale of 0-40 based on inhibitory activity where a score of 40 corresponds to 100% inhibition. In the initial confirmatory dose response screen, active compounds were scored on a scale of 41-80 based on the IC50 result while compounds that did not confirm as actives were given the score of 0. In assays using purified and synthesized compounds a scale of 81-100 based on the IC50 result is used to denote a high level of confidence in both the substance and the data. Compounds that did not confirm activity were given the score of 0."
#> 
#> $descr$xref
#> $descr$xref[[1]]
#> $descr$xref[[1]]$xref
#>  aid 
#> 2391 
#> 
#> $descr$xref[[1]]$comment
#> [1] "Primary and confirmatory screen."
#> 
#> 
#> $descr$xref[[2]]
#> $descr$xref[[2]]$xref
#>  aid 
#> 2410 
#> 
#> $descr$xref[[2]]$comment
#> [1] "Cytotoxicity of primary screen hits."
#> 
#> 
#> $descr$xref[[3]]
#> $descr$xref[[3]]$xref
#>    aid 
#> 449732 
#> 
#> $descr$xref[[3]]$comment
#> [1] "TCID50 on selected compounds."
#> 
#> 
#> $descr$xref[[4]]
#> $descr$xref[[4]]$xref
#>    aid 
#> 488972 
#> 
#> $descr$xref[[4]]$comment
#> [1] "Confirmatory screen (2) on purified and synthesized compounds."
#> 
#> 
#> $descr$xref[[5]]
#> $descr$xref[[5]]$xref
#>    aid 
#> 488976 
#> 
#> $descr$xref[[5]]$comment
#> [1] "Cytotoxicity screen (2) on purified and synthesized compounds."
#> 
#> 
#> $descr$xref[[6]]
#> $descr$xref[[6]]$xref
#>  aid 
#> 2440 
#> 
#> $descr$xref[[6]]$comment
#> [1] "Summary AID."
#> 
#> 
#> $descr$xref[[7]]
#> $descr$xref[[7]]$xref
#>    aid 
#> 492966 
#> 
#> $descr$xref[[7]]$comment
#> [1] "Confirmatory screen (3) on purified and synthesized compounds."
#> 
#> 
#> $descr$xref[[8]]
#> $descr$xref[[8]]$xref
#>    aid 
#> 492968 
#> 
#> $descr$xref[[8]]$comment
#> [1] "Cytotoxicity screen (3) on purified and synthesized compounds."
#> 
#> 
#> $descr$xref[[9]]
#> $descr$xref[[9]]$xref
#>    aid 
#> 493016 
#> 
#> $descr$xref[[9]]$comment
#> [1] "Confirmatory screen (4) on purified and synthesized compounds."
#> 
#> 
#> $descr$xref[[10]]
#> $descr$xref[[10]]$xref
#>    aid 
#> 493015 
#> 
#> $descr$xref[[10]]$comment
#> [1] "Cytotoxicity screen (4) on purified and synthesized compounds."
#> 
#> 
#> $descr$xref[[11]]
#> $descr$xref[[11]]$xref
#>    aid 
#> 493088 
#> 
#> $descr$xref[[11]]$comment
#> [1] "Confirmatory screen (5) on purified and synthesized compounds."
#> 
#> 
#> $descr$xref[[12]]
#> $descr$xref[[12]]$xref
#>    aid 
#> 493090 
#> 
#> $descr$xref[[12]]$comment
#> [1] "Cytotoxicity screen (5) on purified and synthesized compounds."
#> 
#> 
#> $descr$xref[[13]]
#> $descr$xref[[13]]$xref
#> taxonomy 
#>    12814 
#> 
#> 
#> 
#> $descr$results
#> $descr$results[[1]]
#> $descr$results[[1]]$tid
#> [1] 1
#> 
#> $descr$results[[1]]$name
#> [1] "IC50 Modifier"
#> 
#> $descr$results[[1]]$type
#> [1] 4
#> 
#> $descr$results[[1]]$unit
#> [1] 254
#> 
#> 
#> $descr$results[[2]]
#> $descr$results[[2]]$tid
#> [1] 2
#> 
#> $descr$results[[2]]$name
#> [1] "IC50"
#> 
#> $descr$results[[2]]$type
#> [1] 1
#> 
#> $descr$results[[2]]$unit
#> [1] 5
#> 
#> $descr$results[[2]]$ac
#> [1] TRUE
#> 
#> 
#> $descr$results[[3]]
#> $descr$results[[3]]$tid
#> [1] 3
#> 
#> $descr$results[[3]]$name
#> [1] "% CPE Inhibition @ 50 uM"
#> 
#> $descr$results[[3]]$description
#> [1] "Inhibition of cytopathic effect of virus at 50 uM"
#> 
#> $descr$results[[3]]$type
#> [1] 1
#> 
#> $descr$results[[3]]$unit
#> [1] 15
#> 
#> $descr$results[[3]]$tc
#> concentration          unit         dr_id 
#>            50             5             1 
#> 
#> 
#> $descr$results[[4]]
#> $descr$results[[4]]$tid
#> [1] 4
#> 
#> $descr$results[[4]]$name
#> [1] "% CPE Inhibition @ 25 uM"
#> 
#> $descr$results[[4]]$description
#> [1] "Inhibition of cytopathic effect of virus at 25 uM"
#> 
#> $descr$results[[4]]$type
#> [1] 1
#> 
#> $descr$results[[4]]$unit
#> [1] 15
#> 
#> $descr$results[[4]]$tc
#> concentration          unit         dr_id 
#>            25             5             1 
#> 
#> 
#> $descr$results[[5]]
#> $descr$results[[5]]$tid
#> [1] 5
#> 
#> $descr$results[[5]]$name
#> [1] "% CPE Inhibition @ 12.5 uM"
#> 
#> $descr$results[[5]]$description
#> [1] "Inhibition of cytopathic effect of virus at 12.50 uM"
#> 
#> $descr$results[[5]]$type
#> [1] 1
#> 
#> $descr$results[[5]]$unit
#> [1] 15
#> 
#> $descr$results[[5]]$tc
#> concentration          unit         dr_id 
#>          12.5           5.0           1.0 
#> 
#> 
#> $descr$results[[6]]
#> $descr$results[[6]]$tid
#> [1] 6
#> 
#> $descr$results[[6]]$name
#> [1] "% CPE Inhibition @ 6.25 uM"
#> 
#> $descr$results[[6]]$description
#> [1] "Inhibition of cytopathic effect of virus at 6.25 uM"
#> 
#> $descr$results[[6]]$type
#> [1] 1
#> 
#> $descr$results[[6]]$unit
#> [1] 15
#> 
#> $descr$results[[6]]$tc
#> concentration          unit         dr_id 
#>          6.25          5.00          1.00 
#> 
#> 
#> $descr$results[[7]]
#> $descr$results[[7]]$tid
#> [1] 7
#> 
#> $descr$results[[7]]$name
#> [1] "% CPE Inhibition @ 3.125 uM"
#> 
#> $descr$results[[7]]$description
#> [1] "Inhibition of cytopathic effect of virus at 3.125 uM"
#> 
#> $descr$results[[7]]$type
#> [1] 1
#> 
#> $descr$results[[7]]$unit
#> [1] 15
#> 
#> $descr$results[[7]]$tc
#> concentration          unit         dr_id 
#>         3.125         5.000         1.000 
#> 
#> 
#> $descr$results[[8]]
#> $descr$results[[8]]$tid
#> [1] 8
#> 
#> $descr$results[[8]]$name
#> [1] "% CPE Inhibition @ 1.563 uM"
#> 
#> $descr$results[[8]]$description
#> [1] "Inhibition of cytopathic effect of virus at 1.563 uM"
#> 
#> $descr$results[[8]]$type
#> [1] 1
#> 
#> $descr$results[[8]]$unit
#> [1] 15
#> 
#> $descr$results[[8]]$tc
#> concentration          unit         dr_id 
#>         1.563         5.000         1.000 
#> 
#> 
#> $descr$results[[9]]
#> $descr$results[[9]]$tid
#> [1] 9
#> 
#> $descr$results[[9]]$name
#> [1] "% CPE Inhibition @ 0.781 uM"
#> 
#> $descr$results[[9]]$description
#> [1] "Inhibition of cytopathic effect of virus at 0.781 uM"
#> 
#> $descr$results[[9]]$type
#> [1] 1
#> 
#> $descr$results[[9]]$unit
#> [1] 15
#> 
#> $descr$results[[9]]$tc
#> concentration          unit         dr_id 
#>         0.781         5.000         1.000 
#> 
#> 
#> $descr$results[[10]]
#> $descr$results[[10]]$tid
#> [1] 10
#> 
#> $descr$results[[10]]$name
#> [1] "% CPE Inhibition @ 0.391 uM"
#> 
#> $descr$results[[10]]$description
#> [1] "Inhibition of cytopathic effect of virus at 0.391 uM"
#> 
#> $descr$results[[10]]$type
#> [1] 1
#> 
#> $descr$results[[10]]$unit
#> [1] 15
#> 
#> $descr$results[[10]]$tc
#> concentration          unit         dr_id 
#>         0.391         5.000         1.000 
#> 
#> 
#> 
#> $descr$revision
#> [1] 1
#> 
#> $descr$activity_outcome_method
#> [1] 2
#> 
#> $descr$dr
#> $descr$dr[[1]]
#> $descr$dr[[1]]$id
#> [1] 1
#> 
#> $descr$dr[[1]]$descr
#> [1] "CR Plot Labels 1"
#> 
#> $descr$dr[[1]]$dn
#> [1] "Concentration"
#> 
#> $descr$dr[[1]]$rn
#> [1] "Response"
#> 
#> 
#> 
#> $descr$grant_number
#> [1] "1R03 MH084847-01"
#> 
#> $descr$project_category
#> [1] 2

For concise data (e.g., active concentration readout) with additional information:

result <- get_pug_rest(identifier = "504526", namespace = "aid", domain = "assay", operation = "concise", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Assay
#>   - Namespace: AID
#>   - Operation: concise
#>   - Identifier: 504526
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $Table
#> $Table$Columns
#> $Table$Columns$Column
#>  [1] "AID"                 "SID"                 "CID"                
#>  [4] "Activity Outcome"    "Target Accession"    "Target GeneID"      
#>  [7] "Activity Value [uM]" "Activity Name"       "Assay Name"         
#> [10] "Assay Type"          "PubMed ID"           "RNAi"               
#> 
#> 
#> $Table$Row
#> $Table$Row[[1]]
#> $Table$Row[[1]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "103061373"                                                                                                                         
#>  [3] "6619281"                                                                                                                           
#>  [4] "Active"                                                                                                                            
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "3.6"                                                                                                                               
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[2]]
#> $Table$Row[[2]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "103904139"                                                                                                                         
#>  [3] "2971528"                                                                                                                           
#>  [4] "Active"                                                                                                                            
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "31.4"                                                                                                                              
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[3]]
#> $Table$Row[[3]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "103904144"                                                                                                                         
#>  [3] "4969604"                                                                                                                           
#>  [4] "Inactive"                                                                                                                          
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "50"                                                                                                                                
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[4]]
#> $Table$Row[[4]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "104169543"                                                                                                                         
#>  [3] "49842897"                                                                                                                          
#>  [4] "Active"                                                                                                                            
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "5.1"                                                                                                                               
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[5]]
#> $Table$Row[[5]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "104169544"                                                                                                                         
#>  [3] "49842896"                                                                                                                          
#>  [4] "Active"                                                                                                                            
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "34.6"                                                                                                                              
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[6]]
#> $Table$Row[[6]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "104169545"                                                                                                                         
#>  [3] "1077725"                                                                                                                           
#>  [4] "Inactive"                                                                                                                          
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "50"                                                                                                                                
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[7]]
#> $Table$Row[[7]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "104169546"                                                                                                                         
#>  [3] "5308867"                                                                                                                           
#>  [4] "Inactive"                                                                                                                          
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "50"                                                                                                                                
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[8]]
#> $Table$Row[[8]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "104169547"                                                                                                                         
#>  [3] "6619281"                                                                                                                           
#>  [4] "Active"                                                                                                                            
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "4.7"                                                                                                                               
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[9]]
#> $Table$Row[[9]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "104169548"                                                                                                                         
#>  [3] "49842898"                                                                                                                          
#>  [4] "Active"                                                                                                                            
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "18.8"                                                                                                                              
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[10]]
#> $Table$Row[[10]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "104222567"                                                                                                                         
#>  [3] "49852456"                                                                                                                          
#>  [4] "Inactive"                                                                                                                          
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "50"                                                                                                                                
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[11]]
#> $Table$Row[[11]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "104222568"                                                                                                                         
#>  [3] "49852454"                                                                                                                          
#>  [4] "Inactive"                                                                                                                          
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "50"                                                                                                                                
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[12]]
#> $Table$Row[[12]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "104222569"                                                                                                                         
#>  [3] "22429370"                                                                                                                          
#>  [4] "Inactive"                                                                                                                          
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "50"                                                                                                                                
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[13]]
#> $Table$Row[[13]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "104222570"                                                                                                                         
#>  [3] "15996204"                                                                                                                          
#>  [4] "Inactive"                                                                                                                          
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "50"                                                                                                                                
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[14]]
#> $Table$Row[[14]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "104222571"                                                                                                                         
#>  [3] "49852455"                                                                                                                          
#>  [4] "Inactive"                                                                                                                          
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "50"                                                                                                                                
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[15]]
#> $Table$Row[[15]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "104222572"                                                                                                                         
#>  [3] "22429344"                                                                                                                          
#>  [4] "Active"                                                                                                                            
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "6.9"                                                                                                                               
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[16]]
#> $Table$Row[[16]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "109967230"                                                                                                                         
#>  [3] "50897767"                                                                                                                          
#>  [4] "Active"                                                                                                                            
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "2.32"                                                                                                                              
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[17]]
#> $Table$Row[[17]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "109967231"                                                                                                                         
#>  [3] "50897764"                                                                                                                          
#>  [4] "Inactive"                                                                                                                          
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "50"                                                                                                                                
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[18]]
#> $Table$Row[[18]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "109967232"                                                                                                                         
#>  [3] "50897761"                                                                                                                          
#>  [4] "Active"                                                                                                                            
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "0.22"                                                                                                                              
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[19]]
#> $Table$Row[[19]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "109967233"                                                                                                                         
#>  [3] "50897765"                                                                                                                          
#>  [4] "Inactive"                                                                                                                          
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "50"                                                                                                                                
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[20]]
#> $Table$Row[[20]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "109967234"                                                                                                                         
#>  [3] "50897766"                                                                                                                          
#>  [4] "Inactive"                                                                                                                          
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "50"                                                                                                                                
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[21]]
#> $Table$Row[[21]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "109967235"                                                                                                                         
#>  [3] "50897759"                                                                                                                          
#>  [4] "Active"                                                                                                                            
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "3.51"                                                                                                                              
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[22]]
#> $Table$Row[[22]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "109967236"                                                                                                                         
#>  [3] "50897760"                                                                                                                          
#>  [4] "Inactive"                                                                                                                          
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "50"                                                                                                                                
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[23]]
#> $Table$Row[[23]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "109967237"                                                                                                                         
#>  [3] "50897763"                                                                                                                          
#>  [4] "Inactive"                                                                                                                          
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "50"                                                                                                                                
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[24]]
#> $Table$Row[[24]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "109967238"                                                                                                                         
#>  [3] "50897762"                                                                                                                          
#>  [4] "Inactive"                                                                                                                          
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "50"                                                                                                                                
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""                                                                                                                                  
#> 
#> 
#> $Table$Row[[25]]
#> $Table$Row[[25]]$Cell
#>  [1] "504526"                                                                                                                            
#>  [2] "109967239"                                                                                                                         
#>  [3] "50897768"                                                                                                                          
#>  [4] "Inactive"                                                                                                                          
#>  [5] ""                                                                                                                                  
#>  [6] ""                                                                                                                                  
#>  [7] "50"                                                                                                                                
#>  [8] "IC50"                                                                                                                              
#>  [9] "A Cell Based HTS Approach for the Discovery of New Inhibitors of Respiratory syncytial virus (RSV) using synthesized compounds (6)"
#> [10] "Confirmatory"                                                                                                                      
#> [11] ""                                                                                                                                  
#> [12] ""

For dose-response curve data:

result <- get_pug_rest(identifier = "504526", namespace = "aid", domain = "assay", operation = "doseresponse/CSV?sid=104169547,109967232", output = "CSV")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Assay
#>   - Namespace: AID
#>   - Operation: doseresponse/CSV?sid=104169547,109967232
#>   - Identifier: 504526
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#>        AID       SID Concentration Concentration.Unit Response Response.Unit
#> 1   504526 103061373        50.000                 uM    78.38             %
#> 2   504526 103061373        25.000                 uM    97.50             %
#> 3   504526 103061373        12.500                 uM    94.84             %
#> 4   504526 103061373         6.250                 uM    95.43             %
#> 5   504526 103061373         3.125                 uM    35.06             %
#> 6   504526 103061373         1.563                 uM     3.21             %
#> 7   504526 103061373         0.781                 uM     1.08             %
#> 8   504526 103061373         0.391                 uM     0.70             %
#> 9   504526 103904139        50.000                 uM    47.67             %
#> 10  504526 103904139        25.000                 uM    68.41             %
#> 11  504526 103904139        12.500                 uM    16.83             %
#> 12  504526 103904139         6.250                 uM     2.14             %
#> 13  504526 103904139         3.125                 uM     1.07             %
#> 14  504526 103904139         1.563                 uM     0.93             %
#> 15  504526 103904139         0.781                 uM     0.84             %
#> 16  504526 103904139         0.391                 uM     0.74             %
#> 17  504526 103904144        50.000                 uM     0.42             %
#> 18  504526 103904144        25.000                 uM     0.56             %
#> 19  504526 103904144        12.500                 uM     0.62             %
#> 20  504526 103904144         6.250                 uM     0.43             %
#> 21  504526 103904144         3.125                 uM     0.51             %
#> 22  504526 103904144         1.563                 uM     0.38             %
#> 23  504526 103904144         0.781                 uM     0.44             %
#> 24  504526 103904144         0.391                 uM     0.45             %
#> 25  504526 104169543        50.000                 uM    43.94             %
#> 26  504526 104169543        25.000                 uM    91.27             %
#> 27  504526 104169543        12.500                 uM    82.68             %
#> 28  504526 104169543         6.250                 uM    66.81             %
#> 29  504526 104169543         3.125                 uM    39.43             %
#> 30  504526 104169543         1.563                 uM    18.27             %
#> 31  504526 104169543         0.781                 uM     6.99             %
#> 32  504526 104169543         0.391                 uM     4.01             %
#> 33  504526 104169544        50.000                 uM    59.74             %
#> 34  504526 104169544        25.000                 uM    42.48             %
#> 35  504526 104169544        12.500                 uM    21.56             %
#> 36  504526 104169544         6.250                 uM     8.54             %
#> 37  504526 104169544         3.125                 uM     4.49             %
#> 38  504526 104169544         1.563                 uM     2.69             %
#> 39  504526 104169544         0.781                 uM     1.51             %
#> 40  504526 104169544         0.391                 uM     0.94             %
#> 41  504526 104169545        50.000                 uM     0.55             %
#> 42  504526 104169545        25.000                 uM     0.69             %
#> 43  504526 104169545        12.500                 uM     0.74             %
#> 44  504526 104169545         6.250                 uM     0.88             %
#> 45  504526 104169545         3.125                 uM     0.95             %
#> 46  504526 104169545         1.563                 uM     0.78             %
#> 47  504526 104169545         0.781                 uM     0.75             %
#> 48  504526 104169545         0.391                 uM     0.70             %
#> 49  504526 104169546        50.000                 uM     0.51             %
#> 50  504526 104169546        25.000                 uM     0.51             %
#> 51  504526 104169546        12.500                 uM     0.52             %
#> 52  504526 104169546         6.250                 uM     0.43             %
#> 53  504526 104169546         3.125                 uM     0.58             %
#> 54  504526 104169546         1.563                 uM     0.46             %
#> 55  504526 104169546         0.781                 uM     0.62             %
#> 56  504526 104169546         0.391                 uM     0.51             %
#> 57  504526 104169547        50.000                 uM    85.88             %
#> 58  504526 104169547        25.000                 uM    92.21             %
#> 59  504526 104169547        12.500                 uM    91.99             %
#> 60  504526 104169547         6.250                 uM    78.58             %
#> 61  504526 104169547         3.125                 uM    14.87             %
#> 62  504526 104169547         1.563                 uM     2.15             %
#> 63  504526 104169547         0.781                 uM     0.79             %
#> 64  504526 104169547         0.391                 uM     0.54             %
#> 65  504526 104169548        50.000                 uM    72.51             %
#> 66  504526 104169548        25.000                 uM    61.24             %
#> 67  504526 104169548        12.500                 uM    40.57             %
#> 68  504526 104169548         6.250                 uM    19.00             %
#> 69  504526 104169548         3.125                 uM     8.08             %
#> 70  504526 104169548         1.563                 uM     3.66             %
#> 71  504526 104169548         0.781                 uM     1.59             %
#> 72  504526 104169548         0.391                 uM     1.04             %
#> 73  504526 104222567        50.000                 uM     0.59             %
#> 74  504526 104222567        25.000                 uM     0.77             %
#> 75  504526 104222567        12.500                 uM     0.76             %
#> 76  504526 104222567         6.250                 uM     0.94             %
#> 77  504526 104222567         3.125                 uM     0.79             %
#> 78  504526 104222567         1.563                 uM     0.80             %
#> 79  504526 104222567         0.781                 uM     0.77             %
#> 80  504526 104222567         0.391                 uM     0.73             %
#> 81  504526 104222568        50.000                 uM     0.58             %
#> 82  504526 104222568        25.000                 uM     0.54             %
#> 83  504526 104222568        12.500                 uM     0.53             %
#> 84  504526 104222568         6.250                 uM     0.49             %
#> 85  504526 104222568         3.125                 uM     0.50             %
#> 86  504526 104222568         1.563                 uM     0.39             %
#> 87  504526 104222568         0.781                 uM     0.36             %
#> 88  504526 104222568         0.391                 uM     0.53             %
#> 89  504526 104222569        50.000                 uM     0.96             %
#> 90  504526 104222569        25.000                 uM     0.98             %
#> 91  504526 104222569        12.500                 uM     0.94             %
#> 92  504526 104222569         6.250                 uM     0.89             %
#> 93  504526 104222569         3.125                 uM     1.09             %
#> 94  504526 104222569         1.563                 uM     0.98             %
#> 95  504526 104222569         0.781                 uM     0.89             %
#> 96  504526 104222569         0.391                 uM     0.71             %
#> 97  504526 104222570        50.000                 uM     1.83             %
#> 98  504526 104222570        25.000                 uM     1.50             %
#> 99  504526 104222570        12.500                 uM     1.11             %
#> 100 504526 104222570         6.250                 uM     0.77             %
#> 101 504526 104222570         3.125                 uM     0.64             %
#> 102 504526 104222570         1.563                 uM     0.51             %
#> 103 504526 104222570         0.781                 uM     0.48             %
#> 104 504526 104222570         0.391                 uM     0.57             %
#> 105 504526 104222571        50.000                 uM     2.00             %
#> 106 504526 104222571        25.000                 uM     2.18             %
#> 107 504526 104222571        12.500                 uM     1.73             %
#> 108 504526 104222571         6.250                 uM     1.56             %
#> 109 504526 104222571         3.125                 uM     1.19             %
#> 110 504526 104222571         1.563                 uM     0.93             %
#> 111 504526 104222571         0.781                 uM     0.80             %
#> 112 504526 104222571         0.391                 uM     0.74             %
#> 113 504526 104222572        50.000                 uM    78.03             %
#> 114 504526 104222572        25.000                 uM    86.65             %
#> 115 504526 104222572        12.500                 uM    83.45             %
#> 116 504526 104222572         6.250                 uM    47.02             %
#> 117 504526 104222572         3.125                 uM    12.20             %
#> 118 504526 104222572         1.563                 uM     2.23             %
#> 119 504526 104222572         0.781                 uM     0.77             %
#> 120 504526 104222572         0.391                 uM     0.65             %
#> 121 504526 109967230        50.000                 uM   107.05             %
#> 122 504526 109967230        25.000                 uM    90.78             %
#> 123 504526 109967230        12.500                 uM    87.53             %
#> 124 504526 109967230         6.250                 uM   101.19             %
#> 125 504526 109967230         3.125                 uM    80.54             %
#> 126 504526 109967230         1.563                 uM    15.81             %
#> 127 504526 109967230         0.781                 uM     4.66             %
#> 128 504526 109967230         0.391                 uM     2.32             %
#> 129 504526 109967231        50.000                 uM     2.59             %
#> 130 504526 109967231        25.000                 uM     2.63             %
#> 131 504526 109967231        12.500                 uM     2.32             %
#> 132 504526 109967231         6.250                 uM     2.49             %
#> 133 504526 109967231         3.125                 uM     1.96             %
#> 134 504526 109967231         1.563                 uM     1.80             %
#> 135 504526 109967231         0.781                 uM     1.19             %
#> 136 504526 109967231         0.391                 uM     1.06             %
#> 137 504526 109967232        50.000                 uM     7.51             %
#> 138 504526 109967232        25.000                 uM     9.47             %
#> 139 504526 109967232        12.500                 uM    60.40             %
#> 140 504526 109967232         6.250                 uM    79.75             %
#> 141 504526 109967232         3.125                 uM    72.51             %
#> 142 504526 109967232         1.563                 uM    59.35             %
#> 143 504526 109967232         0.781                 uM    35.87             %
#> 144 504526 109967232         0.391                 uM    13.62             %
#> 145 504526 109967233        50.000                 uM    30.79             %
#> 146 504526 109967233        25.000                 uM    21.08             %
#> 147 504526 109967233        12.500                 uM    27.55             %
#> 148 504526 109967233         6.250                 uM    17.89             %
#> 149 504526 109967233         3.125                 uM     6.44             %
#> 150 504526 109967233         1.563                 uM     3.41             %
#> 151 504526 109967233         0.781                 uM     2.54             %
#> 152 504526 109967233         0.391                 uM     1.48             %
#> 153 504526 109967234        50.000                 uM     9.10             %
#> 154 504526 109967234        25.000                 uM    11.20             %
#> 155 504526 109967234        12.500                 uM    10.88             %
#> 156 504526 109967234         6.250                 uM     7.76             %
#> 157 504526 109967234         3.125                 uM     4.61             %
#> 158 504526 109967234         1.563                 uM     3.29             %
#> 159 504526 109967234         0.781                 uM     2.06             %
#> 160 504526 109967234         0.391                 uM     1.52             %
#> 161 504526 109967235        50.000                 uM    88.79             %
#> 162 504526 109967235        25.000                 uM    90.14             %
#> 163 504526 109967235        12.500                 uM    77.74             %
#> 164 504526 109967235         6.250                 uM    66.47             %
#> 165 504526 109967235         3.125                 uM    48.34             %
#> 166 504526 109967235         1.563                 uM    32.20             %
#> 167 504526 109967235         0.781                 uM    15.81             %
#> 168 504526 109967235         0.391                 uM     5.72             %
#> 169 504526 109967236        50.000                 uM     3.20             %
#> 170 504526 109967236        25.000                 uM     6.08             %
#> 171 504526 109967236        12.500                 uM    34.16             %
#> 172 504526 109967236         6.250                 uM    17.15             %
#> 173 504526 109967236         3.125                 uM     8.56             %
#> 174 504526 109967236         1.563                 uM     4.66             %
#> 175 504526 109967236         0.781                 uM     3.13             %
#> 176 504526 109967236         0.391                 uM     1.93             %
#> 177 504526 109967237        50.000                 uM    12.15             %
#> 178 504526 109967237        25.000                 uM     3.83             %
#> 179 504526 109967237        12.500                 uM     8.53             %
#> 180 504526 109967237         6.250                 uM    39.90             %
#> 181 504526 109967237         3.125                 uM    30.03             %
#> 182 504526 109967237         1.563                 uM    14.27             %
#> 183 504526 109967237         0.781                 uM     5.48             %
#> 184 504526 109967237         0.391                 uM     3.58             %
#> 185 504526 109967238        50.000                 uM     2.49             %
#> 186 504526 109967238        25.000                 uM     4.66             %
#> 187 504526 109967238        12.500                 uM     4.19             %
#> 188 504526 109967238         6.250                 uM     3.38             %
#> 189 504526 109967238         3.125                 uM     2.38             %
#> 190 504526 109967238         1.563                 uM     1.70             %
#> 191 504526 109967238         0.781                 uM     1.37             %
#> 192 504526 109967238         0.391                 uM     1.06             %
#> 193 504526 109967239        50.000                 uM     2.10             %
#> 194 504526 109967239        25.000                 uM     2.52             %
#> 195 504526 109967239        12.500                 uM     1.87             %
#> 196 504526 109967239         6.250                 uM     1.93             %
#> 197 504526 109967239         3.125                 uM     1.62             %
#> 198 504526 109967239         1.563                 uM     1.42             %
#> 199 504526 109967239         0.781                 uM     1.31             %
#> 200 504526 109967239         0.391                 uM     1.27             %

3. Targets: To retrieve assay targets, including protein or gene identifiers:

result <- get_pug_rest(identifier = c("490","1000"), namespace = "aid", domain = "assay", operation = "targets/ProteinGI,ProteinName,GeneID,GeneSymbol", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Assay
#>   - Namespace: AID
#>   - Operation: targets/ProteinGI,ProteinName,GeneID,GeneSymbol
#>   - Identifier: 490, 1000
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $InformationList
#> $InformationList$Information
#> $InformationList$Information[[1]]
#> $InformationList$Information[[1]]$AID
#> [1] 1000
#> 
#> $InformationList$Information[[1]]$GI
#> [1] 116516899
#> 
#> $InformationList$Information[[1]]$ProteinName
#> [1] "mevalonate kinase"

To select assays via target identifier:

result <- get_pug_rest(identifier = "USP2", namespace = "target/genesymbol", domain = "assay", operation = "aids", output = "TXT")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Assay
#>   - Namespace: DomainSpecific
#>   - Operation: aids
#>   - Identifier: USP2
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#>         V1
#> 1      927
#> 2     1455
#> 3     1904
#> 4     2281
#> 5   463106
#> 6   463254
#> 7   493168
#> 8   493170
#> 9   504793
#> 10  504794
#> 11  504804
#> 12  504805
#> 13  504808
#> 14  624099
#> 15  624345
#> 16  651626
#> 17  651810
#> 18  651811
#> 19  652172
#> 20  652173
#> 21  652174
#> 22  652243
#> 23  652259
#> 24  652272
#> 25  686937
#> 26  686938
#> 27  686943
#> 28  686990
#> 29  694822
#> 30  720505
#> 31  743454
#> 32  755342
#> 33  761504
#> 34 1053208
#> 35 1117281
#> 36 1117357
#> 37 1128595
#> 38 1128604
#> 39 1159506
#> 40 1159578
#> 41 1159584
#> 42 1159615
#> 43 1197975
#> 44 1224826
#> 45 1224828
#> 46 1224830
#> 47 1383944
#> 48 1383945
#> 49 1383947
#> 50 1383948
#> 51 1383950
#> 52 1383951
#> 53 1489184
#> 54 1489185
#> 55 1491550
#> 56 1508587
#> 57 1508588
#> 58 1558721
#> 59 1561164
#> 60 1649123
#> 61 1680000
#> 62 1692429
#> 63 1794863
#> 64 1802686
#> 65 1802687
#> 66 1857650
#> 67 1881105
#> 68 1897518
#> 69 1925871
#> 70 1930792
#> 71 1930821
#> 72 1930826
#> 73 1930827
#> 74 1947415
#> 75 1947418
#> 76 1947449
#> 77 1947457
#> 78 1947524

4. Activity Name: To select BioAssays by the name of the primary activity column:

result <- get_pug_rest(identifier = "EC50", namespace = "activity", domain = "assay", operation = "aids", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Assay
#>   - Namespace: DomainSpecific
#>   - Operation: aids
#>   - Identifier: EC50
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $IdentifierList
#> $IdentifierList$AID
#>     [1]     430     431     618     620     696     718     737     773     854
#>    [10]     872     874     876     936    1001    1045    1047    1050    1062
#>    [19]    1078    1192    1196    1197    1198    1200    1221    1222    1223
#>    [28]    1224    1228    1232    1234    1241    1243    1244    1245    1247
#>    [37]    1248    1252    1266    1268    1269    1270    1271    1280    1281
#>    [46]    1282    1283    1287    1289    1290    1291    1292    1293    1294
#>    [55]    1295    1299    1302    1319    1320    1322    1323    1324    1327
#>    [64]    1328    1329    1330    1331    1333    1334    1335    1336    1337
#>    [73]    1339    1340    1341    1364    1365    1366    1367    1368    1369
#>    [82]    1370    1371    1372    1373    1374    1375    1394    1397    1404
#>    [91]    1406    1412    1414    1442    1444    1450    1465    1470    1508
#>   [100]    1522    1528    1538    1562    1566    1578    1625    1659    1660
#>   [109]    1679    1681    1682    1684    1686    1689    1690    1701    1723
#>   [118]    1735    1736    1737    1738    1743    1744    1753    1757    1764
#>   [127]    1767    1769    1777    1871    1872    1884    1888    1889    1891
#>   [136]    1895    1896    1897    1900    1902    1914    1915    1923    1928
#>   [145]    1929    1930    1932    1933    1934    1935    1936    1938    1939
#>   [154]    1959    1960    1961    1964    1966    1988    1990    1994    1999
#>   [163]    2002    2003    2008    2009    2010    2019    2020    2021    2022
#>   [172]    2027    2031    2033    2036    2037    2038    2039    2040    2041
#>   [181]    2042    2043    2044    2045    2046    2047    2048    2050    2051
#>   [190]    2053    2055    2075    2077    2080    2081    2084    2086    2089
#>   [199]    2096    2102    2121    2124    2133    2137    2138    2145    2150
#>   [208]    2151    2181    2182    2183    2185    2186    2188    2190    2191
#>   [217]    2192    2193    2194    2197    2199    2207    2208    2209    2210
#>   [226]    2211    2212    2219    2220    2224    2252    2253    2284    2286
#>   [235]    2294    2295    2296    2298    2307    2310    2311    2327    2343
#>   [244]    2344    2347    2352    2359    2370    2376    2382    2387    2388
#>   [253]    2396    2398    2400    2423    2425    2428    2434    2438    2442
#>   [262]    2443    2446    2450    2452    2453    2454    2456    2457    2458
#>   [271]    2460    2463    2467    2468    2470    2471    2473    2477    2484
#>   [280]    2486    2492    2493    2497    2500    2510    2511    2518    2519
#>   [289]    2525    2548    2583    2586    2603    2607    2608    2609    2610
#>   [298]    2611    2630    2631    2633    2635    2638    2651    2654    2670
#>   [307]    2683    2696    2704    2723    2724    2725    2735    2738    2739
#>   [316]    2740    2742    2743    2744    2745    2753    2765    2807    2809
#>   [325]    2814    2821    2823    2826    2827    2828    2829    2835    2843
#>   [334]    2844    2901    2996    2997    2999    3004    3005    3006    3008
#>   [343]    3009    3015    3058    3059    3189    3385    3423    3490    3492
#>   [352]    3502    3503    3506    3507    3508    3509    3510    3513    3516
#>   [361]    3517    3519    3706    3709    3901    3902    3903    3904    3905
#>   [370]    3906    3907    3909    4494    4495    4496    4497    4498    4499
#>   [379]    4500    4501    4502    4520    4521    4550    4567    4571    4572
#>   [388]    4573    4574    4575    4576    4577    4578    4579    4580    4581
#>   [397]    4582    4666    4667    4779    4871    4872    4936    4937    4938
#>   [406]    4939    4972    4973    4974    5161    5162    5163    5165    5383
#>   [415]    5459    5460    5461    5462    5464    5465    5466    5467    5468
#>   [424]    5702    5841    5842    5843    6140    6142    6147    6148    6209
#>   [433]    6220    6224    6225    6226    6228    6229    6250    6267    6274
#>   [442]    6275    6276    6377    6380    6398    6399    8455    8619    8848
#>   [451]    8849    9404    9405    9448    9454    9465    9467    9468    9635
#>   [460]    9809    9810    9811    9812    9813   10054   19923   30287   30288
#>   [469]   30289   30291   30292   30293   30294   30295   30296   30481   30504
#>   [478]   30505   30506   30507   30508   30509   30510   30630   30631   30632
#>   [487]   30633   30634   30792   30816   30817   30818   31103   31131   31260
#>   [496]   31261   31262   31264   31265   31266   31267   31268   31269   31447
#>   [505]   31454   31829   32070   32145   32146   32147   32148   32149   32150
#>   [514]   32151   32464   32465   32785   32836   32967   32970   32972   33156
#>   [523]   33162   33163   33164   33505   33767   33768   33769   33770   33950
#>   [532]   34073   34074   34264   34265   34266   34267   34268   34269   34270
#>   [541]   34309   34436   34438   34439   34440   34584   34592   34594   34596
#>   [550]   34598   34600   34747   34748   35160   35381   35384   35390   35445
#>   [559]   35446   35447   35448   35449   35451   35452   35453   35586   35618
#>   [568]   35832   35922   35956   35957   35958   35959   35985   35987   35988
#>   [577]   35989   35990   35991   35992   35993   35994   36027   36045   36046
#>   [586]   36065   36133   36134   36135   36232   36233   36246   36261   36262
#>   [595]   36352   36385   36416   36417   36419   36420   36421   36434   36435
#>   [604]   36436   36437   36470   36512   36513   36524   36525   36526   36527
#>   [613]   36578   36579   36580   36581   36626   36627   36628   36629   36656
#>   [622]   36657   36665   36674   36675   36682   36683   36763   37036   37345
#>   [631]   37346   37347   37348   37349   37350   37497   38017   38035   38326
#>   [640]   38516   38518   38519   38533   38534   38535   38600   38694   38695
#>   [649]   38696   38742   38799   38801   38802   38803   38804   38805   39027
#>   [658]   39064   39165   39218   39867   39967   39968   40109   40110   40111
#>   [667]   40112   40114   40115   40116   40117   40118   40119   40121   40122
#>   [676]   40126   40844   40846   41017   41018   41032   41036   41037   41039
#>   [685]   41040   41041   41045   41130   41137   41159   41160   41161   41162
#>   [694]   41163   41165   41198   41199   41204   41207   41441   41442   41445
#>   [703]   41512   41513   41528   41529   41530   41531   41543   41569   41570
#>   [712]   41592   41600   41601   41634   41636   41650   41651   41652   41653
#>   [721]   41654   41655   41656   41657   41658   41660   41663   41664   41665
#>   [730]   41666   41667   41668   41669   41777   41778   41779   41780   41781
#>   [739]   41783   41785   41786   41788   41789   41790   41791   41792   41910
#>   [748]   41937   41938   41939   41940   41941   41964   42046   42047   42048
#>   [757]   42049   42050   42052   42053   42092   42107   42117   42122   42220
#>   [766]   42231   42233   42359   42382   42383   42398   42399   42593   42620
#>   [775]   42621   42622   42776   42777   42778   42831   42847   42899   43083
#>   [784]   43236   43237   43238   43239   43240   43241   43385   43386   43387
#>   [793]   43388   43389   43390   43391   43392   43393   43394   43395   43396
#>   [802]   43397   43398   43978   43979   43986   43987   43988   43990   44004
#>   [811]   44005   44006   44208   44209   44211   44212   44213   44214   44215
#>   [820]   44216   44217   44235   44340   44352   44384   44385   44393   44394
#>   [829]   44398   44399   44405   44411   44412   44541   44542   44545   44546
#>   [838]   44553   44560   44562   44563   44569   44570   44571   44591   44604
#>   [847]   44608   44610   44627   44631   44641   44642   44645   44646   44647
#>   [856]   44664   44665   44666   44667   44668   44669   44719   44735   44737
#>   [865]   44739   44740   44741   44789   44790   44791   44792   44793   44794
#>   [874]   44795   44796   44814   44816   44817   44818   44819   44820   44821
#>   [883]   44822   44823   44824   44825   44826   44827   44828   44829   44830
#>   [892]   44831   44832   44874   44998   44999   45000   45001   45002   45003
#>   [901]   45004   45025   45026   45027   45028   45029   45035   45036   45037
#>   [910]   45060   45061   45062   45063   45064   45065   45066   45067   45069
#>   [919]   45070   45071   45072   45114   45115   45290   45292   45351   45354
#>   [928]   45355   45356   45357   45358   45359   45360   45361   45362   45363
#>   [937]   45364   45365   45366   45367   45368   45369   45370   45371   45372
#>   [946]   45373   45374   45376   45378   45379   45380   45381   45382   45385
#>   [955]   45386   45387   45388   45389   45390   45391   45392   45412   45518
#>   [964]   45519   45520   45521   45522   45523   45524   45525   45526   45527
#>   [973]   45528   45529   45530   45531   45532   45533   45534   45535   45536
#>   [982]   45540   45541   45542   45543   45549   45550   45551   45552   45553
#>   [991]   45554   45555   45682   45683   45684   45685   45686   45687   45688
#>  [1000]   45689   45690   45691   45692   45693   45694   45695   45696   45697
#>  [1009]   45700   45701   45702   45704   45705   45706   45708   45709   45710
#>  [1018]   45729   45731   45736   45740   45757   45771   45772   45798   45801
#>  [1027]   45808   45809   45819   45826   45827   45828   46005   46006   46007
#>  [1036]   46008   46010   46011   46013   46014   46015   46017   46018   46019
#>  [1045]   46020   46021   46022   46023   46024   46027   46028   46033   46155
#>  [1054]   46174   46175   46176   46177   46178   46179   46180   46181   46183
#>  [1063]   46185   46186   46187   46188   46189   46190   46191   46192   46193
#>  [1072]   46196   46197   46198   46199   46200   46204   46205   46206   46208
#>  [1081]   46210   46211   46212   46240   46241   46243   46244   46246   46247
#>  [1090]   46249   46250   46251   46252   46253   46254   46255   46258   46259
#>  [1099]   46260   46261   46263   46409   46410   46412   46413   46414   46415
#>  [1108]   46416   46417   46418   46419   46420   46421   46422   46423   46424
#>  [1117]   46425   46426   46427   46428   46429   46430   46487   46618   46621
#>  [1126]   46628   46632   46637   46645   46646   46647   46648   46649   46650
#>  [1135]   46651   46652   46653   46654   46655   46656   46657   46658   46660
#>  [1144]   46661   46800   46801   46803   46804   46819   46820   46821   46822
#>  [1153]   46823   46824   46825   46827   46829   46831   46832   46833   46838
#>  [1162]   46843   46845   46846   46847   46848   46851   46954   46955   46985
#>  [1171]   46986   46987   46991   46992   46993   46996   46997   46998   46999
#>  [1180]   47001   47009   47046   47089   47090   47091   47092   47109   47111
#>  [1189]   47112   47113   47114   47115   47116   47117   47119   47122   47125
#>  [1198]   47128   47129   47130   47131   47132   47133   47136   47137   47138
#>  [1207]   47139   47140   47141   47142   47143   47147   47148   47149   47150
#>  [1216]   47188   47191   47259   47260   47261   47262   47263   47264   47265
#>  [1225]   47268   47269   47270   47272   47273   47372   47374   47375   47377
#>  [1234]   47638   47640   47651   47657   47659   47660   47661   47783   47784
#>  [1243]   47785   47787   47789   47790   49472   49474   49690   50972   50973
#>  [1252]   51033   51039   51295   51296   51935   52405   52424   52518   52521
#>  [1261]   52530   52649   52743   52881   52882   52883   53449   53467   53468
#>  [1270]   53667   53758   53759   53808   53813   53826   53827   53918   54066
#>  [1279]   54068   54123   54140   54141   54142   54435   54437   54438   54441
#>  [1288]   54862   55372   55373   55430   55438   55578   55956   55957   55958
#>  [1297]   55965   56299   56446   57053   57055   57063   57064   57548   57552
#>  [1306]   57554   57697   59110   59111   59112   59113   60966   60967   61007
#>  [1315]   61010   61012   61071   61072   61219   61220   61221   61222   61223
#>  [1324]   61225   61226   61228   61304   61491   61800   61802   61803   61858
#>  [1333]   62577   62578   62579   62580   62748   62749   62750   62751   62753
#>  [1342]   62754   62756   62757   62758   62759   62760   62761   63041   63042
#>  [1351]   63211   63212   63374   63376   63377   63378   63379   63703   63721
#>  [1360]   63828   63854   63857   63858   63859   63860   63861   63914   63915
#>  [1369]   63916   63917   63918   63939   63940   63941   63942   63943   64016
#>  [1378]   64021   64022   64321   64637   64638   64639   64640   64641   64794
#>  [1387]   64796   64798   64799   64804   64812   64813   64814   64815   64816
#>  [1396]   64817   64818   65465   65466   65467   65468   65469   65520   65769
#>  [1405]   65831   65833   65834   65922   65923   65925   65928   65965   65966
#>  [1414]   66430   66869   66958   67101   67432   67782   67813   67842   67843
#>  [1423]   67844   67963   68289   68292   68294   68660   68711   68712   68713
#>  [1432]   68714   68715   68948   68949   69103   69104   69116   69117   69119
#>  [1441]   69120   69376   69377   69854   69861   69862   70019   70020   70021
#>  [1450]   70185   70186   70187   70188   70190   70191   70209   70218   70226
#>  [1459]   70227   70504   70505   70506   70507   70551   70553   71209   71210
#>  [1468]   71211   71233   71238   71247   71264   71281   71302   71304   71405
#>  [1477]   71410   71411   71412   71413   71417   71418   71419   71532   71533
#>  [1486]   71534   71535   71536   71537   71546   71547   71694   71695   71696
#>  [1495]   71777   71797   71799   71870   71871   71872   71875   71876   71877
#>  [1504]   71879   71942   72010   72011   72012   72013   72014   72015   72016
#>  [1513]   72017   72019   72020   72157   72186   72308   72318   72325   72326
#>  [1522]   72327   72328   72329   72335   72336   72360   72409   72410   72442
#>  [1531]   72525   72526   72529   72531   72641   72642   72698   72700   72761
#>  [1540]   72782   72783   72923   72945   73026   73035   73036   73037   73038
#>  [1549]   73084   73085   73181   73189   73190   73201   73238   73239   73353
#>  [1558]   73365   73371   73519   73542   73663   73674   73686   73689   73690
#>  [1567]   73691   73702   73703   73704   73705   73706   73707   73708   73709
#>  [1576]   73711   73713   73714   73715   73717   73718   73719   73720   73721
#>  [1585]   73722   73723   73724   73725   73726   73727   73728   73729   73730
#>  [1594]   73731   73732   73733   73735   73736   73737   73738   73739   73741
#>  [1603]   73742   73773   73774   73775   73827   73868   73869   73870   73871
#>  [1612]   73872   73873   73874   73875   73876   73877   73878   73879   73880
#>  [1621]   73881   73882   73883   73884   73885   73886   73887   73888   73889
#>  [1630]   73890   73891   73892   73893   73894   73895   73896   73897   73898
#>  [1639]   73899   73900   73902   73903   73904   73907   73908   73909   74021
#>  [1648]   74022   74023   74024   74025   74026   74242   74327   74337   74355
#>  [1657]   74499   74501   74529   74644   74816   74818   74963   75015   75020
#>  [1666]   75021   75159   75331   75480   75673   75675   75758   75836   75929
#>  [1675]   75930   75931   75932   75933   75934   75935   75937   75938   75943
#>  [1684]   75945   75949   76357   78480   78482   78483   78508   78509   78607
#>  [1693]   78608   78649   78650   78652   78653   78654   78655   78656   78658
#>  [1702]   78659   78737   78759   78760   78761   78765   78770   78771   78774
#>  [1711]   78775   78776   78779   78781   78782   78783   78833   78834   78835
#>  [1720]   78836   78837   78838   78839   78840   78841   78842   78843   78844
#>  [1729]   78845   79096   79097   79098   79114   79116   79117   79276   79278
#>  [1738]   79283   79291   79293   79295   79297   79299   79301   79302   79303
#>  [1747]   79305   79446   79447   79450   79546   79547   79629   79633   79634
#>  [1756]   79637   79693   79696   79700   79701   79703   79704   79705   79706
#>  [1765]   79707   79708   79745   79746   79757   79758   79761   79818   79819
#>  [1774]   79820   79821   79822   79823   79824   79825   79882   79883   79887
#>  [1783]   79888   79890   79892   79893   79894   79895   79896   79897   79898
#>  [1792]   79899   79900   79901   79902   79903   79904   79905   79906   79916
#>  [1801]   80012   80084   80307   80308   80362   80376   80377   80378   80379
#>  [1810]   80451   80460   80575   80576   80590   80591   80886   80887   80888
#>  [1819]   80890   80891   80892   80942   80952   81084   81085   81086   81087
#>  [1828]   81088   81089   81090   81091   81092   81093   81094   81095   81096
#>  [1837]   81097   81098   81099   81100   81102   81104   81232   81235   81236
#>  [1846]   81237   81238   81239   81240   81241   81242   81243   81244   81245
#>  [1855]   81246   81247   81248   81249   81251   81252   81253   81254   81256
#>  [1864]   81257   81258   81259   81260   81261   81262   81263   81264   81265
#>  [1873]   81266   81280   81281   81364   81391   81393   81405   81407   81408
#>  [1882]   81409   81410   81411   81412   81413   81414   81415   81417   81418
#>  [1891]   81419   81551   81557   81558   81709   81737   81755   81801   81889
#>  [1900]   81890   81891   81892   81893   81920   81921   81922   81923   81924
#>  [1909]   81925   81981   81982   82110   82113   82122   82123   82124   82131
#>  [1918]   82134   82137   82195   82243   82244   82245   82246   82247   82248
#>  [1927]   82249   82250   82251   82252   82253   82254   82255   82273   82274
#>  [1936]   82282   82284   82287   82306   82307   82308   82368   82369   82370
#>  [1945]   82376   82377   82379   82380   82381   82440   82441   82442   82443
#>  [1954]   82444   82445   82446   82447   82448   82449   82450   82451   82452
#>  [1963]   82453   82454   82455   82517   82555   82556   82557   82558   82589
#>  [1972]   82590   82591   82592   82593   82594   82595   82596   82597   82598
#>  [1981]   82599   82600   82601   82602   82683   82684   82686   82688   82690
#>  [1990]   82691   82692   82693   82723   82734   82751   82828   82829   83089
#>  [1999]   83101   83108   83111   83112   83113   83114   83115   83116   83117
#>  [2008]   83118   83147   83149   83235   83249   83250   83255   83258   83264
#>  [2017]   83265   83266   83267   83268   83283   83284   83358   83359   83360
#>  [2026]   83361   83362   83363   83364   83393   83406   83408   83410   83411
#>  [2035]   83412   83413   83414   83416   83417   83418   83419   83420   83424
#>  [2044]   83425   83426   83427   83428   83547   83549   83550   83551   83552
#>  [2053]   83553   83554   83943   83944   84077   84130   84223   84224   84259
#>  [2062]   84559   84560   84561   84563   84637   84641   84661   84662   84684
#>  [2071]   84716   84717   84718   84772   84778   84793   84932   84933   84934
#>  [2080]   84935   85119   85311   85312   85430   85722   85726   85885   85886
#>  [2089]   85890   85891   85892   85893   85894   86020   86021   86022   86023
#>  [2098]   86024   86066   86068   86358   86360   86371   86372   86373   86385
#>  [2107]   86386   86387   86388   86449   86450   86451   86476   86477   86478
#>  [2116]   86563   86682   86683   86684   86717   86718   86828   86829   86831
#>  [2125]   86832   86834   86835   86836   86846   86850   86851   86853   86854
#>  [2134]   86856   86857   86863   86867   86868   86870   86872   86886   86889
#>  [2143]   86921   86922   86923   86924   86925   86926   87012   87168   87180
#>  [2152]   87182   87188   87190   87232   87375   87382   87466   87471   87479
#>  [2161]   87543   87544   87598   87599   87601   87633   87634   87664   87768
#>  [2170]   88307   88336   88346   88347   88352   88353   88354   88355   88356
#>  [2179]   88357   88358   88427   88818   88825   88980   88981   88982   88983
#>  [2188]   88986   88987   88988   88989   88990   88991   88992   88993   88994
#>  [2197]   88995   88996   88997   88999   89001   89058   89059   89060   89061
#>  [2206]   89063   89066   89157   89158   89159   89160   89161   89163   89164
#>  [2215]   89167   89168   89169   89170   89269   89271   89273   89308   89309
#>  [2224]   89454   89525   89526   89527   89540   89541   89543   89547   89549
#>  [2233]   89895   89974   90032   90033   90034   90035   90064   90065   90066
#>  [2242]   90133   90134   90135   90303   90304   90305   90307   90421   90422
#>  [2251]   90594   90678   90679   90762   90763   90805   90806   90807   90836
#>  [2260]   90838   90872   90949   90967   91046   91116   91129   91130   91138
#>  [2269]   91146   91186   91237   91241   91246   91295   91297   91299   91301
#>  [2278]   91463   91499   91500   91502   91503   91505   91506   91507   91508
#>  [2287]   91511   91525   91526   91527   91582   91583   91597   91608   91645
#>  [2296]   91646   91680   91685   91700   91722   91772   91892   91923   91924
#>  [2305]   92077   92150   92193   92194   92195   92316   92452   92453   92528
#>  [2314]   92529   92669   92670   92794   92913   92938   92948   92954   92955
#>  [2323]   92956   92957   92965   93028   93030   93033   93038   93040   93062
#>  [2332]   93073   93096   93099   93103   93104   93107   93108   93114   93127
#>  [2341]   93240   93242   93243   93244   93260   93262   93435   93974   93975
#>  [2350]   93976   93977   93978   93979   93980   93981   93982   93983   93984
#>  [2359]   93985   93989   94457   94460   94464   94513   94515   94522   94578
#>  [2368]   94579   94837   94961   95008   95009   95277   95325   95328   95329
#>  [2377]   95351   95355   95432   95435   95437   95438   95530   96003   96186
#>  [2386]   97829   97830   98016   98017   98020   98021   98022   98023   98024
#>  [2395]   99361   99500   99508   99684   99946  100082  100389  100393  100528
#>  [2404]  100529  101020  101042  101298  101657  101658  101806  101807  101808
#>  [2413]  101835  101836  101837  101999  102011  102034  102108  102328  102351
#>  [2422]  102352  102399  102400  102401  102402  102403  102434  102435  102436
#>  [2431]  102438  102510  102697  102978  102979  102982  102986  103003  103074
#>  [2440]  103077  103188  103191  103192  103195  103198  103199  103375  103502
#>  [2449]  103503  103504  103551  103552  103553  103554  103555  103604  104102
#>  [2458]  104103  104126  104127  104239  104247  104248  104270  104271  104272
#>  [2467]  104273  104274  104275  104276  104277  104278  104279  104280  104281
#>  [2476]  104282  104283  104284  104285  104286  104288  104289  104290  104291
#>  [2485]  104292  104293  104294  104295  104297  104298  104415  104426  104427
#>  [2494]  104428  104429  104430  104431  104580  104581  104597  104598  104599
#>  [2503]  104830  104835  104966  104969  104970  104972  104974  104976  104977
#>  [2512]  104980  104984  104987  104994  104997  105005  105006  105008  105009
#>  [2521]  105018  105020  105076  105077  105122  105123  105124  105127  105128
#>  [2530]  105129  105130  105131  105132  105133  105134  105135  105136  105137
#>  [2539]  105138  105139  105140  105141  105143  105144  105145  105146  105147
#>  [2548]  105148  105149  105150  105151  105152  105153  105154  105155  105156
#>  [2557]  105157  105158  105159  105160  105161  105162  105163  105164  105165
#>  [2566]  105177  105179  105180  105181  105182  105183  105184  105185  105188
#>  [2575]  105189  105190  105315  105317  105319  105320  105321  105322  105323
#>  [2584]  105324  105325  105326  105327  105328  105329  105330  105331  105332
#>  [2593]  105333  105337  105338  105339  105341  105342  105343  105344  105345
#>  [2602]  105346  105347  105348  105349  105350  105351  105352  105353  105354
#>  [2611]  105355  105356  105357  105358  105359  105360  105361  105362  105395
#>  [2620]  105397  105399  105400  105401  105402  105403  105404  105405  105406
#>  [2629]  105407  105408  105409  105411  105423  105424  105510  105511  105512
#>  [2638]  105513  105514  105515  105516  105517  105554  105555  105556  105557
#>  [2647]  105559  105561  105610  105626  105857  105905  105906  105921  105924
#>  [2656]  105928  105933  105941  105946  105986  106130  106149  106157  106171
#>  [2665]  106172  106173  106174  106175  106205  106426  106478  106555  106723
#>  [2674]  106888  106889  106890  106891  106892  106893  106894  106895  106896
#>  [2683]  106897  106898  106899  106900  106901  106902  106903  106942  106943
#>  [2692]  106944  106947  106948  106949  106950  106951  106952  106953  106954
#>  [2701]  106955  106956  106957  106958  106960  106961  106962  106964  106965
#>  [2710]  106966  106967  106968  106969  106970  106971  106972  106974  106975
#>  [2719]  106976  106977  106978  107017  107018  107019  107020  107021  107033
#>  [2728]  107034  107035  107036  107037  107041  107044  107045  107046  107047
#>  [2737]  107049  107061  107062  107063  107064  107065  107066  107068  107082
#>  [2746]  107083  107084  107085  107088  107089  107239  107240  107241  107242
#>  [2755]  107244  107245  107247  107248  107251  107252  107253  107254  107255
#>  [2764]  107260  107263  107264  107265  107267  107391  107395  107396  107403
#>  [2773]  107404  107405  107406  107408  107553  107720  107862  107863  107864
#>  [2782]  107865  107965  107966  107967  108030  108031  108032  108337  108342
#>  [2791]  108349  108352  108355  108357  108473  108474  108475  108481  108482
#>  [2800]  108483  108494  108495  108496  108497  108498  108499  108500  108501
#>  [2809]  108502  108504  108602  108603  108604  108605  108606  108607  108608
#>  [2818]  108609  108610  108611  108633  108634  108635  108636  108637  108639
#>  [2827]  108640  108645  108646  108647  108648  108649  108656  108657  108658
#>  [2836]  108659  108660  108666  108672  108674  108675  108676  108677  108678
#>  [2845]  108679  108680  108772  108776  108777  108778  108779  108780  108781
#>  [2854]  108782  108783  108784  108785  108786  108811  108838  108839  108840
#>  [2863]  108841  108842  108843  108844  108845  108937  108938  108939  108945
#>  [2872]  108957  108958  108959  108960  108961  108962  108963  108964  108965
#>  [2881]  108966  108967  108968  108969  108970  108971  108972  108973  108974
#>  [2890]  108976  108977  108978  108981  108982  108983  109003  109004  109005
#>  [2899]  109010  109011  109012  109105  109106  109107  109151  109152  109153
#>  [2908]  109168  109169  109170  109171  109172  109175  109176  109275  109276
#>  [2917]  109277  109278  109279  109281  109292  109293  109294  109295  109296
#>  [2926]  109297  109298  109299  109300  109301  109302  109303  109304  109305
#>  [2935]  109318  109320  109326  109329  109330  109331  109332  109333  109444
#>  [2944]  109445  109446  109447  109449  109453  109454  109455  109462  109464
#>  [2953]  109465  109466  109467  109468  109469  109470  109472  109477  109478
#>  [2962]  109481  109484  109485  109488  109493  109591  109593  109594  109596
#>  [2971]  109597  109599  109600  109601  109602  109603  109604  109605  109614
#>  [2980]  109615  109617  109618  109626  109893  109898  109899  109900  109901
#>  [2989]  109903  125163  125164  125201  125202  125353  125429  127496  127497
#>  [2998]  127498  127631  127633  127636  127637  127644  127646  127647  127649
#>  [3007]  127650  127651  127652  127653  127786  127788  127789  127790  127791
#>  [3016]  127792  127793  127794  127795  127796  127797  127798  127799  127800
#>  [3025]  127801  127810  138327  138328  138329  138330  138535  138538  138839
#>  [3034]  139800  139803  139930  139966  140989  140990  140992  140993  141005
#>  [3043]  141027  141033  141034  141035  141036  141037  141064  141065  141130
#>  [3052]  141234  141235  141254  141259  141300  141311  141314  141315  141319
#>  [3061]  141345  141397  141444  141445  141446  141447  141588  141597  141604
#>  [3070]  141620  141640  141866  141867  141868  141869  141903  141908  141913
#>  [3079]  141971  141990  142143  142144  142145  142270  142284  142286  142312
#>  [3088]  142313  142314  142375  142377  142378  142379  142380  142417  142440
#>  [3097]  142453  142578  142599  142612  142613  142670  142671  142679  142740
#>  [3106]  142742  142743  142785  142786  142787  142849  142855  143224  143225
#>  [3115]  143226  143354  143470  143471  143548  143552  143553  143561  143576
#>  [3124]  143659  143660  143662  143663  143666  143670  143671  143811  143969
#>  [3133]  143975  143976  143977  144104  144105  144106  144116  144123  144124
#>  [3142]  144250  144318  144319  144320  144321  144322  144323  144396  144405
#>  [3151]  144420  144550  144551  144553  144554  144555  144556  144656  144657
#>  [3160]  144823  144824  144825  144826  145201  145252  145333  145334  145355
#>  [3169]  145356  145357  145358  145359  145360  145361  145362  145495  145496
#>  [3178]  145497  145498  145499  145501  145502  145627  145657  145658  145659
#>  [3187]  145660  145804  145905  145945  145958  145959  145984  146057  146058
#>  [3196]  146059  146060  146061  146062  146063  146064  146144  146157  146158
#>  [3205]  146165  146168  146238  146289  146290  146297  146299  146305  146316
#>  [3214]  146319  146320  146321  146477  146478  146479  146646  146770  146777
#>  [3223]  146778  146779  146781  146782  146783  146784  146796  146797  146798
#>  [3232]  146799  146801  147011  147012  147407  147409  147618  147620  147621
#>  [3241]  147625  147626  147636  147659  147660  147705  147719  147721  147762
#>  [3250]  147763  147764  147771  147950  148060  148061  148062  148063  148064
#>  [3259]  148065  148066  148067  148068  148069  148070  148203  148209  148210
#>  [3268]  148326  148332  148333  148335  148336  148337  148338  148339  148340
#>  [3277]  148341  148342  148343  148345  148346  148347  148348  148429  148443
#>  [3286]  148444  148445  148501  148502  148736  148856  148857  148858  148859
#>  [3295]  148860  148861  148879  149030  149235  149238  149392  149393  149394
#>  [3304]  149613  149719  149720  149722  149723  149976  149983  149984  149986
#>  [3313]  149987  149988  149989  149990  149991  149992  149993  149994  149995
#>  [3322]  149996  149997  150144  150145  150146  150148  150151  150154  150155
#>  [3331]  150156  150157  150158  150161  150164  150165  150166  150169  150170
#>  [3340]  150171  150172  150173  150178  150184  150220  150321  150324  150330
#>  [3349]  150331  150332  150426  150463  150464  150465  150467  150468  150470
#>  [3358]  150471  150472  150473  150487  150488  150489  150490  150494  150495
#>  [3367]  150497  150498  150550  150625  150627  150633  150634  150635  150636
#>  [3376]  151294  152132  152235  152345  152346  152476  152479  152480  152481
#>  [3385]  152489  152490  152492  152493  152613  152614  152615  152616  152617
#>  [3394]  152618  152619  152620  152621  152622  152623  152624  152625  152812
#>  [3403]  152970  152972  152973  152974  152975  153098  153105  153106  153107
#>  [3412]  153108  153109  153110  153111  153112  153113  153114  153132  153135
#>  [3421]  153136  153137  153138  153139  153140  153141  153142  153143  153144
#>  [3430]  153145  153146  154147  154286  154450  154636  154637  154638  154639
#>  [3439]  154640  154769  154811  154931  154932  154933  154934  154935  154936
#>  [3448]  154937  154938  154939  154941  154954  154955  154956  154957  154958
#>  [3457]  154959  154960  154961  154962  154963  154964  154965  154966  154967
#>  [3466]  154968  154969  154970  154971  154972  154973  154974  154975  154976
#>  [3475]  155100  155101  155102  155103  155104  155105  155107  155108  155109
#>  [3484]  155110  155111  155112  155113  155114  155115  155116  155216  155793
#>  [3493]  155914  155953  155978  155979  155980  155981  155983  155984  155985
#>  [3502]  155986  155987  155988  155989  155990  155998  156123  156124  156125
#>  [3511]  156126  156127  156129  156130  156131  156132  156133  156134  156135
#>  [3520]  156137  156138  156140  156143  156145  156146  156147  156218  156231
#>  [3529]  156233  156234  156244  156359  156360  156361  156362  156374  156375
#>  [3538]  156376  156378  156379  156440  156442  156443  156451  156452  156453
#>  [3547]  156454  156455  156457  156459  156464  156466  156467  156468  156469
#>  [3556]  156512  156603  156605  156606  156607  156608  156609  156611  156612
#>  [3565]  156614  156617  156642  156784  156785  156788  156794  156795  156796
#>  [3574]  156797  156798  156799  156800  156801  156802  156931  156932  156933
#>  [3583]  156934  156935  156937  156938  156939  156941  156943  156945  156947
#>  [3592]  157054  157058  157119  157120  157121  157123  157124  157126  157127
#>  [3601]  157173  157174  157175  157176  157177  157181  157182  157183  157184
#>  [3610]  157185  157186  157187  157264  157266  157267  157278  157279  157280
#>  [3619]  157281  157283  157288  157289  157291  157293  157401  157402  157403
#>  [3628]  157404  157405  157415  157546  157547  157548  157549  157554  157567
#>  [3637]  157568  157569  157570  157571  157572  157573  157574  157575  157576
#>  [3646]  157581  157668  157671  157797  158080  158082  158107  158726  159240
#>  [3655]  159244  159270  159416  159417  159418  159419  159420  159609  159672
#>  [3664]  159673  159674  159678  159679  159681  159682  159740  159741  159868
#>  [3673]  159923  159924  159925  160040  160041  160042  160043  160044  160045
#>  [3682]  160046  160047  160049  160051  160053  160054  160055  160056  160076
#>  [3691]  160077  160090  160337  160338  160339  160340  160341  160510  160541
#>  [3700]  160542  160543  160544  160545  160549  160550  160551  160552  160553
#>  [3709]  160674  160675  160676  160690  160692  160693  160694  160695  160696
#>  [3718]  160697  160698  160779  161047  161048  161188  161189  161193  161202
#>  [3727]  161291  161292  161548  161549  161550  161551  161552  161553  161554
#>  [3736]  161555  161556  161557  161558  161559  161560  161561  161562  161563
#>  [3745]  161564  161565  161566  161587  161627  161767  161780  161781  161787
#>  [3754]  161788  161789  161790  161791  161792  161793  161794  161795  161796
#>  [3763]  161797  161798  161800  161802  161805  161809  161810  161814  161815
#>  [3772]  161816  161817  161819  161820  161888  161889  161890  161909  162392
#>  [3781]  162558  162591  162594  162595  162596  162605  162830  163322  163323
#>  [3790]  163324  163325  163326  163331  163332  163333  163817  163818  163819
#>  [3799]  163821  163822  163823  163824  163826  163827  163830  163831  163832
#>  [3808]  163833  163834  163835  163836  163964  163965  163994  164943  165066
#>  [3817]  165067  165068  165069  165070  165071  165072  165073  165074  165075
#>  [3826]  165076  165077  165078  165079  165080  165081  165082  165083  165084
#>  [3835]  165085  165086  165087  165088  165089  165090  165091  165236  165252
#>  [3844]  165253  165453  165601  165602  165606  165607  165608  165609  165610
#>  [3853]  165754  165755  165757  165904  165929  166041  166042  166043  166044
#>  [3862]  166046  166047  166048  166049  166050  166058  166203  166205  166207
#>  [3871]  166209  166211  166213  166215  166217  166222  166227  166399  166535
#>  [3880]  166696  166698  166996  166997  166998  166999  167000  167001  167002
#>  [3889]  167003  167228  167274  167277  167278  167279  167280  167281  167282
#>  [3898]  167283  167284  167285  167286  167287  167289  167290  167292  167293
#>  [3907]  167294  167295  167296  167297  167298  167299  167300  167301  167350
#>  [3916]  167435  167436  167437  167438  167439  167440  167441  167442  167443
#>  [3925]  167552  167559  167573  167582  167588  167592  167594  167597  167599
#>  [3934]  167602  167707  167708  167710  168704  168705  168742  168891  169094
#>  [3943]  169095  169096  175322  175323  175324  175325  175326  175327  175328
#>  [3952]  175329  175330  175331  175332  175333  175471  175472  175474  175475
#>  [3961]  175476  175478  175479  175480  175481  175483  175484  175487  175489
#>  [3970]  175490  175491  175492  175493  175494  175495  175496  175498  175499
#>  [3979]  175500  175504  175505  175506  175507  175511  175512  175513  175514
#>  [3988]  175656  175657  175658  175660  175661  175663  175664  175665  175666
#>  [3997]  175667  175668  175669  175670  175671  175672  175673  175674  175675
#>  [4006]  175676  175677  175678  175679  175680  175681  175684  175686  175687
#>  [4015]  175688  175689  175690  175691  175692  175693  175694  175695  175696
#>  [4024]  175697  175698  175699  175700  175701  175702  175703  175836  175837
#>  [4033]  175838  175839  175840  175841  175843  175846  175848  175849  175851
#>  [4042]  175853  175855  175856  175857  175858  175860  175868  175869  175870
#>  [4051]  175872  175873  175874  175876  175877  175878  175879  175880  175881
#>  [4060]  175882  175885  175886  175887  175888  175889  176015  176016  176017
#>  [4069]  176018  176019  176020  176021  176022  176023  176024  176027  176028
#>  [4078]  176029  176030  176031  176032  176035  176036  176038  176039  176040
#>  [4087]  176041  176042  176043  176044  176045  176046  176047  195054  195179
#>  [4096]  195180  195181  195182  195353  195354  195368  195397  195413  195414
#>  [4105]  195415  195416  195417  195419  195433  195434  195594  195736  195899
#>  [4114]  195900  195901  195921  195922  195923  195924  196215  196228  196230
#>  [4123]  196384  196559  196562  196566  196567  196568  196569  196570  196571
#>  [4132]  196572  196574  196932  196933  196934  196935  196936  196937  196938
#>  [4141]  196939  196940  196941  196943  197099  197265  197348  197349  197350
#>  [4150]  197351  197352  197353  197355  197356  197357  197358  197359  197360
#>  [4159]  197361  197362  197363  197364  197365  197366  197658  197820  197821
#>  [4168]  197822  197906  197908  197909  197919  197920  197921  197922  197923
#>  [4177]  198028  198029  198030  198031  198032  198033  198034  198035  198189
#>  [4186]  198190  198199  198201  198202  198203  198205  198207  198208  198361
#>  [4195]  198363  198364  198365  198374  198375  198376  198377  198378  198379
#>  [4204]  198381  198382  198383  198521  198522  198523  198525  198558  198559
#>  [4213]  198711  198713  198714  198715  198717  198719  198720  198883  198886
#>  [4222]  198887  198888  198889  198896  198897  198898  198899  198900  198902
#>  [4231]  198903  198904  198905  198938  199034  199036  199067  199123  199124
#>  [4240]  199198  199199  199201  199202  199204  199205  199218  199219  199220
#>  [4249]  199222  199223  199224  199320  199322  199327  199344  199346  199353
#>  [4258]  199354  199356  199358  199359  199360  199372  199373  199375  199376
#>  [4267]  199377  199378  199383  199384  199386  199388  199389  199391  199393
#>  [4276]  199475  199476  199477  199478  199479  199480  199481  199482  199483
#>  [4285]  199506  199507  199508  199618  199626  199628  199629  199631  199632
#>  [4294]  199633  199643  199644  199647  199780  199782  199783  199785  199786
#>  [4303]  199787  199788  199789  199799  199800  199801  199802  199812  199850
#>  [4312]  199851  199941  199942  199943  199945  199946  199947  199948  199957
#>  [4321]  199959  199960  199961  199973  199988  199989  199990  199991  199992
#>  [4330]  199993  199994  199995  199996  199997  199998  199999  200000  200001
#>  [4339]  200002  200003  200004  200005  200008  200009  200010  200106  200108
#>  [4348]  200109  200110  200112  200113  200115  200118  200120  200762  200784
#>  [4357]  200786  200922  200923  200924  201327  201328  201451  201453  201466
#>  [4366]  201467  201468  201470  201471  201616  201617  201783  201784  201900
#>  [4375]  201901  202341  202342  202391  202400  202484  202485  202807  202932
#>  [4384]  202933  203242  203243  203769  203770  203908  203910  203911  204031
#>  [4393]  204032  204033  204038  204039  204040  204045  204046  204047  204048
#>  [4402]  204164  204165  204175  204176  204177  204178  204262  204263  204332
#>  [4411]  205476  208096  208097  208099  208100  208226  208263  208533  208553
#>  [4420]  208555  208675  208677  208678  208679  208680  208695  208871  208872
#>  [4429]  208880  209004  209191  209321  209329  209333  209370  209371  209543
#>  [4438]  209955  209960  209973  210168  210291  210307  210453  210454  210529
#>  [4447]  210634  210635  210767  210768  211097  211098  211288  211289  211290
#>  [4456]  211291  211292  211293  211303  211304  211407  211906  211907  211908
#>  [4465]  211909  211922  211924  211925  211927  211928  212269  212381  212382
#>  [4474]  212383  212398  212399  212425  212746  212807  212808  212809  212810
#>  [4483]  212941  213162  213168  213169  213174  213178  213179  213180  213190
#>  [4492]  213192  213392  213393  213397  213450  213452  213461  213985  214056
#>  [4501]  214057  214058  214059  214060  214083  214086  214208  214574  214854
#>  [4510]  214966  215140  215143  215144  215145  215150  215151  215153  215324
#>  [4519]  215434  215435  215612  216135  216153  216154  216155  216156  216157
#>  [4528]  216278  216298  216299  216300  216301  216302  216303  216304  216305
#>  [4537]  216306  216307  216308  216378  216459  216461  216462  216463  216464
#>  [4546]  216465  216467  216468  216549  216550  216955  216956  216957  216958
#>  [4555]  216995  217192  217263  217264  217265  217266  217267  217268  217269
#>  [4564]  217293  217430  217431  217432  217433  217434  217435  217436  217493
#>  [4573]  217495  217496  217497  217507  217508  217556  217557  217558  217559
#>  [4582]  217560  217561  217562  217563  217564  217621  217659  217660  217661
#>  [4591]  217662  217664  217665  217666  217667  217668  217669  217670  217671
#>  [4600]  217672  217781  217785  217787  217806  217953  217954  218159  218161
#>  [4609]  218163  218165  218183  218184  218185  218186  218187  218296  218297
#>  [4618]  218311  218314  218469  218470  218471  218489  218490  218491  218492
#>  [4627]  218496  218497  218498  218499  218500  218502  218503  218508  218713
#>  [4636]  218766  218834  218839  218850  218854  218859  218861  218879  218881
#>  [4645]  218954  219017  219018  219066  219072  219082  219245  219246  219401
#>  [4654]  219422  219637  219638  219639  219644  219674  219760  219761  219772
#>  [4663]  219773  219775  219778  219787  219788  219828  219903  219913  219922
#>  [4672]  219936  219945  219962  220021  220029  220051  220079  220080  220391
#>  [4681]  220415  220451  220452  220734  220737  220755  220771  220773  220777
#>  [4690]  220781  220786  220787  220791  220909  220925  220926  221362  221489
#>  [4699]  221490  221501  221505  221511  221515  221517  221526  221527  221659
#>  [4708]  221663  221665  221666  221667  221670  221671  221672  221675  221676
#>  [4717]  221679  221684  221685  221686  221688  221690  221694  221695  221697
#>  [4726]  221770  221774  221828  221830  221832  221834  221835  221952  221993
#>  [4735]  222113  222114  222144  222177  222178  222292  222323  222475  222476
#>  [4744]  222477  222478  223046  223047  223049  223061  223179  223181  223182
#>  [4753]  223183  223194  223197  223200  223208  223209  223222  223355  223356
#>  [4762]  223371  223379  223390  223523  223528  223529  223541  223544  223547
#>  [4771]  223550  223555  223578  224012  224112  224183  224186  224188  224349
#>  [4780]  224558  224581  224582  224610  224611  224940  224948  224977  224978
#>  [4789]  224979  224980  225444  225716  225717  225721  225723  225724  225749
#>  [4798]  225750  225751  225752  225951  226202  227614  227628  227629  227653
#>  [4807]  227792  227795  227799  227800  227871  227872  228008  228011  228015
#>  [4816]  228016  228040  228041  228042  228178  228418  228429  228807  228808
#>  [4825]  228859  228860  228861  228862  228864  228867  228868  228869  228870
#>  [4834]  228871  228872  228873  228874  229033  229035  235906  240032  240033
#>  [4843]  240034  240035  240036  240037  240038  240039  240040  240041  240042
#>  [4852]  240044  240045  240046  240047  240048  240049  240050  240051  240052
#>  [4861]  240053  240054  240057  240058  240059  240060  240061  240062  240063
#>  [4870]  240064  240065  240067  240068  240069  240073  240074  240075  240076
#>  [4879]  240077  240078  240079  240081  240082  240083  240085  240086  240087
#>  [4888]  240088  240089  240090  240091  240092  240093  240097  240098  240099
#>  [4897]  240100  240101  240102  240103  240104  240105  240106  240108  240109
#>  [4906]  240110  240111  240112  240115  240116  240117  240119  240120  240121
#>  [4915]  240122  240123  240125  240126  240128  240129  240130  240131  240133
#>  [4924]  240134  240135  240136  240139  240140  240141  240142  240143  240144
#>  [4933]  240145  240148  240149  240150  240151  240152  240153  240155  240156
#>  [4942]  240158  240159  240160  240161  240162  240163  240165  240166  240167
#>  [4951]  240169  240170  240172  240173  240175  240176  240178  240179  240180
#>  [4960]  240181  240182  240184  240185  240186  240188  240189  240190  240192
#>  [4969]  240193  240194  240195  240196  240202  240203  240204  240205  240206
#>  [4978]  240208  240209  240210  240211  240212  240213  240214  240215  240216
#>  [4987]  240217  240218  240219  240220  240221  240222  240223  240225  240227
#>  [4996]  240228  240229  240230  240231  240232  240233  240234  240235  240236
#>  [5005]  240237  240238  240239  240240  240242  240243  240244  240245  240246
#>  [5014]  240247  240248  240249  240250  240251  240252  240253  240256  240257
#>  [5023]  240258  240265  240267  240268  240270  240271  240272  240274  240275
#>  [5032]  240276  240277  240279  240280  240281  240282  240283  240284  240291
#>  [5041]  240292  240293  240294  240295  240297  240298  240300  240301  240302
#>  [5050]  240303  240304  240307  240308  240309  240310  240311  240312  240313
#>  [5059]  240314  240315  240316  240318  240319  240321  240322  240323  240324
#>  [5068]  240325  240326  240327  240328  240329  240330  240331  240332  240333
#>  [5077]  240334  240335  240336  240337  240338  240339  240340  240341  240342
#>  [5086]  240343  240344  240345  240346  240347  240348  240349  240350  240351
#>  [5095]  240352  240353  240354  240355  240356  240357  240358  240359  240364
#>  [5104]  240365  240366  240367  240368  240372  240373  240374  240375  240376
#>  [5113]  240377  240378  240379  240380  240381  240382  240383  240384  240385
#>  [5122]  240386  240387  240388  240389  240392  243145  243146  243147  243148
#>  [5131]  243150  243454  243455  243456  246022  246023  246027  246028  246029
#>  [5140]  246030  246031  246032  246033  246034  246036  246037  246038  246039
#>  [5149]  246040  246041  246042  246043  246044  246045  246046  246047  246048
#>  [5158]  246049  246051  246052  246053  246054  246055  246056  246059  246061
#>  [5167]  246062  246063  246064  246065  246066  246067  246068  246069  246070
#>  [5176]  246071  246073  246074  246075  246076  246077  246078  246080  246081
#>  [5185]  246082  246086  246087  246088  246089  246090  246091  246092  246093
#>  [5194]  246094  246095  246096  246111  246112  246113  246115  246117  246118
#>  [5203]  246119  246120  246121  246122  246123  246124  246125  246126  246127
#>  [5212]  246128  246129  246130  246131  246132  246133  246134  246135  246136
#>  [5221]  246137  246138  246139  246140  246142  246143  246144  246145  246146
#>  [5230]  246148  246149  246150  246151  246152  246153  246154  246155  246157
#>  [5239]  246158  246159  246160  246161  246162  246163  246164  246167  246168
#>  [5248]  246169  246170  246171  246172  246173  246174  246175  246176  246177
#>  [5257]  246178  246179  246180  246181  246182  246183  246184  246185  246186
#>  [5266]  246187  246188  246189  246190  246191  246192  246193  246194  246195
#>  [5275]  246196  246197  246198  246199  246200  246201  246202  246203  246204
#>  [5284]  246205  246206  246207  246209  246210  246212  246213  246214  246215
#>  [5293]  246216  246219  246220  246221  246224  246225  246226  246227  246229
#>  [5302]  246230  246231  246232  246233  246237  246238  246240  246241  246242
#>  [5311]  246243  246244  246245  246246  246250  246251  246252  246254  246255
#>  [5320]  246256  246257  246258  246260  246261  246262  246263  246265  246266
#>  [5329]  246267  246268  246269  246272  246274  246275  246277  246278  246281
#>  [5338]  246282  246283  246287  246288  246289  246290  246291  246292  246293
#>  [5347]  246294  246295  246296  246298  246299  246300  246301  246302  246304
#>  [5356]  246305  246307  246309  246310  246311  246312  246313  246314  246315
#>  [5365]  246317  246318  246321  246322  246323  246324  246325  246326  246328
#>  [5374]  246329  246330  246331  246332  246333  246336  246337  246338  246339
#>  [5383]  246340  246341  246342  246343  246344  246345  246346  246347  246348
#>  [5392]  246349  246350  246351  246352  246354  246355  246358  246359  246360
#>  [5401]  246361  246362  246363  246364  246366  246367  246368  246369  246370
#>  [5410]  246371  246372  246373  246374  246376  246377  246378  246379  246380
#>  [5419]  246381  246382  246383  246384  246385  246386  246387  246388  246389
#>  [5428]  246390  246391  246392  246393  246394  246395  246396  246397  246399
#>  [5437]  246400  246401  246402  246403  246404  246405  246406  246407  246408
#>  [5446]  246409  246410  246411  246412  246413  246414  246415  246416  246417
#>  [5455]  246421  246422  246425  246429  246430  246431  246432  246433  246434
#>  [5464]  246435  246436  246437  246438  246439  246440  246441  246446  246447
#>  [5473]  246448  246449  246450  246451  246452  246453  246457  246458  246459
#>  [5482]  246460  246461  246462  246463  246464  246466  246467  246468  246470
#>  [5491]  246471  246472  246473  246474  246476  246477  246478  246479  246482
#>  [5500]  246483  246484  246486  246487  246488  246489  246490  246493  246499
#>  [5509]  246500  246501  246502  246503  246504  246506  246507  246508  246509
#>  [5518]  246511  246513  246514  246515  246518  246520  246521  246522  246523
#>  [5527]  246524  246525  246529  246530  246532  246536  246537  246538  246539
#>  [5536]  246540  246541  246542  246543  246544  246545  246546  246547  246548
#>  [5545]  246549  246550  246551  246552  246553  246554  246556  246557  246558
#>  [5554]  246560  246561  246562  246563  246566  246567  246568  246569  246570
#>  [5563]  246571  246572  246573  246574  246575  246579  246581  246588  246589
#>  [5572]  246590  246591  246597  246602  246614  246615  246616  246617  246626
#>  [5581]  246633  246644  246650  246651  246655  246658  246659  246660  246661
#>  [5590]  246662  246663  246664  246665  246666  246667  246668  246669  246670
#>  [5599]  246671  246672  246676  246680  246681  246682  246683  246685  246686
#>  [5608]  246687  246688  246695  246702  246704  246705  246706  246707  246711
#>  [5617]  246716  246719  246730  246733  246734  246735  246736  246737  246750
#>  [5626]  246751  246752  246753  246754  246755  246756  246757  246758  246759
#>  [5635]  246760  249502  249503  249504  249505  249506  249507  249508  249509
#>  [5644]  249511  249512  249513  249514  249515  249516  249517  249518  249519
#>  [5653]  253260  253457  253458  253459  253507  253508  253509  253510  254615
#>  [5662]  254616  254617  254618  254619  254620  254621  254622  254623  254624
#>  [5671]  254625  254626  254627  254628  254629  254630  254632  254636  254637
#>  [5680]  254638  254639  254640  254641  254642  254643  254644  254646  254647
#>  [5689]  254648  254649  254650  254651  254652  254653  254654  254655  254656
#>  [5698]  254657  254658  255195  255196  255197  255198  255635  255636  255637
#>  [5707]  255639  255640  255642  255643  255644  255646  255647  255648  255649
#>  [5716]  255650  255651  255652  255653  255654  255655  255656  255657  255662
#>  [5725]  255663  255664  255665  255666  255667  255668  255669  255670  255671
#>  [5734]  255672  256547  256548  256556  256557  256558  256759  256766  256767
#>  [5743]  256768  256769  256776  256777  256778  256863  256881  257120  257121
#>  [5752]  257135  257136  257137  257142  257166  257167  257168  257169  257179
#>  [5761]  257180  257270  257271  257272  257273  257275  257302  257304  257335
#>  [5770]  257336  257394  257395  257522  257652  257653  257800  257826  257905
#>  [5779]  258069  258070  258091  258092  258230  258231  258416  258418  258420
#>  [5788]  258422  258515  258516  258546  258632  258675  258676  258677  258678
#>  [5797]  258679  258680  258749  258750  258765  258766  258786  258787  258788
#>  [5806]  258805  258806  258807  258808  258809  258810  258953  258955  258957
#>  [5815]  258967  258970  258973  258974  258989  258990  258991  258992  258993
#>  [5824]  259169  259177  259178  259179  259181  259182  259201  259202  259203
#>  [5833]  259204  259221  259222  259335  259336  259400  259402  259410  259411
#>  [5842]  259412  259413  259414  259453  259454  259455  259527  259544  259545
#>  [5851]  259546  259547  259548  259549  259550  259551  259552  259553  259615
#>  [5860]  259623  259686  259687  259688  259689  259692  259711  259712  259713
#>  [5869]  259714  259715  259716  259754  259758  259759  259760  259793  259794
#>  [5878]  259795  259849  259977  259978  259984  260023  260024  260025  260026
#>  [5887]  260048  260058  260059  260060  260064  260065  260066  260141  260142
#>  [5896]  260154  260155  260175  260225  260235  260237  260310  260322  260323
#>  [5905]  260324  260465  260480  260481  260482  260555  260559  260715  260765
#>  [5914]  260790  260834  260992  260994  261016  261018  261019  261020  261021
#>  [5923]  261022  261023  261043  261071  261073  261075  261077  261096  261097
#>  [5932]  261212  261213  261281  261422  261424  261442  261530  261583  261586
#>  [5941]  261589  261590  261615  261677  261683  261684  261685  261686  261696
#>  [5950]  261697  261698  261699  261711  261715  261717  261838  261840  261842
#>  [5959]  261844  261855  261857  261859  261861  261864  261901  261929  261943
#>  [5968]  261944  261945  261946  261947  261948  262091  262093  262100  262101
#>  [5977]  262176  262320  262339  262352  262372  262565  262628  262629  262630
#>  [5986]  262799  262881  262953  262955  262984  263081  263152  263172  263173
#>  [5995]  263175  263185  263199  263233  263321  263338  263507  263512  263513
#>  [6004]  263514  263515  263516  263517  263518  263519  263520  263521  263522
#>  [6013]  263531  263582  263603  263604  263665  263796  263797  263799  263800
#>  [6022]  263807  263808  263855  263893  263898  263899  263920  263922  263924
#>  [6031]  264018  264019  264042  264045  264106  264108  264215  264242  264244
#>  [6040]  264336  264374  264375  264377  264437  264438  264443  264444  264515
#>  [6049]  264516  264782  264931  264932  264933  264934  264935  264939  264940
#>  [6058]  264941  265015  265017  265081  265129  265131  265133  265135  265137
#>  [6067]  265139  265141  265201  265221  265341  265342  265460  265462  265465
#>  [6076]  265467  265468  265469  265471  265472  265473  265478  265566  265573
#>  [6085]  265574  265575  265576  265583  265610  265660  265705  265706  265757
#>  [6094]  265920  265921  265922  265923  265953  266020  266069  266245  266246
#>  [6103]  266280  266281  266284  266285  266287  266365  266368  266462  266463
#>  [6112]  266464  266546  266547  266550  266551  266552  266553  266580  266581
#>  [6121]  266583  266585  266588  266655  266659  266680  266681  266719  266757
#>  [6130]  266786  266788  266949  266951  267078  267079  267081  267301  267551
#>  [6139]  267552  267645  267647  267648  267649  267650  267700  267712  267713
#>  [6148]  267714  267733  267775  267784  267813  267820  267854  267855  267856
#>  [6157]  267857  267858  267944  267945  267947  267948  267949  268029  268069
#>  [6166]  268111  268223  268224  268225  268226  268227  268254  268255  268279
#>  [6175]  268280  268284  268302  268303  268304  268305  268306  268363  268364
#>  [6184]  268365  268380  268555  268556  268557  268576  268610  268611  268613
#>  [6193]  268616  268625  268682  268683  268699  268700  268752  268753  268883
#>  [6202]  268884  268885  268991  269009  269180  269188  269190  269292  269319
#>  [6211]  269320  269321  269342  269352  269363  269369  269370  269371  269376
#>  [6220]  269459  269477  269479  269575  269577  269579  269598  269599  269685
#>  [6229]  269686  269687  269688  269689  269690  269703  269704  269793  269795
#>  [6238]  269796  269797  269798  269799  269800  269801  269802  269803  269804
#>  [6247]  269805  269870  269871  269872  269878  269884  269886  269897  269898
#>  [6256]  269899  269951  270069  270070  270071  270081  270082  270083  270084
#>  [6265]  270107  270227  270235  270236  270237  270238  270239  270240  270251
#>  [6274]  270252  270253  270304  270305  270306  270307  270358  270359  270360
#>  [6283]  270366  270367  270368  270369  270378  270379  270380  270387  270388
#>  [6292]  270389  270407  270408  270492  270575  270576  270577  270598  270600
#>  [6301]  270602  270609  270626  270628  270630  270699  270700  270701  270906
#>  [6310]  270908  270913  270919  271016  271017  271018  271019  271020  271021
#>  [6319]  271022  271052  271055  271058  271059  271060  271061  271091  271157
#>  [6328]  271158  271159  271163  271166  271167  271182  271413  271414  271415
#>  [6337]  271506  271507  271644  271663  271665  271717  271721  271722  271725
#>  [6346]  271845  272282  272284  272316  272317  272318  272319  272328  272330
#>  [6355]  272331  272394  272396  272398  272485  272570  272571  272687  272689
#>  [6364]  272716  272719  272722  272725  272734  272946  272971  272979  272982
#>  [6373]  272983  273043  273044  273046  273048  273049  273052  273053  273054
#>  [6382]  273056  273058  273059  273061  273106  273108  273206  273207  273355
#>  [6391]  273356  273357  273408  273410  273411  273414  273415  273416  273420
#>  [6400]  273421  273425  273529  273530  273532  273533  273535  273727  273903
#>  [6409]  273908  273997  273998  273999  274000  274001  274002  274003  274004
#>  [6418]  274132  274150  274175  274317  274318  274319  274320  274419  274420
#>  [6427]  274421  274437  274441  274442  274443  274444  274445  274566  274567
#>  [6436]  274568  274585  274592  274602  274676  274678  274680  274694  274696
#>  [6445]  274698  274700  274702  274798  274860  274861  274988  274995  274997
#>  [6454]  275065  275066  275067  275068  275069  275070  275071  275072  275073
#>  [6463]  275074  275075  275076  275086  275284  275367  275390  275391  275394
#>  [6472]  275395  275473  275489  275490  275491  275636  275639  275640  275742
#>  [6481]  275787  275801  276010  276055  276063  276145  276147  276149  276151
#>  [6490]  276167  276170  276171  276172  276231  276332  276405  276452  276460
#>  [6499]  276474  276475  276587  276590  276591  276646  276713  276714  276808
#>  [6508]  276975  276976  276983  276984  276985  277005  277009  277016  277148
#>  [6517]  277149  277150  277180  277181  277182  277225  277226  277350  277353
#>  [6526]  277354  277355  277356  277487  277488  277489  277490  277491  277492
#>  [6535]  277493  277494  277497  277498  277499  277500  277661  277678  277680
#>  [6544]  277842  277976  278017  278340  278344  278345  278346  278409  278410
#>  [6553]  278411  278412  278413  278414  278415  278416  278812  278813  278816
#>  [6562]  278817  278818  279482  279483  279484  279485  279486  279487  279488
#>  [6571]  279489  279490  279491  279492  279493  279494  279495  279496  279497
#>  [6580]  279498  279499  279500  279501  279502  279516  279517  279518  279519
#>  [6589]  279520  279521  279522  279523  279524  279525  279526  279527  279528
#>  [6598]  279529  279546  279547  279548  279549  279550  279551  279577  279579
#>  [6607]  279581  279710  279711  279712  279713  279714  279715  279719  279722
#>  [6616]  279723  279724  279725  279726  279727  279729  279969  279983  279988
#>  [6625]  279989  279990  279991  279992  279993  279994  279995  280013  280014
#>  [6634]  280023  280024  280025  280026  280054  280058  280060  280114  280115
#>  [6643]  280116  280297  280298  280299  280301  280390  280441  280442  280443
#>  [6652]  280492  280804  280805  280806  280836  280837  280838  280852  280853
#>  [6661]  280854  280857  280858  280859  280861  280862  280863  280864  280880
#>  [6670]  280881  280882  280883  280884  280956  280958  280960  280963  280994
#>  [6679]  281137  281139  281140  281240  281241  281243  281244  281255  281256
#>  [6688]  281261  281281  281402  281403  281407  281432  281445  281446  281447
#>  [6697]  281448  281449  281450  281465  281466  281511  281517  281520  281523
#>  [6706]  281525  281526  281698  281699  281700  281915  282082  282086  282096
#>  [6715]  282102  282103  282111  282130  282132  282134  282274  282275  282345
#>  [6724]  282350  282351  282353  282355  282356  282357  282390  282391  282392
#>  [6733]  282393  282453  282454  282455  282457  282459  282476  282564  282580
#>  [6742]  282582  282583  282584  282640  282642  282644  282645  282648  282649
#>  [6751]  282650  282651  282652  282653  282655  282657  282658  282660  282662
#>  [6760]  282705  282706  282707  282708  282719  282743  282750  282754  282791
#>  [6769]  282793  282794  282795  282903  283043  283258  283259  283260  283261
#>  [6778]  283263  283264  283265  283267  283268  283271  283272  283275  283431
#>  [6787]  283440  283442  283444  283446  283692  283813  283907  283908  283976
#>  [6796]  283977  284076  284121  284150  284158  284159  284288  284407  284408
#>  [6805]  284409  284410  284411  284448  284452  284453  284454  284455  284759
#>  [6814]  284761  284809  284810  284811  284812  284813  285943  286300  286308
#>  [6823]  286312  286541  286542  286543  286544  286546  286656  286657  286677
#>  [6832]  286711  286758  286945  286946  286947  286975  286982  287170  287171
#>  [6841]  287176  287282  287283  287581  287686  287733  287777  287791  287893
#>  [6850]  287898  288000  288001  288002  288003  288004  288007  288009  288011
#>  [6859]  288302  288422  288431  288554  288556  288558  288641  288642  288683
#>  [6868]  288685  288714  288847  288848  288855  288856  288921  288922  288925
#>  [6877]  288926  288927  288928  288948  288973  288974  288975  289106  289131
#>  [6886]  289141  289527  289606  289607  289608  289609  289610  289611  289614
#>  [6895]  289933  289934  290119  290120  290121  290122  290227  290262  290264
#>  [6904]  290286  290339  290435  290477  290478  290580  290607  290702  290703
#>  [6913]  290735  290780  290793  290799  290800  290876  290879  290901  290902
#>  [6922]  290903  290932  290935  290994  290997  290998  290999  291000  291022
#>  [6931]  291024  291027  291028  291029  291030  291033  291034  291035  291036
#>  [6940]  291037  291168  291169  291170  291171  291172  291173  291180  291241
#>  [6949]  291242  291243  291244  291280  291364  291613  291616  291762  291814
#>  [6958]  291817  291818  291861  291934  291935  291955  292083  292378  292379
#>  [6967]  292380  292381  292560  292645  292648  292699  292707  292937  292938
#>  [6976]  292939  292962  293300  293318  293371  293372  293511  293512  293555
#>  [6985]  293558  293559  293560  293561  293562  293563  293564  293565  293750
#>  [6994]  293754  293755  293756  293757  293826  293828  293830  293831  293833
#>  [7003]  293941  294053  294074  294075  294076  294090  294203  294360  294361
#>  [7012]  294362  294384  294387  294390  294393  294629  294630  294636  294637
#>  [7021]  294638  294639  294640  294817  294818  295006  295059  295060  295061
#>  [7030]  295062  295063  295064  295152  295320  295323  295324  295378  295432
#>  [7039]  295523  295635  295911  295912  295913  295914  295915  296058  296061
#>  [7048]  296076  296219  296263  296294  296301  296303  296305  296307  296522
#>  [7057]  296523  296524  296525  296541  296546  296548  296550  296552  296603
#>  [7066]  296605  296607  296642  296672  296673  296674  296675  296676  296677
#>  [7075]  296803  296804  296805  296814  296816  296887  296913  296914  296916
#>  [7084]  296918  296920  296922  296924  296940  297005  297094  297135  297137
#>  [7093]  297138  297139  297140  297141  297142  297143  297144  297149  297175
#>  [7102]  297203  297205  297217  297218  297306  297307  297308  297309  297337
#>  [7111]  297338  297345  297347  297349  297351  297353  297355  297357  297359
#>  [7120]  297362  297364  297366  297370  297371  297450  297451  297457  297459
#>  [7129]  297472  297663  297671  297837  297856  297911  297928  297929  297930
#>  [7138]  297931  297967  297968  297969  297970  297971  297990  297991  297992
#>  [7147]  297993  297994  297995  298060  298061  298062  298066  298067  298093
#>  [7156]  298201  298202  298203  298207  298211  298332  298496  298502  298545
#>  [7165]  298634  298635  298636  298764  299023  299026  299027  299028  299029
#>  [7174]  299030  299031  299090  299144  299251  299252  299281  299282  299305
#>  [7183]  299410  299412  299420  299523  299563  299564  299612  299613  299614
#>  [7192]  299621  299623  299625  299695  299750  299751  299752  299753  299754
#>  [7201]  299755  299773  299774  299787  299788  299789  299793  299922  299923
#>  [7210]  300085  300160  300163  300321  300322  300512  300514  300516  300614
#>  [7219]  300620  300622  300691  300704  300874  300877  300879  300919  300921
#>  [7228]  301152  301180  301183  301193  301247  301325  301341  301343  301356
#>  [7237]  301483  301609  301623  301624  301625  301650  301651  301821  301863
#>  [7246]  301900  301941  301953  302024  302026  302028  302101  302150  302202
#>  [7255]  302207  302249  302251  302253  302254  302255  302369  302565  302566
#>  [7264]  302620  302673  302674  302683  302769  302773  302774  302806  302808
#>  [7273]  302817  302818  302820  302984  302988  302989  303074  303095  303285
#>  [7282]  303286  303287  303288  303289  303290  303291  303357  303359  303407
#>  [7291]  303409  303411  303699  303727  303728  303734  303745  303830  303831
#>  [7300]  303954  304079  304084  304208  304334  304335  304336  304381  304398
#>  [7309]  304868  304869  304870  304871  304882  304883  304884  304885  304927
#>  [7318]  304928  304929  304930  304931  304980  305001  305012  305057  305137
#>  [7327]  305154  305220  305221  305222  305223  305235  305248  305249  305250
#>  [7336]  305251  305271  305283  305284  305285  305319  305320  305543  305544
#>  [7345]  305545  305652  305653  305654  305794  305981  305983  306141  306149
#>  [7354]  306150  306151  306152  306153  306154  306169  306171  306286  306427
#>  [7363]  306521  306525  306548  306630  306637  306713  306735  306866  307017
#>  [7372]  307018  307118  307130  307132  307134  307199  307302  307303  307304
#>  [7381]  307307  307519  307520  307667  307669  307671  307697  307699  307701
#>  [7390]  307857  307858  307878  308075  308143  308146  308148  308194  308197
#>  [7399]  308283  308287  308295  308319  308320  308321  308331  308332  308333
#>  [7408]  308431  308432  308433  308437  308438  308439  308457  308458  308459
#>  [7417]  308466  308467  308545  308653  308657  308735  308788  308789  308791
#>  [7426]  308827  308927  308986  308999  309009  309056  309094  309101  309177
#>  [7435]  309193  309208  309209  309210  309232  309257  309260  309338  309358
#>  [7444]  309359  309360  309377  309378  309413  309416  309549  309550  309637
#>  [7453]  309638  309640  309641  309675  309710  309951  309992  309993  309994
#>  [7462]  309995  309997  310009  310025  310110  310111  310150  310237  310239
#>  [7471]  310241  310252  310271  310272  310291  310293  310349  310355  310356
#>  [7480]  310357  310358  310363  310364  310365  310590  310653  310654  310686
#>  [7489]  310687  310882  310942  311523  311578  311946  311960  311961  311962
#>  [7498]  311963  311976  311985  312010  312285  312287  312472  312473  312474
#>  [7507]  312479  312492  312493  312494  312519  312551  312629  312639  312642
#>  [7516]  312783  312898  312902  312903  312904  312905  312906  312907  312910
#>  [7525]  312971  312972  312973  313034  313150  313165  313166  313191  313192
#>  [7534]  313193  313194  313261  313344  313345  313346  313450  313452  313454
#>  [7543]  313456  313458  313460  313462  313467  313747  313748  313749  313751
#>  [7552]  313753  313755  313871  313874  313876  313901  314130  314131  314172
#>  [7561]  314173  314189  314190  314212  314277  314488  314499  314502  314546
#>  [7570]  314548  314552  314710  314722  314834  314836  314933  314936  314938
#>  [7579]  315040  315041  315042  315476  315591  315736  315755  315756  315757
#>  [7588]  315822  315869  316053  316093  316116  316333  316334  316426  316500
#>  [7597]  316708  316709  316761  316762  316813  316843  316844  316845  316860
#>  [7606]  316861  316900  316901  316902  316903  316904  316905  316906  316907
#>  [7615]  316908  316909  316943  316954  317002  317010  317143  317145  317212
#>  [7624]  317213  317214  317217  317259  317288  317317  317369  317438  317532
#>  [7633]  317535  317536  317537  317538  317539  317540  317541  317542  317595
#>  [7642]  317596  317609  317636  317698  317729  317730  317731  317749  317755
#>  [7651]  317949  317952  318036  318037  318039  318121  318122  318123  318131
#>  [7660]  318220  318247  318248  318249  318265  318266  318336  318383  318404
#>  [7669]  318405  318408  318409  318410  318815  319020  319064  319175  319177
#>  [7678]  319179  319181  319183  319185  319187  319188  319189  319191  319298
#>  [7687]  319299  319562  319588  319618  319630  319743  319871  319880  319881
#>  [7696]  319882  319883  319893  319897  319898  319899  319900  319901  319902
#>  [7705]  319915  319925  319957  320050  320094  320317  320318  320319  320325
#>  [7714]  320353  320360  320361  320371  320374  320379  320417  320419  320420
#>  [7723]  320589  320637  320655  320656  320660  320686  320687  320688  320694
#>  [7732]  320695  320750  320752  320754  320802  320925  320926  320927  320928
#>  [7741]  321250  321280  321284  321339  321362  321363  321387  321388  321395
#>  [7750]  321576  321579  321653  321661  321662  321685  321686  321687  321688
#>  [7759]  321689  321690  321691  321692  321738  321740  321741  321742  321762
#>  [7768]  321763  321764  321765  321766  321767  321769  321770  321771  321787
#>  [7777]  321864  321879  321901  321903  321905  322034  322073  322074  322075
#>  [7786]  322076  322077  322087  322094  322096  322097  322098  322101  322102
#>  [7795]  322103  322104  322105  322106  322107  322108  322109  322110  322111
#>  [7804]  322112  322113  322114  322115  322116  322117  322118  322119  322120
#>  [7813]  322121  322122  322123  322223  322225  322284  322392  322454  322485
#>  [7822]  322486  322487  322756  322763  322764  322765  322770  322771  322772
#>  [7831]  322796  322825  322827  322828  322829  322830  322834  322835  322836
#>  [7840]  322837  322838  322839  322840  322841  322842  322843  322947  323176
#>  [7849]  323177  323178  323179  323397  323646  323647  323648  323649  323650
#>  [7858]  323651  323652  323653  323654  323655  323657  323658  323699  323712
#>  [7867]  323713  323743  323747  323749  323777  323922  323982  323987  324623
#>  [7876]  324624  324625  324730  324731  324732  324733  324736  324737  324738
#>  [7885]  324739  324740  324755  324756  324757  324758  324764  324765  324766
#>  [7894]  324825  324912  324913  324914  324923  324925  324971  325342  325344
#>  [7903]  325616  325617  325753  325787  325788  325805  325806  325807  325822
#>  [7912]  325843  325970  325971  325972  326134  326135  326136  326137  326159
#>  [7921]  326160  326174  326202  326205  326206  326207  326208  326210  326247
#>  [7930]  326337  326338  326340  326373  326376  326389  326395  326579  326588
#>  [7939]  326592  326595  326609  326610  327075  327201  327202  327204  327338
#>  [7948]  327339  327340  327341  327343  327344  327345  327347  327348  327349
#>  [7957]  327362  327363  327364  327365  327366  327367  327368  327369  327370
#>  [7966]  327371  327372  327373  327374  327563  327738  327872  327873  327877
#>  [7975]  328019  328020  328021  328055  328056  328057  328116  328156  328157
#>  [7984]  328158  328159  328331  328670  328850  328923  328924  328925  328926
#>  [7993]  328927  328928  328999  329099  329363  329403  329463  329464  329496
#>  [8002]  329497  329499  329522  329537  329587  329645  329646  329787  329904
#>  [8011]  329906  330479  330485  330486  330489  330491  330492  330502  330511
#>  [8020]  330551  330564  330637  330729  330732  330816  330858  330896  331027
#>  [8029]  331033  331040  331041  331042  331201  331205  331223  331343  331456
#>  [8038]  331457  331502  331517  331576  331622  331623  331625  331627  331629
#>  [8047]  331660  331682  331699  331713  331872  331874  331890  331891  331892
#>  [8056]  331905  331906  332035  332081  332929  333023  333082  333119  333120
#>  [8065]  333121  333123  333369  333370  333371  333372  333508  333509  333703
#>  [8074]  333717  333718  334201  334275  334276  334277  334278  334279  334769
#>  [8083]  335489  335492  335899  336461  337172  339060  339308  339309  339404
#>  [8092]  339406  339408  339410  339412  339414  339416  339460  339461  339656
#>  [8101]  339695  339774  339809  339819  339843  339880  339882  339883  339885
#>  [8110]  339890  339894  339898  339900  339930  339931  339932  339933  340062
#>  [8119]  340063  340076  340124  340205  340528  340608  340609  341162  341163
#>  [8128]  341179  341180  341181  341182  341183  341210  341212  341427  341510
#>  [8137]  341690  341737  341744  341745  341760  341960  341962  342104  342111
#>  [8146]  342112  342113  342114  342115  342116  342118  342119  342120  342121
#>  [8155]  342527  342531  342532  342548  342550  342552  342719  342836  342837
#>  [8164]  342838  342865  342868  342891  342892  342893  342894  342895  342908
#>  [8173]  343012  343053  343098  343118  343141  343211  343216  343399  343400
#>  [8182]  343401  343499  343514  343516  343534  343588  343613  343657  343659
#>  [8191]  343694  343714  343852  343853  343854  343889  343890  343999  344000
#>  [8200]  344044  344045  344046  344076  344105  344106  344107  344155  344246
#>  [8209]  344247  344248  344295  344299  344301  344303  344308  344312  344313
#>  [8218]  344318  344319  344475  344476  344557  344610  344658  344659  344660
#>  [8227]  344675  344687  344725  344727  344729  344731  344733  344789  344819
#>  [8236]  344821  344858  344900  344929  344930  344945  344946  345023  345025
#>  [8245]  345031  345033  345035  345037  345039  345045  345125  345184  345194
#>  [8254]  345321  345346  345361  345362  345363  345365  345366  345367  345368
#>  [8263]  345369  345370  345371  345372  345373  345374  345375  345376  345377
#>  [8272]  345378  345473  345475  345490  345492  345494  345496  345683  345832
#>  [8281]  345881  345883  345885  346253  346265  346269  346272  346671  346673
#>  [8290]  346674  346675  346837  346953  346954  346955  347098  347314  347386
#>  [8299]  347387  347506  347603  347604  347607  347608  347609  347610  347611
#>  [8308]  347612  347613  347614  347615  347616  347617  347618  347619  347620
#>  [8317]  347621  347643  347645  347646  347649  347678  347715  347766  347768
#>  [8326]  347771  347796  347799  347983  348078  348129  348320  348325  348376
#>  [8335]  348436  348437  348493  348510  348511  348700  348822  348824  348839
#>  [8344]  348844  348845  349040  349044  349079  349080  349081  349085  349086
#>  [8353]  349165  349166  349181  349210  349246  349247  349248  349270  349274
#>  [8362]  349276  349498  349695  349697  349760  349761  349762  349783  349785
#>  [8371]  349786  349841  349842  349843  349848  349857  349858  349859  349860
#>  [8380]  349861  349864  349870  350002  350155  350159  350197  350199  350201
#>  [8389]  350203  350205  350209  350212  350213  350319  350320  350544  350551
#>  [8398]  350552  350553  350583  350584  350591  350659  350668  350672  350677
#>  [8407]  350678  350679  350683  350686  350688  350690  350692  350694  350696
#>  [8416]  350698  350867  350869  350871  351090  351091  351092  351096  351360
#>  [8425]  351362  351363  351365  351444  351445  351446  351562  351563  351564
#>  [8434]  351688  351689  351760  351761  351815  351942  351943  351946  351957
#>  [8443]  351958  352015  352017  352019  352178  352180  352258  352262  352470
#>  [8452]  352472  352529  352537  352540  352647  352649  352765  352766  352768
#>  [8461]  352919  353096  353225  353226  353227  353307  353326  353348  353349
#>  [8470]  353524  353650  353686  353688  353781  353782  353783  353800  353804
#>  [8479]  353962  353965  354023  354030  354031  354042  354043  354052  354071
#>  [8488]  354072  354248  354249  354250  354541  354595  354597  354599  354600
#>  [8497]  354817  355022  355165  355253  355997  356007  356649  356744  356952
#>  [8506]  357033  357051  357295  357421  357422  357425  357436  357437  357438
#>  [8515]  357670  357671  357672  357673  357689  357690  357691  357767  357780
#>  [8524]  357781  357782  357783  357784  357785  357786  357787  357788  357789
#>  [8533]  358594  358629  358670  358735  358923  358948  359002  359003  359004
#>  [8542]  359005  359006  359007  359008  359009  359010  359011  359012  359013
#>  [8551]  359014  359015  359016  359017  359018  359019  359020  359021  359022
#>  [8560]  359228  359229  359781  359782  359783  359784  359785  359832  359833
#>  [8569]  359880  359881  359882  360418  360468  360470  360487  360488  360489
#>  [8578]  360490  360491  360492  360493  360739  360740  360741  360742  360743
#>  [8587]  360744  360745  360746  360747  360748  360749  360750  360751  360752
#>  [8596]  360753  360754  360765  361272  361585  361625  361815  361817  361854
#>  [8605]  361857  361858  361874  361876  361879  361881  361883  361951  361954
#>  [8614]  362055  362056  362057  362179  362183  362185  362446  362447  362450
#>  [8623]  362451  362454  362455  362583  362584  362585  362894  362928  363059
#>  [8632]  363236  363782  363783  363874  363916  363918  363920  363922  363997
#>  [8641]  364054  364145  364147  364157  364413  364458  364459  364587  364590
#>  [8650]  364815  364843  364844  364845  364938  365081  365154  365161  365162
#>  [8659]  365167  365168  365180  365387  365389  365392  365408  365411  365528
#>  [8668]  365529  365599  365600  365601  365653  365993  365996  366001  366003
#>  [8677]  366017  366018  366019  366020  366021  366022  366023  366024  366055
#>  [8686]  366056  366057  366058  366059  366064  366065  366066  366267  366268
#>  [8695]  366269  366270  366376  366377  366378  366379  366380  366381  366382
#>  [8704]  366383  366403  366404  366406  366517  366520  366522  366524  366548
#>  [8713]  366549  366550  366551  366552  366553  366556  366557  366558  366559
#>  [8722]  366630  366631  366663  366726  366855  366856  366857  366860  366864
#>  [8731]  366868  366903  366991  367047  367235  367236  367301  367302  367378
#>  [8740]  367681  367682  367825  367826  367838  367839  367840  367864  367865
#>  [8749]  367942  367955  368023  368094  368171  368191  368192  368558  368559
#>  [8758]  368560  368561  368592  368957  368958  368959  368960  368961  368962
#>  [8767]  368966  368967  368968  368969  368970  368971  368972  368975  368976
#>  [8776]  368978  369068  369078  369086  369094  369128  369129  369130  369131
#>  [8785]  369132  369148  369149  369461  369462  369463  369464  369837  369838
#>  [8794]  369941  369942  369943  369947  369948  369951  369952  369953  369954
#>  [8803]  369958  369960  370589  370731  370760  370984  370985  370986  370987
#>  [8812]  371092  371221  371222  371249  371250  371268  371313  371314  371350
#>  [8821]  371421  371422  371423  371498  371499  371500  371501  371502  371527
#>  [8830]  371528  371530  371568  371570  371571  371573  371576  371599  371651
#>  [8839]  371673  371677  371678  371699  371700  371701  371734  371736  371738
#>  [8848]  371740  371742  371896  371898  371899  371900  371901  371902  371903
#>  [8857]  371904  371905  371906  371907  371908  371909  371910  371911  371912
#>  [8866]  371914  371996  371998  372015  372044  372054  372055  372056  372372
#>  [8875]  372373  372374  372375  372644  372961  372962  372963  372964  372965
#>  [8884]  372966  372967  372968  373065  373066  373067  373107  373441  373442
#>  [8893]  373443  373541  373576  373577  373578  373686  373704  373705  373707
#>  [8902]  373708  373737  373738  373739  373740  373741  373742  374087  374090
#>  [8911]  374091  374193  374194  374198  374199  374234  374349  374351  374356
#>  [8920]  374592  374600  374756  374757  374758  374759  374760  375199  375200
#>  [8929]  375201  375202  375203  375208  375209  375210  375211  375212  375213
#>  [8938]  375214  375382  375383  375384  375385  375395  375399  375408  375423
#>  [8947]  375443  375444  375453  375454  375474  375476  375478  375492  375513
#>  [8956]  375519  375520  375521  375522  375523  375524  375525  375534  375547
#>  [8965]  375548  375549  375550  375572  375582  375583  375584  375585  375612
#>  [8974]  375618  375807  375808  375832  375833  375834  375843  375861  375863
#>  [8983]  375870  375871  375872  376629  376637  377072  377073  377074  377346
#>  [8992]  377909  378033  378167  378287  378706  378820  378953  378954  378955
#>  [9001]  378997  378998  379222  379223  379236  379237  379238  379239  379240
#>  [9010]  379241  379242  379243  379737  379738  379883  380292  380416  380495
#>  [9019]  380497  380498  380499  380500  380501  380502  380503  380504  380505
#>  [9028]  381056  381066  381427  381546  381941  381942  381964  381975  381989
#>  [9037]  381990  381991  382106  382107  382249  382289  382291  382295  382297
#>  [9046]  382313  382314  382343  382344  382392  382394  382438  382881  383049
#>  [9055]  383066  383067  383068  383069  383070  383071  383073  383074  383075
#>  [9064]  383076  383084  383085  383086  383087  383088  383089  383090  383091
#>  [9073]  383092  383093  383094  383095  383096  383097  383098  383099  383100
#>  [9082]  383101  383106  383108  383109  383110  383292  383343  383346  383348
#>  [9091]  383362  383363  383364  384077  384244  384698  384700  384721  384726
#>  [9100]  384731  384736  384934  384935  384936  384987  385124  385218  385258
#>  [9109]  385261  385360  385416  385423  385604  385780  385784  386235  386437
#>  [9118]  386438  386487  386489  386490  386491  386492  386494  386498  386574
#>  [9127]  386750  386752  387085  387115  387116  387147  387214  387245  387246
#>  [9136]  387248  387344  387365  387367  387369  387370  387371  387372  387373
#>  [9145]  387464  387491  387492  387558  387584  387585  387609  387859  387860
#>  [9154]  387872  388006  388010  388012  388025  388059  388060  388061  388065
#>  [9163]  388066  388096  388100  388101  388102  388103  388366  388376  388527
#>  [9172]  388538  388554  388664  388682  388684  388695  388696  388697  388699
#>  [9181]  388705  388794  388795  388945  389115  389121  389122  389174  389262
#>  [9190]  389263  389264  389301  389378  389400  389401  389402  389403  389434
#>  [9199]  389435  389436  389497  389764  389836  389837  389838  389839  389840
#>  [9208]  390580  390581  390582  390611  390695  390732  390733  390757  390793
#>  [9217]  390795  390807  391097  391169  391171  391200  391201  391202  391203
#>  [9226]  391217  391218  391219  391354  391356  391362  391365  391448  391449
#>  [9235]  391450  391451  391452  391453  391454  391455  391456  391457  391552
#>  [9244]  391553  391555  391584  391585  391616  391697  391705  391727  391728
#>  [9253]  391748  391992  392002  392048  392105  392142  392179  392394  392395
#>  [9262]  392408  392409  392477  392480  392485  392620  392621  392627  392628
#>  [9271]  392677  392709  392789  392790  392794  392799  392801  392803  392805
#>  [9280]  392807  392809  392852  392853  392870  392871  392873  392906  392907
#>  [9289]  392933  392946  392947  392948  393040  393070  393156  393162  393287
#>  [9298]  393296  393484  393964  393977  393978  393979  393980  393983  393984
#>  [9307]  393987  393988  393989  393990  393991  393992  393993  394177  394178
#>  [9316]  394180  394234  394250  394383  394384  394385  394386  394387  394446
#>  [9325]  394449  394450  394451  394455  394457  394656  394671  394804  394806
#>  [9334]  394810  394813  394826  394979  395059  395175  395281  395283  395302
#>  [9343]  395303  395304  395321  395498  395594  395595  395676  395677  395678
#>  [9352]  395817  395818  395849  395856  395857  395858  395896  395900  395908
#>  [9361]  395959  395960  395961  395962  396043  396044  396052  396054  396204
#>  [9370]  396205  396206  396235  396236  396237  396238  396239  396245  396246
#>  [9379]  396247  396248  396249  396250  396259  396260  396619  396690  396710
#>  [9388]  396775  396777  396792  396793  396860  396971  397034  397038  397046
#>  [9397]  397061  397062  397173  397177  397264  397269  397429  397431  397432
#>  [9406]  397434  397435  397436  397437  397587  397589  397590  397593  397596
#>  [9415]  397597  397598  397606  397607  397609  397755  397810  397906  397907
#>  [9424]  397973  397977  397992  397994  398315  398647  398703  399882  399940
#>  [9433]  400228  400266  400918  401232  401233  401234  402115  402473  402475
#>  [9442]  402667  403099  403100  403551  403580  403811  403970  403972  403973
#>  [9451]  403974  403997  404001  404158  404232  404236  404331  404402  404603
#>  [9460]  404606  404607  404830  404832  404834  404882  404883  404884  404885
#>  [9469]  404886  404891  404912  404979  404980  404985  404986  405124  405126
#>  [9478]  405382  405388  405389  405390  405391  405392  405398  405399  405401
#>  [9487]  405402  405403  405404  405412  405489  405490  405515  405938  406021
#>  [9496]  406022  406023  406024  406025  406026  406027  406211  406212  406215
#>  [9505]  406217  406228  406564  406566  406567  406568  406569  406570  406573
#>  [9514]  406576  406792  406926  406927  406928  407193  407204  407205  407643
#>  [9523]  407853  407854  407957  407958  407959  407960  407961  407962  408043
#>  [9532]  408044  408070  408086  408207  408210  408211  408212  408213  408214
#>  [9541]  408215  408404  408405  408406  408435  408543  408552  408740  408895
#>  [9550]  409408  409409  409410  409411  409414  409477  409672  409673  409674
#>  [9559]  409675  409678  409679  409809  409813  409815  410078  410081  410082
#>  [9568]  410083  410084  410085  410086  410127  410128  410129  410264  410265
#>  [9577]  410266  410342  410343  410344  410431  410449  410593  410598  410600
#>  [9586]  410601  410603  410604  410698  410699  410728  410731  410748  410751
#>  [9595]  410752  410753  410754  410755  410756  410757  410758  410759  410760
#>  [9604]  410945  410946  410947  410949  411047  411125  411258  411259  411260
#>  [9613]  411261  411262  411374  411375  411377  411378  411379  411380  411381
#>  [9622]  411516  411525  411649  411653  411790  411809  411826  411862  411904
#>  [9631]  411905  411908  411913  411919  412007  412009  412011  412013  412027
#>  [9640]  412029  412166  412168  412348  412349  412350  412354  412394  412395
#>  [9649]  412411  412438  412565  412566  412653  412786  412970  412981  413007
#>  [9658]  413009  413011  413250  413251  413257  413260  413263  413265  413266
#>  [9667]  413267  413268  413269  413270  413271  413272  413273  413275  413277
#>  [9676]  413551  413552  414283  414289  414291  414293  414295  414300  414302
#>  [9685]  414487  414488  414521  414527  414528  414569  414583  414609  414610
#>  [9694]  414611  414680  414707  414708  414709  414714  414719  414780  414781
#>  [9703]  414850  414852  414864  414865  414891  414892  414894  414895  414916
#>  [9712]  414917  414922  414923  414924  414925  414926  414935  415024  415035
#>  [9721]  415057  415063  415107  415108  415109  415245  415246  415247  415282
#>  [9730]  415283  415371  415385  415399  415400  415406  415409  415430  415440
#>  [9739]  415510  415511  415573  415685  415725  415994  416324  416385  416431
#>  [9748]  416432  416438  416439  416440  416441  416614  416615  416616  416617
#>  [9757]  416622  416623  416624  416625  416626  416627  416628  416629  416630
#>  [9766]  416631  416748  416749  416750  416751  416766  416767  416768  416769
#>  [9775]  416770  416771  416773  416774  416775  416776  416777  416780  416781
#>  [9784]  416782  416783  416784  416785  416787  416788  416990  417010  417011
#>  [9793]  417012  417093  417150  417151  417152  417156  417158  417160  417574
#>  [9802]  417575  417583  417584  417586  417598  417599  417600  417849  417850
#>  [9811]  417878  417879  417880  417938  417943  417951  417953  418053  418058
#>  [9820]  418186  418223  418224  418226  418227  418232  418285  418287  418330
#>  [9829]  418425  418426  418427  418688  418690  418705  418782  418785  418786
#>  [9838]  418787  418803  418805  418828  418829  418831  418871  418911  418920
#>  [9847]  418921  418922  419009  419011  419022  419029  419201  419214  419647
#>  [9856]  419648  419649  419653  419655  419656  419657  419658  419659  419661
#>  [9865]  419662  419664  419665  419666  419667  419668  419857  420101  420360
#>  [9874]  420365  420378  420383  420400  420401  420407  420427  420537  420542
#>  [9883]  420690  420691  420714  420715  420719  420806  420807  420808  420809
#>  [9892]  420810  420811  420812  420858  420864  420990  420991  420992  421012
#>  [9901]  421013  421049  421050  421051  421055  421056  421420  421421  421422
#>  [9910]  421423  421424  421559  421797  421892  421895  421896  421968  422082
#>  [9919]  422084  422156  422157  422171  422172  422173  422174  422205  422206
#>  [9928]  422211  422398  422516  422606  422608  422610  422612  422614  422616
#>  [9937]  422618  422619  422620  422621  422624  422830  422831  422832  422833
#>  [9946]  422834  422835  422836  422837  423157  423158  423275  423277  423278
#>  [9955]  423280  423442  423443  423444  423445  423469  423470  423471  423472
#>  [9964]  423473  423478  423479  423480  423481  423535  423657  423660  423661
#>  [9973]  423662  423667  423668  423669  423676  423677  423678  423679  423680
#>  [9982]  423696  423699  423700  423701  423702  423783  423785  423786  423787
#>  [9991]  423788  423789  423840  423869  423882  423887  423889  423897  423901
#> [10000]  423981  424015  424016  424039  424040  424136  424137  424138  424139
#> [10009]  424140  424141  424142  424143  424144  424145  424146  424147  424148
#> [10018]  424149  424150  424151  424152  424153  424154  424155  424156  424157
#> [10027]  424158  424159  424202  424229  424262  424434  424435  424436  424494
#> [10036]  424496  424663  424751  424755  424922  424924  424926  425006  425039
#> [10045]  425205  425295  425301  425302  425418  425420  425423  425424  425694
#> [10054]  425883  425894  426069  426144  426159  426234  426614  426823  426824
#> [10063]  426827  426889  426893  426894  426895  426896  426897  426898  427140
#> [10072]  427346  427347  427549  427550  427551  427552  427553  427554  427555
#> [10081]  427556  427557  427717  427722  427868  427907  427908  427909  427960
#> [10090]  427962  427967  427975  428033  428034  428035  428067  428151  428191
#> [10099]  428323  428324  428325  428326  428490  428502  428657  428658  428659
#> [10108]  428660  428661  428662  428663  428668  428947  428948  428949  429158
#> [10117]  429159  429160  429196  429197  429198  429199  429200  429281  429468
#> [10126]  429469  429504  429597  429598  429599  429600  429825  429980  430055
#> [10135]  430069  430070  430071  430077  430203  430204  430606  430785  431045
#> [10144]  431276  431380  431395  431396  431398  431399  431445  431551  431578
#> [10153]  431580  431582  431585  431586  431587  431588  431589  431591  431593
#> [10162]  431594  431595  431597  431598  431599  431600  431601  431602  431603
#> [10171]  431604  431605  431606  431607  431608  431609  431610  431611  431619
#> [10180]  431620  431624  431625  431627  431628  431629  431632  431633  431635
#> [10189]  431668  431688  431701  431807  431933  432215  432228  432331  432347
#> [10198]  432349  432355  432358  432359  432389  432390  432391  432392  432393
#> [10207]  432394  432395  432396  432402  432405  432407  432519  432564  432569
#> [10216]  432685  432728  432914  432915  432916  432917  432918  432919  432920
#> [10225]  432921  432922  432941  432943  432944  432948  433086  433087  433088
#> [10234]  433099  433264  433266  433285  433730  433738  433752  433757  433758
#> [10243]  433765  434184  434828  434829  434831  434923  434924  434928  434930
#> [10252]  434932  434935  434937  434938  434940  434941  434942  434943  434944
#> [10261]  434945  434946  434947  434951  434954  434968  435004  435010  435014
#> [10270]  435016  435023  435026  436095  436096  436251  436252  436253  436279
#> [10279]  436313  436349  436350  436399  436400  436410  436478  436479  436480
#> [10288]  436482  436483  436484  436486  436591  436717  436718  436910  436913
#> [10297]  436916  437089  437091  437342  437505  437514  437527  437551  437598
#> [10306]  437600  437699  437700  437701  437702  437724  437725  437771  437788
#> [10315]  437790  438025  438027  438032  438033  438044  438047  438208  438210
#> [10324]  438211  438212  438238  438239  438337  438338  438339  438409  438585
#> [10333]  438595  438789  438890  438893  438901  438906  438908  439326  439331
#> [10342]  439333  439369  439370  439463  439613  439616  439617  439882  439883
#> [10351]  440062  440066  440087  440232  440370  440375  440376  440377  440378
#> [10360]  440632  440633  440638  440639  440652  440654  440660  440661  440662
#> [10369]  440663  440664  440665  440666  440667  440668  440670  440671  440672
#> [10378]  440681  440682  440900  440901  441173  441241  441242  441276  441304
#> [10387]  441320  441321  441337  441372  441373  441378  441572  441573  441937
#> [10396]  441938  441939  441941  442204  442206  442210  442211  442212  442213
#> [10405]  442384  442385  442389  442704  442705  442706  442707  442708  442709
#> [10414]  442713  442948  443166  443169  443170  443171  443172  443173  443313
#> [10423]  443423  443424  443425  443456  443573  443586  443588  443590  443628
#> [10432]  443720  443750  443754  443755  443756  443757  443758  443759  443827
#> [10441]  443828  443829  443830  443831  443832  443842  443855  443911  443912
#> [10450]  443914  443986  443987  444093  444154  444181  444182  444227  444485
#> [10459]  444562  444563  444564  444761  444763  444894  444895  444900  444907
#> [10468]  444912  444914  444916  444918  444920  445047  445052  445053  445054
#> [10477]  445055  445056  445057  445058  445059  445060  445061  445062  445338
#> [10486]  445339  445340  445487  445525  445586  445589  445590  445745  445768
#> [10495]  445769  445832  445833  445835  445841  445879  445918  445919  445920
#> [10504]  445921  445928  445957  445959  445976  446019  446072  446092  446215
#> [10513]  446221  446400  446402  446479  446480  446485  446537  446540  446768
#> [10522]  446886  446904  446911  446912  446956  446984  447026  447027  447033
#> [10531]  447034  447035  447036  447037  447038  447290  447291  447385  447386
#> [10540]  447387  447388  447389  447449  447479  447480  447492  447496  447497
#> [10549]  447498  447499  447500  447501  447559  447562  447576  447581  447669
#> [10558]  447696  447701  447702  447901  447902  448097  448099  448104  448131
#> [10567]  448343  448344  448364  448369  448370  448371  448449  448485  448677
#> [10576]  449004  449010  449012  449013  449186  449188  449189  449193  449288
#> [10585]  449290  449296  449299  449408  449409  449489  449490  449703  449704
#> [10594]  449707  449708  449709  449710  449711  449712  449713  449714  449715
#> [10603]  449716  449717  449718  449719  449720  449721  449722  449737  449753
#> [10612]  449765  449766  449769  449770  450021  450023  450025  450027  450059
#> [10621]  450061  450063  450065  450071  450300  450301  450502  450503  450664
#> [10630]  450677  450678  450682  450683  450962  450963  450966  451325  451329
#> [10639]  451330  451331  451332  451333  451334  451335  451336  451337  451814
#> [10648]  451816  451968  451981  451983  451990  452021  452025  452028  452037
#> [10657]  452150  452223  452237  452269  452447  452529  452531  452533  452535
#> [10666]  452545  452551  452669  452720  452764  452780  452782  452863  452866
#> [10675]  452962  452963  452966  452971  452973  452974  452998  453000  453001
#> [10684]  453003  453067  453408  453409  453410  453411  453458  453481  453561
#> [10693]  453567  453571  453681  453683  453700  453978  453986  453987  453988
#> [10702]  453989  453990  453995  453997  453998  453999  454000  454001  454002
#> [10711]  454011  454012  454215  454216  454332  454333  454334  454335  454336
#> [10720]  454345  454494  454516  454582  454584  454634  454635  454639  454640
#> [10729]  454765  454821  454927  454928  455162  455164  455197  455202  455204
#> [10738]  455211  455242  455243  455265  455266  455458  455477  455478  455485
#> [10747]  455565  455566  455567  455568  455571  455705  455706  455831  455962
#> [10756]  456116  456197  456235  456556  456858  456992  457059  457060  457125
#> [10765]  457174  457175  457176  457177  457411  457516  457517  457518  457777
#> [10774]  457778  457935  457936  457950  457956  458094  458098  458101  458102
#> [10783]  458170  458180  458315  458316  458317  458440  458441  458442  458478
#> [10792]  458521  458523  458524  458559  458576  458577  458599  458695  458696
#> [10801]  458697  458711  458712  458777  458788  458869  458870  458873  458905
#> [10810]  458906  459022  459056  459060  459061  459080  459113  459114  459115
#> [10819]  459127  459164  459165  459166  459167  459168  459507  459526  459528
#> [10828]  459530  459534  459536  459538  460129  460296  460418  460573  460575
#> [10837]  460576  460652  460742  460811  460812  460814  460815  460816  460829
#> [10846]  460831  460887  460889  461025  461090  461108  461509  461562  461563
#> [10855]  461899  462312  462461  462465  462793  462795  462811  462812  462823
#> [10864]  463080  463086  463088  463103  463107  463108  463118  463120  463122
#> [10873]  463123  463125  463127  463128  463129  463150  463384  463385  463392
#> [10882]  463393  463611  463651  463755  463924  463926  463927  463981  463982
#> [10891]  463983  463988  463989  463990  463991  463992  463993  463994  463995
#> [10900]  463996  463997  463998  463999  464000  464001  464002  464037  464067
#> [10909]  464068  464069  464070  464071  464072  464225  464359  464438  464439
#> [10918]  464440  464441  464442  464640  464650  464691  464764  464765  464766
#> [10927]  464790  464842  464843  464844  464849  464862  464868  464869  464870
#> [10936]  464871  464872  464873  464893  465029  465418  465419  465420  465672
#> [10945]  465709  465710  465711  465712  465714  465966  466262  466263  466264
#> [10954]  466272  466802  466804  466805  466806  466917  466918  466919  466920
#> [10963]  466921  466922  466923  466924  467017  467282  467283  467395  467457
#> [10972]  467768  467780  467781  468160  468163  468214  468239  468242  468304
#> [10981]  468305  468974  468983  469025  469028  469031  469049  469066  469185
#> [10990]  469431  469518  469524  469713  469716  469722  469725  469730  469783
#> [10999]  469784  469785  469789  469797  469911  470071  470426  470427  470428
#> [11008]  470429  470430  470431  470432  470433  470434  470435  470436  470437
#> [11017]  470438  470439  470440  470441  470796  471095  471096  471097  471098
#> [11026]  471335  471336  471522  471525  471634  471635  471638  471639  471652
#> [11035]  471653  471654  471672  471673  471680  471681  471696  471699  471784
#> [11044]  472019  472075  472076  472468  472470  472472  472474  472476  472478
#> [11053]  472610  472789  472790  472791  472792  472793  472794  472795  472796
#> [11062]  472807  472811  472813  472961  473102  473107  473114  473115  473118
#> [11071]  473139  473151  473154  473155  473157  473208  473402  473423  473424
#> [11080]  473568  473667  473717  473718  473719  473720  473721  473722  473723
#> [11089]  473725  473726  474079  474081  474178  474194  474225  474229  474231
#> [11098]  474291  474325  474326  474328  474329  474331  474332  474334  474335
#> [11107]  474350  474351  474353  474354  474356  474357  474359  474360  474389
#> [11116]  474436  474438  474466  474665  474671  474672  474676  474677  474685
#> [11125]  474686  474788  474789  474844  474846  474942  475173  475233  475239
#> [11134]  475240  475241  475246  475318  475319  475325  475328  475329  475330
#> [11143]  475398  475399  475449  475450  475495  475853  475854  475855  475856
#> [11152]  475857  475858  475859  475862  475863  475864  475865  475866  475867
#> [11161]  475868  475869  475870  475871  475881  475882  475931  475975  475979
#> [11170]  475988  475989  475990  475991  476355  476357  476360  476362  476363
#> [11179]  476364  476365  476366  476367  476370  476371  476381  476382  476384
#> [11188]  476385  476386  476387  476388  476451  476463  476464  476469  476470
#> [11197]  476472  476560  476641  476642  476643  476644  476645  476646  476705
#> [11206]  476882  476898  476899  476900  476901  477112  477113  477115  477116
#> [11215]  477117  477118  477119  477120  477121  477122  477123  477124  477125
#> [11224]  477127  477128  477129  477132  477133  477135  477136  477137  477138
#> [11233]  477139  477140  477141  477142  477146  477147  477239  477240  477241
#> [11242]  477242  477243  477248  477249  477251  477252  477253  477254  477255
#> [11251]  477262  477263  477485  477515  477545  477546  477557  477558  477559
#> [11260]  477560  477845  477846  477847  477848  477849  477850  477851  477864
#> [11269]  478118  478119  478120  478121  478122  478123  478320  478321  478322
#> [11278]  478323  478324  478325  478379  478382  478385  478471  478473  478513
#> [11287]  478582  478586  478588  478590  478662  478663  478737  478877  478880
#> [11296]  478882  478884  478886  478888  478890  478909  478949  479097  479216
#> [11305]  479217  479219  479221  479373  479454  479481  479659  479789  479790
#> [11314]  479792  479933  479986  479987  479988  479992  479993  480053  480054
#> [11323]  480055  480056  480057  480058  480069  480149  480269  480270  480272
#> [11332]  480396  480398  480594  480975  480977  481112  481139  481140  481176
#> [11341]  481345  481346  481347  481415  481462  481464  481474  481517  481542
#> [11350]  481612  481616  481618  481619  481644  481645  481646  481647  481648
#> [11359]  481649  481650  481651  481653  481678  481679  481680  481683  481921
#> [11368]  481922  481923  481924  481925  482135  482136  482137  482138  482139
#> [11377]  482140  482141  482142  482143  482144  482145  482146  482147  482148
#> [11386]  482149  482150  482151  482349  482352  482355  482356  482428  482479
#> [11395]  482482  482498  482499  482500  482611  482612  482613  482659  482681
#> [11404]  482682  482683  482716  482741  482752  482763  482808  482874  482995
#> [11413]  483095  483121  483122  483123  483124  483125  483126  483142  483143
#> [11422]  483144  483145  483146  483149  483188  483557  483559  483560  483822
#> [11431]  483833  483903  484169  484311  484346  484352  484353  484354  484355
#> [11440]  484466  484467  484535  484595  484599  484614  484684  484694  484695
#> [11449]  484696  484697  484758  484773  484777  484782  484783  484784  484865
#> [11458]  484868  484883  484884  485277  485282  485284  485286  485352  485963
#> [11467]  485971  487137  487143  487144  487145  487146  487147  487438  487630
#> [11476]  487828  487832  487835  487878  488211  488212  488377  488378  488612
#> [11485]  488616  488695  488696  488697  488698  488699  488700  488702  488748
#> [11494]  488783  488790  488791  488792  488795  488801  488808  488811  488812
#> [11503]  488814  488817  488822  488823  488824  488825  488827  488833  488865
#> [11512]  488873  488875  488878  488880  488881  488886  488888  488985  488986
#> [11521]  489002  489003  489005  489013  489014  489024  489027  489032  489040
#> [11530]  489195  489229  489230  489231  489232  489247  489248  489311  489318
#> [11539]  489441  489479  489480  489481  489482  489483  489484  489485  489486
#> [11548]  489487  489488  489489  489490  489491  489492  489493  489541  489544
#> [11557]  489545  489546  489677  489678  489680  489909  490087  490199  490433
#> [11566]  490450  490451  490452  490453  490505  490506  490507  491140  491141
#> [11575]  491152  491214  491243  491476  491627  491644  491645  491646  491665
#> [11584]  491669  491672  491770  491826  491827  491828  491832  491833  491834
#> [11593]  491861  492041  492044  492047  492069  492211  492214  492276  492277
#> [11602]  492278  492281  492282  492283  492284  492285  492286  492287  492425
#> [11611]  492427  492500  492505  492515  492516  492517  492518  492520  492521
#> [11620]  492522  492525  492527  492535  492620  492621  492622  492745  492791
#> [11629]  492792  492815  492816  492862  492868  492875  492900  492905  492982
#> [11638]  492985  493021  493022  493023  493037  493038  493039  493041  493042
#> [11647]  493043  493044  493046  493047  493058  493060  493061  493112  493113
#> [11656]  493126  493128  493132  493133  493139  493145  493146  493183  493202
#> [11665]  493211  493223  493407  493441  493448  493465  493470  493471  493472
#> [11674]  493473  493477  493498  493527  493703  493783  493786  493789  493792
#> [11683]  493934  493935  494043  494046  494063  494067  494069  494071  494151
#> [11692]  494153  494206  494461  494468  494515  494632  494752  494753  494859
#> [11701]  494861  494863  494899  494900  494901  494902  494903  494904  494905
#> [11710]  494906  494907  494908  494909  494910  494911  494912  494913  494914
#> [11719]  494915  494916  494934  494939  494941  494943  494944  494945  495036
#> [11728]  495037  495139  495142  495151  495152  495153  495154  495761  495762
#> [11737]  495763  495764  495768  495769  495770  495771  495772  495773  495774
#> [11746]  495775  495776  495777  495778  495779  495780  496011  496012  496013
#> [11755]  496015  496016  496017  496019  496037  496143  496150  496151  496152
#> [11764]  496153  496163  496601  496741  496941  496942  496943  496944  496945
#> [11773]  496946  496947  496948  496949  496950  496984  496985  497133  497134
#> [11782]  497237  497256  497271  497533  497534  497575  497666  497696  497697
#> [11791]  497700  497701  497702  497703  497704  497705  497852  497853  498020
#> [11800]  498043  498056  498057  498058  498059  498185  498186  498244  498379
#> [11809]  498382  498407  498408  498409  498588  498589  498590  498591  498592
#> [11818]  498593  498594  498595  498596  498597  498598  498599  498600  498601
#> [11827]  498602  498603  498604  498605  498606  498607  498608  498609  498610
#> [11836]  498938  498942  499033  499034  499092  499093  499094  499095  499096
#> [11845]  499097  499098  499099  499100  499101  499102  499187  499266  499269
#> [11854]  499434  499435  499436  499437  499442  499570  499575  499634  500013
#> [11863]  500133  500167  500168  500169  500314  500317  500329  500598  500599
#> [11872]  500672  500682  500687  500689  501074  501139  501140  501437  501476
#> [11881]  501529  501530  501537  501576  501614  501659  501754  501830  501831
#> [11890]  501832  501833  501899  501900  501901  501947  502110  502126  502138
#> [11899]  502156  502157  502158  502159  502160  502161  502162  502188  502211
#> [11908]  502215  502439  502440  502441  502442  502544  502556  502572  502684
#> [11917]  502823  502824  502825  502826  502827  502879  502884  503015  503076
#> [11926]  503090  503091  503099  503695  503700  503701  503702  503703  504046
#> [11935]  504181  504183  504194  504195  504197  504199  504201  504235  504304
#> [11944]  504328  504330  504416  504417  504418  504425  504426  504447  504458
#> [11953]  504460  504461  504468  504469  504470  504500  504524  504532  504549
#> [11962]  504555  504557  504559  504565  504566  504569  504693  504694  504695
#> [11971]  504697  504698  504730  504735  504762  504814  504815  504816  504822
#> [11980]  504824  504867  504870  504871  504873  504879  504883  504887  504888
#> [11989]  504890  504893  504896  504917  504918  504919  504921  504923  504924
#> [11998]  504927  504931  504939  506713  506714  506715  506716  506717  506718
#> [12007]  506719  506720  506728  506747  506748  507157  507167  507206  507207
#> [12016]  507208  507209  507210  507211  507212  507213  507214  507215  508165
#> [12025]  508166  508167  508168  508169  508170  508171  508177  508178  508179
#> [12034]  508180  508181  508182  508183  508184  508185  508186  508216  508217
#> [12043]  508218  508219  508220  508621  508622  508623  508624  508625  508626
#> [12052]  508627  508628  508629  508630  508631  508632  508634  508635  508636
#> [12061]  508637  508638  508639  508640  508641  508642  508643  508644  508656
#> [12070]  508657  508658  508825  508826  508827  508828  508829  508830  508831
#> [12079]  508832  508833  509205  509206  509207  509208  509209  509210  509211
#> [12088]  509212  509213  509461  509545  509546  509547  509557  509832  510178
#> [12097]  510435  510454  510751  510752  510753  510754  510755  510756  510757
#> [12106]  510758  510759  510770  510771  510772  510773  510774  510775  510776
#> [12115]  510777  510778  510779  510780  510781  510782  510783  511502  511592
#> [12124]  511594  511597  511600  511603  511611  511694  511970  512098  512143
#> [12133]  512609  512610  512612  512613  512614  512615  512616  512617  512618
#> [12142]  513306  513741  513742  513941  513942  513944  514138  514357  514827
#> [12151]  514828  514833  515506  515507  515508  515520  515582  515584  515585
#> [12160]  515586  515606  515765  515880  515915  515941  515944  515985  515987
#> [12169]  515988  515990  516378  516393  516403  516473  516474  516489  516600
#> [12178]  516678  516680  516716  516746  516759  516775  516797  516831  516839
#> [12187]  516840  516841  516850  516851  516892  516893  516896  516897  516898
#> [12196]  516899  516958  516959  516960  516961  516965  516966  516967  516968
#> [12205]  516969  517024  517025  517026  517027  517043  517108  517113  517306
#> [12214]  517323  517363  517378  517410  517411  517412  517413  517414  517415
#> [12223]  517418  517420  517453  517454  517473  517474  517475  517476  517477
#> [12232]  517478  517480  517481  517537  517619  517626  517830  517831  517837
#> [12241]  517896  517934  517935  517936  517937  517938  517939  517940  517941
#> [12250]  517942  517943  517944  518633  518634  518635  518646  518647  518740
#> [12259]  518741  518825  518826  518827  518828  518829  518830  518831  518832
#> [12268]  518833  518834  518835  518836  518837  518838  518839  518840  518841
#> [12277]  518842  518843  518844  518845  518846  518847  518848  518849  518850
#> [12286]  518851  518852  518853  518854  519016  519017  519020  519041  519537
#> [12295]  519538  519539  519540  519541  519542  519543  519849  519850  519851
#> [12304]  519853  519854  519855  519856  519857  519858  519859  519860  519861
#> [12313]  519862  519863  519864  519865  519866  519867  519868  519869  519870
#> [12322]  519871  519872  519873  519874  519875  519876  519877  519878  519879
#> [12331]  519880  519881  519882  519883  519884  519885  519886  519887  519888
#> [12340]  519963  519964  519965  519966  519967  519968  519969  520335  520604
#> [12349]  521208  521209  521214  521215  521216  521217  521218  521219  521274
#> [12358]  521278  521279  522368  522369  522370  522371  522372  522373  523520
#> [12367]  523526  523527  523528  523529  523531  523609  523610  523611  523612
#> [12376]  523613  523614  523615  523618  523619  523620  524594  524596  524604
#> [12385]  525102  525104  525105  525106  525107  525108  525109  525110  525111
#> [12394]  525112  525113  525114  525278  525279  525280  525281  525282  525283
#> [12403]  525493  525494  526130  526132  526140  526377  526378  526385  526402
#> [12412]  526419  526647  526648  526649  526651  526655  526660  526662  526740
#> [12421]  526745  526844  526845  526940  526995  527035  527036  527165  527294
#> [12430]  527295  527371  527375  527406  527411  527428  527507  527516  527517
#> [12439]  527562  527563  527604  527662  527664  527724  527729  527731  527732
#> [12448]  527860  527862  528043  528044  528045  528046  528112  528114  528196
#> [12457]  528309  528324  528325  528386  528389  528390  528391  528392  528393
#> [12466]  528402  528403  530320  531789  532673  533311  533312  533313  533314
#> [12475]  533315  533773  534203  534205  534207  534209  534211  534213  534215
#> [12484]  534217  536224  536238  536404  536625  536639  536769  536770  536772
#> [12493]  536773  536774  536775  536776  536778  536779  536781  536782  536856
#> [12502]  536867  536869  536878  536905  536933  536937  536941  536970  537003
#> [12511]  537197  537256  537506  537581  537582  537583  537584  537764  537767
#> [12520]  537768  537769  537770  537771  537772  537902  538298  538502  538503
#> [12529]  538504  538683  538684  538709  538710  539190  539271  539294  539374
#> [12538]  539415  539417  539539  539549  539550  539642  539676  539677  539770
#> [12547]  539771  539793  539959  540305  540306  540311  540312  540366  540367
#> [12556]  540369  541109  541110  541111  541114  541117  541118  541121  541122
#> [12565]  541127  541128  541244  541246  541250  541252  541254  541657  541663
#> [12574]  541694  541695  541696  541697  542149  542150  542154  542165  542166
#> [12583]  542421  542527  542528  542529  542592  542593  542594  542595  542596
#> [12592]  542597  542630  542631  542632  542633  542634  542635  542636  542637
#> [12601]  542638  542639  542640  542784  542785  542786  542787  542788  542789
#> [12610]  542790  542791  542792  542793  542794  542802  543558  543559  543560
#> [12619]  543658  543659  543660  543854  543855  543856  543857  543858  543859
#> [12628]  543860  543861  543862  543863  543864  543865  543866  543867  543868
#> [12637]  543869  543870  543871  543915  544064  544065  544066  544067  544068
#> [12646]  544069  544070  544071  544072  544073  544074  544075  544444  544445
#> [12655]  544446  544447  544448  544449  544450  544451  544452  544453  544454
#> [12664]  544455  544619  544620  544621  544622  544623  544624  544625  544705
#> [12673]  544706  544707  544719  544720  544721  544724  544726  544728  544729
#> [12682]  545116  545117  545676  545678  545693  545748  545893  545894  545895
#> [12691]  545896  545898  545899  545900  545901  545902  545903  546279  546280
#> [12700]  546286  546287  546546  546789  546790  546793  546794  546795  546796
#> [12709]  546797  546798  546820  546989  546990  546991  546992  546993  546994
#> [12718]  546995  546996  546997  546998  546999  547000  547002  547003  547004
#> [12727]  547005  547006  547007  547015  547016  547037  547038  547039  547048
#> [12736]  547050  547051  547052  547053  547054  547055  547056  547057  547058
#> [12745]  547059  547060  547061  547288  547618  547619  547620  547621  547622
#> [12754]  547824  547826  547828  547830  547899  547900  547901  547903  548175
#> [12763]  548176  548177  548178  548201  548280  548281  548282  548297  548298
#> [12772]  548300  548302  548303  548304  548305  548306  548307  548308  548309
#> [12781]  548310  548311  548312  548313  548314  548315  548316  548317  548318
#> [12790]  548319  548320  548321  548322  548323  548535  548536  548537  548538
#> [12799]  548539  548540  548541  548542  548544  548545  548546  548547  548548
#> [12808]  548549  548551  548552  548553  548554  548555  548556  548557  548558
#> [12817]  548559  548560  548561  548562  548563  548564  548565  548566  548567
#> [12826]  548568  548569  548570  548571  548572  548573  548574  548575  548576
#> [12835]  548577  548578  548579  548580  548581  548582  548583  548584  548585
#> [12844]  548586  548587  548588  548798  548799  548800  548801  548802  548803
#> [12853]  548804  548805  548806  548807  548808  548809  548810  548811  548953
#> [12862]  548979  548982  548985  548988  548991  548993  548998  548999  549006
#> [12871]  549009  549365  549442  549467  549500  549524  549652  549701  549702
#> [12880]  549706  549707  549850  550009  550013  550014  550035  550055  550058
#> [12889]  550061  550171  550172  550390  550392  550464  550468  550469  550873
#> [12898]  551017  551018  551019  551023  551164  551238  551283  551465  551467
#> [12907]  551468  551574  551576  551727  551915  551965  551966  551967  551968
#> [12916]  551969  551970  552082  552084  552086  552107  552111  552132  552133
#> [12925]  552138  552139  552140  552141  552142  552193  552196  552401  552633
#> [12934]  552684  552705  552707  552720  552823  553263  553313  553320  553321
#> [12943]  553322  553323  553337  553338  553339  553340  553341  553342  553343
#> [12952]  553427  553428  553429  553564  553565  553566  553567  553569  553571
#> [12961]  553572  553573  553574  553575  553576  553577  553578  553581  553583
#> [12970]  553589  553623  553625  553628  553916  553918  553935  554023  554166
#> [12979]  554168  554223  554246  554247  554248  554266  554268  554281  554282
#> [12988]  554283  554284  554285  554361  554362  555925  555950  555951  555952
#> [12997]  555953  555954  555955  555964  555965  555966  555967  555968  555969
#> [13006]  556068  556069  556070  556086  556087  556137  556386  556387  557054
#> [13015]  557055  557056  557057  557058  557069  557070  557071  557072  557073
#> [13024]  557074  557273  557274  557275  557276  557284  557285  557286  557287
#> [13033]  557288  557289  557290  557291  557292  557301  557302  557303  557304
#> [13042]  557305  557306  557307  557308  557309  557310  557311  557312  557313
#> [13051]  557314  557315  557316  557317  557529  557530  557531  557532  557533
#> [13060]  557534  557535  557536  557537  557538  557539  557540  557541  557754
#> [13069]  557755  557756  557757  557758  557759  557760  557761  557762  557772
#> [13078]  557773  557774  557775  557776  558029  558295  559935  559936  559937
#> [13087]  559939  559940  559941  559942  560409  560410  560411  560412  560413
#> [13096]  560414  560415  560416  560417  560418  560419  560420  560421  560422
#> [13105]  560431  560432  560433  560434  560435  560436  560900  560903  560904
#> [13114]  560905  560906  560907  560908  561180  561181  561184  561185  561186
#> [13123]  561187  561188  561189  561190  561191  561192  561202  561203  561204
#> [13132]  561205  561206  561207  561208  561209  561210  561211  561212  561213
#> [13141]  561214  561215  561216  561217  561380  561381  561382  561383  562196
#> [13150]  562197  562680  562683  562686  562688  562690  562692  562693  562695
#> [13159]  562697  562701  562702  562703  562872  562873  562874  562875  562876
#> [13168]  562877  562878  562879  562880  562881  562882  562883  562884  562885
#> [13177]  562886  562887  562888  562889  562890  562891  562892  562893  562894
#> [13186]  562895  562896  562897  562898  563203  563633  563634  563635  563636
#> [13195]  563637  563638  563639  563640  563641  563642  563643  563644  563645
#> [13204]  563646  563647  563648  563649  563650  563651  563652  563653  563654
#> [13213]  563655  563656  563657  563658  563659  563660  563661  563662  563663
#> [13222]  563664  563686  563744  563746  563747  563748  563749  563750  563751
#> [13231]  563761  563762  563763  563764  563765  563766  563767  563768  563769
#> [13240]  563770  563771  563772  563773  563774  563775  563776  563777  563778
#> [13249]  563779  563780  563781  563782  563784  563835  563836  563837  563838
#> [13258]  563839  563840  563841  563842  563843  563844  563845  563846  563847
#> [13267]  563852  563853  563854  563855  563856  563857  563858  563859  563860
#> [13276]  563861  563862  563863  563864  563865  563866  563867  563868  563869
#> [13285]  563936  563937  563938  563939  563940  563941  563942  563943  563944
#> [13294]  564029  564030  564031  564036  564037  564038  564039  564040  564041
#> [13303]  564042  564043  564044  564045  564046  564047  564048  564060  564061
#> [13312]  564062  564063  565962  565964  565965  566358  566561  566562  566622
#> [13321]  566831  566834  566836  566846  566847  566848  566849  566850  566851
#> [13330]  566852  566899  567524  567992  567993  568051  568052  568053  568245
#> [13339]  568842  568846  569002  569222  569231  569232  569233  569234  569235
#> [13348]  569236  569237  569238  569336  569552  569555  569736  569780  569810
#> [13357]  569812  569814  569815  569816  569824  569825  569826  569827  569828
#> [13366]  569829  569885  569905  569906  569947  569952  570069  570071  570137
#> [13375]  570173  570175  570176  570177  570178  570185  570218  570337  570339
#> [13384]  570341  570343  570553  570554  570555  570556  570557  570558  570559
#> [13393]  571512  571513  571514  571515  571516  571625  571626  571627  571628
#> [13402]  571629  571630  571631  571634  571635  571636  571637  571638  571700
#> [13411]  571701  571702  571736  572287  572288  572289  572290  572291  572292
#> [13420]  572315  572316  572319  572320  572334  572336  572819  572820  572821
#> [13429]  572822  572827  572828  572829  572856  572922  572923  572924  572925
#> [13438]  572952  572953  572954  572955  572956  572957  572958  572959  573108
#> [13447]  573109  573110  573111  573472  573473  573474  573475  573476  573477
#> [13456]  573478  573479  573849  573850  573851  573852  573853  573854  573855
#> [13465]  573856  573857  573858  573859  573972  573975  573976  573977  573978
#> [13474]  573979  573983  573984  573985  573986  573987  574286  574287  574383
#> [13483]  574812  574813  574814  574821  574822  574823  574824  574825  574826
#> [13492]  574827  574828  574829  575025  575026  575027  575028  575029  575030
#> [13501]  575031  575032  575033  575034  575035  575036  575037  575038  575039
#> [13510]  575040  575124  575125  575126  575127  575230  575231  575232  575233
#> [13519]  575234  575235  575236  575237  575238  575239  575240  575241  575242
#> [13528]  575243  575244  575245  575246  575247  575248  575249  575250  575251
#> [13537]  575252  575253  575254  575255  575256  575257  575258  575259  575260
#> [13546]  575261  575262  575263  575378  575379  575380  575381  575382  575383
#> [13555]  575384  575385  575386  575387  575388  575389  575390  575391  575392
#> [13564]  575662  575663  575664  575665  576803  576804  576805  576809  576810
#> [13573]  576811  576812  576816  576817  576854  576855  577147  577173  577174
#> [13582]  577175  577176  577177  577178  577180  577184  577185  577264  577265
#> [13591]  577266  577273  577297  577305  577306  577342  577343  577344  577345
#> [13600]  577346  577347  577348  577349  577350  577351  577352  577353  577354
#> [13609]  577355  577356  577357  577358  577359  577360  577361  577362  577363
#> [13618]  577364  577365  577366  577367  577368  577369  577370  577371  577372
#> [13627]  577373  577374  577375  577376  577377  577378  577379  577380  577381
#> [13636]  577382  577383  577384  577385  577386  577551  577553  577807  577808
#> [13645]  577847  577849  577850  577852  577942  577943  577981  578252  578374
#> [13654]  578376  578409  578410  578437  578438  578538  578554  578555  578606
#> [13663]  578847  578848  579469  579472  579486  579493  579517  579569  579637
#> [13672]  579732  579858  580098  580099  580100  580101  580151  580171  580183
#> [13681]  580185  580187  580287  580304  580305  580559  580560  580561  580563
#> [13690]  580564  580565  580566  580567  580568  580569  580570  580571  580572
#> [13699]  580573  580574  580915  580916  580917  580918  580919  580920  580928
#> [13708]  580930  580932  580948  580949  580950  580978  580979  580980  580984
#> [13717]  580985  581382  581398  581399  581570  581599  581600  581601  582289
#> [13726]  582292  582295  582296  582297  582311  582728  583681  583682  583844
#> [13735]  583845  583852  583853  583854  584102  584105  584106  585979  586238
#> [13744]  586239  586240  586246  586257  586258  586259  586260  586261  586262
#> [13753]  586263  586264  586265  586266  586267  586268  586269  586270  586271
#> [13762]  586272  586273  586274  586275  586276  586277  586353  586354  586488
#> [13771]  586696  586697  586700  586701  586924  586925  587012  587087  587089
#> [13780]  587090  587091  587092  587093  587094  587095  587664  587681  587685
#> [13789]  587711  587712  587734  587735  587738  587747  587749  587754  587755
#> [13798]  587775  587851  587926  587928  587929  587930  588054  588200  588201
#> [13807]  588373  588377  588381  588383  588384  588385  588387  588388  588393
#> [13816]  588394  588407  588408  588411  588412  588435  588439  588442  588446
#> [13825]  588448  588481  588495  588502  588503  588504  588505  588554  588572
#> [13834]  588573  588576  588580  588582  588592  588594  588596  588597  588602
#> [13843]  588603  588604  588605  588606  588607  588608  588609  588611  588620
#> [13852]  588624  588626  588628  588630  588631  588681  588715  588720  588763
#> [13861]  588775  588839  588841  589270  589271  589350  589467  589571  589660
#> [13870]  589665  589671  589672  589739  589745  589915  589916  589917  589918
#> [13879]  589920  590003  590004  590148  590166  590194  590196  590198  590212
#> [13888]  590318  590319  590320  590321  590322  590343  590344  590402  590428
#> [13897]  590429  590537  590551  590631  590762  590763  591003  591020  591021
#> [13906]  591022  591089  591090  591186  591223  591226  591227  591288  591289
#> [13915]  591294  591313  591355  591356  591361  591362  591363  591364  591365
#> [13924]  591366  591367  591368  591369  591370  591371  591383  591391  591392
#> [13933]  591396  591397  591584  591842  591843  591915  591969  591970  591971
#> [13942]  591973  591974  592067  592069  592383  592386  592387  592388  592433
#> [13951]  592439  592448  592451  592452  592532  592534  592549  592649  592671
#> [13960]  592672  592715  592722  592790  592791  592792  592793  592794  592823
#> [13969]  592913  592917  593083  593084  593086  593124  593125  593126  593134
#> [13978]  593135  593136  593184  593185  593394  593406  593498  593500  593528
#> [13987]  593529  593575  593577  593579  593603  593604  594018  594118  594144
#> [13996]  594344  594383  594387  594390  594511  594533  594534  594572  594578
#> [14005]  594582  594586  594588  594591  594592  594595  594610  594611  594612
#> [14014]  594742  594750  594951  595036  595042  595043  595115  595121  595122
#> [14023]  595128  595132  595134  595136  595166  595171  595193  595196  595197
#> [14032]  595198  595199  595231  595425  595540  595546  595549  595570  595572
#> [14041]  595576  595577  595582  595583  595588  595589  595594  595739  595902
#> [14050]  595903  595914  595919  595926  595994  596023  596026  596027  596144
#> [14059]  596186  596248  596264  596267  596270  596280  596281  596283  596289
#> [14068]  596316  596317  596396  596509  596558  596639  596641  596854  596985
#> [14077]  597020  597021  597022  597146  597147  597456  597697  597699  597736
#> [14086]  597760  597761  597762  597802  597820  597869  597870  597896  597936
#> [14095]  597948  598023  598256  598259  598395  598396  598397  598398  598439
#> [14104]  598441  598442  598477  598492  598530  598613  598614  598699  598733
#> [14113]  598800  598806  598897  598898  598899  598900  598928  598980  598981
#> [14122]  599016  599017  599163  599192  599885  600093  600288  600295  600382
#> [14131]  600453  600456  600457  600507  600544  600546  600729  600740  600862
#> [14140]  600863  600864  600875  600876  601282  601283  601333  601638  601639
#> [14149]  601684  601686  602046  602047  602100  602121  602128  602129  602172
#> [14158]  602176  602177  602178  602198  602251  602257  602263  602264  602304
#> [14167]  602306  602326  602328  602334  602338  602356  602376  602416  602426
#> [14176]  602427  602434  602469  602471  602473  602595  602622  603263  603265
#> [14185]  603290  603291  603294  603295  603352  603369  603370  603395  603417
#> [14194]  603418  604088  604107  604108  604171  604445  604446  604502  604503
#> [14203]  604661  604797  604799  604800  604805  604806  604854  604856  604909
#> [14212]  604910  604911  604917  604932  604939  605015  605017  605020  605022
#> [14221]  605025  605027  605055  605056  605078  605080  605095  605096  605129
#> [14230]  605130  605229  605231  605344  605346  605584  605671  605672  605977
#> [14239]  605978  605982  606066  606103  606165  606237  606364  606367  606368
#> [14248]  606472  606570  606571  606573  606663  606749  606822  606883  606884
#> [14257]  607038  607123  607124  607316  607417  607467  607479  607806  607807
#> [14266]  607808  607873  607874  607906  607907  607908  607909  607910  607913
#> [14275]  607914  607915  607916  607917  607918  607932  608552  608553  608942
#> [14284]  608943  608944  609349  609373  609382  609512  609571  609572  609573
#> [14293]  609574  609575  609576  609577  609578  609579  609585  609586  609666
#> [14302]  609686  609687  609688  609938  609999  610309  610311  610491  610493
#> [14311]  610495  610675  610805  611234  611236  611237  611239  611249  611250
#> [14320]  611252  611253  611254  611277  611337  611338  611404  611406  611530
#> [14329]  611532  611572  611608  611609  611613  611615  611616  611617  611618
#> [14338]  611619  611620  611621  611622  611623  611627  611628  611629  611663
#> [14347]  611665  611666  611669  611672  611673  611674  611675  611757  611758
#> [14356]  611759  611760  611761  611762  611763  611764  611765  611766  611767
#> [14365]  611768  611773  611774  611782  611783  611791  611864  611907  611908
#> [14374]  611909  611912  611945  612059  612374  612401  612407  612408  612545
#> [14383]  612547  612570  612571  612607  612608  612609  612610  612611  612655
#> [14392]  612656  612668  612669  612733  612740  612744  612749  612751  612757
#> [14401]  612759  612773  612793  612830  613135  613479  613480  613481  613482
#> [14410]  613485  613503  613504  613505  613619  613621  614018  614141  614142
#> [14419]  614143  614198  614202  614343  614352  614372  614373  614440  614443
#> [14428]  614578  614594  614598  614623  614808  614809  614810  614811  614812
#> [14437]  614813  614814  614815  615062  615217  615220  615271  615273  615274
#> [14446]  615870  615871  615872  616199  616200  616201  616202  616203  616204
#> [14455]  616205  616206  616711  616823  616825  617006  617022  617443  617445
#> [14464]  617446  617485  617569  617675  617676  617752  617753  617956  617997
#> [14473]  618000  618003  618313  618314  618316  618317  618318  618321  618322
#> [14482]  618323  618324  618325  618326  618327  618328  618430  618431  618433
#> [14491]  618434  618447  618448  618449  618450  618491  618494  618497  618500
#> [14500]  618503  618506  618563  618654  618710  618715  618771  618772  618773
#> [14509]  618774  618775  618793  618794  618815  618816  618817  619089  619090
#> [14518]  619091  619463  619513  619629  619630  619634  619635  619636  619640
#> [14527]  619663  619664  619877  619878  619903  619904  619906  620038  620069
#> [14536]  620070  620104  620180  620181  620228  620306  620307  620370  620429
#> [14545]  620432  620433  620435  620490  620521  620694  620697  620781  620782
#> [14554]  620821  620822  620823  621021  621022  621023  621024  621080  621118
#> [14563]  621163  621301  621411  621511  621523  621549  621719  621720  621723
#> [14572]  621725  622098  622117  622345  622379  622380  622381  622453  622454
#> [14581]  622500  622578  622607  622656  622730  622736  622797  622798  622800
#> [14590]  622816  622817  622835  622837  623018  623138  623210  623212  623214
#> [14599]  623215  623252  623254  623255  623257  623570  623571  623572  623861
#> [14608]  623875  623876  623882  623924  623925  623926  623938  623939  623940
#> [14617]  623941  623943  623945  623946  623947  623955  623957  623963  623992
#> [14626]  623994  623996  624035  624043  624145  624166  624243  624244  624245
#> [14635]  624401  624484  624487  624497  624499  624503  625306  625307  625410
#> [14644]  625412  625413  625415  625490  625492  625498  625499  625732  625875
#> [14653]  625932  625935  625938  625941  625998  626001  626004  626200  626202
#> [14662]  626229  626233  626299  626384  626385  626386  626424  626466  626467
#> [14671]  626471  626491  626493  626494  626518  626591  626674  626682  626684
#> [14680]  626803  626804  626806  626808  626810  626812  626815  626817  626819
#> [14689]  626821  626836  626877  627066  627067  627895  628169  628208  628209
#> [14698]  628210  628211  628285  628286  628287  628288  628453  628551  628557
#> [14707]  628777  628837  628839  628841  628842  628843  628844  628845  628846
#> [14716]  628847  628848  628849  629050  629052  629055  629094  629489  629492
#> [14725]  629592  629593  629754  629809  629810  629817  629900  629901  629910
#> [14734]  629912  629920  630077  630078  630079  630100  630260  630292  630293
#> [14743]  630367  630369  630386  630439  630443  630444  630445  630446  630597
#> [14752]  630599  630600  630601  630602  630698  630699  630700  630701  630702
#> [14761]  630703  630704  630705  630706  630707  630751  630778  630779  630780
#> [14770]  630781  630782  630783  630784  631103  631408  631410  631736  631862
#> [14779]  632077  632292  632419  632421  632423  632683  632699  632729  632735
#> [14788]  632794  632795  632796  632797  632799  632800  632801  632806  633095
#> [14797]  633125  633462  633463  633469  634090  634129  634719  634720  634721
#> [14806]  634722  635193  635238  635239  635240  635286  635287  635289  635290
#> [14815]  635291  635292  635293  635294  635295  635296  635297  635298  635299
#> [14824]  635301  635302  635345  635522  635570  635573  635710  635711  635713
#> [14833]  635714  635715  635969  635987  635988  635989  635992  636088  636101
#> [14842]  636113  636210  636262  637345  637346  637686  637688  637689  637753
#> [14851]  637758  637823  637877  637879  637886  637902  637912  637913  637914
#> [14860]  637915  637982  637983  637984  638022  638146  638147  638172  638215
#> [14869]  638222  638223  638281  638594  638595  638935  638936  638937  638996
#> [14878]  638997  638998  638999  639000  639001  639002  639003  639004  639005
#> [14887]  639006  639007  639148  639151  639154  639155  639156  639236  639237
#> [14896]  639285  639375  639377  639379  639390  639784  639939  640025  640026
#> [14905]  640063  640065  640066  640068  640102  640202  640203  640204  640215
#> [14914]  640318  640385  640395  640424  640490  640825  640831  640870  640871
#> [14923]  640978  640979  641104  641180  641201  641202  641475  641484  641577
#> [14932]  641578  641580  641893  641966  641968  642180  642209  642211  642213
#> [14941]  642214  642279  642280  642281  642282  642283  642284  642287  642368
#> [14950]  642391  642393  642403  642419  642420  642423  642426  642456  642459
#> [14959]  642466  642652  642731  642732  642811  642962  642992  643189  643219
#> [14968]  643228  643238  643239  643240  643283  643372  643373  643460  643482
#> [14977]  643720  643824  643835  643837  643839  643841  644003  644004  644005
#> [14986]  644006  644007  644008  644009  644010  644012  644014  644015  644196
#> [14995]  644197  644198  644199  644273  644280  644281  644426  644428  644560
#> [15004]  644562  644563  644564  644566  644567  644568  644709  644916  644918
#> [15013]  644921  644923  644926  644928  644962  644966  645085  645086  645087
#> [15022]  645088  645091  645168  645220  645221  645367  645383  645384  645557
#> [15031]  645559  645685  645752  645753  645831  646359  646360  646452  646453
#> [15040]  646472  646474  646475  646476  646477  646480  646481  646528  646529
#> [15049]  646550  646551  646588  646594  646622  646625  646628  646700  646711
#> [15058]  646840  646841  647011  647158  647271  647421  647547  647893  647894
#> [15067]  647895  647896  647953  647955  648182  648204  648205  648256  648420
#> [15076]  648424  648459  648460  648513  648514  648515  648525  648526  648579
#> [15085]  648580  648581  648582  648607  648608  648786  648910  648911  648913
#> [15094]  649221  649222  649224  649268  649482  649649  649696  649697  649698
#> [15103]  649699  649700  649826  649829  649978  649981  649983  650070  650351
#> [15112]  650367  650528  650530  650540  650542  650544  650545  650546  650739
#> [15121]  650740  650741  650750  650757  650854  650863  650869  650870  650880
#> [15130]  650881  650882  650883  650884  650885  650886  650887  651007  651008
#> [15139]  651555  651648  651662  651663  651675  651676  651684  651685  651686
#> [15148]  651688  651689  651694  651698  651728  651729  651730  651731  651745
#> [15157]  651762  651764  651765  651769  651776  651790  651792  651835  651853
#> [15166]  651855  651862  651870  651872  651873  651875  651878  651879  651880
#> [15175]  651901  651912  651913  651914  651921  651922  651923  651924  651925
#> [15184]  651927  651929  651931  651933  651935  652071  652101  652102  652120
#> [15193]  652121  652122  652152  652156  652185  652186  652198  652201  652202
#> [15202]  652203  652204  652205  652391  652440  652451  652574  652608  652610
#> [15211]  652612  652614  652619  652657  652658  652726  653324  653361  653697
#> [15220]  653702  653703  653704  653714  653754  653755  653760  653761  653762
#> [15229]  653763  653764  653765  653766  653767  653768  653769  653770  653771
#> [15238]  653772  653773  653774  653775  653776  653777  653864  653970  654106
#> [15247]  654108  654112  654138  654139  654140  654141  654142  654276  654324
#> [15256]  654397  654399  654455  654456  654778  654781  654883  654911  654946
#> [15265]  655266  655386  655420  655421  655422  655428  655431  655432  655433
#> [15274]  655434  655457  655464  655631  655632  655633  655634  655762  655763
#> [15283]  655786  655787  655788  655789  655884  655931  655940  655944  655984
#> [15292]  655986  656088  656199  656259  656305  656389  656390  656471  656631
#> [15301]  656668  656669  656670  656671  656672  656673  656674  656675  656676
#> [15310]  656694  656695  656749  656751  656752  656753  656754  656755  656756
#> [15319]  656757  656793  656925  656926  656927  656928  656929  656930  656931
#> [15328]  656932  656933  657062  657063  657064  657065  657066  657078  657184
#> [15337]  657209  657213  657948  657949  657950  657951  658007  658039  658061
#> [15346]  658065  658165  658166  658167  658168  658253  658256  658282  658316
#> [15355]  658317  658318  658330  658395  658396  658451  658461  658463  658465
#> [15364]  658471  658475  658524  658527  658530  658561  658562  658564  658565
#> [15373]  658592  658612  658613  658614  658615  658616  658617  658618  658619
#> [15382]  658630  658631  658636  658637  658642  658643  658724  658739  658740
#> [15391]  658743  658744  658745  658746  658747  658748  658749  658750  658751
#> [15400]  658752  658753  658755  658756  658758  658759  658760  658761  658955
#> [15409]  658958  658961  659068  659069  659108  659119  659121  659142  659143
#> [15418]  659144  659145  659146  659147  659148  659149  659150  659151  659152
#> [15427]  659153  659154  659155  659156  659157  659211  659258  659273  659282
#> [15436]  659283  659284  659285  659286  659287  659298  659299  659510  659543
#> [15445]  659718  660183  660301  660302  660479  660636  660637  660676  660678
#> [15454]  660831  660832  660866  660867  660873  660874  660875  660914  660915
#> [15463]  660916  660917  660918  660919  660920  660921  660922  661002  661266
#> [15472]  661307  661327  661353  661425  661428  661431  661434  661437  661440
#> [15481]  661596  661598  661644  661919  661921  661993  662141  662205  662446
#> [15490]  662534  662536  662543  662544  662545  662676  662677  662678  662679
#> [15499]  662692  662696  662697  662818  662819  662820  662821  662933  662971
#> [15508]  663068  663287  663295  663296  663297  663298  663525  663561  663584
#> [15517]  663585  663586  663587  663588  663627  663628  663629  663659  663698
#> [15526]  663712  663715  663717  663905  663907  663909  663910  663912  663913
#> [15535]  663955  663956  663968  664156  664159  664160  664161  664162  664163
#> [15544]  664164  664165  664166  664167  664261  664262  664263  664264  664266
#> [15553]  664267  664466  664467  664468  664693  664918  665206  665238  665256
#> [15562]  665260  665271  665272  665273  665383  665384  665385  665386  665387
#> [15571]  665391  665392  665393  665394  665547  665548  665551  665603  665646
#> [15580]  665841  665842  666145  666264  666284  666287  666302  666367  666413
#> [15589]  666414  666465  666690  666691  666698  666699  666701  666702  666704
#> [15598]  666706  666759  666971  667148  667158  667165  667167  667170  667171
#> [15607]  667245  667639  667640  667647  667652  668097  668700  668749  668761
#> [15616]  668808  668809  668810  668811  668817  668822  668823  669052  669081
#> [15625]  669082  669083  669112  669113  669188  669298  669435  669437  669453
#> [15634]  669641  669685  669714  669982  670049  670066  670067  670068  670069
#> [15643]  670070  670119  670123  670195  670249  670333  670532  670893  670894
#> [15652]  670895  670896  670938  670939  670940  670941  670942  670943  671207
#> [15661]  671287  671302  671333  671344  671345  671346  671347  671348  671349
#> [15670]  671351  671352  671507  671510  671626  671627  671651  671653  671657
#> [15679]  671695  671721  671806  671807  671810  671878  671885  671886  671888
#> [15688]  671968  672003  672092  672151  672153  672155  672157  672159  672161
#> [15697]  672175  672319  672321  672323  672410  672516  672518  672520  672716
#> [15706]  672717  672824  672825  672914  672915  672916  672917  672918  672919
#> [15715]  672920  672921  672922  672923  672924  672930  672931  672932  672933
#> [15724]  672945  672946  672970  672971  672973  673053  673058  673059  673111
#> [15733]  673112  673114  673115  673121  673124  673125  673183  673218  673220
#> [15742]  673225  673256  673334  673425  673428  673429  673430  673431  673579
#> [15751]  673583  673609  673667  673728  673729  673730  673744  673746  674502
#> [15760]  674664  674669  674670  674700  674701  674931  675187  675188  675210
#> [15769]  675211  675212  675213  675214  675215  675216  675217  675218  675219
#> [15778]  675220  675390  675652  675654  675656  675658  675660  675661  675662
#> [15787]  675663  675664  675665  675701  675702  675741  675743  675746  675832
#> [15796]  675850  675851  675852  675854  675855  675880  675881  675984  675985
#> [15805]  675986  675987  675990  676069  676273  676274  676851  677051  677054
#> [15814]  677055  677073  677074  677080  677162  677386  677439  677440  677551
#> [15823]  677578  677579  677692  677730  677736  677847  677848  677856  677857
#> [15832]  677977  677984  677985  678057  678271  678273  678285  678287  678288
#> [15841]  678290  678686  678688  678689  678838  679129  679466  680144  680885
#> [15850]  682387  682411  682412  682413  682414  682415  682425  682487  682488
#> [15859]  682498  682543  682545  682553  682668  682670  682828  683003  683158
#> [15868]  683194  683195  683270  683397  683463  683465  683531  683532  683539
#> [15877]  684271  684473  684908  685021  685022  685062  685063  685073  685076
#> [15886]  685217  685219  685222  685223  685224  685248  685330  685331  685332
#> [15895]  685498  685499  686983  686985  686986  686989  686991  686995  687015
#> [15904]  687172  687660  687661  687662  687663  687664  687665  687668  687670
#> [15913]  687671  688020  688021  688022  688186  688288  688289  688290  688291
#> [15922]  688292  688293  688611  688612  688742  688744  688745  688746  688747
#> [15931]  688749  688918  688919  688927  688928  688937  688987  689081  689082
#> [15940]  689083  689084  689085  689099  689100  689101  689102  689112  689114
#> [15949]  689133  689341  689493  689539  689540  689542  689543  689544  689545
#> [15958]  689546  689697  689724  689863  689864  690188  690191  690390  690398
#> [15967]  690399  690402  690407  690413  690416  690420  690429  690430  690432
#> [15976]  690434  690450  690507  690518  690549  690550  690590  690591  690592
#> [15985]  690593  690594  690645  690647  690653  690654  690798  690845  690847
#> [15994]  690923  690936  690983  690986  690987  690988  690989  691008  691009
#> [16003]  691010  691028  691029  691032  691039  691146  691147  691148  691149
#> [16012]  691440  692056  692131  692132  692140  692512  692589  692590  692686
#> [16021]  692758  692845  692846  692864  692916  692919  693218  693220  693222
#> [16030]  693448  693524  693525  693526  693539  693583  693584  693585  693591
#> [16039]  693592  693593  693652  693653  693689  693690  694013  694014  694015
#> [16048]  694032  694034  694036  694130  694265  694266  694268  694269  694465
#> [16057]  694565  694763  694806  694875  694876  695020  695021  695022  695023
#> [16066]  695024  695025  695183  695184  695185  695375  695610  695683  695939
#> [16075]  695940  695941  695951  695952  695953  695955  695956  696017  696020
#> [16084]  696088  696089  696093  696139  696140  696285  696365  696367  696368
#> [16093]  696369  696458  696468  696469  696981  696983  696986  697071  697074
#> [16102]  697075  697285  697634  697637  697734  697736  697738  697739  697740
#> [16111]  697741  697742  697743  697784  697823  697871  697891  697893  697896
#> [16120]  697900  697906  697926  697929  697932  697935  697938  697941  697944
#> [16129]  697951  697954  697957  697960  697963  697966  697969  698097  698101
#> [16138]  698122  698125  698147  698148  698149  698150  698151  698152  698160
#> [16147]  698267  698268  698269  698270  698271  698291  698294  698301  698302
#> [16156]  698305  698306  698307  698308  698309  698310  698317  698318  698512
#> [16165]  698528  698529  698531  698534  698535  698537  698539  698798  698851
#> [16174]  698853  698855  698862  698914  698915  698916  698921  698933  698935
#> [16183]  698937  698948  698949  698950  698956  699042  699043  699044  699053
#> [16192]  699506  699508  699509  699510  699893  699921  700098  700121  700122
#> [16201]  700403  700828  700917  700918  700924  700925  700926  700927  700928
#> [16210]  700932  700961  700962  700963  700964  700965  700966  700967  700968
#> [16219]  700984  700985  701039  701040  701041  701042  701049  701050  701051
#> [16228]  701052  701053  701054  701055  701056  701057  701059  701060  701061
#> [16237]  701062  701064  701069  701070  701074  701075  701077  701078  701083
#> [16246]  701084  701085  701102  701238  701289  701323  701391  701507  701516
#> [16255]  701517  701518  701519  701701  701911  701954  701956  701959  701961
#> [16264]  701971  701972  701973  701974  701975  701976  701977  701978  701979
#> [16273]  701980  701981  701982  702020  702021  702156  702157  702164  702254
#> [16282]  702366  702367  702368  702678  702757  702758  702947  703193  703198
#> [16291]  703556  703640  703749  703851  704149  704203  704237  704239  704240
#> [16300]  704241  704242  704265  704266  704267  704268  704269  704270  704271
#> [16309]  704272  704273  704567  704569  704570  704573  704602  704605  704608
#> [16318]  704666  704734  704735  704737  704957  704959  704961  704981  704982
#> [16327]  704988  705035  705220  705221  705222  705240  705360  705365  705390
#> [16336]  705392  705393  705394  705443  705580  705581  705582  705657  705687
#> [16345]  705799  705802  705804  705806  705808  705810  705812  705813  705818
#> [16354]  705927  705928  705929  706222  706224  706226  706228  706230  706232
#> [16363]  706250  706252  706349  706350  706374  706426  706427  706428  706451
#> [16372]  706452  706818  706819  706820  706821  706822  706902  706908  707063
#> [16381]  707065  707072  707302  707354  707381  707739  707740  707741  707849
#> [16390]  707970  707971  707988  708110  708121  708398  708483  708484  708485
#> [16399]  708486  708487  708488  708489  708494  708495  708628  708651  708652
#> [16408]  708653  708654  708655  708656  708657  708688  708691  708693  708695
#> [16417]  708959  708960  708966  709132  709133  709142  709369  709370  709381
#> [16426]  709517  709518  709536  709626  709644  709645  709646  709655  709658
#> [16435]  709664  709685  709740  709865  709867  709868  709869  709870  710116
#> [16444]  710117  710157  710159  710164  710185  710186  710187  710220  710265
#> [16453]  710268  710271  710366  710394  710437  710551  710645  710789  710932
#> [16462]  710991  710992  711129  711131  711135  711263  711294  711303  711305
#> [16471]  711307  711320  711321  711463  711464  711466  711467  711468  711490
#> [16480]  711492  711500  711515  711526  711531  711552  711553  711567  711594
#> [16489]  711881  712271  712272  712273  712274  712275  712276  712277  712278
#> [16498]  712282  712284  712381  712383  712385  712495  712500  712525  712807
#> [16507]  712808  712809  712810  712811  712812  712813  712814  712815  712816
#> [16516]  713857  713859  713860  713861  713862  713863  713864  713865  714170
#> [16525]  714171  714174  714268  714269  714270  714417  714418  714419  714420
#> [16534]  714421  714431  714451  714456  714462  714470  714637  714638  714641
#> [16543]  714666  714667  714668  714723  714950  715455  715456  715698  715702
#> [16552]  715895  715898  715944  715945  715948  715949  716076  716174  716179
#> [16561]  716294  716295  716296  716396  716397  716612  716613  717061  717062
#> [16570]  717171  717172  717173  717174  717255  717259  717260  717261  717280
#> [16579]  717281  717390  717392  717398  717414  717416  717418  717420  717421
#> [16588]  717424  717452  717508  717582  717593  717635  717637  717644  717673
#> [16597]  717912  717961  718286  718288  718289  718300  718302  718304  718371
#> [16606]  718372  718373  718374  718578  718718  718734  718735  718736  718737
#> [16615]  718738  718740  718741  718742  718805  718807  718815  718850  718853
#> [16624]  719094  719170  719171  719174  719178  719255  719259  719290  719294
#> [16633]  719296  719298  719302  719347  719348  719393  719412  719466  719467
#> [16642]  719468  719469  719470  719471  719472  719473  719474  719497  719499
#> [16651]  719613  719614  719620  719622  719623  719624  719625  719626  719627
#> [16660]  719688  719864  719865  719866  719867  719868  719871  719872  719873
#> [16669]  720493  720500  720642  720643  720660  720661  720671  720672  720673
#> [16678]  720975  720978  721108  721185  721186  721187  721188  721189  721199
#> [16687]  721201  721504  721550  721551  721557  721696  721698  721886  721982
#> [16696]  721983  722040  722163  722164  722277  722279  722335  722336  722372
#> [16705]  722392  722394  722653  722675  722676  722677  722678  722679  722680
#> [16714]  722681  722682  722683  722684  722685  722770  722772  723005  723006
#> [16723]  723007  723008  723010  723012  723014  723017  723023  723025  723029
#> [16732]  723176  723216  723217  723239  723260  723311  723480  723481  723483
#> [16741]  723484  723497  723498  723547  723812  724028  724031  724032  724279
#> [16750]  724393  724394  724395  724396  724397  724398  724399  724400  724401
#> [16759]  724402  724403  724404  724405  724406  724407  724408  724409  724410
#> [16768]  724411  724412  724413  724414  724415  724416  724417  724418  724452
#> [16777]  724461  724585  724586  724589  724590  724594  724595  724596  724705
#> [16786]  724706  724707  724710  724712  724744  724754  724755  724756  724757
#> [16795]  724759  724764  724765  724766  724767  724830  724904  724937  724938
#> [16804]  724939  724944  724947  725035  725040  725109  725221  725308  725388
#> [16813]  725389  725519  725582  725583  725584  725585  725587  725615  725619
#> [16822]  725676  725679  725710  725843  725845  725848  725925  725954  726070
#> [16831]  726084  726086  726087  726088  726234  726236  726237  726238  726241
#> [16840]  726243  726247  726248  726249  726251  726255  726262  726264  726391
#> [16849]  726396  726414  726415  726416  726418  726419  726437  726438  726439
#> [16858]  726469  726470  726479  726480  726602  726702  726704  726705  726706
#> [16867]  726933  726934  727268  727270  727337  727352  727353  727354  727461
#> [16876]  727514  727611  727612  727739  727740  727746  727747  727749  727771
#> [16885]  727779  727999  728000  728042  728043  728045  728113  728171  728172
#> [16894]  728258  728260  728294  728297  728319  728601  728604  728605  728606
#> [16903]  728609  728612  728613  728614  728615  728616  728617  728643  728796
#> [16912]  728799  728947  728948  728949  728950  728951  728956  729021  729037
#> [16921]  729038  729039  729040  729075  729078  729172  729173  729242  729274
#> [16930]  729275  729276  729277  729292  729423  729474  729475  729476  729477
#> [16939]  729478  729479  729708  729710  729735  730232  730234  730235  730236
#> [16948]  730237  730238  730242  730243  730253  730299  730428  730429  730430
#> [16957]  730431  730613  730783  730784  730785  730788  730792  730810  730843
#> [16966]  730844  730860  730862  730962  730964  731005  731006  731007  731231
#> [16975]  731338  731339  731340  731347  731348  731354  731356  731375  731376
#> [16984]  731385  731386  731387  731388  731447  731518  731532  731533  731535
#> [16993]  731962  731963  731964  731980  731981  731998  731999  732000  732004
#> [17002]  732029  732030  732031  732032  732070  732071  732337  732338  732339
#> [17011]  732340  732345  732346  732358  732416  732810  732812  732907  732915
#> [17020]  733061  733062  733189  733190  733194  733196  733197  733200  733256
#> [17029]  733257  733264  733265  733266  733267  733268  733269  733428  733429
#> [17038]  733442  733443  733512  733548  733549  733559  733560  733581  733615
#> [17047]  733670  733671  733672  733687  733688  733689  733690  733691  733692
#> [17056]  733874  733882  733884  733885  733886  733887  734115  734116  734255
#> [17065]  734256  734257  734258  734259  734260  734265  734266  734804  734882
#> [17074]  734974  735055  735081  735082  735221  735224  735332  735354  735921
#> [17083]  735922  735923  735925  735926  735927  735944  735945  736013  736129
#> [17092]  736236  736238  736291  736342  736343  736344  736443  736512  736515
#> [17101]  736516  736517  736518  736519  736589  736590  736690  737121  737125
#> [17110]  737126  737127  737128  737129  737130  737131  737132  737133  737134
#> [17119]  737135  737365  738018  738057  738302  738303  738330  738333  738334
#> [17128]  738335  738337  738338  738388  738396  739035  739090  739243  739704
#> [17137]  739706  739708  739720  739721  739722  739723  739828  739874  739878
#> [17146]  739882  739912  740007  740010  740011  740169  740177  740381  740384
#> [17155]  740385  740557  740636  740637  740799  741084  741590  741591  741594
#> [17164]  741672  742411  742412  743016  743037  743038  743052  743059  743096
#> [17173]  743097  743101  743102  743111  743115  743178  743179  743181  743198
#> [17182]  743229  743232  743235  743236  743384  743385  743386  743393  743418
#> [17191]  743419  743420  743421  743423  743424  743425  743426  743427  743429
#> [17200]  743430  743431  743433  743447  743462  743466  743491  743496  743640
#> [17209]  743737  743739  743742  744020  744065  744122  744299  744324  744325
#> [17218]  744326  744327  744401  744435  744710  745106  745139  745140  745143
#> [17227]  745312  745313  745314  745315  745316  745356  745357  745477  745635
#> [17236]  745685  745691  745692  745693  745718  745732  745733  745761  746333
#> [17245]  746401  746402  746403  746404  746405  746406  746407  746415  746438
#> [17254]  746439  746440  746441  746442  746443  746446  746447  746448  746449
#> [17263]  746452  746544  746545  746645  746743  746744  746747  746774  746928
#> [17272]  747007  747030  747034  747111  747116  747122  747124  747302  747465
#> [17281]  747466  747467  747468  747600  747602  747654  747655  747991  747995
#> [17290]  748045  748159  748163  748167  748171  748205  748237  748260  748343
#> [17299]  748361  748363  748366  748409  748416  748417  748420  748421  748422
#> [17308]  748424  748532  748535  748536  748547  748548  748549  748726  748727
#> [17317]  748728  748729  748730  748731  748732  748733  748734  748735  748736
#> [17326]  748737  748738  748810  748855  748856  748857  748883  748886  748888
#> [17335]  748889  748892  748893  748894  748896  748898  748901  748903  748904
#> [17344]  748910  748926  748928  748929  748931  748933  748934  748936  748938
#> [17353]  748939  748942  749202  749351  749352  749438  749439  749440  749442
#> [17362]  749443  749444  749445  749715  749834  749836  749838  749865  749867
#> [17371]  750042  750044  750142  750374  750382  750407  750440  750442  750443
#> [17380]  750477  750578  750579  750598  750599  750600  750631  750636  750640
#> [17389]  750644  750718  750729  750732  750735  751067  751068  751135  751194
#> [17398]  751197  751212  751213  751252  751574  751778  751780  751950  751951
#> [17407]  751958  751959  751960  751991  751992  752104  752105  752106  752108
#> [17416]  752122  752123  752187  752188  752189  752190  752191  752192  752193
#> [17425]  752194  752195  752196  752197  752395  752429  752431  752433  752804
#> [17434]  752835  752847  752848  753256  753319  753432  753452  753453  753454
#> [17443]  753468  753469  753484  753486  753487  753488  753521  753935  754000
#> [17452]  754002  754004  754006  754007  754009  754108  754109  754127  754140
#> [17461]  754143  754146  754149  754495  754496  754722  754723  754734  754786
#> [17470]  754797  755007  755008  755015  755170  755235  755263  755266  755269
#> [17479]  755285  755288  755307  755320  755336  755403  755445  755457  755458
#> [17488]  755459  755462  755565  755587  755628  755645  755646  755647  755648
#> [17497]  755649  755650  755651  755652  755653  755654  755681  755682  755683
#> [17506]  755901  755902  756037  756038  756075  756107  756108  756109  756135
#> [17515]  756221  756222  756223  756224  756225  756226  756227  756243  756244
#> [17524]  756245  756246  756247  756248  756249  756250  756251  756252  756320
#> [17533]  756321  756501  756521  756522  756689  756708  756712  756747  756748
#> [17542]  756749  756766  756808  756814  756977  756981  757624  757625  757626
#> [17551]  757627  757779  757782  757881  757883  757889  758056  758169  758170
#> [17560]  758171  758174  758176  758178  758179  758180  758181  758182  758194
#> [17569]  758249  758251  758299  758300  758301  758302  758303  758304  758752
#> [17578]  758784  758803  758804  758805  758806  758809  758814  758829  758835
#> [17587]  758841  758842  758843  758845  758848  758849  758851  758854  758855
#> [17596]  758856  758857  758858  758859  758860  758861  758862  758883  758891
#> [17605]  758901  758904  758939  758940  759025  759037  759172  759188  759191
#> [17614]  759294  759298  759401  759404  759407  759430  759431  759527  759528
#> [17623]  759529  759530  759531  759539  759540  759541  759542  759740  759992
#> [17632]  760001  760174  760176  760179  760185  760186  760187  760188  760189
#> [17641]  760190  760191  760192  760193  760194  760195  760196  760197  760198
#> [17650]  760199  760200  760201  760202  760203  760204  760205  760206  760208
#> [17659]  760217  760263  760265  760292  760345  760346  760430  760431  760432
#> [17668]  760433  760434  760527  760556  760603  760692  760693  761160  761162
#> [17677]  761299  761304  761376  761377  761379  761380  761382  761547  761797
#> [17686]  761845  761846  761847  761848  761849  762282  762284  762285  762302
#> [17695]  762340  762341  762342  762343  762346  762435  762439  762447  762448
#> [17704]  762557  762562  762621  762644  762645  762646  762647  762648  762649
#> [17713]  762650  762651  762652  762653  762654  762670  762671  762831  762832
#> [17722]  762837  763855  763856  763862  763863  763864  763865  763924  764124
#> [17731]  764127  764128  764174  764215  764216  764217  764218  764302  764305
#> [17740]  764311  764312  764553  764622  764948  765266  765294  765356  765473
#> [17749]  765474  765475  765836  765837  765840  765841  765842  766330  766408
#> [17758]  766411  766432  766674  766677  766685  766686  766687  766688  766689
#> [17767]  766690  766691  766692  766693  766694  766695  766696  766697  766698
#> [17776]  766699  766700  766701  766702  766703  766704  766705  766710  766742
#> [17785]  766745  766747  766750  766781  766850  766852  766853  766856  766858
#> [17794]  766859  767220  767405  767406  767489  767490  767498  767499  767500
#> [17803]  767501  767534  767535  767589  767601  767738  767850  767958  767959
#> [17812]  767961  767965  767968  767973  768185  768186  768187  768188  768189
#> [17821]  768191  768192  768193  768194  768196  768197  768198  768199  768200
#> [17830]  768201  768202  768203  768204  768205  768206  768208  768209  768225
#> [17839]  768249  768250  768251  768252  768253  768254  768264  768316  768321
#> [17848]  768322  768748  768749  768769  769553  769723  769735  769737  769738
#> [17857]  769739  769740  769741  769836  769921  769922  769923  769925  770011
#> [17866]  770014  770016  770024  770025  770069  770070  770071  770177  770188
#> [17875]  770189  770190  770191  770234  770246  770247  770248  770249  770250
#> [17884]  770251  770252  770257  770287  770291  770294  770295  770386  770387
#> [17893]  771080  771137  771143  771225  771230  771325  771326  771327  771527
#> [17902]  771529  771592  771795  772133  772140  772142  772146  772299  772301
#> [17911]  772304  772305  772307  772380  772381  772408  772427  772429  772470
#> [17920]  772471  772473  772487  772488  772489  772490  772491  772492  772493
#> [17929]  772522  772525  772527  772529  772534  772537  772538  772540  772541
#> [17938]  772627  772628  772821  772913  772934  772939  772942  772944  772953
#> [17947]  772956  772959  773511  773512  773513  773609  773690  773785  773786
#> [17956]  773841  773844  773845  773846  773847  773848  773849  773850  773851
#> [17965]  773852  773853  773885  774045  774046  774047  774048  774049  774050
#> [17974]  774051  774052  774053  774054  774055  774056  774057  774058  774059
#> [17983]  774060  774061  774062  774063  774064  774099  774113  774114  774151
#> [17992]  774233  774611  774885  774890  774891  775063  775106  775182  775185
#> [18001]  775258  775310  775316  775637  775800  775801  775802  775803  775804
#> [18010]  775806  775850  776306  776307  776338  776513  776517  776670  776680
#> [18019]  776681  776682  776765  776766  776851  776866  776927  776934  776957
#> [18028]  776958  776961  777165  777168  777173  777175  777178  777196  777452
#> [18037]  778757  778759  778917  778941  778942  778943  778944  778945  778946
#> [18046]  778947  778948  778949  778950  778951  778952  778962  779527  779528
#> [18055]  779529  779585  779586  779594  779596  779736  779738  779739  779921
#> [18064]  779923  779956  780175  780253  780330  780544  781023  781026  781027
#> [18073]  781066  781109  781163  781165  781166  781175  781177  781187  781190
#> [18082]  781196  781197  781198  781205  781225  781228  781231  781234  781236
#> [18091]  781238  781241  781242  781247  781331 1053177 1053181 1053182 1053245
#> [18100] 1053294 1053297 1053408 1053409 1053507 1053509 1053511 1053514 1053661
#> [18109] 1053663 1053665 1053673 1054061 1054063 1054100 1054102 1054103 1054104
#> [18118] 1054105 1054106 1054146 1054164 1054197 1054198 1054202 1054210 1054215
#> [18127] 1054245 1054246 1054248 1054252 1054253 1054254 1054255 1054294 1054297
#> [18136] 1054298 1054299 1054300 1054498 1054685 1054691 1054701 1055045 1055201
#> [18145] 1055441 1055491 1055492 1055495 1055502 1055503 1055504 1055505 1055506
#> [18154] 1055507 1055510 1055511 1055512 1055687 1055688 1055689 1055854 1055884
#> [18163] 1055885 1055927 1055928 1055929 1055983 1055984 1055985 1055987 1055988
#> [18172] 1055999 1056252 1056253 1056254 1056308 1056327 1056332 1056334 1056398
#> [18181] 1056401 1056402 1056504 1056578 1056579 1056580 1056581 1056582 1056583
#> [18190] 1056586 1056658 1056688 1056698 1056701 1056703 1056953 1056954 1056955
#> [18199] 1056956 1056957 1056958 1056959 1056961 1056962 1056963 1056964 1056966
#> [18208] 1056968 1056969 1056970 1056971 1057034 1057038 1057039 1057040 1057792
#> [18217] 1057851 1057861 1057862 1058437 1058498 1058500 1058501 1058558 1059084
#> [18226] 1059085 1059087 1059091 1059093 1059095 1059097 1059098 1059099 1059100
#> [18235] 1059102 1059110 1059145 1059146 1059180 1059186 1059319 1059383 1059434
#> [18244] 1059436 1059438 1059478 1059508 1059690 1059728 1059927 1059932 1059933
#> [18253] 1059934 1059935 1059937 1059938 1060616 1060629 1060631 1060632 1060847
#> [18262] 1060973 1060975 1060997 1060999 1061206 1061254 1061680 1061682 1061683
#> [18271] 1061684 1061686 1062024 1062027 1062115 1062116 1062117 1062119 1062120
#> [18280] 1062122 1062123 1062162 1062163 1062164 1062165 1062166 1062174 1062205
#> [18289] 1062207 1062215 1062216 1062217 1062222 1062339 1062521 1062587 1062588
#> [18298] 1062589 1062590 1062591 1062614 1062615 1062641 1062661 1063131 1063132
#> [18307] 1063150 1063154 1063167 1063170 1063172 1063174 1063176 1063219 1063220
#> [18316] 1063359 1063528 1063529 1063543 1063607 1063614 1063765 1063767 1063821
#> [18325] 1063823 1063834 1064370 1064445 1064454 1064553 1064593 1064614 1064625
#> [18334] 1064778 1064780 1064832 1064914 1064915 1065041 1065177 1065178 1065181
#> [18343] 1065182 1065270 1065436 1065465 1065652 1065801 1065923 1065985 1065986
#> [18352] 1066039 1066041 1066042 1066043 1066044 1066045 1066046 1066047 1066048
#> [18361] 1066051 1066126 1066202 1066203 1066366 1066367 1066368 1066369 1066370
#> [18370] 1066371 1066555 1066556 1066558 1066559 1066633 1066872 1066946 1066948
#> [18379] 1067172 1067334 1067335 1067453 1067512 1067666 1067680 1067685 1067756
#> [18388] 1067796 1067819 1068361 1068404 1068405 1068505 1068512 1068880 1068944
#> [18397] 1069012 1069029 1069065 1069136 1069137 1069481 1069483 1069510 1069593
#> [18406] 1069594 1069709 1069854 1069871 1069874 1070102 1070103 1070104 1070105
#> [18415] 1070106 1070107 1070112 1070139 1070141 1070142 1070144 1070146 1070148
#> [18424] 1070237 1070238 1070239 1070367 1070368 1070372 1070378 1070379 1070438
#> [18433] 1070476 1070524 1070530 1070542 1070543 1070544 1070545 1070547 1070556
#> [18442] 1070557 1070558 1070559 1070560 1070561 1070562 1070585 1070588 1070591
#> [18451] 1070592 1070593 1070594 1070595 1070596 1070597 1070599 1070600 1070603
#> [18460] 1070604 1070639 1070640 1070641 1070650 1070657 1070658 1070659 1070660
#> [18469] 1070665 1070666 1070667 1070668 1070672 1070673 1070674 1070675 1070676
#> [18478] 1070678 1070679 1070704 1070705 1070706 1070734 1070737 1070869 1070885
#> [18487] 1070886 1070889 1070893 1070894 1070895 1070915 1070916 1070918 1070947
#> [18496] 1070948 1070949 1070950 1070951 1070952 1070953 1070954 1070955 1070956
#> [18505] 1070957 1070958 1070959 1070960 1070961 1070962 1070963 1070966 1070967
#> [18514] 1070974 1070975 1070977 1070999 1071030 1071031 1071037 1071038 1071079
#> [18523] 1071080 1071169 1071170 1071171 1071172 1071188 1071189 1071199 1071200
#> [18532] 1071248 1071252 1071317 1071341 1071468 1071470 1071539 1071593 1071594
#> [18541] 1071609 1071610 1071659 1071674 1071675 1071698 1071706 1071707 1071708
#> [18550] 1071709 1071710 1071711 1071712 1071713 1071714 1071715 1071741 1071742
#> [18559] 1071861 1071899 1071900 1071901 1071902 1071903 1071904 1071906 1071907
#> [18568] 1071908 1071931 1072030 1072031 1072032 1072033 1072034 1072035 1072036
#> [18577] 1072037 1072077 1072078 1072079 1072100 1072499 1072500 1072501 1072513
#> [18586] 1072531 1072553 1072643 1072649 1072654 1072656 1072660 1072662 1072666
#> [18595] 1072731 1072732 1072733 1072736 1072737 1072800 1072803 1072804 1072805
#> [18604] 1072806 1072807 1072808 1072920 1072927 1072939 1072941 1072944 1072959
#> [18613] 1072961 1072963 1072967 1072970 1072972 1072973 1073051 1073117 1073118
#> [18622] 1073119 1073120 1073165 1073302 1073304 1073306 1073346 1073347 1073349
#> [18631] 1073351 1073354 1073357 1073364 1073366 1073415 1073416 1073417 1073418
#> [18640] 1073419 1073420 1073421 1073422 1073435 1073452 1073535 1073536 1073537
#> [18649] 1073601 1073602 1073604 1073713 1073714 1073801 1073802 1073803 1073804
#> [18658] 1073805 1073806 1073807 1073816 1073818 1073819 1073820 1073821 1073822
#> [18667] 1073823 1073824 1073825 1073846 1073850 1073851 1073852 1073853 1073854
#> [18676] 1073855 1073863 1073865 1074076 1074077 1074078 1074079 1074080 1074081
#> [18685] 1074112 1074113 1074114 1074115 1074133 1074135 1074157 1074160 1074296
#> [18694] 1074603 1074604 1074753 1074754 1074755 1074756 1074757 1074763 1074764
#> [18703] 1074766 1074767 1074768 1074780 1074782 1074784 1074825 1074898 1074899
#> [18712] 1074900 1075197 1075421 1075422 1075423 1075428 1075446 1075448 1075450
#> [18721] 1075468 1075469 1075471 1075472 1075689 1075711 1076070 1076071 1076072
#> [18730] 1076079 1076358 1076407 1076696 1076994 1077209 1077210 1077214 1077221
#> [18739] 1077222 1077223 1077251 1077252 1077255 1077391 1077417 1077418 1077453
#> [18748] 1077485 1077486 1077674 1077675 1077676 1077677 1077731 1077853 1077855
#> [18757] 1077858 1077859 1077863 1077864 1077936 1078006 1078018 1078019 1078020
#> [18766] 1078192 1078195 1078227 1079412 1079577 1079596 1079597 1079598 1079599
#> [18775] 1079689 1079806 1079807 1079808 1079811 1079812 1079813 1079815 1079930
#> [18784] 1080460 1080461 1080462 1080463 1080464 1080465 1080598 1080599 1080600
#> [18793] 1080601 1080602 1080603 1080604 1080605 1080606 1080607 1080608 1080609
#> [18802] 1080610 1080611 1080735 1080736 1083069 1083070 1083327 1083341 1083342
#> [18811] 1083343 1083386 1083529 1083530 1083737 1083868 1084126 1084256 1084622
#> [18820] 1084623 1084624 1085968 1085969 1087018 1090174 1092953 1092954 1092955
#> [18829] 1092956 1092957 1093074 1093075 1093104 1093105 1093107 1093111 1093122
#> [18838] 1093143 1093145 1093147 1093395 1093457 1093458 1093459 1093661 1093662
#> [18847] 1093663 1093760 1094011 1094012 1094016 1094167 1094606 1094617 1094957
#> [18856] 1094960 1095196 1095197 1095243 1095244 1095312 1095313 1095314 1095315
#> [18865] 1095316 1095317 1095318 1095319 1095321 1095322 1095323 1095324 1095325
#> [18874] 1095329 1095331 1095332 1095586 1095587 1095624 1096156 1096157 1096459
#> [18883] 1096461 1096463 1096465 1096468 1096469 1096470 1096472 1096474 1096716
#> [18892] 1096717 1096718 1096720 1096721 1096722 1096779 1097064 1099671 1100318
#> [18901] 1100669 1102450 1105125 1105126 1105127 1105360 1105361 1105617 1105618
#> [18910] 1105619 1105654 1107515 1107521 1108398 1108412 1110047 1110208 1110496
#> [18919] 1110725 1110727 1110732 1111388 1111391 1111594 1111598 1111599 1111600
#> [18928] 1111606 1112911 1112957 1112959 1112960 1113137 1113139 1113217 1113219
#> [18937] 1113221 1113223 1113225 1113227 1113229 1113231 1113452 1113453 1113454
#> [18946] 1113456 1113457 1113458 1113459 1113460 1113462 1113463 1113464 1113466
#> [18955] 1113467 1113468 1113469 1113471 1113472 1113473 1113790 1114640 1115246
#> [18964] 1115247 1115248 1115249 1115250 1115251 1115252 1115253 1115254 1115255
#> [18973] 1115426 1116939 1117265 1117297 1117424 1117501 1117502 1117503 1117504
#> [18982] 1117505 1117506 1117524 1117836 1117858 1117859 1117862 1117994 1118233
#> [18991] 1118313 1118315 1118427 1118447 1118549 1118557 1118595 1118600 1118602
#> [19000] 1118614 1118631 1118632 1118633 1118634 1118635 1118636 1118637 1118638
#> [19009] 1118639 1118640 1118641 1118642 1118643 1118644 1118645 1118646 1118647
#> [19018] 1118648 1118649 1118650 1118651 1118652 1118768 1118769 1118797 1118798
#> [19027] 1118799 1118800 1118813 1118889 1118891 1118897 1118899 1118901 1118932
#> [19036] 1118933 1118936 1118939 1119071 1119091 1119144 1119178 1119205 1119214
#> [19045] 1119215 1119216 1119233 1119343 1119407 1119408 1119409 1119488 1119497
#> [19054] 1119831 1119832 1119834 1119835 1119836 1119837 1119838 1120241 1120532
#> [19063] 1120534 1120980 1120981 1121169 1121171 1121173 1121175 1121283 1121284
#> [19072] 1121369 1121383 1121390 1121391 1121394 1121395 1121400 1121406 1121489
#> [19081] 1121490 1121491 1121492 1121493 1121494 1121495 1121496 1121497 1121498
#> [19090] 1121600 1121612 1121729 1121979 1121981 1121982 1122349 1122353 1122361
#> [19099] 1122362 1122363 1122372 1122373 1122374 1122375 1122385 1122387 1122497
#> [19108] 1122504 1122509 1122510 1122511 1122937 1122970 1122972 1122991 1123082
#> [19117] 1123214 1123270 1123271 1123301 1123302 1123311 1124858 1124859 1124860
#> [19126] 1124965 1124966 1124967 1124989 1124990 1124995 1125065 1125279 1125280
#> [19135] 1125281 1125282 1125283 1125284 1125350 1125421 1125529 1125530 1125532
#> [19144] 1125571 1125578 1125582 1125602 1125614 1125659 1125662 1125769 1125770
#> [19153] 1125916 1125917 1125921 1126019 1126020 1126021 1126030 1126172 1126506
#> [19162] 1126507 1126508 1126662 1126728 1126772 1126829 1126830 1126831 1126834
#> [19171] 1126835 1126836 1126837 1127140 1127142 1127278 1127393 1127394 1127495
#> [19180] 1127498 1127515 1127516 1127522 1127523 1127527 1127528 1127529 1127531
#> [19189] 1127532 1127533 1127542 1127543 1127547 1127548 1127549 1127550 1127551
#> [19198] 1127552 1127553 1127556 1127557 1127560 1127565 1127887 1127896 1128073
#> [19207] 1128100 1128317 1128318 1128615 1129057 1129255 1129300 1129462 1129463
#> [19216] 1129602 1129613 1129629 1129630 1129631 1129632 1129646 1129647 1129648
#> [19225] 1129817 1129820 1129823 1129935 1129984 1133438 1135484 1136043 1136044
#> [19234] 1136045 1136046 1136047 1136048 1136049 1137715 1137717 1137719 1137721
#> [19243] 1137723 1137725 1137750 1137756 1137772 1137781 1137813 1137827 1137840
#> [19252] 1137845 1137846 1137850 1137851 1137852 1137853 1137854 1137863 1137890
#> [19261] 1137895 1137896 1137987 1137989 1138009 1138012 1138014 1138016 1138019
#> [19270] 1138040 1138164 1138167 1138177 1138310 1138409 1138576 1138633 1138634
#> [19279] 1138673 1138773 1138774 1138776 1138894 1138961 1138963 1138966 1139079
#> [19288] 1139084 1139094 1139096 1139097 1139098 1139099 1139100 1139241 1139343
#> [19297] 1139344 1139345 1139389 1139390 1139391 1139392 1139393 1139558 1139698
#> [19306] 1139700 1139847 1139979 1139981 1140089 1140090 1140091 1140102 1140103
#> [19315] 1140104 1140153 1140154 1140155 1140163 1140165 1140316 1140317 1140318
#> [19324] 1140319 1140320 1140321 1140322 1140323 1140324 1140325 1140326 1140327
#> [19333] 1140392 1140512 1140513 1140514 1140515 1140518 1140788 1140797 1140807
#> [19342] 1141005 1141006 1141007 1141037 1141039 1141041 1141043 1141143 1141227
#> [19351] 1141228 1141245 1141300 1141301 1141302 1141746 1141747 1141748 1141749
#> [19360] 1141940 1141960 1141962 1141963 1141964 1141965 1141966 1141967 1141968
#> [19369] 1142031 1142106 1142108 1142112 1142113 1142114 1142196 1142221 1142222
#> [19378] 1142223 1142339 1142340 1142357 1142358 1142359 1142360 1142361 1142362
#> [19387] 1142363 1142383 1143097 1143099 1143100 1143101 1143102 1143103 1143104
#> [19396] 1143189 1143201 1143321 1143328 1143459 1143461 1143726 1143727 1143733
#> [19405] 1143820 1143821 1143822 1145699 1151368 1151375 1151513 1151514 1151519
#> [19414] 1151520 1151521 1151522 1151523 1151524 1151525 1151526 1151527 1151540
#> [19423] 1151542 1151544 1151546 1151548 1151833 1151835 1151911 1151916 1151918
#> [19432] 1151930 1151934 1151936 1151940 1151941 1151942 1151943 1151944 1151945
#> [19441] 1151946 1151947 1151948 1151949 1151950 1151951 1151952 1151964 1152078
#> [19450] 1152079 1152082 1152083 1152084 1152085 1152086 1152087 1152123 1152129
#> [19459] 1152130 1152131 1152132 1152162 1152163 1152164 1152165 1152166 1152172
#> [19468] 1152173 1152174 1152175 1152176 1152177 1152178 1152179 1152186 1152239
#> [19477] 1152240 1152245 1152246 1152309 1152310 1152311 1152370 1152371 1152372
#> [19486] 1152429 1152432 1152612 1152694 1152718 1152847 1152884 1152888 1152889
#> [19495] 1152890 1152891 1152893 1153004 1153068 1153163 1153301 1153305 1153307
#> [19504] 1153311 1153337 1153338 1153339 1153675 1153676 1153679 1153680 1153740
#> [19513] 1153746 1153765 1153766 1153855 1153856 1153857 1153858 1153859 1153860
#> [19522] 1153861 1153893 1153906 1153952 1153953 1153965 1154128 1154136 1154139
#> [19531] 1154143 1154144 1154147 1154148 1154149 1154150 1154151 1154152 1154153
#> [19540] 1154154 1154155 1154156 1154276 1154277 1154278 1154487 1154488 1154489
#> [19549] 1154491 1154492 1154576 1154580 1154582 1154713 1154881 1154882 1154902
#> [19558] 1154966 1155118 1155173 1155174 1155175 1155176 1155180 1155181 1155186
#> [19567] 1155187 1155188 1155357 1155358 1155359 1155360 1155361 1155362 1155373
#> [19576] 1155587 1155746 1155747 1155804 1155807 1155808 1155809 1156040 1156041
#> [19585] 1156042 1156043 1156053 1156118 1156119 1156120 1156122 1156123 1156124
#> [19594] 1156125 1156126 1156127 1156205 1156223 1156225 1156253 1156254 1156255
#> [19603] 1156258 1156259 1156260 1156261 1156280 1156495 1156759 1156783 1156784
#> [19612] 1157575 1157576 1157578 1157581 1157582 1157583 1157584 1157585 1157586
#> [19621] 1157587 1157592 1157593 1157594 1157595 1157843 1157845 1157847 1158076
#> [19630] 1158424 1158812 1158813 1159359 1159364 1159371 1159372 1159536 1159939
#> [19639] 1159950 1159995 1160506 1160521 1160546 1160591 1160592 1160597 1160644
#> [19648] 1160724 1160725 1160726 1160727 1160728 1160729 1160741 1160744 1160747
#> [19657] 1160770 1160774 1160775 1160776 1160777 1160778 1160779 1160780 1160781
#> [19666] 1160782 1160803 1160804 1160805 1160813 1160815 1160817 1160818 1160820
#> [19675] 1160821 1160927 1160928 1160930 1160981 1161099 1161103 1161105 1161416
#> [19684] 1161543 1161546 1161551 1161552 1161556 1161560 1161561 1161581 1161582
#> [19693] 1161584 1161586 1161587 1161593 1161594 1161595 1161596 1161597 1161598
#> [19702] 1161613 1161652 1161671 1161920 1161928 1161946 1161986 1162033 1162261
#> [19711] 1162412 1162413 1162414 1162415 1162480 1162660 1162675 1162676 1162677
#> [19720] 1162678 1162679 1162680 1162681 1162682 1162683 1162774 1162839 1162840
#> [19729] 1162841 1162842 1162861 1162862 1162887 1163036 1163037 1163060 1163061
#> [19738] 1163062 1163063 1163064 1163065 1163066 1163067 1163068 1163073 1163074
#> [19747] 1163233 1163312 1163313 1163346 1163514 1163529 1164163 1164219 1164344
#> [19756] 1164347 1164349 1164372 1164438 1164584 1164585 1164586 1164587 1164588
#> [19765] 1164713 1164738 1164741 1164902 1164986 1165074 1165075 1165076 1165184
#> [19774] 1165185 1165189 1165190 1165191 1165192 1165193 1165194 1165195 1165196
#> [19783] 1165197 1165198 1165228 1165229 1165256 1165260 1165261 1165267 1165304
#> [19792] 1165305 1165306 1165307 1165308 1165550 1165553 1165554 1165555 1165556
#> [19801] 1165588 1165589 1165837 1165889 1165891 1165893 1165895 1165896 1166050
#> [19810] 1166051 1166074 1166076 1166092 1166156 1166179 1166180 1166181 1166216
#> [19819] 1166217 1166218 1166219 1166390 1166529 1166530 1166531 1166579 1166626
#> [19828] 1166628 1166639 1167013 1167037 1167038 1167057 1167059 1167060 1167061
#> [19837] 1167072 1167093 1167094 1167095 1167096 1167202 1167203 1167233 1167237
#> [19846] 1167239 1167241 1167245 1167247 1167249 1167255 1167261 1167265 1167502
#> [19855] 1167586 1167588 1167590 1167592 1167593 1167594 1167618 1167621 1167687
#> [19864] 1167688 1167689 1167723 1167725 1167778 1167780 1167900 1167916 1167936
#> [19873] 1167970 1167971 1167972 1168410 1168646 1168648 1168649 1168650 1168651
#> [19882] 1168656 1168701 1168702 1168703 1168704 1168705 1168706 1168707 1168708
#> [19891] 1168709 1168710 1168711 1168712 1168713 1168714 1168715 1168716 1168717
#> [19900] 1168718 1168797 1168799 1168801 1168825 1168837 1168838 1168902 1168903
#> [19909] 1168904 1168927 1168928 1168934 1168935 1168993 1168994 1168995 1168998
#> [19918] 1168999 1169000 1169001 1169003 1169005 1169291 1169297 1169298 1169318
#> [19927] 1169349 1169352 1169353 1169354 1169355 1169356 1169626 1169734 1169794
#> [19936] 1169882 1169942 1169943 1169944 1169945 1170139 1170140 1170141 1170244
#> [19945] 1170245 1170281 1170282 1170283 1170284 1170285 1170286 1170292 1170428
#> [19954] 1170636 1170653 1170654 1170655 1170670 1170698 1170699 1170709 1170710
#> [19963] 1170711 1170712 1170713 1170714 1170739 1170917 1170921 1170985 1171032
#> [19972] 1171033 1171050 1171269 1171272 1171274 1171293 1171348 1171411 1171412
#> [19981] 1171413 1171506 1171507 1171579 1171581 1171582 1171583 1171584 1171585
#> [19990] 1171586 1171587 1171599 1171600 1171601 1171602 1171603 1171604 1171605
#> [19999] 1171615 1171616 1171793 1171798 1171799 1171801 1171803 1171809 1171819
#> [20008] 1171821 1171823 1171840 1171841 1171878 1171879 1171997 1172002 1172003
#> [20017] 1172005 1172007 1172099 1172101 1172102 1172104 1172106 1172119 1172260
#> [20026] 1172572 1172591 1172592 1172631 1172688 1172893 1173279 1173280 1173314
#> [20035] 1173315 1173316 1173317 1173318 1173363 1173364 1173365 1173366 1173398
#> [20044] 1173399 1173400 1173406 1173407 1173408 1173409 1173410 1173411 1173412
#> [20053] 1173413 1173415 1173416 1173425 1173426 1173619 1173624 1173644 1173651
#> [20062] 1173653 1173725 1173726 1173727 1173730 1173736 1173953 1173954 1173955
#> [20071] 1173979 1173980 1173983 1174083 1174084 1174391 1174392 1174393 1174394
#> [20080] 1174397 1174398 1174399 1174400 1174401 1174402 1174403 1174404 1174405
#> [20089] 1174471 1174472 1174480 1174482 1174676 1174815 1174865 1174867 1174869
#> [20098] 1175018 1175020 1175197 1175379 1175380 1175436 1175592 1175608 1175641
#> [20107] 1175690 1175691 1175728 1175729 1175730 1175731 1175732 1175733 1175734
#> [20116] 1175735 1175736 1175737 1175738 1175739 1175744 1175746 1175750 1175752
#> [20125] 1175753 1175755 1175773 1175774 1175818 1175819 1175820 1176121 1176122
#> [20134] 1176211 1176245 1176246 1176270 1176271 1176501 1176538 1176555 1176592
#> [20143] 1176599 1176601 1176603 1176605 1176607 1176609 1176610 1176611 1176613
#> [20152] 1176678 1176728 1176730 1176732 1176733 1176734 1176736 1176747 1176749
#> [20161] 1176751 1176753 1176771 1176799 1176800 1176860 1176861 1176940 1176995
#> [20170] 1176996 1176997 1176998 1177036 1177063 1177074 1177075 1177078 1177079
#> [20179] 1177190 1177252 1177253 1177273 1177274 1177510 1177516 1177518 1177520
#> [20188] 1177572 1177717 1177725 1177730 1177731 1177732 1177733 1177734 1177735
#> [20197] 1177736 1177737 1177738 1177749 1177750 1177751 1177752 1177753 1177754
#> [20206] 1177755 1177756 1177757 1177769 1177770 1178165 1178178 1178328 1178331
#> [20215] 1178347 1178350 1178351 1178352 1178353 1178397 1178401 1178404 1178414
#> [20224] 1178512 1178513 1178646 1178647 1178648 1178649 1178768 1178770 1178772
#> [20233] 1178774 1178775 1178776 1178777 1178778 1178779 1178780 1178781 1178782
#> [20242] 1178793 1178795 1178797 1178798 1178800 1178801 1178803 1178805 1178806
#> [20251] 1178808 1178811 1178816 1178817 1178819 1178821 1178823 1178824 1178825
#> [20260] 1178826 1178827 1178829 1178830 1178831 1178832 1178834 1178835 1178843
#> [20269] 1178845 1178847 1178852 1178854 1178857 1178866 1178867 1178870 1178872
#> [20278] 1178874 1178875 1178876 1178877 1178879 1178881 1178882 1178965 1179341
#> [20287] 1179342 1179349 1179350 1179359 1179366 1179367 1179368 1179370 1179376
#> [20296] 1179378 1179388 1179390 1179391 1179392 1179393 1179395 1179396 1179397
#> [20305] 1179451 1179452 1179534 1179536 1179537 1179626 1179678 1179679 1179742
#> [20314] 1179808 1179987 1180155 1180247 1180248 1180249 1180250 1180276 1180347
#> [20323] 1180348 1180375 1180479 1180597 1180599 1180602 1180682 1180975 1181418
#> [20332] 1181421 1181424 1181478 1181479 1181480 1181481 1181482 1181483 1181493
#> [20341] 1181494 1181597 1181598 1181599 1181600 1181686 1181688 1181690 1181692
#> [20350] 1181696 1181916 1181917 1181918 1181921 1181922 1181964 1181980 1181981
#> [20359] 1182009 1182035 1182263 1182266 1182306 1182307 1182308 1182309 1182312
#> [20368] 1182313 1182399 1182408 1182409 1183078 1183081 1183083 1183084 1183086
#> [20377] 1183087 1183088 1183089 1183090 1183091 1183412 1183415 1183416 1183417
#> [20386] 1183418 1183419 1183420 1183421 1183422 1183424 1183425 1183473 1183495
#> [20395] 1183505 1183506 1183507 1183508 1183509 1183510 1183511 1183537 1183557
#> [20404] 1183597 1183600 1183603 1183883 1183884 1183885 1183886 1183887 1183943
#> [20413] 1184055 1184284 1184287 1184288 1184298 1184305 1184360 1184362 1184366
#> [20422] 1184368 1184370 1184475 1184478 1184524 1184707 1184715 1184779 1184780
#> [20431] 1185113 1185166 1185167 1185168 1185169 1185299 1185301 1185583 1185667
#> [20440] 1185811 1185812 1185813 1185823 1185825 1185826 1185848 1185850 1185858
#> [20449] 1185861 1185930 1185932 1185933 1185979 1185980 1186018 1186021 1186023
#> [20458] 1186027 1186260 1186284 1186326 1186328 1186330 1186332 1186333 1186335
#> [20467] 1186336 1186337 1186338 1186339 1186340 1186430 1186431 1186503 1186512
#> [20476] 1186522 1186524 1186684 1186685 1186686 1186692 1186693 1186694 1186695
#> [20485] 1186769 1186771 1186831 1186833 1186835 1186837 1186839 1186892 1186938
#> [20494] 1186940 1186941 1187004 1187514 1187517 1187529 1187582 1187815 1187819
#> [20503] 1187901 1187999 1188000 1188002 1188462 1188463 1188464 1188742 1188743
#> [20512] 1188746 1188781 1188782 1188815 1188817 1188853 1188854 1188909 1188911
#> [20521] 1188923 1189126 1189219 1189222 1189224 1189225 1189231 1189232 1189637
#> [20530] 1189844 1189851 1190404 1190405 1190455 1190456 1190558 1190562 1190567
#> [20539] 1190569 1190660 1190664 1190665 1190670 1190671 1190672 1190703 1190705
#> [20548] 1190708 1190709 1190789 1190790 1190850 1190854 1190855 1190856 1190868
#> [20557] 1191151 1191156 1191310 1191333 1191335 1191399 1191400 1191401 1191454
#> [20566] 1191455 1191569 1191570 1191571 1191573 1191574 1191595 1191638 1191646
#> [20575] 1191668 1191708 1191709 1191714 1191816 1191852 1191856 1191858 1191860
#> [20584] 1191865 1191868 1191968 1191969 1191970 1191971 1191972 1192045 1192048
#> [20593] 1192116 1192117 1192350 1192351 1192396 1192398 1192400 1192402 1192404
#> [20602] 1192406 1192408 1192411 1192412 1192414 1192468 1192469 1192477 1192480
#> [20611] 1192481 1192632 1192871 1192873 1192916 1192930 1192931 1192932 1192933
#> [20620] 1192934 1192935 1192995 1192996 1193050 1193051 1193061 1193062 1193108
#> [20629] 1193126 1193208 1193333 1193515 1193733 1193743 1193905 1194030 1194032
#> [20638] 1194033 1194035 1194124 1194131 1194133 1194135 1194141 1194143 1194162
#> [20647] 1194165 1194168 1194478 1194508 1194509 1194510 1194511 1194537 1194698
#> [20656] 1194718 1194719 1194720 1194827 1194828 1194921 1194992 1195033 1195161
#> [20665] 1195226 1195227 1195279 1195288 1195506 1195640 1195671 1195672 1195767
#> [20674] 1195769 1195882 1195918 1196373 1196375 1196474 1196500 1196502 1196506
#> [20683] 1196508 1196529 1196533 1196534 1196674 1196675 1196697 1196698 1196699
#> [20692] 1196718 1196719 1196821 1196829 1196830 1196831 1196832 1196973 1196974
#> [20701] 1196996 1197000 1197167 1197213 1197290 1197291 1197620 1197621 1197623
#> [20710] 1197627 1197628 1197829 1197832 1198056 1198057 1198065 1198069 1198111
#> [20719] 1198112 1198113 1198369 1198370 1198371 1198703 1198704 1198705 1198706
#> [20728] 1198707 1198708 1198811 1198813 1198893 1198894 1198954 1198961 1198962
#> [20737] 1198963 1198964 1198965 1198966 1198967 1199045 1199047 1199049 1199155
#> [20746] 1199173 1199331 1199370 1199395 1199396 1199501 1199595 1199721 1199723
#> [20755] 1199724 1199726 1199727 1199729 1199732 1199735 1199949 1199950 1200154
#> [20764] 1200202 1200203 1200204 1200205 1200206 1200217 1200218 1200219 1200220
#> [20773] 1200221 1200222 1200223 1200232 1200508 1200686 1200687 1200770 1200771
#> [20782] 1200772 1200773 1200843 1200844 1200970 1201080 1201117 1201118 1201119
#> [20791] 1201120 1201121 1201122 1201272 1201274 1201426 1201439 1201440 1201534
#> [20800] 1201535 1201536 1201537 1201538 1201539 1201540 1201541 1201560 1201991
#> [20809] 1202503 1202506 1202563 1202564 1202565 1202566 1202567 1202778 1202902
#> [20818] 1202903 1202904 1202905 1202906 1202911 1202923 1202924 1202926 1202937
#> [20827] 1202949 1202965 1202969 1202973 1202977 1202982 1203033 1203080 1203081
#> [20836] 1203264 1203274 1203317 1203318 1203319 1203374 1203378 1203380 1203392
#> [20845] 1203550 1203589 1203610 1203751 1203752 1203763 1203764 1203815 1203829
#> [20854] 1203830 1203831 1203832 1203833 1203834 1203835 1203836 1203837 1203838
#> [20863] 1203839 1203840 1203841 1203842 1204069 1204072 1204075 1204078 1204079
#> [20872] 1204080 1204081 1204082 1204083 1204084 1204172 1204175 1204200 1204293
#> [20881] 1204704 1204707 1204866 1204872 1204891 1204894 1204925 1204960 1204961
#> [20890] 1204962 1205092 1205094 1205095 1205096 1205097 1205098 1205099 1205100
#> [20899] 1205101 1205102 1205103 1205104 1205270 1205328 1205333 1205341 1205558
#> [20908] 1205593 1205604 1205664 1205668 1205844 1205846 1205864 1205886 1205893
#> [20917] 1205921 1205972 1205974 1205977 1205978 1206039 1206040 1206041 1206042
#> [20926] 1206043 1206044 1206045 1206046 1206322 1206522 1206523 1206542 1206543
#> [20935] 1206544 1206545 1206551 1206552 1206553 1206554 1206555 1206562 1206637
#> [20944] 1206638 1206934 1206935 1206936 1206972 1207043 1207050 1207051 1207053
#> [20953] 1207054 1207055 1207056 1207057 1207145 1209425 1209427 1209444 1210064
#> [20962] 1210066 1212120 1212124 1212129 1212130 1212131 1215085 1215086 1215087
#> [20971] 1215090 1215094 1223628 1223751 1223762 1223763 1223764 1223765 1223766
#> [20980] 1223767 1223768 1223769 1223868 1223869 1224051 1224052 1224053 1224054
#> [20989] 1224133 1224144 1224150 1224151 1224200 1224203 1224410 1224417 1224418
#> [20998] 1224419 1224420 1224421 1224422 1224423 1224711 1224713 1224722 1224898
#> [21007] 1224900 1224901 1224902 1224915 1225460 1225553 1225555 1225557 1225559
#> [21016] 1225561 1226037 1226071 1226134 1226137 1226138 1226139 1226140 1226141
#> [21025] 1226142 1226143 1226144 1226415 1226419 1226420 1226422 1226482 1226484
#> [21034] 1226496 1226967 1226968 1226969 1227047 1227049 1227050 1227053 1227065
#> [21043] 1227072 1227075 1227076 1227077 1227078 1227079 1227080 1227081 1227082
#> [21052] 1227083 1227084 1227085 1227086 1227087 1227088 1227089 1227090 1227091
#> [21061] 1227092 1227093 1227094 1227095 1227096 1227237 1227393 1227400 1227868
#> [21070] 1227869 1228124 1228126 1228128 1228131 1228133 1228135 1228136 1228137
#> [21079] 1228139 1228142 1228144 1228205 1228361 1228366 1228540 1228541 1228707
#> [21088] 1228727 1228728 1228729 1228730 1228735 1228736 1228747 1228748 1228825
#> [21097] 1228840 1228907 1228908 1228909 1228910 1228932 1229199 1229379 1229381
#> [21106] 1229383 1229385 1229433 1229436 1229439 1229479 1229552 1229553 1229562
#> [21115] 1229573 1229575 1229600 1229602 1229713 1229717 1229723 1229747 1229748
#> [21124] 1229749 1229750 1229751 1230023 1230024 1230025 1230026 1230097 1230098
#> [21133] 1230100 1230101 1230102 1230103 1230104 1230105 1230106 1230107 1230151
#> [21142] 1230152 1230153 1230154 1230155 1230156 1230157 1230192 1230641 1231090
#> [21151] 1231108 1231112 1231149 1231150 1231371 1231373 1231378 1231381 1231485
#> [21160] 1231486 1231734 1231846 1231848 1231850 1232078 1232204 1232205 1232208
#> [21169] 1232209 1232212 1232227 1232229 1232237 1232238 1232242 1232243 1232266
#> [21178] 1232299 1232300 1232374 1232377 1232378 1232380 1232419 1232425 1232938
#> [21187] 1233125 1233257 1233259 1233289 1233300 1233302 1233304 1233306 1233378
#> [21196] 1233531 1233693 1233719 1233720 1233721 1233723 1233724 1233725 1233728
#> [21205] 1233729 1233871 1233872 1234144 1234243 1234244 1234351 1234352 1234360
#> [21214] 1234361 1234362 1234363 1234370 1234658 1234659 1234660 1234661 1234662
#> [21223] 1234835 1234837 1235003 1235004 1235006 1235010 1235034 1235376 1235377
#> [21232] 1235378 1235817 1235818 1235865 1235910 1235912 1235940 1235942 1236119
#> [21241] 1236122 1236128 1236265 1236266 1236295 1236345 1236441 1236506 1236507
#> [21250] 1236564 1236583 1236817 1236818 1236819 1236859 1236985 1236998 1237142
#> [21259] 1237143 1237147 1237148 1237149 1237174 1237176 1237177 1237182 1237184
#> [21268] 1237186 1237229 1237233 1237234 1237235 1237236 1237237 1237238 1237239
#> [21277] 1237249 1237251 1237252 1237272 1237282 1237341 1237349 1237350 1237432
#> [21286] 1237434 1237436 1237438 1237699 1237700 1237701 1237985 1237988 1238019
#> [21295] 1238021 1238023 1238025 1238027 1238029 1238116 1238135 1238136 1238214
#> [21304] 1238217 1238220 1238313 1238314 1238315 1238316 1238317 1238321 1238323
#> [21313] 1238324 1238325 1238457 1238484 1238485 1238567 1238569 1238571 1238575
#> [21322] 1238578 1238579 1238580 1238581 1238582 1238593 1238595 1239040 1239041
#> [21331] 1239042 1239043 1239044 1239045 1239046 1239066 1239067 1239108 1239109
#> [21340] 1239110 1239111 1239132 1239134 1239136 1239138 1239146 1239206 1239207
#> [21349] 1239235 1239299 1239305 1239654 1239655 1240218 1240471 1240517 1240518
#> [21358] 1240593 1240596 1240601 1240602 1240603 1240826 1240828 1240830 1240831
#> [21367] 1240835 1240836 1240847 1240848 1240849 1240855 1240856 1240857 1240873
#> [21376] 1240876 1240951 1240953 1240954 1240955 1240956 1241243 1241323 1241325
#> [21385] 1241386 1241496 1241497 1241498 1241499 1241574 1241689 1241690 1241691
#> [21394] 1241692 1241708 1241713 1241714 1241715 1241716 1241717 1241753 1241754
#> [21403] 1241755 1241757 1241758 1241759 1241760 1241761 1241762 1241763 1241764
#> [21412] 1241765 1241766 1241767 1241768 1241769 1241770 1241771 1241772 1241773
#> [21421] 1241778 1241779 1241780 1241781 1241782 1241783 1241784 1241785 1241790
#> [21430] 1241794 1241799 1241801 1241802 1241886 1241899 1241900 1241908 1241909
#> [21439] 1241910 1241911 1241912 1242059 1242280 1242281 1242288 1242364 1242365
#> [21448] 1242374 1242375 1242416 1242423 1242636 1242767 1242768 1242791 1242911
#> [21457] 1242924 1242925 1242926 1242953 1242980 1243245 1243263 1243265 1243349
#> [21466] 1243631 1243632 1243633 1243634 1243635 1243636 1243637 1243894 1243945
#> [21475] 1243946 1243947 1243948 1243949 1243950 1244167 1244234 1244290 1244296
#> [21484] 1244330 1244331 1244332 1244333 1244377 1244566 1244567 1244622 1244623
#> [21493] 1245096 1245098 1245100 1245170 1245295 1245367 1245369 1245658 1245796
#> [21502] 1245818 1245821 1246229 1246230 1246232 1246234 1246235 1246237 1246238
#> [21511] 1246239 1246240 1246241 1246297 1246441 1246549 1246577 1246935 1246938
#> [21520] 1246939 1246940 1246941 1246942 1246943 1247011 1247012 1247013 1247016
#> [21529] 1247017 1247209 1247228 1247230 1247232 1247234 1247236 1247316 1247317
#> [21538] 1247346 1247378 1247390 1247391 1247394 1247395 1247429 1247431 1247433
#> [21547] 1247435 1247437 1247439 1247441 1247443 1247515 1247519 1247522 1247526
#> [21556] 1247530 1247532 1247534 1247536 1247538 1247540 1247542 1247708 1247709
#> [21565] 1247710 1247711 1247712 1247713 1247714 1247715 1247716 1247717 1247718
#> [21574] 1247812 1247815 1247816 1247817 1247818 1247819 1247820 1247821 1247837
#> [21583] 1247838 1247839 1247926 1247930 1247943 1248052 1248054 1248121 1248124
#> [21592] 1248127 1248130 1248133 1248136 1248139 1248142 1248145 1248222 1248430
#> [21601] 1248432 1248437 1248992 1248993 1249026 1249027 1249172 1249189 1249190
#> [21610] 1249191 1249192 1249193 1249194 1249412 1249421 1249422 1249424 1249425
#> [21619] 1249426 1249427 1249428 1249584 1249585 1249586 1249587 1249588 1249589
#> [21628] 1249617 1249637 1249649 1249650 1249651 1249684 1249687 1249707 1249708
#> [21637] 1249712 1249713 1249714 1249715 1249718 1249719 1249720 1249721 1249722
#> [21646] 1249723 1249792 1249852 1249918 1249921 1249978 1249980 1250009 1250113
#> [21655] 1250115 1250147 1250148 1250149 1250150 1250151 1250152 1250153 1250212
#> [21664] 1250214 1250215 1250350 1250354 1250606 1250613 1250616 1251025 1251026
#> [21673] 1251027 1251116 1251250 1251254 1251264 1251265 1251279 1251481 1251531
#> [21682] 1251533 1251826 1251827 1251984 1251989 1251990 1251995 1251996 1252244
#> [21691] 1252299 1252398 1252399 1252400 1252401 1252403 1252404 1252405 1252406
#> [21700] 1252407 1252840 1252851 1252865 1252866 1252985 1253036 1253038 1253041
#> [21709] 1253091 1253095 1253302 1253332 1253333 1253334 1253335 1253340 1253341
#> [21718] 1253933 1253947 1253957 1253958 1253961 1254056 1254141 1254483 1254494
#> [21727] 1254742 1254743 1254837 1255160 1255161 1255173 1255174 1255175 1255176
#> [21736] 1255328 1255357 1255395 1255396 1255423 1255585 1255660 1255820 1255821
#> [21745] 1255822 1255823 1255855 1255859 1256015 1256043 1256110 1256111 1256132
#> [21754] 1256197 1256243 1256244 1256245 1256246 1256252 1256266 1256321 1256322
#> [21763] 1256323 1256324 1256325 1256329 1256376 1256466 1256467 1256468 1256469
#> [21772] 1256470 1256471 1256472 1256479 1256485 1256508 1256523 1256524 1256525
#> [21781] 1256526 1256527 1256528 1256569 1256571 1256601 1256739 1256748 1256875
#> [21790] 1256921 1256923 1256997 1257120 1257121 1257122 1257140 1257210 1257211
#> [21799] 1257212 1257213 1257214 1257215 1257216 1259335 1259347 1259352 1259353
#> [21808] 1259426 1259427 1259432 1259433 1259434 1259440 1259445 1259508 1259509
#> [21817] 1259510 1259511 1259518 1259519 1259520 1259521 1259522 1259523 1259524
#> [21826] 1259531 1259563 1259567 1259569 1259571 1259646 1259744 1259745 1259746
#> [21835] 1259747 1259751 1259752 1259901 1259908 1260330 1260331 1260381 1260669
#> [21844] 1260670 1260680 1260753 1260755 1260757 1260758 1260759 1260767 1260900
#> [21853] 1260905 1260906 1260907 1260972 1260993 1261003 1261245 1261246 1261312
#> [21862] 1261313 1261314 1261315 1261316 1261317 1261324 1261326 1261328 1261329
#> [21871] 1261330 1261337 1261338 1261339 1261340 1261341 1261342 1261365 1261444
#> [21880] 1261445 1261446 1261463 1261464 1261465 1261466 1261467 1261468 1261469
#> [21889] 1261709 1261813 1261815 1261817 1261818 1261820 1261821 1261822 1261823
#> [21898] 1261824 1261825 1261827 1261837 1262159 1262223 1262230 1262271 1262306
#> [21907] 1262386 1262387 1262407 1262410 1262411 1262412 1262413 1262414 1262626
#> [21916] 1262627 1262628 1262629 1262819 1262861 1262862 1262899 1262900 1262901
#> [21925] 1262902 1262903 1262904 1262905 1262906 1262907 1262908 1262909 1262910
#> [21934] 1262911 1262912 1262913 1262914 1262915 1262916 1262917 1262918 1262919
#> [21943] 1262920 1262921 1262955 1263314 1263315 1263316 1263318 1263322 1263324
#> [21952] 1263326 1263328 1263330 1263464 1263659 1263660 1263661 1263662 1263691
#> [21961] 1263821 1264050 1264125 1264127 1264214 1264218 1264219 1264220 1264221
#> [21970] 1264223 1264225 1264227 1264229 1264442 1264514 1264538 1264539 1264540
#> [21979] 1264541 1264548 1264549 1264633 1264634 1264882 1264883 1264884 1264885
#> [21988] 1264886 1264887 1264888 1264923 1264924 1264927 1264938 1264939 1264991
#> [21997] 1265003 1265121 1265162 1265164 1265166 1265180 1265280 1265321 1265322
#> [22006] 1265323 1265324 1265325 1265346 1265347 1265348 1265349 1265350 1265353
#> [22015] 1265354 1265355 1265356 1265357 1265358 1265359 1265361 1265368 1265371
#> [22024] 1265376 1265378 1265379 1265381 1265382 1265600 1265616 1265617 1265669
#> [22033] 1265690 1265692 1265694 1265702 1265714 1265719 1265942 1266100 1266111
#> [22042] 1266112 1266216 1266343 1266374 1266375 1266407 1266410 1266411 1266412
#> [22051] 1266413 1266414 1266433 1266437 1266438 1266439 1266440 1266521 1266522
#> [22060] 1266668 1266727 1266768 1266790 1266791 1266874 1266875 1266894 1266951
#> [22069] 1266953 1267022 1267023 1267024 1267025 1267042 1267043 1267044 1267045
#> [22078] 1267046 1267047 1267048 1267049 1267050 1267051 1267052 1267053 1267054
#> [22087] 1267164 1267178 1267200 1267207 1267228 1267229 1267232 1267233 1267234
#> [22096] 1267235 1267236 1267237 1267238 1267239 1267240 1267244 1267247 1267248
#> [22105] 1267249 1267274 1267408 1267478 1267532 1267535 1267608 1267609 1267618
#> [22114] 1267623 1267624 1267625 1267626 1267627 1267628 1267635 1267641 1267643
#> [22123] 1267645 1267832 1267833 1267834 1267835 1267836 1267837 1267892 1268310
#> [22132] 1268312 1268321 1268322 1268323 1268324 1268325 1268326 1268327 1268328
#> [22141] 1268345 1268353 1268728 1268729 1268730 1268731 1268732 1268797 1268799
#> [22150] 1268801 1268802 1268803 1268804 1268805 1268806 1268807 1268808 1268809
#> [22159] 1268951 1269501 1269973 1270040 1270041 1270042 1270043 1270165 1270265
#> [22168] 1270268 1270269 1270328 1270507 1270574 1270647 1270705 1270706 1270708
#> [22177] 1270709 1270711 1270712 1270713 1270716 1270718 1270742 1270744 1270745
#> [22186] 1270747 1270748 1270749 1270750 1270751 1270752 1270753 1270755 1270885
#> [22195] 1270886 1271085 1271086 1271087 1271088 1271121 1271137 1271138 1271191
#> [22204] 1271192 1271193 1271194 1271404 1271405 1271406 1271432 1271434 1271436
#> [22213] 1271449 1271582 1271596 1271597 1271599 1271600 1271814 1271815 1271816
#> [22222] 1271817 1271818 1271834 1271835 1271836 1271837 1271943 1272008 1272010
#> [22231] 1272012 1272014 1272016 1272026 1272169 1272268 1272269 1272270 1272455
#> [22240] 1272456 1272457 1272458 1272459 1272460 1272461 1272462 1272465 1272468
#> [22249] 1272469 1272470 1272471 1272523 1272548 1272585 1272768 1272769 1272827
#> [22258] 1273116 1273128 1273137 1273140 1273373 1273375 1273384 1273387 1273720
#> [22267] 1273830 1273831 1273832 1273833 1274008 1274009 1274010 1274602 1274603
#> [22276] 1274604 1274605 1274606 1274725 1274729 1274732 1274743 1274745 1274746
#> [22285] 1274748 1274750 1274751 1274763 1274766 1274768 1274770 1275135 1275138
#> [22294] 1275252 1275253 1275275 1275298 1275404 1275405 1275406 1275435 1275437
#> [22303] 1275456 1275489 1275490 1275491 1275543 1275544 1275545 1275546 1275547
#> [22312] 1275548 1275549 1275550 1275551 1275593 1275657 1275658 1275665 1275666
#> [22321] 1275716 1276054 1276055 1276056 1276195 1276246 1276416 1276419 1276421
#> [22330] 1276422 1276458 1276561 1276566 1276570 1276603 1276628 1276641 1276792
#> [22339] 1276825 1276827 1276829 1276830 1276831 1276848 1276872 1277053 1277054
#> [22348] 1277185 1277188 1277199 1277298 1277366 1277367 1277368 1277369 1277370
#> [22357] 1277371 1277372 1277373 1277374 1277375 1277395 1277401 1277413 1277415
#> [22366] 1277418 1277697 1277700 1277914 1277915 1277916 1277917 1277920 1277921
#> [22375] 1277925 1277930 1278100 1278288 1278296 1278297 1278300 1278302 1278547
#> [22384] 1278587 1278588 1278589 1278590 1278591 1278592 1278595 1279188 1279214
#> [22393] 1279232 1279233 1279234 1279244 1279257 1279735 1280090 1280091 1280092
#> [22402] 1280093 1280178 1280220 1280222 1280224 1280226 1280228 1280230 1280231
#> [22411] 1280233 1280235 1280237 1280239 1280241 1280243 1280361 1280362 1280363
#> [22420] 1280364 1280388 1280452 1280454 1280456 1280554 1280555 1280556 1280832
#> [22429] 1280833 1280857 1280938 1280939 1280940 1280944 1280947 1280948 1280985
#> [22438] 1280986 1280987 1281011 1281064 1281065 1281383 1281870 1282156 1282234
#> [22447] 1282235 1282427 1282458 1282535 1283214 1283215 1283300 1283301 1283305
#> [22456] 1283318 1283319 1283320 1283321 1283322 1283323 1283324 1283325 1283327
#> [22465] 1283328 1283329 1283330 1283331 1283332 1283358 1283361 1283388 1284962
#> [22474] 1285019 1285020 1285054 1285174 1285295 1285296 1285298 1285310 1285312
#> [22483] 1285424 1285841 1285843 1285844 1285845 1286437 1286526 1286527 1286530
#> [22492] 1286538 1286669 1286670 1286671 1286672 1286673 1286674 1286675 1286676
#> [22501] 1286791 1286831 1286833 1286835 1286884 1286885 1286887 1286888 1287014
#> [22510] 1287015 1287128 1287129 1287130 1287132 1287133 1287135 1287136 1287137
#> [22519] 1287140 1287141 1287142 1287143 1287451 1287452 1287453 1287454 1287458
#> [22528] 1287494 1287678 1287679 1287680 1287681 1287682 1287683 1287684 1288097
#> [22537] 1288181 1288217 1288219 1288220 1288221 1288223 1288225 1288227 1288229
#> [22546] 1288230 1288231 1288302 1288305 1288307 1288423 1288432 1288433 1288437
#> [22555] 1288439 1288440 1288545 1288546 1288615 1288678 1288848 1288850 1288851
#> [22564] 1289215 1289224 1289226 1289315 1289325 1289360 1289382 1289383 1289403
#> [22573] 1289404 1289429 1289430 1289442 1289443 1289444 1289445 1289446 1289447
#> [22582] 1289611 1289683 1289685 1289686 1289687 1289688 1289812 1289813 1289814
#> [22591] 1289815 1289816 1289817 1289819 1289820 1289821 1289823 1289824 1289825
#> [22600] 1289826 1289828 1289829 1289884 1289891 1289892 1289893 1289895 1289896
#> [22609] 1289898 1289899 1289900 1289901 1289902 1289928 1289929 1289934 1289935
#> [22618] 1289984 1290070 1290075 1290077 1290112 1290113 1290114 1290115 1290116
#> [22627] 1290117 1290118 1290119 1290153 1290154 1290156 1290157 1290158 1290159
#> [22636] 1290399 1290400 1290402 1290403 1290404 1290405 1290406 1290407 1290409
#> [22645] 1290411 1290504 1290695 1290699 1290790 1290791 1291133 1291134 1291135
#> [22654] 1291204 1291294 1291302 1291303 1291442 1291443 1291812 1291834 1291848
#> [22663] 1291855 1291858 1291859 1291861 1291862 1291863 1291864 1291865 1291866
#> [22672] 1291867 1292007 1292009 1292010 1292021 1292208 1292209 1292210 1292211
#> [22681] 1292212 1292213 1292214 1292292 1292293 1292334 1292338 1292344 1293401
#> [22690] 1293463 1293464 1293468 1293491 1293492 1293501 1293509 1293512 1293513
#> [22699] 1293514 1293515 1293516 1293517 1293609 1293613 1293709 1293710 1293711
#> [22708] 1293712 1293724 1293725 1293778 1294183 1294391 1294392 1294393 1294394
#> [22717] 1294502 1294503 1294504 1294505 1294506 1294642 1294749 1294753 1294756
#> [22726] 1294757 1294759 1294761 1294762 1294763 1294764 1294765 1294809 1294810
#> [22735] 1294974 1295292 1295293 1295294 1295563 1295564 1295565 1295622 1295625
#> [22744] 1295628 1295682 1295690 1295693 1295696 1295699 1295700 1296056 1296058
#> [22753] 1296115 1296116 1296120 1296122 1296124 1296141 1296142 1296149 1296355
#> [22762] 1296534 1296535 1296536 1296537 1296781 1296847 1296851 1296862 1296864
#> [22771] 1296866 1296881 1296882 1297487 1297488 1297521 1297539 1297541 1297543
#> [22780] 1297545 1297549 1297588 1297601 1297603 1297630 1297733 1297734 1297754
#> [22789] 1297755 1297756 1297963 1297964 1297995 1297996 1298016 1298175 1298243
#> [22798] 1298244 1298254 1298262 1298263 1298265 1298366 1298678 1298680 1298715
#> [22807] 1298717 1298719 1298721 1298791 1298836 1298837 1298838 1298839 1298840
#> [22816] 1298841 1298917 1298961 1299132 1299189 1299237 1299238 1299239 1299240
#> [22825] 1299242 1299243 1299398 1299405 1299406 1299456 1299459 1299466 1299472
#> [22834] 1299473 1299566 1299724 1299747 1299749 1299818 1299828 1299829 1299876
#> [22843] 1299877 1299878 1299879 1299880 1299881 1299882 1299883 1299884 1299888
#> [22852] 1299889 1299975 1299976 1300063 1300064 1300065 1300066 1300068 1300069
#> [22861] 1300070 1300116 1300117 1300122 1300123 1300192 1300193 1300194 1300196
#> [22870] 1300198 1300199 1300200 1300205 1300206 1300208 1300209 1300210 1300211
#> [22879] 1300237 1300250 1300582 1300585 1300588 1300592 1300593 1300595 1300606
#> [22888] 1300817 1300818 1300819 1300890 1300891 1300892 1300993 1301282 1301326
#> [22897] 1301327 1301328 1301329 1301392 1301393 1301394 1301395 1301396 1301580
#> [22906] 1301581 1301582 1301583 1301659 1301660 1301661 1301675 1301722 1301723
#> [22915] 1301724 1301725 1301726 1301834 1301835 1301836 1301837 1301838 1301839
#> [22924] 1301840 1301849 1301871 1301872 1301873 1301875 1301876 1301877 1302014
#> [22933] 1302309 1302310 1302313 1302314 1302323 1302324 1302325 1303023 1303024
#> [22942] 1303079 1303080 1303081 1303101 1303151 1303152 1303153 1303154 1303367
#> [22951] 1303374 1303375 1303377 1303378 1303379 1303380 1303381 1303382 1303383
#> [22960] 1303805 1303806 1303807 1303808 1303809 1303810 1303811 1303812 1303813
#> [22969] 1303814 1303815 1303816 1303817 1303818 1303819 1303877 1303878 1303879
#> [22978] 1303880 1303881 1303882 1303883 1303886 1303887 1303893 1303894 1303895
#> [22987] 1303896 1303940 1303941 1303942 1303943 1303951 1303953 1304046 1304048
#> [22996] 1304052 1304060 1304082 1304088 1304143 1304144 1304145 1304156 1304157
#> [23005] 1304158 1304159 1304160 1304359 1304378 1304400 1304401 1304408 1304409
#> [23014] 1304538 1304576 1304588 1304589 1304594 1304657 1304658 1304659 1304660
#> [23023] 1304661 1304662 1304665 1304666 1304671 1304672 1304957 1304958 1304984
#> [23032] 1305008 1305009 1305010 1305011 1305012 1305013 1305355 1305356 1305357
#> [23041] 1305379 1305385 1305677 1305678 1305701 1306394 1306395 1306396 1306397
#> [23050] 1306398 1306399 1306400 1306401 1306402 1306403 1306404 1306405 1306406
#> [23059] 1306486 1306539 1306543 1306609 1306613 1306776 1307037 1307120 1307121
#> [23068] 1307122 1307123 1307124 1307125 1307126 1307127 1307131 1307502 1307505
#> [23077] 1307507 1307586 1307699 1307710 1307712 1307713 1307717 1307718 1307766
#> [23086] 1307797 1307813 1307814 1307815 1307830 1307835 1307876 1307880 1307881
#> [23095] 1307882 1307883 1308058 1308064 1308067 1308291 1308444 1308467 1308468
#> [23104] 1308469 1308484 1308639 1308643 1309362 1309363 1309364 1309405 1309499
#> [23113] 1309500 1309502 1309504 1309667 1309689 1309698 1309699 1309708 1309798
#> [23122] 1309799 1309800 1309831 1310122 1310134 1310273 1310295 1310645 1310664
#> [23131] 1310779 1310780 1310886 1310889 1310890 1310891 1310892 1310928 1310929
#> [23140] 1310930 1310990 1311000 1311002 1311014 1311015 1311017 1311019 1311154
#> [23149] 1311156 1311171 1311172 1311173 1311174 1311175 1311176 1311177 1311683
#> [23158] 1311839 1311848 1311849 1311850 1311851 1311852 1311853 1311854 1311855
#> [23167] 1311999 1312247 1312252 1312257 1312368 1312369 1312390 1312418 1312419
#> [23176] 1312420 1312424 1312425 1312432 1312697 1312868 1312869 1313086 1313088
#> [23185] 1313090 1313091 1313092 1313093 1313094 1313095 1313107 1313108 1313110
#> [23194] 1313112 1313129 1313130 1313131 1313132 1313133 1313134 1313135 1313136
#> [23203] 1313137 1313138 1313139 1313140 1313141 1313142 1313143 1313144 1313202
#> [23212] 1313344 1313346 1313357 1313358 1313359 1313360 1313361 1313368 1313369
#> [23221] 1313370 1313371 1313372 1313373 1313393 1313426 1313429 1313430 1313432
#> [23230] 1313434 1313436 1313441 1313442 1313443 1313479 1313480 1313481 1313482
#> [23239] 1313483 1313484 1313485 1313536 1313537 1313848 1314024 1314026 1314029
#> [23248] 1314110 1314413 1314415 1314480 1314481 1314482 1314484 1314762 1314763
#> [23257] 1314764 1314765 1314767 1314770 1314771 1314772 1315187 1315190 1315191
#> [23266] 1315192 1315193 1315273 1315540 1315710 1315813 1315817 1315818 1315819
#> [23275] 1315824 1315834 1315836 1315838 1315840 1315842 1315845 1316330 1316331
#> [23284] 1316332 1316336 1316337 1316338 1316339 1316340 1316341 1316514 1316522
#> [23293] 1316523 1316667 1316668 1316831 1316832 1317039 1317044 1317067 1317068
#> [23302] 1317069 1317150 1317246 1317248 1317252 1317253 1317254 1317255 1317417
#> [23311] 1317418 1317453 1317456 1317462 1317552 1317558 1317946 1317947 1317948
#> [23320] 1317949 1319215 1319217 1319508 1319512 1319669 1319676 1319677 1319678
#> [23329] 1319679 1319680 1319681 1319682 1320576 1320590 1320595 1320596 1320664
#> [23338] 1320666 1320671 1320672 1320674 1320675 1320676 1320681 1320682 1320688
#> [23347] 1320693 1320694 1320696 1320698 1320700 1320702 1320704 1320705 1320706
#> [23356] 1320707 1320709 1320775 1320776 1320780 1320781 1320784 1320863 1320864
#> [23365] 1320898 1320899 1320900 1320901 1320902 1321005 1321053 1321064 1321085
#> [23374] 1321158 1321300 1321310 1321312 1321316 1321330 1321332 1321516 1321525
#> [23383] 1321526 1321620 1321621 1321961 1321964 1322004 1322006 1322223 1322453
#> [23392] 1322843 1323221 1323225 1323347 1323409 1323431 1323447 1323464 1323465
#> [23401] 1323466 1323467 1323519 1323522 1323523 1323662 1323687 1323688 1323689
#> [23410] 1323690 1323769 1323770 1323783 1323784 1324321 1324363 1324397 1324673
#> [23419] 1324674 1324675 1324676 1324892 1324894 1324895 1324896 1324909 1324913
#> [23428] 1324924 1324963 1325034 1325035 1325036 1325059 1325060 1325525 1325526
#> [23437] 1325527 1325528 1325529 1325530 1325531 1325532 1325549 1325550 1325551
#> [23446] 1325552 1325553 1325577 1325578 1325585 1325620 1325621 1325622 1325623
#> [23455] 1325625 1325804 1325933 1325934 1325935 1325969 1326002 1326003 1326004
#> [23464] 1326005 1326038 1326039 1326040 1326120 1326127 1326128 1326129 1326529
#> [23473] 1326531 1326532 1326533 1326534 1326535 1326536 1326537 1326538 1326539
#> [23482] 1326540 1326541 1326542 1326543 1326544 1326545 1326546 1326547 1326548
#> [23491] 1326551 1326552 1326553 1326554 1326555 1326556 1326560 1326643 1326646
#> [23500] 1326647 1326648 1326798 1326836 1326839 1326841 1327045 1327046 1327047
#> [23509] 1327048 1327049 1327050 1327051 1327073 1327077 1327078 1327079 1327690
#> [23518] 1327695 1327722 1327829 1327842 1327850 1328558 1328635 1328637 1328639
#> [23527] 1328803 1328804 1328807 1328809 1328823 1328824 1328827 1328858 1328859
#> [23536] 1328860 1328871 1328872 1328873 1328874 1328886 1328888 1328890 1328894
#> [23545] 1328895 1328897 1328905 1328919 1328936 1328971 1328972 1328983 1329277
#> [23554] 1329278 1329279 1329319 1329322 1329352 1329355 1329776 1329778 1329779
#> [23563] 1329780 1329812 1329814 1329858 1329859 1329860 1329862 1329864 1329866
#> [23572] 1329868 1329870 1330013 1330019 1330090 1330091 1330092 1330093 1330094
#> [23581] 1330098 1330215 1330283 1330320 1330323 1330324 1330325 1330326 1330327
#> [23590] 1330333 1330514 1330620 1330692 1330908 1331194 1331268 1331338 1331380
#> [23599] 1331382 1331384 1331387 1331392 1331413 1331417 1331418 1331419 1331420
#> [23608] 1331421 1331447 1331513 1331514 1331515 1332010 1332012 1332016 1332126
#> [23617] 1332127 1332128 1332262 1332301 1332302 1332304 1332321 1332322 1332323
#> [23626] 1332467 1332468 1332469 1332470 1332471 1332838 1332840 1332845 1332847
#> [23635] 1332888 1332889 1332894 1333353 1333356 1333363 1333420 1333431 1333943
#> [23644] 1333962 1333963 1333965 1333967 1333968 1333971 1333972 1334010 1334756
#> [23653] 1334760 1334764 1334784 1334785 1334786 1334787 1334788 1334789 1334790
#> [23662] 1334791 1334826 1334915 1334947 1335045 1335046 1335047 1335048 1335049
#> [23671] 1335050 1335051 1335052 1335053 1335054 1335231 1335233 1335234 1335235
#> [23680] 1335503 1335801 1335802 1336412 1336413 1336415 1336416 1336417 1336430
#> [23689] 1336492 1336493 1336498 1336502 1336577 1336579 1336580 1336608 1336609
#> [23698] 1336610 1336611 1336612 1336613 1336626 1336848 1336849 1336850 1336851
#> [23707] 1336895 1337059 1337060 1337061 1337062 1337068 1337069 1337070 1337071
#> [23716] 1337072 1337075 1337077 1337107 1337109 1337139 1337141 1337181 1337182
#> [23725] 1337187 1337193 1337194 1337407 1337417 1337419 1337433 1337434 1337435
#> [23734] 1337437 1337438 1337439 1337440 1337441 1337778 1338039 1338180 1338181
#> [23743] 1338182 1338183 1338196 1338298 1338299 1338310 1338311 1338312 1338313
#> [23752] 1338366 1338367 1338368 1338398 1338581 1338584 1338775 1338780 1338790
#> [23761] 1338791 1338792 1338884 1339003 1339004 1339408 1339465 1339585 1339586
#> [23770] 1339587 1339602 1339611 1339612 1339613 1339654 1339655 1339676 1339678
#> [23779] 1339696 1339697 1339698 1339699 1339700 1339701 1339702 1339703 1339704
#> [23788] 1339705 1339706 1339850 1339916 1339920 1339921 1339922 1339923 1339932
#> [23797] 1339956 1340093 1340095 1340097 1340099 1340111 1340112 1340155 1340327
#> [23806] 1340444 1340445 1340446 1340453 1340454 1340455 1340464 1340487 1340488
#> [23815] 1340489 1340591 1340843 1340844 1340847 1340849 1340850 1340851 1340852
#> [23824] 1340853 1340991 1341023 1341143 1341149 1341158 1341163 1341217 1341218
#> [23833] 1341219 1341236 1341238 1341240 1341242 1341244 1341246 1341247 1341249
#> [23842] 1341251 1341253 1341254 1341279 1341283 1341735 1341940 1342005 1342007
#> [23851] 1342009 1342011 1342294 1342295 1342661 1342666 1342667 1342668 1342669
#> [23860] 1342670 1342671 1342672 1342673 1347763 1347764 1348753 1348754 1348956
#> [23869] 1348973 1349085 1349203 1349232 1349254 1349255 1349256 1349260 1349261
#> [23878] 1349262 1349263 1349295 1349297 1349299 1349335 1349338 1349406 1349407
#> [23887] 1349408 1349409 1349410 1349411 1349412 1349413 1349414 1349415 1349416
#> [23896] 1349417 1349432 1349436 1349437 1349438 1349439 1349440 1349441 1349442
#> [23905] 1349443 1349494 1349496 1349497 1349499 1349544 1349597 1349599 1349735
#> [23914] 1350230 1350340 1350354 1350373 1350392 1350492 1350493 1350495 1350496
#> [23923] 1350498 1350499 1350502 1350505 1350507 1350536 1350537 1350554 1350583
#> [23932] 1350584 1350586 1350588 1350589 1350603 1350604 1350667 1350710 1350712
#> [23941] 1350714 1350789 1351244 1351245 1351246 1351247 1351287 1351297 1351366
#> [23950] 1351575 1351577 1351578 1351579 1351582 1352032 1352034 1352044 1352151
#> [23959] 1352169 1352171 1352175 1352176 1352178 1352180 1352182 1352183 1352184
#> [23968] 1352185 1352206 1352312 1352313 1352316 1352317 1352318 1352319 1352320
#> [23977] 1352321 1352322 1352544 1352567 1352569 1352571 1352599 1352600 1352838
#> [23986] 1352839 1352847 1353441 1353552 1353585 1353587 1353589 1353590 1353609
#> [23995] 1353610 1353757 1354513 1354523 1354558 1354559 1354596 1354679 1354680
#> [24004] 1354682 1354700 1354812 1354828 1354835 1354836 1354837 1354840 1354917
#> [24013] 1354918 1355078 1355079 1355136 1355137 1355294 1355333 1355434 1355437
#> [24022] 1355440 1355621 1355622 1355623 1355625 1355784 1355785 1355786 1355787
#> [24031] 1355793 1355794 1355973 1356056 1356058 1356212 1356214 1356246 1356361
#> [24040] 1356362 1356366 1356420 1356502 1356503 1356506 1356691 1356695 1356698
#> [24049] 1356815 1356875 1356876 1356894 1356896 1357640 1357783 1357784 1357788
#> [24058] 1357789 1357790 1357791 1357792 1357793 1357806 1358239 1358730 1358731
#> [24067] 1358732 1358733 1358734 1358735 1359108 1359179 1359199 1359204 1359205
#> [24076] 1359250 1359251 1359528 1359529 1359957 1359970 1360057 1360059 1360172
#> [24085] 1360173 1360347 1360696 1360697 1360700 1360720 1360721 1360722 1360723
#> [24094] 1360729 1360730 1360731 1360738 1360740 1360823 1360825 1360829 1360830
#> [24103] 1361012 1361067 1361086 1361087 1361177 1361178 1361179 1361180 1361181
#> [24112] 1361182 1361397 1361398 1361693 1361711 1361712 1361713 1361714 1362242
#> [24121] 1362245 1362256 1362257 1362258 1362259 1362265 1362266 1362267 1362268
#> [24130] 1362269 1362270 1362279 1362374 1362386 1362410 1362764 1362843 1362846
#> [24139] 1362918 1362919 1362920 1362922 1362923 1362964 1362966 1363029 1363031
#> [24148] 1363067 1363074 1363149 1363150 1363250 1363251 1363296 1363456 1363468
#> [24157] 1363469 1363471 1363501 1363628 1363954 1363957 1363963 1363964 1363965
#> [24166] 1363966 1363967 1363968 1363969 1363970 1363971 1363972 1363973 1363974
#> [24175] 1363975 1363976 1363977 1363978 1363979 1363980 1363981 1363982 1363983
#> [24184] 1363984 1363985 1363986 1363987 1363988 1363989 1364011 1364012 1364013
#> [24193] 1364014 1364015 1364068 1364069 1364070 1364071 1364072 1364073 1364074
#> [24202] 1364091 1364286 1364287 1364435 1364436 1364437 1364438 1364439 1364447
#> [24211] 1364663 1364664 1364669 1364671 1364697 1364914 1364931 1364932 1364933
#> [24220] 1364938 1364941 1364942 1364944 1364948 1364949 1364950 1364951 1364952
#> [24229] 1364966 1364967 1364968 1364969 1364970 1364971 1364972 1364973 1364974
#> [24238] 1364975 1364976 1364980 1365002 1365135 1365157 1365158 1365159 1365275
#> [24247] 1365318 1365351 1365352 1365741 1366019 1366020 1366106 1366204 1366318
#> [24256] 1366319 1366566 1366567 1366570 1366571 1366588 1366625 1366653 1366660
#> [24265] 1366765 1366825 1366833 1366834 1366835 1366836 1367017 1367098 1367360
#> [24274] 1367361 1367664 1367679 1367680 1367684 1367685 1367686 1367687 1367758
#> [24283] 1367759 1367954 1367966 1368079 1368081 1368127 1368129 1368137 1368139
#> [24292] 1368140 1368141 1368142 1368143 1368144 1368145 1368146 1368147 1368154
#> [24301] 1368172 1368203 1368204 1368309 1368310 1368366 1368367 1368368 1368369
#> [24310] 1368370 1368374 1368637 1368638 1368639 1368694 1368933 1368950 1368951
#> [24319] 1368952 1368953 1368954 1368955 1368956 1368961 1368963 1369652 1369653
#> [24328] 1369654 1369655 1369656 1369657 1369658 1369659 1369660 1369661 1369748
#> [24337] 1369750 1369753 1369757 1370259 1370260 1370282 1370283 1370284 1370285
#> [24346] 1370503 1370504 1370505 1370531 1370532 1370595 1370597 1370600 1370647
#> [24355] 1370648 1370755 1370816 1371058 1371106 1371344 1371352 1371470 1371471
#> [24364] 1372002 1372005 1372016 1372140 1372155 1372156 1372157 1372224 1372357
#> [24373] 1372358 1372359 1372381 1372689 1372690 1372691 1372692 1372693 1372694
#> [24382] 1372695 1372696 1372764 1372766 1372837 1372839 1372842 1372902 1373029
#> [24391] 1373152 1373154 1373158 1373159 1373160 1373161 1373162 1373163 1373372
#> [24400] 1373832 1373963 1373964 1373965 1373966 1373986 1373988 1373993 1374004
#> [24409] 1374018 1374022 1374253 1374254 1374255 1374256 1374259 1374260 1374261
#> [24418] 1374503 1374591 1374624 1374625 1374626 1374627 1374628 1374630 1374800
#> [24427] 1374801 1374848 1374884 1374995 1374996 1375000 1375001 1375003 1375004
#> [24436] 1375054 1375055 1375056 1375057 1375058 1375059 1375060 1375061 1375070
#> [24445] 1375096 1375430 1375589 1375648 1375650 1375752 1375776 1375777 1375782
#> [24454] 1375830 1375831 1375833 1375835 1376094 1376122 1376134 1376135 1376136
#> [24463] 1376245 1376250 1376251 1376252 1376810 1377335 1377487 1377502 1377503
#> [24472] 1377529 1377562 1377634 1377842 1377846 1377847 1377851 1377853 1377924
#> [24481] 1378049 1378234 1378294 1378313 1378597 1378643 1378915 1378919 1378921
#> [24490] 1379240 1379279 1379280 1379328 1379348 1379389 1379397 1379398 1379407
#> [24499] 1379413 1379414 1379463 1379694 1379701 1379737 1379738 1379739 1379741
#> [24508] 1379742 1379808 1379945 1379959 1379960 1379961 1380016 1380130 1380257
#> [24517] 1380258 1380259 1380260 1380261 1380262 1380263 1380264 1380306 1380350
#> [24526] 1380453 1380547 1380631 1380632 1380634 1380639 1380640 1380708 1380712
#> [24535] 1380716 1380720 1380880 1380881 1380924 1380925 1380926 1380927 1380931
#> [24544] 1380936 1381202 1381204 1381205 1381233 1381691 1381692 1381693 1381698
#> [24553] 1381730 1381731 1381732 1381733 1381735 1381736 1381737 1381790 1381791
#> [24562] 1381792 1381793 1381794 1381795 1381796 1382163 1382164 1382165 1382166
#> [24571] 1382171 1382172 1382173 1382174 1382175 1382208 1382209 1382229 1382231
#> [24580] 1382232 1382233 1382234 1382235 1382236 1382238 1382488 1382489 1382574
#> [24589] 1382961 1382962 1382982 1383025 1383031 1383128 1383129 1383130 1383217
#> [24598] 1383218 1383236 1383240 1383242 1383280 1383281 1383282 1383283 1383288
#> [24607] 1383289 1383290 1383292 1383296 1383402 1383403 1383404 1383423 1383429
#> [24616] 1383430 1383459 1383749 1383846 1383847 1383848 1383849 1383850 1383851
#> [24625] 1383852 1383883 1383884 1383885 1383886 1383887 1383888 1383890 1383893
#> [24634] 1383894 1383896 1383901 1383904 1383905 1383906 1384018 1384019 1384020
#> [24643] 1384260 1384261 1384264 1384265 1384266 1384544 1384704 1384979 1384980
#> [24652] 1384981 1385072 1385085 1385086 1385087 1385088 1385089 1385106 1385108
#> [24661] 1385252 1385378 1385379 1385380 1385381 1385395 1385405 1385406 1385410
#> [24670] 1385425 1385427 1385576 1385577 1385578 1385579 1385580 1385581 1385582
#> [24679] 1385583 1385584 1385753 1386190 1386192 1386199 1386288 1386290 1386291
#> [24688] 1386292 1386480 1386508 1386509 1386531 1386534 1386535 1386536 1386537
#> [24697] 1386538 1386539 1386540 1386563 1386593 1386594 1386595 1386603 1386604
#> [24706] 1386605 1386607 1386610 1386612 1386614 1386615 1386618 1386619 1386620
#> [24715] 1386621 1386626 1386628 1386630 1386650 1386651 1386748 1386750 1386751
#> [24724] 1386755 1386756 1386792 1386794 1386795 1386800 1386821 1386830 1386861
#> [24733] 1386864 1386877 1386878 1386880 1386897 1386902 1386908 1386930 1386960
#> [24742] 1386962 1386964 1386966 1386968 1386974 1386975 1386978 1386986 1387060
#> [24751] 1387065 1387066 1387524 1387525 1387526 1387535 1387592 1387616 1387792
#> [24760] 1387793 1387796 1387871 1387872 1387955 1387960 1387983 1387984 1387985
#> [24769] 1387986 1387988 1387989 1387999 1388000 1388002 1388003 1388004 1388006
#> [24778] 1388008 1388010 1388011 1388012 1388013 1388042 1388046 1388051 1388056
#> [24787] 1388057 1388058 1388059 1388061 1388063 1388065 1388066 1388234 1388365
#> [24796] 1388366 1388367 1388368 1388369 1388370 1388379 1388382 1388384 1388409
#> [24805] 1388410 1388411 1388412 1388413 1388414 1388415 1388416 1388417 1388440
#> [24814] 1388441 1388443 1388465 1388611 1388612 1388614 1388615 1388618 1388619
#> [24823] 1388620 1388649 1388683 1388706 1388773 1388791 1388904 1389198 1389199
#> [24832] 1389200 1389500 1389766 1389837 1390084 1390085 1390331 1390496 1390710
#> [24841] 1390711 1390827 1390845 1390852 1390853 1390855 1390878 1390990 1390991
#> [24850] 1390992 1391036 1391077 1391078 1391081 1391082 1391083 1391084 1391085
#> [24859] 1391086 1391087 1391667 1391670 1391730 1391774 1391776 1391808 1391859
#> [24868] 1391860 1391868 1391870 1391872 1391874 1391875 1391883 1391926 1391953
#> [24877] 1392002 1392069 1392145 1392277 1392329 1392331 1392410 1392412 1392421
#> [24886] 1392430 1392455 1392567 1392574 1392575 1392576 1392588 1392619 1392920
#> [24895] 1393168 1393261 1393262 1393300 1393301 1393370 1393528 1393529 1393530
#> [24904] 1393915 1393919 1393921 1393971 1393972 1394621 1394622 1394623 1394627
#> [24913] 1394628 1394629 1394844 1394845 1394846 1394847 1394848 1394849 1394851
#> [24922] 1394855 1394974 1395056 1395057 1395058 1395890 1395910 1395945 1395947
#> [24931] 1395948 1395957 1395958 1395960 1396048 1396049 1396197 1396198 1396199
#> [24940] 1396584 1396585 1397000 1397057 1397078 1397079 1397080 1397081 1397083
#> [24949] 1397117 1397959 1397960 1397961 1397972 1397973 1397974 1398151 1398159
#> [24958] 1398171 1398172 1398173 1398174 1398444 1398453 1398471 1398472 1398473
#> [24967] 1398498 1398500 1398502 1398549 1398660 1398661 1398666 1398730 1398739
#> [24976] 1398749 1398752 1398756 1398759 1398762 1398985 1398987 1399212 1399285
#> [24985] 1399372 1399464 1399465 1399471 1399472 1399813 1399863 1399864 1400242
#> [24994] 1400251 1400252 1400344 1400346 1400362 1400363 1400364 1400409 1400457
#> [25003] 1400713 1400714 1400715 1400716 1400727 1400728 1400729 1400730 1400733
#> [25012] 1400767 1400815 1400816 1400913 1400914 1400930 1400931 1400932 1400933
#> [25021] 1400934 1400935 1400936 1400937 1400990 1401008 1401010 1401011 1401012
#> [25030] 1401016 1401017 1401484 1401643 1401645 1401646 1401647 1401648 1401804
#> [25039] 1401805 1401806 1402242 1402813 1402814 1402815 1402816 1402817 1402822
#> [25048] 1402823 1402824 1402825 1402826 1402827 1402828 1403043 1403044 1403045
#> [25057] 1403046 1403047 1403049 1403050 1403051 1403052 1403053 1403054 1403055
#> [25066] 1403128 1403129 1403137 1403138 1403139 1403140 1403141 1403142 1403143
#> [25075] 1403463 1403464 1403764 1403766 1403768 1403793 1404076 1404077 1404078
#> [25084] 1404079 1404080 1404081 1404082 1404084 1404266 1404272 1404339 1404340
#> [25093] 1404341 1404378 1404379 1404380 1404441 1404443 1404506 1404508 1404692
#> [25102] 1404693 1404703 1404704 1404854 1405007 1405217 1405341 1405811 1405812
#> [25111] 1406229 1406230 1406257 1406277 1406281 1406294 1406300 1406735 1406736
#> [25120] 1406737 1406738 1406739 1406740 1406820 1406823 1406825 1406826 1406827
#> [25129] 1406828 1407611 1407612 1407613 1407614 1407617 1407618 1407619 1407620
#> [25138] 1407642 1407894 1407895 1407896 1407910 1408125 1408128 1408322 1408323
#> [25147] 1408324 1408325 1408326 1408327 1408328 1408329 1408330 1408331 1408342
#> [25156] 1408601 1409112 1409141 1409142 1409143 1409145 1409160 1409162 1409273
#> [25165] 1409295 1409298 1409301 1409316 1409404 1409405 1409406 1409407 1409409
#> [25174] 1409410 1409411 1409490 1409492 1409494 1409496 1409498 1409578 1409595
#> [25183] 1409637 1409638 1409722 1409723 1409724 1409725 1409814 1409815 1409868
#> [25192] 1410011 1410015 1410191 1410193 1410234 1410238 1410239 1410338 1410397
#> [25201] 1410401 1410402 1410403 1410404 1410406 1410411 1410412 1410420 1410481
#> [25210] 1410482 1410487 1410488 1410489 1410490 1410491 1410492 1410503 1410504
#> [25219] 1410505 1410506 1410507 1410508 1410509 1410542 1410544 1410547 1410549
#> [25228] 1410551 1410553 1410647 1410711 1410712 1410713 1410714 1410715 1410716
#> [25237] 1410717 1410718 1410719 1410720 1410721 1410722 1410724 1410725 1410726
#> [25246] 1410727 1410737 1410750 1410753 1410773 1410904 1410946 1411170 1411171
#> [25255] 1411175 1411247 1411248 1411354 1411355 1411571 1411748 1411991 1412201
#> [25264] 1412907 1412908 1412909 1412910 1412911 1413153 1413154 1413155 1413162
#> [25273] 1413163 1413164 1413219 1413220 1413269 1413596 1413747 1413939 1414093
#> [25282] 1414101 1414105 1414107 1414113 1414120 1414121 1414123 1414125 1414246
#> [25291] 1414248 1414249 1414427 1414453 1414523 1414526 1414529 1414532 1414534
#> [25300] 1414686 1414688 1414725 1414869 1414870 1415144 1415145 1415146 1415147
#> [25309] 1415221 1415307 1415308 1415309 1416176 1416190 1416218 1416220 1416221
#> [25318] 1416222 1416223 1416280 1416282 1416461 1416531 1416532 1416598 1416643
#> [25327] 1416668 1416669 1416670 1416674 1416840 1416841 1417046 1417047 1417049
#> [25336] 1417050 1417051 1417052 1417062 1417064 1417567 1417631 1417632 1417634
#> [25345] 1418303 1418309 1418312 1418376 1418377 1418463 1418464 1418465 1418475
#> [25354] 1418476 1418738 1418782 1418805 1418808 1418833 1418834 1418835 1418836
#> [25363] 1418840 1418841 1418842 1418843 1418898 1418899 1418903 1418904 1418989
#> [25372] 1419072 1419073 1419242 1419447 1419466 1419467 1419468 1419469 1419470
#> [25381] 1419471 1420059 1420336 1420344 1420345 1420420 1420511 1420935 1420968
#> [25390] 1421303 1421312 1421313 1421314 1421315 1421316 1421318 1421319 1421320
#> [25399] 1421325 1421326 1421327 1421328 1421330 1421331 1421332 1421333 1421334
#> [25408] 1421335 1421481 1421491 1421725 1421728 1421730 1421731 1421732 1421733
#> [25417] 1421871 1422327 1422332 1422335 1422339 1422343 1422356 1422357 1422358
#> [25426] 1422359 1422360 1422361 1422362 1422363 1422436 1422438 1422439 1422440
#> [25435] 1422441 1422442 1422535 1422536 1422537 1422538 1422548 1422549 1422550
#> [25444] 1422551 1422782 1422783 1422784 1422853 1422854 1422856 1422859 1422862
#> [25453] 1422864 1422895 1423039 1423207 1423213 1423214 1423215 1423216 1423217
#> [25462] 1423218 1423219 1423220 1423221 1423222 1423223 1423224 1423225 1423226
#> [25471] 1423227 1423228 1423229 1423230 1423231 1423232 1423233 1423234 1423235
#> [25480] 1423236 1423237 1423238 1423239 1423471 1423474 1423475 1423476 1423477
#> [25489] 1423478 1423479 1423485 1423486 1423487 1423611 1423612 1423668 1423679
#> [25498] 1423764 1423770 1423771 1423772 1423773 1423774 1423775 1423840 1423841
#> [25507] 1423844 1423845 1423846 1423847 1423848 1423849 1423850 1423953 1424231
#> [25516] 1424526 1424527 1424528 1424596 1424597 1424600 1424639 1424680 1424681
#> [25525] 1424714 1424718 1424722 1424726 1424835 1424836 1424837 1425215 1425546
#> [25534] 1425597 1425599 1425622 1425624 1425626 1425627 1425628 1425629 1425630
#> [25543] 1425631 1425638 1425651 1425652 1425772 1425777 1425954 1426076 1426078
#> [25552] 1426080 1426081 1426276 1426281 1426322 1426323 1426326 1426391 1426431
#> [25561] 1426432 1426806 1426813 1426814 1426840 1426842 1426843 1426844 1427149
#> [25570] 1427150 1427164 1427165 1427221 1427222 1427354 1427355 1427356 1427357
#> [25579] 1427358 1427361 1427461 1427633 1427634 1427635 1427636 1427637 1427638
#> [25588] 1427662 1427665 1427677 1427685 1427692 1427693 1427790 1427825 1427826
#> [25597] 1427829 1427830 1427831 1427832 1427833 1427834 1427835 1427846 1427869
#> [25606] 1427870 1427872 1427873 1427874 1428154 1428289 1428304 1428544 1428546
#> [25615] 1428547 1428548 1428550 1428574 1428575 1428576 1428577 1428589 1428590
#> [25624] 1428591 1428592 1428722 1429959 1429960 1429962 1429969 1429972 1430002
#> [25633] 1430003 1430020 1430021 1430023 1430025 1430026 1430027 1430042 1430126
#> [25642] 1430193 1430194 1430195 1430196 1430197 1430198 1430199 1430210 1430265
#> [25651] 1430268 1430269 1430270 1430280 1430281 1430282 1430354 1430356 1430363
#> [25660] 1430390 1430611 1430762 1430943 1431432 1431433 1431434 1431435 1431436
#> [25669] 1431437 1431438 1431497 1431501 1431502 1431504 1431505 1431557 1431575
#> [25678] 1431576 1431582 1431584 1431585 1431586 1431587 1431588 1431589 1431678
#> [25687] 1431714 1431716 1431800 1431801 1431828 1431829 1431830 1431843 1431850
#> [25696] 1431878 1431879 1431880 1431881 1431903 1431922 1431923 1431924 1431926
#> [25705] 1431927 1431928 1431929 1431930 1431932 1431937 1431938 1431939 1431940
#> [25714] 1431957 1432066 1432177 1432190 1432387 1432389 1432390 1432391 1432579
#> [25723] 1432605 1432606 1432607 1432608 1432613 1432614 1432615 1432616 1432617
#> [25732] 1432689 1432802 1432803 1433016 1433017 1433052 1433054 1433072 1433073
#> [25741] 1433087 1433091 1433093 1433097 1433134 1433135 1433136 1433137 1433138
#> [25750] 1433139 1433140 1433141 1433142 1433143 1433144 1433145 1433146 1433147
#> [25759] 1433148 1433149 1433150 1433151 1433154 1433155 1433156 1433184 1433198
#> [25768] 1433847 1434256 1434278 1434655 1434656 1434671 1434674 1434709 1434725
#> [25777] 1434778 1435142 1435146 1435200 1435201 1435331 1435332 1435333 1435334
#> [25786] 1435441 1435502 1435503 1435504 1435505 1435506 1435507 1435508 1435509
#> [25795] 1435881 1436239 1436320 1436325 1436327 1436442 1436452 1436536 1436683
#> [25804] 1436699 1436707 1436743 1436746 1436747 1437366 1437371 1437374 1437376
#> [25813] 1437377 1437378 1437556 1437794 1437823 1437825 1437826 1437985 1437998
#> [25822] 1438039 1438040 1438041 1438042 1438043 1438044 1439177 1439178 1439205
#> [25831] 1439209 1439211 1439356 1439359 1439362 1439693 1439694 1439695 1439696
#> [25840] 1439697 1439899 1440060 1440269 1440416 1440526 1440534 1440537 1440618
#> [25849] 1440623 1440624 1440625 1440627 1440633 1440635 1440637 1440638 1440639
#> [25858] 1440640 1440641 1440642 1440643 1440646 1440649 1440652 1440653 1440654
#> [25867] 1440655 1440673 1440723 1440724 1440811 1440812 1440866 1440933 1441142
#> [25876] 1441144 1441146 1441219 1441228 1441229 1441230 1441231 1441232 1441233
#> [25885] 1441234 1441235 1441236 1441301 1441302 1441303 1441304 1441305 1441310
#> [25894] 1441311 1441319 1441320 1441556 1441713 1441734 1441774 1441775 1441856
#> [25903] 1441857 1441858 1441859 1441866 1441867 1441868 1441907 1441913 1441914
#> [25912] 1441915 1441916 1441944 1441947 1441948 1441949 1441987 1441988 1442041
#> [25921] 1442050 1442236 1442245 1442246 1442247 1442248 1442356 1442369 1442370
#> [25930] 1442371 1442376 1442377 1442507 1442508 1442509 1442510 1442562 1442564
#> [25939] 1442568 1442570 1442571 1442574 1442576 1442578 1442580 1442582 1442584
#> [25948] 1443063 1443124 1443141 1443142 1443195 1443196 1443215 1443338 1443339
#> [25957] 1443531 1443616 1443620 1443624 1443628 1443660 1443661 1443662 1443666
#> [25966] 1443667 1443668 1443669 1443670 1443671 1443674 1443682 1443742 1443743
#> [25975] 1443744 1443746 1443748 1443749 1443751 1443776 1443830 1443861 1443863
#> [25984] 1443880 1443881 1443882 1443883 1443884 1443887 1443890 1443902 1444016
#> [25993] 1444498 1444758 1444759 1445039 1445040 1445093 1445096 1445108 1445109
#> [26002] 1445111 1445115 1445118 1445125 1445126 1445141 1445142 1445143 1445157
#> [26011] 1445189 1445224 1445227 1445228 1445356 1445357 1445358 1445359 1445360
#> [26020] 1445475 1445476 1445557 1445642 1445645 1445646 1445648 1445682 1445691
#> [26029] 1445764 1445766 1445883 1445884 1445885 1445886 1445889 1445890 1445976
#> [26038] 1445977 1445978 1445979 1446031 1446032 1446043 1446044 1446045 1446046
#> [26047] 1446067 1446069 1446071 1446073 1446099 1446100 1446264 1446540 1446542
#> [26056] 1446797 1446806 1446809 1446810 1446811 1446812 1446815 1446816 1446817
#> [26065] 1446818 1446819 1446820 1446942 1446944 1446946 1446947 1446979 1447120
#> [26074] 1447126 1447282 1447283 1447370 1447372 1447381 1447383 1447394 1447397
#> [26083] 1447402 1447407 1447408 1447410 1447415 1447416 1447417 1447418 1447419
#> [26092] 1447420 1447421 1447426 1447441 1447442 1447766 1447768 1447769 1447784
#> [26101] 1447800 1447801 1447802 1447803 1447804 1447805 1447856 1447857 1447891
#> [26110] 1447894 1447895 1447958 1447960 1447988 1448003 1448005 1448008 1448024
#> [26119] 1448029 1448031 1448530 1448604 1448607 1448624 1448645 1448649 1448650
#> [26128] 1448651 1448652 1448653 1448654 1448810 1448832 1448849 1448861 1449009
#> [26137] 1449010 1449011 1449012 1449133 1449281 1449284 1449287 1449502 1449521
#> [26146] 1449795 1449891 1449918 1450084 1450123 1450282 1450359 1450422 1450439
#> [26155] 1450440 1450441 1450445 1450446 1450456 1450473 1450496 1450497 1450498
#> [26164] 1450499 1450500 1450510 1450511 1450908 1450957 1450958 1450959 1450960
#> [26173] 1450961 1450967 1450968 1450969 1450970 1450971 1450983 1450984 1450985
#> [26182] 1450987 1450988 1450989 1451242 1451327 1451452 1451453 1451457 1451458
#> [26191] 1451459 1451460 1451462 1451463 1451464 1451491 1451500 1451667 1451681
#> [26200] 1451810 1451884 1451892 1451897 1451899 1451986 1452125 1452397 1452398
#> [26209] 1452399 1452524 1452556 1452619 1452710 1452712 1452717 1452718 1452719
#> [26218] 1452720 1452721 1453068 1453272 1453299 1453463 1453505 1453530 1453532
#> [26227] 1453557 1453592 1453593 1453594 1453695 1453870 1453923 1453932 1454050
#> [26236] 1454144 1454145 1454147 1454149 1454150 1454151 1454212 1454219 1454221
#> [26245] 1454223 1454282 1454295 1454387 1454388 1454420 1454473 1454491 1454515
#> [26254] 1454516 1454521 1454522 1454523 1454524 1454526 1454607 1454608 1454609
#> [26263] 1454610 1454630 1454631 1454632 1454639 1454640 1454641 1454642 1454643
#> [26272] 1454645 1454743 1454744 1454759 1454760 1454761 1454787 1454788 1454789
#> [26281] 1454952 1454953 1454954 1454955 1454956 1454957 1454958 1454959 1454960
#> [26290] 1454961 1454962 1454963 1454964 1454965 1454966 1454967 1454968 1454969
#> [26299] 1454970 1454971 1454972 1455105 1455155 1455157 1455158 1455159 1455160
#> [26308] 1455161 1455162 1455163 1455170 1455173 1455179 1455181 1455221 1455222
#> [26317] 1455223 1455224 1455225 1455226 1455227 1455228 1455229 1455230 1455231
#> [26326] 1455232 1455233 1455234 1455235 1455236 1455237 1455238 1455590 1455640
#> [26335] 1455877 1455918 1455931 1455959 1455960 1456006 1456288 1456297 1456298
#> [26344] 1456306 1456307 1456308 1456309 1456610 1456711 1456713 1456714 1457053
#> [26353] 1457055 1457056 1457057 1457058 1457357 1457748 1457749 1457758 1457761
#> [26362] 1457764 1457765 1457766 1457767 1457768 1457785 1457786 1457787 1457788
#> [26371] 1457815 1457838 1457899 1457900 1457942 1458072 1458093 1458097 1458100
#> [26380] 1458106 1458120 1458121 1458175 1458176 1458177 1458178 1458183 1458184
#> [26389] 1458185 1458186 1458187 1458188 1458205 1458206 1458342 1458418 1458420
#> [26398] 1458676 1458686 1458687 1458689 1458698 1458808 1458954 1458955 1458956
#> [26407] 1458957 1458980 1458981 1458982 1458983 1459069 1459070 1459393 1459466
#> [26416] 1459482 1459556 1459557 1459829 1459833 1459849 1459921 1460017 1460022
#> [26425] 1460046 1460047 1460048 1460079 1460080 1460081 1460084 1460110 1460113
#> [26434] 1460115 1460393 1460394 1460413 1460459 1460610 1460611 1460612 1460613
#> [26443] 1460614 1460615 1460616 1460617 1460618 1460621 1460640 1460647 1460972
#> [26452] 1460973 1460981 1461775 1461777 1462031 1462032 1462033 1462034 1462035
#> [26461] 1462036 1462037 1462038 1462115 1462314 1462378 1462432 1462457 1463446
#> [26470] 1463506 1463511 1463795 1463796 1463797 1463866 1463886 1463972 1464113
#> [26479] 1464114 1464184 1464186 1464226 1464239 1464365 1464366 1464379 1464457
#> [26488] 1464458 1464459 1464460 1464656 1464657 1464658 1464659 1464672 1464673
#> [26497] 1464674 1464675 1464676 1464677 1464678 1464891 1464892 1464893 1464894
#> [26506] 1464895 1464896 1464897 1464898 1464916 1464921 1465201 1465366 1465367
#> [26515] 1465368 1465369 1465449 1465514 1465547 1465548 1466031 1466155 1466375
#> [26524] 1466376 1466377 1466574 1466621 1466729 1466731 1466732 1466733 1466735
#> [26533] 1466736 1466737 1466752 1466753 1466754 1466764 1466792 1466803 1466983
#> [26542] 1467046 1467211 1467357 1467407 1467409 1467411 1467413 1467414 1467415
#> [26551] 1467416 1467417 1467418 1467419 1467672 1467673 1467674 1467675 1467679
#> [26560] 1467680 1467684 1467721 1467731 1467732 1467733 1467758 1467759 1467834
#> [26569] 1467848 1467860 1467861 1467862 1467948 1467949 1467950 1467968 1467971
#> [26578] 1467989 1468203 1468262 1468276 1468294 1468298 1468304 1468306 1468308
#> [26587] 1468311 1468314 1468316 1468318 1468320 1468324 1468675 1468677 1468679
#> [26596] 1468708 1468710 1468712 1468737 1468738 1468739 1468740 1468741 1468742
#> [26605] 1468743 1468744 1468745 1468978 1468979 1468983 1469036 1469116 1469118
#> [26614] 1469143 1469179 1469180 1469572 1469591 1469793 1469829 1469891 1469892
#> [26623] 1469907 1469912 1470701 1470703 1470704 1470964 1470965 1470966 1471168
#> [26632] 1471575 1471590 1471591 1471592 1471593 1471594 1471595 1471596 1471597
#> [26641] 1471598 1471599 1471600 1471630 1471701 1471837 1471843 1471844 1471847
#> [26650] 1471849 1471851 1471853 1471855 1471857 1471893 1471894 1471897 1471905
#> [26659] 1471906 1471907 1471908 1471909 1471910 1472075 1472385 1472386 1472387
#> [26668] 1472388 1472394 1472395 1472399 1472400 1472401 1472402 1472403 1472404
#> [26677] 1472500 1472501 1472502 1472769 1472770 1472872 1472873 1472923 1472924
#> [26686] 1473302 1473403 1473406 1473417 1473418 1473419 1473420 1473421 1473422
#> [26695] 1473432 1473433 1473434 1473435 1473436 1473437 1473438 1473439 1473440
#> [26704] 1473441 1473459 1473460 1473465 1473466 1473563 1473564 1473565 1473566
#> [26713] 1473575 1474186 1474187 1474243 1474244 1474278 1474280 1474281 1474282
#> [26722] 1474301 1474306 1474762 1474772 1474993 1475005 1475007 1475009 1475014
#> [26731] 1475015 1475016 1475017 1475018 1475019 1475020 1475021 1475030 1475031
#> [26740] 1475032 1475203 1475204 1475206 1475526 1475772 1475773 1475792 1475809
#> [26749] 1475955 1476301 1476302 1476303 1476304 1476305 1476306 1476307 1476308
#> [26758] 1476309 1476411 1476414 1476417 1476420 1476732 1476733 1476745 1476760
#> [26767] 1476761 1476821 1476830 1476831 1476994 1476997 1477002 1477006 1477042
#> [26776] 1477089 1477090 1477092 1477093 1477094 1477131 1477145 1477252 1477253
#> [26785] 1477476 1477478 1477582 1477584 1477690 1477931 1478393 1478701 1478805
#> [26794] 1478838 1478840 1479538 1479569 1479572 1479575 1479578 1479581 1479629
#> [26803] 1479630 1479631 1479731 1479734 1479772 1479773 1479774 1479775 1479776
#> [26812] 1479777 1479778 1479779 1479887 1479890 1479892 1479894 1479896 1479899
#> [26821] 1480113 1480114 1480172 1480173 1480174 1480175 1480231 1480232 1480233
#> [26830] 1480234 1480239 1480298 1480308 1480570 1480571 1481350 1481351 1481361
#> [26839] 1481362 1481363 1481364 1481505 1481643 1481655 1481862 1481863 1481879
#> [26848] 1481920 1481922 1481933 1481935 1481949 1481950 1481994 1481996 1482015
#> [26857] 1482055 1482056 1482187 1482189 1482216 1482220 1482831 1482833 1482889
#> [26866] 1482903 1482910 1483031 1483036 1483037 1483039 1483054 1483055 1483062
#> [26875] 1483063 1483068 1483069 1483074 1483077 1483081 1483084 1483098 1483099
#> [26884] 1483269 1483270 1483271 1483272 1483273 1483274 1483275 1483276 1483277
#> [26893] 1483417 1483552 1483849 1483851 1483854 1483862 1483863 1483958 1483959
#> [26902] 1484598 1484699 1484700 1484701 1485223 1485224 1485225 1485226 1485227
#> [26911] 1485228 1485229 1485230 1485231 1485235 1485236 1485237 1485238 1485239
#> [26920] 1485241 1485242 1485243 1485246 1485247 1485248 1485249 1485250 1485251
#> [26929] 1485455 1485478 1485965 1486230 1486233 1486234 1486427 1486429 1486431
#> [26938] 1486433 1486434 1486435 1486436 1486437 1486496 1486497 1486771 1486772
#> [26947] 1486778 1486809 1486810 1486811 1486912 1486913 1486953 1487100 1487102
#> [26956] 1487261 1487267 1487280 1487403 1487428 1487429 1487434 1487440 1487441
#> [26965] 1487442 1487443 1487591 1487646 1487647 1487648 1487650 1487651 1488353
#> [26974] 1488397 1488398 1488399 1488558 1488661 1488662 1488664 1488665 1488666
#> [26983] 1488667 1488671 1488874 1488875 1488890 1489042 1489043 1489178 1489179
#> [26992] 1489226 1489482 1489483 1489486 1489487 1489492 1489494 1489496 1489498
#> [27001] 1489612 1489613 1489615 1489616 1489796 1489797 1489910 1490031 1491282
#> [27010] 1491399 1491457 1491458 1491649 1492818 1492825 1492827 1492828 1492829
#> [27019] 1492830 1492831 1492834 1492837 1492838 1492839 1492840 1492841 1492842
#> [27028] 1492843 1492844 1492845 1492846 1492847 1492848 1492909 1492913 1492915
#> [27037] 1492926 1492927 1492928 1492929 1492930 1493740 1493741 1493749 1493750
#> [27046] 1493751 1493971 1494260 1494261 1494262 1494263 1494264 1494308 1494426
#> [27055] 1494427 1494428 1494429 1494432 1494447 1494459 1494479 1494480 1494508
#> [27064] 1494509 1494510 1494511 1494532 1494536 1494537 1494541 1494542 1494594
#> [27073] 1494618 1494624 1494895 1494896 1494897 1494898 1494899 1494900 1494901
#> [27082] 1494902 1494903 1494904 1494905 1494906 1494907 1494908 1495063 1495496
#> [27091] 1495580 1495709 1495887 1495888 1495892 1495894 1495953 1496044 1496049
#> [27100] 1496050 1496051 1496167 1496168 1496169 1496170 1496191 1496193 1496194
#> [27109] 1496217 1496271 1496338 1496339 1496340 1496341 1496342 1496343 1496858
#> [27118] 1496859 1496860 1496861 1496862 1496863 1496864 1496865 1496866 1496867
#> [27127] 1496868 1496869 1496870 1496871 1496872 1496873 1496874 1496875 1496876
#> [27136] 1496879 1496880 1496881 1496882 1496883 1496884 1496885 1496886 1496887
#> [27145] 1496888 1496890 1496891 1496892 1496893 1496914 1496915 1496917 1496934
#> [27154] 1496979 1497239 1497242 1497246 1497458 1497459 1497460 1497461 1497534
#> [27163] 1497535 1497777 1497778 1497779 1497836 1497846 1498065 1498066 1498067
#> [27172] 1498075 1498076 1498077 1498113 1498114 1498115 1498116 1498117 1498118
#> [27181] 1498119 1498120 1498121 1498122 1498123 1498124 1498125 1498126 1498127
#> [27190] 1498128 1498129 1498131 1498132 1498133 1498134 1498140 1498141 1498142
#> [27199] 1498470 1498471 1498472 1498473 1498666 1498796 1498825 1499275 1499276
#> [27208] 1499277 1499281 1499710 1499711 1499712 1499713 1499714 1499715 1500154
#> [27217] 1500312 1500513 1500737 1500821 1500822 1500916 1500917 1501096 1501098
#> [27226] 1501131 1501133 1501272 1501274 1501277 1502294 1502297 1502332 1502335
#> [27235] 1502339 1502442 1502443 1502447 1502448 1502482 1502571 1502653 1502929
#> [27244] 1502930 1502946 1503224 1503254 1503255 1503256 1503257 1503258 1503259
#> [27253] 1503260 1503261 1503262 1503263 1503264 1503315 1503317 1503318 1503320
#> [27262] 1503322 1503323 1503325 1503327 1503328 1503329 1503330 1503331 1503423
#> [27271] 1503430 1503431 1503466 1503467 1503474 1503547 1503725 1503726 1503953
#> [27280] 1504184 1504186 1504188 1504190 1504191 1504193 1504310 1504483 1504602
#> [27289] 1504604 1504694 1504695 1504698 1504699 1504700 1504701 1504702 1504703
#> [27298] 1504704 1504711 1504715 1504783 1504784 1504785 1504786 1504787 1504788
#> [27307] 1504972 1505018 1505019 1505020 1505021 1505022 1505023 1505024 1505087
#> [27316] 1505092 1505093 1505268 1505269 1505270 1505271 1505274 1505276 1505280
#> [27325] 1505281 1505282 1505283 1505284 1505285 1505286 1505287 1505288 1505292
#> [27334] 1505293 1505294 1505295 1505296 1505297 1505298 1505299 1505300 1505384
#> [27343] 1505433 1505442 1505443 1505444 1505445 1505446 1505447 1505448 1505449
#> [27352] 1505450 1505451 1505452 1505453 1505454 1505455 1505456 1505488 1505489
#> [27361] 1505490 1505491 1505494 1505495 1505496 1505497 1505553 1505630 1506103
#> [27370] 1506105 1506106 1506228 1506229 1506346 1506355 1506356 1506424 1506426
#> [27379] 1506511 1506516 1507370 1507372 1507376 1507385 1507386 1507387 1507388
#> [27388] 1507399 1507555 1507556 1507557 1507558 1507559 1507713 1507737 1507740
#> [27397] 1507787 1507788 1507885 1507887 1508589 1508590 1508884 1508886 1508912
#> [27406] 1508914 1508915 1508916 1508917 1508918 1508919 1508920 1508921 1509110
#> [27415] 1509231 1509232 1509295 1509296 1509567 1509568 1509569 1509584 1510619
#> [27424] 1510620 1510621 1510919 1510954 1510955 1510956 1511125 1511126 1511176
#> [27433] 1511193 1511211 1511212 1511213 1511215 1511440 1511946 1511947 1511948
#> [27442] 1511949 1511989 1511990 1511991 1512164 1512168 1512570 1512619 1512622
#> [27451] 1512640 1512655 1512676 1512678 1512679 1512680 1512683 1512684 1512685
#> [27460] 1512690 1512714 1512717 1512718 1512719 1512720 1512721 1512722 1512723
#> [27469] 1512724 1512725 1512726 1512742 1512763 1512764 1512775 1512795 1512804
#> [27478] 1512890 1512893 1513050 1513312 1513637 1513638 1513641 1513642 1513746
#> [27487] 1513754 1513957 1513959 1513961 1513964 1513965 1513967 1514092 1514093
#> [27496] 1514203 1514482 1514486 1514515 1514853 1514935 1515075 1515576 1515577
#> [27505] 1515635 1515636 1515643 1515644 1515648 1515649 1515685 1515787 1515788
#> [27514] 1515789 1515790 1515791 1515792 1515793 1515794 1515795 1515796 1515797
#> [27523] 1515798 1515801 1516015 1516132 1516158 1516425 1516464 1516542 1516543
#> [27532] 1516790 1516791 1516792 1516793 1516991 1517295 1517423 1517424 1517425
#> [27541] 1517426 1517427 1517428 1517429 1517430 1517431 1517443 1517716 1518028
#> [27550] 1518030 1518031 1518042 1518782 1518783 1518784 1518785 1518786 1518787
#> [27559] 1518803 1518819 1518820 1518832 1518833 1519148 1519241 1519242 1519244
#> [27568] 1519246 1519247 1519614 1519615 1519633 1519634 1520038 1520039 1520053
#> [27577] 1520054 1520055 1520056 1520057 1520058 1520130 1520132 1520134 1520135
#> [27586] 1520136 1520137 1520138 1520139 1520505 1524155 1524159 1524160 1524161
#> [27595] 1524162 1524163 1524164 1524165 1524166 1524167 1524177 1524178 1524179
#> [27604] 1524183 1524184 1524565 1524566 1524567 1524568 1524569 1524570 1524582
#> [27613] 1524777 1524779 1524780 1525068 1525077 1525078 1525121 1525359 1525494
#> [27622] 1525495 1525496 1525508 1525654 1525672 1525783 1525792 1525821 1525919
#> [27631] 1525920 1525921 1525922 1525942 1525943 1525944 1525951 1526095 1526413
#> [27640] 1526471 1526496 1526897 1526899 1527133 1527134 1527135 1527136 1527160
#> [27649] 1527165 1527166 1527173 1527183 1527441 1527442 1527443 1527743 1527816
#> [27658] 1527817 1527836 1527839 1527840 1527846 1527863 1527907 1527910 1527912
#> [27667] 1527914 1528091 1528095 1528099 1528113 1528120 1528121 1528122 1528123
#> [27676] 1528124 1528125 1528126 1528127 1528128 1528129 1528130 1528131 1528132
#> [27685] 1528133 1528134 1528135 1528136 1528257 1528315 1528323 1528347 1528480
#> [27694] 1528481 1528489 1528494 1528495 1528496 1528497 1528511 1528512 1528513
#> [27703] 1528518 1528519 1528523 1528571 1528592 1528593 1528624 1528626 1528630
#> [27712] 1528631 1528632 1528730 1529239 1529426 1529633 1529636 1530223 1530224
#> [27721] 1530305 1530511 1530516 1530558 1530559 1530560 1532402 1532405 1532424
#> [27730] 1532425 1532427 1532517 1532518 1532519 1532520 1532598 1532661 1532764
#> [27739] 1532856 1532859 1532860 1532965 1533148 1533169 1533171 1533174 1533175
#> [27748] 1533176 1533177 1533362 1533363 1533364 1533371 1533373 1533451 1533459
#> [27757] 1533460 1533461 1534661 1534666 1534790 1534949 1535011 1535012 1535013
#> [27766] 1535014 1535015 1535016 1535208 1535224 1535243 1535336 1535337 1535393
#> [27775] 1535404 1535447 1535448 1535449 1535466 1535467 1535468 1535522 1535523
#> [27784] 1535524 1535561 1535617 1535631 1535632 1536044 1536051 1536096 1536099
#> [27793] 1536119 1536122 1536311 1536312 1536316 1536344 1536357 1537168 1537213
#> [27802] 1537419 1537421 1537508 1537509 1537510 1537526 1537527 1537539 1537541
#> [27811] 1537542 1537743 1538364 1538366 1538367 1538384 1538386 1538387 1538388
#> [27820] 1538389 1538390 1538391 1538392 1538393 1538394 1538416 1538418 1538477
#> [27829] 1538765 1539384 1539386 1539390 1539391 1539399 1539405 1539641 1539642
#> [27838] 1539646 1539647 1539648 1539649 1539650 1539651 1539652 1539658 1540214
#> [27847] 1540326 1540327 1540381 1540382 1540383 1540397 1540399 1540401 1540403
#> [27856] 1540405 1540407 1540448 1540450 1540452 1540454 1540477 1540479 1540480
#> [27865] 1540483 1540639 1540641 1540642 1540651 1540652 1540653 1540657 1540658
#> [27874] 1540659 1540666 1540667 1540668 1540672 1540673 1540674 1540681 1540682
#> [27883] 1540683 1540687 1540688 1540689 1540696 1540697 1540698 1540702 1540703
#> [27892] 1540704 1540711 1540712 1540713 1540717 1540718 1540719 1540726 1540727
#> [27901] 1540728 1540732 1540733 1540734 1540741 1540742 1540743 1540747 1540748
#> [27910] 1540749 1540757 1540758 1540759 1540760 1540832 1540834 1540836 1540839
#> [27919] 1540843 1540846 1540850 1540897 1541062 1541063 1541076 1541077 1541078
#> [27928] 1541079 1541080 1541081 1541082 1541093 1541312 1541313 1541314 1541315
#> [27937] 1541316 1541321 1541322 1541323 1541324 1541325 1541326 1541327 1541328
#> [27946] 1541385 1541386 1541395 1541396 1541397 1541398 1541399 1541400 1541724
#> [27955] 1541730 1541731 1541829 1541830 1541927 1541950 1541991 1541993 1542061
#> [27964] 1542612 1542613 1542615 1542617 1542655 1542682 1542816 1542817 1542885
#> [27973] 1542949 1542950 1542951 1542953 1542969 1542970 1542971 1542972 1542973
#> [27982] 1542974 1542975 1542976 1542977 1543000 1543103 1543105 1543218 1543219
#> [27991] 1543318 1543325 1543326 1543726 1543748 1543749 1543763 1543764 1543765
#> [28000] 1543766 1543901 1543902 1543903 1543904 1543905 1543906 1544018 1544481
#> [28009] 1544956 1544986 1545098 1545269 1545290 1545359 1545364 1545365 1545374
#> [28018] 1545511 1545512 1545530 1545531 1545540 1545642 1545644 1545687 1545691
#> [28027] 1545929 1546031 1546348 1546364 1546366 1546368 1546371 1546372 1546373
#> [28036] 1546374 1546375 1546376 1546377 1546378 1546379 1546380 1546381 1546382
#> [28045] 1546383 1546384 1546385 1546386 1546387 1546388 1546389 1546390 1546392
#> [28054] 1546607 1546608 1546610 1546611 1546612 1546619 1546620 1546621 1546882
#> [28063] 1546883 1546884 1546885 1546886 1546889 1546890 1546891 1546901 1546902
#> [28072] 1546903 1546915 1546918 1547045 1547181 1547182 1547183 1547187 1547449
#> [28081] 1547456 1547458 1547460 1547462 1547464 1547466 1547471 1547472 1547473
#> [28090] 1547476 1547477 1547478 1547506 1547507 1547508 1547509 1547511 1547514
#> [28099] 1547516 1547519 1547641 1547866 1547867 1547936 1547938 1547940 1547942
#> [28108] 1548346 1548443 1548444 1548445 1548446 1548454 1548455 1548456 1548466
#> [28117] 1548507 1548508 1548538 1548594 1548618 1548619 1548673 1548674 1548675
#> [28126] 1548676 1548677 1548730 1549053 1549054 1549081 1549426 1549436 1549767
#> [28135] 1549771 1549781 1549782 1549783 1549784 1549785 1549786 1549787 1549788
#> [28144] 1549789 1549790 1550577 1550583 1550585 1550586 1550587 1550588 1550589
#> [28153] 1550590 1550591 1550601 1551031 1551059 1551060 1551062 1551065 1551073
#> [28162] 1551081 1551543 1551546 1551700 1551701 1551774 1552072 1552074 1552083
#> [28171] 1552084 1552085 1552086 1552087 1552088 1552089 1552090 1552091 1552092
#> [28180] 1552093 1552625 1552801 1552802 1552803 1552804 1552809 1553327 1553329
#> [28189] 1553337 1553379 1553476 1553567 1553577 1553595 1553596 1553619 1553631
#> [28198] 1553632 1553633 1553659 1553725 1553726 1553727 1553728 1553743 1553750
#> [28207] 1553751 1553757 1553759 1555093 1555094 1555095 1555096 1555103 1555104
#> [28216] 1555113 1555114 1555417 1555495 1556087 1556088 1556090 1556146 1556147
#> [28225] 1556148 1556150 1556486 1556503 1556654 1556955 1557097 1557153 1557195
#> [28234] 1557340 1557360 1557362 1557365 1557380 1557381 1557384 1557413 1557964
#> [28243] 1557965 1557967 1557970 1558058 1558063 1558113 1558273 1558275 1558276
#> [28252] 1558277 1558278 1558279 1558280 1558281 1558282 1558285 1558286 1558287
#> [28261] 1558299 1558302 1558305 1558307 1558309 1558313 1558322 1558323 1558324
#> [28270] 1558325 1558332 1558333 1558334 1558335 1558337 1558340 1558341 1558343
#> [28279] 1558344 1558345 1558349 1558350 1558352 1558359 1558360 1558363 1558364
#> [28288] 1558366 1558369 1558370 1558489 1558491 1558504 1558508 1558592 1558683
#> [28297] 1558686 1558689 1558697 1558698 1558713 1558716 1558718 1558719 1558847
#> [28306] 1558853 1558854 1558855 1558856 1558857 1558957 1559307 1559775 1559777
#> [28315] 1559780 1559783 1559945 1559946 1559964 1560548 1560549 1560602 1560609
#> [28324] 1560614 1560637 1560694 1560696 1560816 1561163 1561204 1561243 1561245
#> [28333] 1561247 1561248 1561252 1561349 1561355 1561356 1561369 1561370 1561371
#> [28342] 1561372 1561373 1561374 1561395 1561396 1561397 1561399 1561400 1561401
#> [28351] 1561402 1561425 1561426 1561427 1561506 1561507 1561508 1561509 1561510
#> [28360] 1561511 1561648 1561649 1561651 1561662 1561663 1561664 1561665 1561668
#> [28369] 1561693 1561694 1561698 1561699 1561700 1561701 1561702 1561703 1561716
#> [28378] 1561717 1561718 1561719 1561870 1561874 1562215 1562216 1562222 1562693
#> [28387] 1562817 1562818 1562819 1562912 1562917 1562918 1562919 1562937 1562938
#> [28396] 1562974 1562979 1562991 1562997 1562998 1563001 1563003 1563200 1563202
#> [28405] 1563204 1563206 1563379 1563380 1563381 1563382 1563383 1563384 1563385
#> [28414] 1563386 1563387 1563388 1563389 1563390 1563391 1563392 1563393 1563394
#> [28423] 1563395 1563396 1563397 1563398 1563399 1563400 1563401 1563402 1563403
#> [28432] 1563404 1563405 1563581 1563870 1563872 1564086 1564089 1564243 1564245
#> [28441] 1564246 1564539 1564714 1564715 1564977 1564979 1564985 1564990 1565003
#> [28450] 1565004 1565015 1565018 1565078 1565079 1565090 1565091 1565095 1565096
#> [28459] 1565097 1565098 1565099 1565100 1565288 1565291 1565294 1565748 1565751
#> [28468] 1565752 1565753 1565754 1565849 1565850 1565853 1565860 1565861 1565869
#> [28477] 1566072 1566074 1566446 1566646 1566647 1566906 1566912 1566913 1566915
#> [28486] 1566916 1566917 1566918 1567010 1567016 1567034 1567035 1567066 1567067
#> [28495] 1567068 1567069 1567070 1567071 1567072 1567073 1567074 1567075 1567076
#> [28504] 1567077 1567078 1567079 1567080 1567081 1567082 1567083 1567084 1567085
#> [28513] 1567086 1567087 1567088 1567089 1567090 1567091 1567092 1567093 1567094
#> [28522] 1567095 1567096 1567097 1567098 1567099 1567100 1567101 1567102 1567103
#> [28531] 1567104 1567105 1567106 1567107 1567108 1567109 1567217 1567226 1567227
#> [28540] 1567235 1567236 1567237 1567238 1567257 1567258 1568140 1568141 1569131
#> [28549] 1569324 1569334 1569580 1569581 1569582 1569584 1569591 1569717 1569718
#> [28558] 1569719 1569720 1569721 1569722 1569943 1569944 1569945 1569946 1569947
#> [28567] 1570126 1570128 1570130 1570133 1570136 1570137 1570138 1570139 1570140
#> [28576] 1570141 1570142 1570143 1570144 1570145 1570209 1570217 1570290 1570328
#> [28585] 1570348 1570350 1570405 1570424 1570572 1570573 1570574 1570578 1570579
#> [28594] 1570919 1570922 1570940 1570942 1570992 1571032 1571033 1571034 1571142
#> [28603] 1571195 1571459 1571460 1571461 1571462 1571463 1571479 1571657 1571659
#> [28612] 1571660 1571661 1571662 1571663 1571664 1571665 1571666 1571667 1571668
#> [28621] 1571669 1571670 1571671 1571672 1571673 1571677 1571678 1571706 1571707
#> [28630] 1571708 1571709 1571805 1571807 1571808 1571809 1571810 1571821 1571822
#> [28639] 1571823 1571826 1571922 1571966 1571971 1571973 1571975 1571984 1571986
#> [28648] 1571987 1571988 1571989 1571990 1571996 1571999 1572003 1572004 1572048
#> [28657] 1572051 1572052 1572053 1572057 1572058 1572059 1572060 1572061 1572062
#> [28666] 1572150 1572394 1572396 1572518 1572519 1572523 1572524 1572525 1572526
#> [28675] 1572527 1572528 1572680 1572729 1572730 1572731 1572733 1572734 1572735
#> [28684] 1572736 1572816 1572817 1572836 1572851 1572852 1572870 1572988 1572989
#> [28693] 1572990 1572992 1573017 1573024 1573114 1573115 1573116 1573125 1573126
#> [28702] 1573131 1573132 1573133 1573137 1573138 1573387 1573388 1573391 1573392
#> [28711] 1573395 1573397 1573399 1573401 1573402 1573403 1573406 1573409 1573411
#> [28720] 1573413 1573415 1573417 1573419 1573421 1573423 1573425 1573427 1573431
#> [28729] 1573433 1573435 1573437 1573439 1573441 1573443 1573445 1573447 1573449
#> [28738] 1573452 1573453 1573455 1573456 1573458 1573464 1573466 1573468 1573470
#> [28747] 1573472 1573476 1573478 1573480 1573482 1573484 1573485 1573486 1573487
#> [28756] 1573488 1573489 1573490 1573491 1573492 1573493 1573494 1573495 1573496
#> [28765] 1573497 1573507 1573508 1573509 1573514 1573516 1573519 1573521 1573523
#> [28774] 1573525 1573527 1573528 1573529 1573530 1573600 1573601 1573602 1573775
#> [28783] 1573776 1573988 1573996 1573997 1573998 1573999 1574000 1574001 1574002
#> [28792] 1574003 1574004 1574005 1574006 1574007 1574008 1574009 1574010 1574011
#> [28801] 1574012 1574013 1574014 1574015 1574016 1574017 1574018 1574019 1574020
#> [28810] 1574021 1574022 1574023 1574024 1574025 1574026 1574027 1574028 1574029
#> [28819] 1574030 1574031 1574032 1574033 1574034 1574035 1574036 1574037 1574038
#> [28828] 1574039 1574040 1574041 1574042 1574043 1574139 1574331 1574333 1574335
#> [28837] 1574336 1574338 1574341 1574342 1574343 1574345 1574347 1574348 1574354
#> [28846] 1574372 1574374 1574375 1574376 1574377 1574378 1574458 1574459 1574461
#> [28855] 1574674 1574680 1574876 1574877 1574923 1575028 1575038 1575039 1575040
#> [28864] 1575077 1575078 1575079 1575200 1575205 1575214 1575232 1575234 1575240
#> [28873] 1575286 1575508 1575514 1575672 1575677 1575678 1575822 1575947 1575948
#> [28882] 1576012 1576087 1576088 1576089 1576090 1576091 1576092 1576100 1576101
#> [28891] 1576105 1576152 1576153 1576154 1576216 1576218 1576220 1576222 1576224
#> [28900] 1576226 1576228 1576230 1576232 1576234 1576236 1576238 1576240 1576242
#> [28909] 1576244 1576273 1576274 1576275 1576276 1576277 1576278 1576380 1576399
#> [28918] 1576536 1576615 1576617 1576642 1576883 1577205 1577224 1577229 1577728
#> [28927] 1577808 1578067 1578068 1578069 1578070 1578075 1578127 1578450 1578451
#> [28936] 1578452 1578453 1578454 1578455 1578551 1578552 1578553 1578554 1578558
#> [28945] 1578559 1578560 1578564 1578566 1578567 1578568 1578569 1578570 1578571
#> [28954] 1578572 1578573 1578574 1578575 1578576 1578577 1578578 1578579 1578580
#> [28963] 1578581 1578582 1578583 1578584 1578585 1578586 1578587 1578588 1578590
#> [28972] 1578591 1578756 1579058 1579648 1579664 1579665 1579666 1579667 1579668
#> [28981] 1579669 1579670 1579671 1579718 1579719 1579743 1579752 1579763 1579775
#> [28990] 1579776 1579777 1579778 1579779 1579780 1579782 1579783 1579784 1579785
#> [28999] 1579786 1579787 1579815 1579907 1579908 1579931 1580106 1580107 1580220
#> [29008] 1580221 1580310 1580311 1580348 1580349 1580361 1580362 1580363 1580365
#> [29017] 1580366 1580386 1580651 1580667 1581153 1581155 1581409 1581411 1581419
#> [29026] 1581421 1581422 1581423 1581424 1581432 1581434 1581436 1581438 1581440
#> [29035] 1581603 1581734 1581748 1582242 1582243 1582244 1582245 1582246 1582626
#> [29044] 1582771 1583019 1583020 1583024 1583025 1583026 1583027 1583028 1583029
#> [29053] 1583077 1583297 1583304 1583306 1583307 1583482 1583483 1583484 1583684
#> [29062] 1583720 1583839 1583840 1583841 1583842 1583843 1583844 1583845 1583850
#> [29071] 1583851 1583852 1583855 1583856 1583857 1583861 1583862 1583870 1583871
#> [29080] 1584424 1584429 1584432 1584449 1584452 1584469 1584470 1584471 1584472
#> [29089] 1584609 1584610 1584732 1584733 1584761 1584762 1584763 1584767 1584919
#> [29098] 1584935 1584936 1584937 1584978 1584979 1584980 1584990 1584991 1584992
#> [29107] 1584993 1585174 1585176 1585399 1585457 1585501 1585514 1585872 1586838
#> [29116] 1586853 1586861 1586862 1586863 1586864 1586870 1586924 1586934 1586935
#> [29125] 1586936 1587045 1587047 1587048 1587049 1587050 1587110 1587111 1587115
#> [29134] 1587135 1587136 1587152 1587213 1587215 1587216 1587344 1587348 1587370
#> [29143] 1587377 1587384 1587743 1587872 1587873 1587874 1587875 1588008 1588160
#> [29152] 1588161 1588164 1588165 1588166 1588167 1588168 1588169 1588170 1588171
#> [29161] 1588172 1588173 1588174 1588175 1588176 1588179 1588180 1588181 1588182
#> [29170] 1588183 1588184 1588185 1588186 1588187 1588204 1588205 1588206 1588207
#> [29179] 1588208 1588209 1588210 1588211 1588212 1588213 1588214 1588233 1588234
#> [29188] 1588235 1588259 1588261 1588272 1588375 1588387 1588569 1588606 1588607
#> [29197] 1588608 1588609 1588610 1588611 1588612 1588613 1588614 1588615 1588857
#> [29206] 1588892 1588894 1588895 1588924 1588925 1589162 1589591 1589636 1589637
#> [29215] 1589638 1589651 1589652 1589654 1589657 1589661 1589664 1589667 1589669
#> [29224] 1589874 1589876 1589999 1590064 1590170 1590184 1590251 1590374 1591427
#> [29233] 1591431 1591438 1591442 1591444 1591601 1591602 1591639 1591640 1591641
#> [29242] 1591816 1591817 1591820 1591821 1591822 1591823 1591873 1591874 1591878
#> [29251] 1591920 1592016 1592017 1592180 1592181 1592182 1592183 1592244 1593403
#> [29260] 1593405 1593457 1593461 1593467 1593471 1593475 1593552 1593562 1593564
#> [29269] 1593565 1593607 1593608 1593755 1593918 1594022 1594037 1594066 1594104
#> [29278] 1594507 1594509 1594603 1594604 1594605 1594606 1594667 1594735 1594736
#> [29287] 1594835 1594874 1594875 1594876 1595499 1595500 1595501 1595512 1595520
#> [29296] 1595521 1595522 1595523 1595524 1595585 1595588 1595592 1595594 1595799
#> [29305] 1595914 1596009 1596151 1596176 1596187 1596188 1596713 1596751 1596752
#> [29314] 1596753 1597086 1597087 1597090 1597344 1597402 1597596 1597597 1597598
#> [29323] 1597599 1597600 1597601 1597812 1597813 1597909 1598083 1598084 1598085
#> [29332] 1598086 1598103 1598104 1598357 1598359 1598361 1598362 1598363 1598498
#> [29341] 1598499 1598501 1598510 1598514 1598530 1598556 1598558 1598560 1598562
#> [29350] 1598564 1598566 1598568 1598570 1598800 1599019 1599020 1599021 1599022
#> [29359] 1599026 1599027 1599029 1599031 1599033 1599285 1599287 1599288 1599289
#> [29368] 1599290 1599293 1599303 1599305 1599306 1599309 1599310 1599314 1599315
#> [29377] 1599316 1599317 1599319 1599320 1599321 1599323 1599324 1599335 1599337
#> [29386] 1599338 1599339 1599340 1599341 1599342 1599343 1599348 1599349 1599350
#> [29395] 1599351 1599352 1599353 1599354 1599356 1599357 1599358 1599359 1599361
#> [29404] 1599362 1599367 1599368 1599371 1599373 1599374 1599375 1599376 1599377
#> [29413] 1599379 1599380 1599381 1599382 1599383 1599385 1599386 1599387 1599388
#> [29422] 1599389 1599390 1599391 1599392 1599397 1599398 1599399 1599400 1599401
#> [29431] 1599402 1599403 1599404 1599408 1599414 1599415 1599418 1599722 1600059
#> [29440] 1600374 1600375 1600376 1600377 1600378 1600379 1600386 1600405 1600409
#> [29449] 1600457 1600459 1600460 1601241 1601261 1601265 1601339 1601349 1601350
#> [29458] 1601356 1601358 1601359 1601360 1601539 1601776 1601777 1601778 1601779
#> [29467] 1601780 1601783 1601966 1601969 1601970 1601974 1602161 1602162 1602163
#> [29476] 1602244 1602750 1602782 1602830 1602831 1602833 1602875 1603003 1603006
#> [29485] 1603008 1603009 1603010 1603029 1603207 1603246 1603247 1603248 1603251
#> [29494] 1603252 1603996 1603997 1603998 1603999 1604000 1604001 1604002 1604003
#> [29503] 1604004 1604005 1604006 1604007 1604008 1604009 1604010 1604011 1604012
#> [29512] 1604014 1604015 1604018 1604019 1604024 1604025 1604026 1604029 1604032
#> [29521] 1604033 1604034 1604038 1604039 1604136 1604137 1604203 1604208 1604209
#> [29530] 1604213 1604220 1604287 1604288 1604289 1604290 1604291 1604314 1604317
#> [29539] 1604318 1604319 1604321 1604322 1604326 1604327 1604328 1604420 1604523
#> [29548] 1604603 1604634 1604640 1604641 1604642 1604643 1604697 1604699 1604703
#> [29557] 1604730 1604731 1604732 1604872 1604886 1604888 1604909 1604910 1604912
#> [29566] 1604952 1604956 1604957 1604958 1604959 1604960 1604961 1604962 1604963
#> [29575] 1604964 1604998 1605098 1605103 1605279 1605285 1605307 1605308 1605309
#> [29584] 1605310 1605311 1605312 1605313 1605314 1605315 1605316 1605317 1605318
#> [29593] 1605385 1605386 1605390 1605391 1605427 1605432 1605435 1605625 1605626
#> [29602] 1605671 1605673 1605675 1605687 1605688 1605742 1606707 1606708 1606709
#> [29611] 1606710 1606711 1606712 1606713 1606731 1606844 1606847 1606882 1606885
#> [29620] 1606889 1606915 1606916 1606979 1606980 1606981 1606982 1606983 1606984
#> [29629] 1606985 1606986 1606987 1606988 1606989 1606990 1606991 1606992 1606993
#> [29638] 1606994 1606995 1606996 1607051 1607162 1607335 1607337 1607351 1607353
#> [29647] 1607354 1607355 1607373 1607374 1607402 1607404 1607406 1607555 1607603
#> [29656] 1607627 1607634 1607820 1607931 1608000 1608001 1608003 1608207 1608211
#> [29665] 1608423 1608437 1608444 1608451 1608453 1608456 1608923 1608925 1608927
#> [29674] 1608929 1608931 1609104 1609106 1609107 1609108 1609109 1609179 1609183
#> [29683] 1609193 1609320 1609321 1609458 1609479 1609483 1609484 1609537 1609879
#> [29692] 1609880 1609950 1609954 1609955 1609957 1609958 1609959 1609961 1609964
#> [29701] 1609966 1609974 1609975 1609977 1609979 1609980 1609981 1609983 1609984
#> [29710] 1609989 1609991 1609992 1609995 1609997 1609999 1610000 1610003 1610005
#> [29719] 1610006 1610007 1610015 1610016 1610017 1610021 1610022 1610023 1610024
#> [29728] 1610025 1610026 1610032 1610149 1610150 1610151 1610152 1610155 1610156
#> [29737] 1610157 1610158 1610159 1610160 1610163 1610164 1610165 1610166 1610167
#> [29746] 1610168 1610173 1610174 1610203 1610204 1610345 1610432 1610454 1610455
#> [29755] 1611182 1611366 1611537 1611652 1611710 1612006 1612074 1612075 1612080
#> [29764] 1612112 1612303 1612308 1612567 1612572 1612574 1612582 1612899 1613122
#> [29773] 1613576 1613577 1613578 1613608 1613767 1613785 1614108 1614291 1614292
#> [29782] 1614293 1614294 1614296 1614301 1614302 1614384 1614387 1614504 1614507
#> [29791] 1614512 1614517 1614518 1614519 1614520 1614526 1614721 1614723 1614745
#> [29800] 1614769 1614770 1614771 1614772 1614773 1614777 1614917 1614918 1614919
#> [29809] 1614920 1614925 1614927 1614971 1614972 1614973 1614974 1614975 1614976
#> [29818] 1614977 1614978 1614979 1614980 1614981 1615303 1615511 1615512 1615513
#> [29827] 1615514 1615515 1615516 1615517 1615522 1615523 1615524 1615525 1615532
#> [29836] 1615534 1615549 1615613 1615901 1616127 1616128 1616180 1616181 1616182
#> [29845] 1616183 1616184 1616189 1616190 1616221 1616223 1616316 1616357 1616358
#> [29854] 1616367 1616368 1616377 1616383 1616619 1616624 1616629 1616630 1616632
#> [29863] 1616634 1616636 1616641 1616642 1616643 1616644 1617012 1617013 1617014
#> [29872] 1617018 1617221 1617224 1617227 1617309 1617354 1617574 1617575 1617782
#> [29881] 1617947 1617948 1618073 1618092 1618141 1618143 1618473 1618705 1618707
#> [29890] 1618771 1618788 1618789 1618829 1618830 1618831 1618872 1618956 1619259
#> [29899] 1619328 1619330 1619360 1619361 1619389 1619390 1619391 1619395 1619397
#> [29908] 1619401 1619408 1619409 1619418 1619419 1619433 1619435 1619454 1619458
#> [29917] 1619459 1619463 1619466 1619468 1619471 1619474 1619516 1619517 1619518
#> [29926] 1619519 1619520 1619521 1619522 1619523 1619524 1619525 1619526 1619527
#> [29935] 1619528 1619529 1619530 1619531 1619532 1619533 1619534 1619535 1619536
#> [29944] 1619537 1619538 1619539 1619540 1619625 1619769 1619770 1619906 1619909
#> [29953] 1619917 1620560 1620563 1620565 1620571 1620644 1620645 1620646 1620651
#> [29962] 1620652 1620653 1620654 1620667 1620748 1620956 1620957 1621208 1621314
#> [29971] 1621315 1621316 1621317 1622033 1622034 1622062 1622063 1622064 1622065
#> [29980] 1622076 1622078 1622081 1622083 1622114 1622121 1622157 1622164 1622651
#> [29989] 1622867 1622868 1622869 1622870 1622871 1622872 1622873 1622942 1623199
#> [29998] 1623251 1623252 1623253 1623254 1623255 1623256 1623263 1623264 1623265
#> [30007] 1623266 1623296 1623297 1623298 1623306 1623307 1623322 1623323 1623327
#> [30016] 1623456 1623457 1623464 1623598 1623599 1623602 1623603 1623653 1623654
#> [30025] 1623655 1623656 1623657 1623658 1623659 1623660 1623662 1623922 1623923
#> [30034] 1623924 1623925 1623962 1623963 1623964 1623973 1623974 1623976 1623977
#> [30043] 1623978 1623979 1623980 1624066 1624067 1624104 1624110 1624249 1624250
#> [30052] 1624251 1624254 1624255 1624256 1624257 1624261 1624265 1624266 1624292
#> [30061] 1624318 1624660 1624661 1624665 1624666 1624667 1624668 1624669 1624670
#> [30070] 1624671 1624672 1624692 1624836 1624838 1625170 1625339 1625593 1625594
#> [30079] 1626149 1626150 1626151 1626152 1626166 1626207 1626208 1626257 1626259
#> [30088] 1626268 1626277 1626342 1626345 1626398 1626583 1626587 1626688 1626689
#> [30097] 1626690 1626691 1626920 1626922 1627010 1627013 1627030 1627064 1627131
#> [30106] 1627132 1627142 1627143 1627206 1627245 1627277 1627288 1627289 1627390
#> [30115] 1627391 1627406 1627407 1627607 1627608 1627673 1627858 1627985 1628003
#> [30124] 1628045 1628046 1628133 1628136 1628139 1628140 1628145 1628148 1628149
#> [30133] 1628285 1628286 1628311 1628313 1628351 1628352 1628353 1628354 1628355
#> [30142] 1628356 1628357 1628358 1628472 1628473 1628485 1628598 1628681 1628691
#> [30151] 1628695 1628699 1628700 1628983 1629008 1629031 1629032 1629033 1629072
#> [30160] 1629093 1629094 1629101 1629109 1629137 1629144 1629546 1629547 1629548
#> [30169] 1629549 1629550 1629551 1629552 1629553 1629554 1629646 1629756 1629758
#> [30178] 1629760 1629967 1629977 1630116 1630117 1630131 1630132 1630133 1630134
#> [30187] 1630135 1630136 1630179 1630180 1630181 1630182 1630183 1630184 1630185
#> [30196] 1630214 1630218 1630278 1630280 1630288 1630453 1630454 1630457 1630464
#> [30205] 1630465 1630476 1630664 1630665 1630669 1630670 1630673 1630680 1630910
#> [30214] 1631081 1631092 1631309 1631312 1631344 1631348 1631349 1631350 1631351
#> [30223] 1631352 1631353 1631354 1631355 1631360 1631361 1631362 1631363 1631364
#> [30232] 1631367 1631368 1631377 1631378 1631379 1631380 1631381 1631384 1631389
#> [30241] 1631393 1631395 1631397 1631399 1631400 1631401 1631402 1631403 1631404
#> [30250] 1631405 1631406 1631407 1631408 1631409 1631417 1631418 1631419 1631420
#> [30259] 1631421 1631425 1631426 1631427 1631428 1631429 1631432 1631433 1631436
#> [30268] 1631437 1631438 1631440 1631441 1631442 1631443 1631445 1631446 1631449
#> [30277] 1631452 1631453 1631465 1631466 1631467 1631468 1631469 1631470 1631471
#> [30286] 1631472 1631479 1631480 1631517 1631518 1631519 1631523 1631524 1631525
#> [30295] 1631529 1631530 1631532 1631534 1631535 1631538 1631541 1631542 1631630
#> [30304] 1631654 1631655 1631834 1631871 1631872 1631932 1632039 1632041 1632042
#> [30313] 1632044 1632073 1632074 1632173 1632174 1632187 1632245 1632485 1632613
#> [30322] 1632614 1632615 1632616 1632617 1632618 1632631 1632633 1632638 1632639
#> [30331] 1632681 1632733 1632747 1632766 1632776 1632812 1632814 1633103 1633267
#> [30340] 1633269 1633271 1633315 1633370 1633372 1633373 1633509 1633574 1633575
#> [30349] 1633576 1633603 1633604 1633605 1633629 1633726 1633728 1633732 1633734
#> [30358] 1633736 1633739 1633740 1633761 1633899 1633993 1634030 1634043 1634100
#> [30367] 1634142 1634168 1634170 1634172 1634173 1634175 1634176 1634177 1634178
#> [30376] 1634294 1634328 1634346 1634395 1634396 1634397 1634464 1634467 1634585
#> [30385] 1634587 1634589 1634591 1634642 1634644 1634649 1634822 1634823 1634948
#> [30394] 1635036 1635216 1635267 1635304 1635338 1635402 1635404 1635434 1635802
#> [30403] 1635805 1635894 1635900 1636088 1636089 1636092 1636116 1636117 1636151
#> [30412] 1636154 1636156 1636159 1636160 1636161 1636162 1636163 1636164 1636524
#> [30421] 1636527 1636566 1636591 1636592 1636593 1636595 1636598 1636599 1636600
#> [30430] 1636601 1636602 1636603 1636604 1636611 1636612 1636756 1636783 1636839
#> [30439] 1636841 1636927 1636929 1636930 1637147 1637148 1637388 1637389 1637393
#> [30448] 1637394 1637395 1637396 1637397 1637398 1637546 1637548 1637550 1637551
#> [30457] 1637552 1637553 1637554 1637612 1637794 1637795 1637796 1637802 1637803
#> [30466] 1638019 1638125 1638165 1638166 1638167 1638168 1638411 1638412 1638413
#> [30475] 1638587 1638588 1638589 1638600 1638643 1638644 1638695 1638718 1638719
#> [30484] 1638723 1638724 1638746 1638813 1638819 1638820 1638821 1638822 1638823
#> [30493] 1639672 1639697 1640001 1640002 1640003 1640004 1640005 1640006 1640007
#> [30502] 1640008 1645896 1645904 1645905 1645917 1645918 1645924 1645925 1645926
#> [30511] 1645927 1646215 1646220 1646228 1646248 1646305 1646329 1646409 1646797
#> [30520] 1646801 1646831 1646838 1646839 1646972 1647079 1647080 1647295 1647350
#> [30529] 1647355 1647357 1647670 1647699 1647862 1647863 1647982 1648106 1648109
#> [30538] 1648113 1648114 1648124 1648125 1648179 1648181 1648380 1648382 1648384
#> [30547] 1648385 1648542 1648554 1648555 1648556 1648557 1648558 1648559 1648560
#> [30556] 1648569 1648570 1648571 1648572 1648573 1648654 1648826 1648827 1648862
#> [30565] 1648863 1648864 1648865 1648866 1648867 1648868 1648869 1648870 1648871
#> [30574] 1648872 1649104 1649246 1649327 1649328 1649329 1649330 1649331 1649332
#> [30583] 1649343 1649347 1649456 1649635 1649637 1649640 1649641 1649642 1649643
#> [30592] 1649644 1649646 1649698 1649710 1649713 1649715 1649719 1649720 1649762
#> [30601] 1649767 1649768 1649769 1649770 1649792 1649793 1649794 1649928 1650003
#> [30610] 1650004 1650006 1650007 1650008 1650009 1650010 1650011 1650012 1650013
#> [30619] 1650023 1650066 1650067 1650120 1650128 1650129 1650131 1650132 1650133
#> [30628] 1650136 1650181 1650183 1650184 1650185 1650186 1650187 1650367 1650369
#> [30637] 1650394 1650396 1650443 1650445 1650453 1650454 1650455 1650458 1650496
#> [30646] 1650499 1650500 1650501 1650504 1650505 1650619 1650631 1650632 1650662
#> [30655] 1650663 1650707 1650805 1650807 1650810 1650811 1650889 1651056 1651145
#> [30664] 1651148 1651149 1651178 1651208 1651212 1651273 1651329 1651350 1651351
#> [30673] 1651362 1651436 1651440 1651575 1651578 1651605 1651606 1652585 1652586
#> [30682] 1652587 1652756 1652801 1652959 1652960 1652978 1652979 1653374 1653850
#> [30691] 1653866 1654302 1654307 1654496 1654843 1654847 1654865 1654866 1654868
#> [30700] 1654869 1654870 1654878 1654879 1654880 1654881 1655056 1655057 1655058
#> [30709] 1655361 1655381 1655383 1655385 1655442 1655447 1655448 1655449 1655450
#> [30718] 1655473 1655475 1655477 1655478 1655479 1655480 1655483 1655484 1655494
#> [30727] 1655532 1655608 1655609 1655610 1655611 1655612 1655613 1655614 1655615
#> [30736] 1655616 1655702 1655978 1656204 1656216 1656217 1656218 1656222 1656373
#> [30745] 1656407 1656408 1656409 1656410 1656454 1656759 1656767 1656824 1656827
#> [30754] 1656830 1656835 1656837 1656888 1656889 1656890 1656891 1656892 1656893
#> [30763] 1656894 1656895 1656901 1656919 1656948 1656949 1656986 1656992 1656993
#> [30772] 1657021 1657026 1657474 1657478 1657485 1657599 1658032 1658036 1658103
#> [30781] 1658165 1658166 1658252 1658330 1658331 1658332 1658333 1658362 1658371
#> [30790] 1658402 1658403 1658408 1658431 1658432 1658436 1658437 1658438 1658439
#> [30799] 1658440 1658441 1658522 1658523 1658524 1658525 1658526 1658705 1658707
#> [30808] 1658720 1658771 1659026 1659027 1659028 1659071 1659072 1659078 1659079
#> [30817] 1659094 1659095 1659174 1659178 1659179 1659259 1659261 1659464 1659634
#> [30826] 1659635 1659636 1659637 1659638 1659724 1659750 1660011 1660036 1660037
#> [30835] 1660198 1660548 1660549 1660550 1660551 1660582 1660591 1660607 1660609
#> [30844] 1660613 1660614 1660615 1660617 1660618 1660626 1660627 1660787 1660788
#> [30853] 1660911 1660932 1660944 1660946 1660948 1660976 1660977 1660978 1660979
#> [30862] 1660981 1660985 1660986 1660987 1660988 1660997 1660998 1661019 1661022
#> [30871] 1661024 1661025 1661029 1661122 1661150 1661185 1661186 1661187 1661188
#> [30880] 1661189 1661190 1661193 1661334 1661337 1661638 1661639 1661640 1661641
#> [30889] 1661706 1661753 1662036 1662037 1662040 1662060 1662061 1662068 1662096
#> [30898] 1662097 1662144 1662145 1662146 1662160 1662183 1662187 1662188 1662189
#> [30907] 1662190 1662191 1662192 1662194 1662459 1662470 1662505 1662506 1662573
#> [30916] 1662574 1662651 1662654 1662667 1662668 1663001 1663485 1663649 1663793
#> [30925] 1663794 1663954 1663955 1663956 1663957 1663958 1663959 1663987 1664088
#> [30934] 1664089 1664304 1664326 1664367 1664654 1664669 1664695 1664945 1665151
#> [30943] 1665177 1665180 1665182 1665190 1665219 1665220 1665222 1665224 1665225
#> [30952] 1665714 1665717 1665718 1665719 1665720 1666144 1666146 1666149 1666151
#> [30961] 1666167 1666213 1666214 1666221 1666470 1666471 1666528 1666530 1666531
#> [30970] 1666534 1666535 1666545 1666546 1666608 1666732 1666733 1666796 1666938
#> [30979] 1666939 1666959 1667101 1667102 1667103 1667104 1667105 1667106 1667107
#> [30988] 1667108 1667132 1667135 1667249 1667421 1667429 1667432 1667433 1667517
#> [30997] 1667519 1667526 1667630 1667631 1667820 1667869 1667871 1667872 1667873
#> [31006] 1667874 1668027 1668143 1668144 1668145 1668146 1668168 1668169 1668238
#> [31015] 1668245 1668284 1668290 1668291 1668298 1668342 1668517 1668522 1668534
#> [31024] 1668538 1668545 1668582 1668584 1668602 1668603 1668604 1668605 1668606
#> [31033] 1668607 1668619 1669026 1669030 1669086 1669087 1669135 1669164 1669165
#> [31042] 1669457 1669479 1669483 1671487 1671488 1671489 1671490 1671504 1671519
#> [31051] 1672248 1672249 1672252 1672253 1672277 1672278 1672279 1672280 1672281
#> [31060] 1672282 1672330 1672332 1672670 1672678 1672882 1672883 1672884 1672907
#> [31069] 1672908 1672997 1673000 1673010 1673012 1673014 1673015 1673016 1673029
#> [31078] 1673031 1673033 1673035 1673036 1673037 1673254 1673422 1673626 1673911
#> [31087] 1674397 1674465 1674506 1674785 1674967 1674968 1674986 1675002 1675009
#> [31096] 1675010 1675011 1675012 1675014 1675015 1675016 1675026 1675040 1675041
#> [31105] 1675066 1675134 1675439 1675440 1675441 1675442 1675443 1675444 1675462
#> [31114] 1675602 1675603 1675604 1675605 1675606 1675696 1675698 1675699 1675700
#> [31123] 1675702 1675703 1675708 1675745 1675751 1675759 1675761 1675763 1675889
#> [31132] 1675963 1675987 1675989 1675991 1675993 1676006 1676012 1676013 1676149
#> [31141] 1676249 1676251 1676256 1676258 1676261 1676263 1676323 1676456 1676457
#> [31150] 1676481 1676487 1676577 1676652 1676653 1676738 1676739 1676740 1676741
#> [31159] 1676742 1676743 1676753 1676754 1676755 1676763 1676765 1676769 1676920
#> [31168] 1676922 1676923 1676924 1676949 1677320 1677325 1677490 1677491 1677513
#> [31177] 1677514 1677515 1677517 1677677 1677760 1677762 1678115 1678116 1678333
#> [31186] 1678554 1678563 1678659 1678692 1678693 1678699 1678700 1678704 1678705
#> [31195] 1678706 1678707 1678708 1678709 1678716 1678821 1678855 1678919 1678920
#> [31204] 1678921 1678922 1678923 1678924 1678925 1678926 1678948 1678967 1678975
#> [31213] 1678976 1679036 1679037 1679038 1679164 1679178 1679215 1679216 1679348
#> [31222] 1679377 1679381 1679385 1679416 1679417 1680141 1680588 1680589 1680661
#> [31231] 1680662 1680665 1680863 1681130 1681131 1681217 1681220 1681223 1681226
#> [31240] 1681229 1681656 1681660 1681661 1681662 1681663 1681664 1681665 1681666
#> [31249] 1681777 1682090 1682191 1682193 1682197 1682203 1682204 1682206 1682211
#> [31258] 1682214 1682215 1682216 1682217 1682330 1682331 1682364 1682365 1682366
#> [31267] 1682372 1682765 1682766 1682975 1683206 1683208 1683210 1683229 1683230
#> [31276] 1683231 1683236 1683253 1683254 1683259 1683260 1683261 1683262 1683263
#> [31285] 1683264 1683509 1683510 1683511 1683512 1683513 1683514 1683850 1683851
#> [31294] 1683852 1683853 1683863 1683865 1683888 1683894 1684275 1684453 1684454
#> [31303] 1684632 1684634 1684640 1684642 1684797 1684798 1684799 1684800 1684802
#> [31312] 1684803 1684804 1684805 1684808 1684809 1684814 1684815 1684816 1684817
#> [31321] 1685030 1685031 1685033 1685034 1685035 1685040 1685089 1685254 1685258
#> [31330] 1685324 1685475 1685493 1685500 1685502 1685504 1685506 1685509 1685512
#> [31339] 1685514 1685580 1685583 1685957 1685958 1685959 1685960 1685961 1685962
#> [31348] 1685963 1685964 1686001 1686002 1686003 1686004 1686005 1686015 1686017
#> [31357] 1686019 1686020 1686021 1686022 1686023 1686024 1686025 1686026 1686027
#> [31366] 1686028 1686029 1686030 1686031 1686037 1686038 1686079 1686083 1686087
#> [31375] 1686091 1686094 1686099 1686100 1686111 1686112 1686120 1686123 1686127
#> [31384] 1686137 1686184 1686192 1686196 1686198 1686200 1686202 1686203 1686206
#> [31393] 1686312 1686358 1686359 1686360 1686361 1686362 1686363 1686498 1686499
#> [31402] 1686500 1686501 1686652 1686655 1686711 1687152 1687298 1687299 1687302
#> [31411] 1687329 1687332 1687593 1687594 1687595 1687680 1687681 1687682 1687683
#> [31420] 1687684 1687685 1687728 1687729 1687730 1688348 1688349 1688350 1688352
#> [31429] 1688353 1688371 1688372 1688373 1688374 1688375 1688376 1688377 1688378
#> [31438] 1688379 1688380 1688502 1688552 1688599 1688750 1688751 1688789 1688790
#> [31447] 1688791 1688794 1688795 1688797 1688799 1689108 1689111 1689342 1689343
#> [31456] 1689521 1689523 1689527 1689594 1689595 1689596 1689887 1689889 1689898
#> [31465] 1689899 1690294 1690361 1690379 1690421 1690423 1690426 1690429 1690845
#> [31474] 1690846 1691179 1691211 1691233 1691281 1691305 1691306 1691307 1691308
#> [31483] 1691309 1691310 1691311 1691312 1691435 1691436 1691539 1691540 1691550
#> [31492] 1691551 1691559 1691560 1691561 1691562 1691837 1691839 1691840 1691841
#> [31501] 1691842 1691843 1691847 1691869 1691870 1691956 1691957 1691958 1691962
#> [31510] 1691964 1691966 1692496 1692573 1692575 1692576 1692577 1692599 1692629
#> [31519] 1692634 1692635 1692742 1692745 1692753 1692809 1693190 1693221 1693222
#> [31528] 1693224 1693226 1693228 1693230 1693232 1693233 1693234 1693353 1693429
#> [31537] 1693430 1693435 1693470 1693799 1693808 1694022 1694023 1694068 1694157
#> [31546] 1694163 1694164 1694165 1694166 1694292 1694293 1694463 1694464 1694520
#> [31555] 1694572 1694921 1695027 1695031 1695188 1695217 1695253 1695256 1695444
#> [31564] 1695445 1695460 1695461 1695462 1695463 1695464 1695466 1695467 1695972
#> [31573] 1696047 1696048 1696049 1696050 1696051 1696052 1696053 1696054 1696055
#> [31582] 1696056 1696057 1696058 1696059 1696060 1696061 1696062 1696063 1696064
#> [31591] 1696065 1696066 1696067 1696068 1696069 1696070 1696071 1696072 1696073
#> [31600] 1696074 1696075 1696076 1696077 1696078 1696079 1696080 1696081 1696082
#> [31609] 1696083 1696084 1696085 1696086 1696087 1696088 1696089 1696090 1696091
#> [31618] 1696092 1696093 1696094 1696095 1696122 1696123 1696125 1696126 1696139
#> [31627] 1696237 1696244 1696395 1696445 1696446 1696448 1696450 1696461 1696496
#> [31636] 1696497 1696499 1696516 1696536 1696537 1696538 1696545 1696546 1696547
#> [31645] 1696548 1696549 1696753 1696754 1696758 1696759 1696760 1696761 1696762
#> [31654] 1696763 1696893 1696894 1696925 1696926 1697030 1697040 1697042 1697044
#> [31663] 1697046 1697048 1697128 1697210 1697371 1698073 1698076 1698077 1698084
#> [31672] 1698085 1698086 1698166 1698180 1698319 1698651 1698654 1698658 1698659
#> [31681] 1698661 1698663 1698666 1698669 1698671 1698717 1698718 1698730 1698731
#> [31690] 1698732 1698915 1698942 1698943 1698944 1698945 1698946 1698947 1698949
#> [31699] 1699190 1699451 1699461 1699462 1699777 1699803 1699805 1699806 1699817
#> [31708] 1699818 1699890 1699892 1699903 1699904 1699914 1699916 1699917 1699918
#> [31717] 1699919 1700035 1700036 1700044 1700072 1700075 1700089 1700090 1700402
#> [31726] 1700416 1700417 1700419 1700420 1700421 1700426 1700428 1700524 1700535
#> [31735] 1700551 1700577 1700580 1700726 1700727 1700728 1700749 1700751 1700833
#> [31744] 1700834 1700835 1700836 1700852 1701016 1701019 1701325 1701327 1701329
#> [31753] 1701331 1701333 1701528 1701622 1701628 1701629 1701659 1701775 1702091
#> [31762] 1702092 1702141 1702142 1702323 1702325 1702327 1702329 1702738 1703103
#> [31771] 1703310 1703568 1703579 1703587 1703608 1703609 1703610 1703611 1703613
#> [31780] 1703620 1703621 1703622 1703623 1703845 1703891 1703893 1703894 1703895
#> [31789] 1704055 1704218 1704258 1704264 1704638 1704728 1704731 1704735 1704739
#> [31798] 1704743 1705183 1705186 1705187 1705188 1705189 1706041 1706081 1706087
#> [31807] 1706237 1706238 1706239 1706240 1706241 1706242 1706244 1706245 1706246
#> [31816] 1706247 1706248 1706249 1706384 1706530 1706537 1706733 1706899 1706902
#> [31825] 1706903 1707044 1707045 1707046 1707047 1707048 1707049 1707050 1707051
#> [31834] 1707052 1707053 1707054 1707068 1707248 1707251 1707314 1707371 1707372
#> [31843] 1707373 1707374 1707375 1707630 1707643 1707782 1708003 1708340 1708343
#> [31852] 1708346 1708449 1708450 1708687 1708688 1708689 1708691 1708692 1708693
#> [31861] 1708694 1708713 1709009 1709065 1709068 1709069 1709099 1709159 1709160
#> [31870] 1709163 1709177 1709178 1709179 1709298 1709386 1709549 1709628 1709683
#> [31879] 1709718 1709939 1709981 1709982 1709988 1709990 1709995 1709996 1710056
#> [31888] 1710057 1710058 1710059 1710060 1710109 1710120 1710121 1710122 1710123
#> [31897] 1710124 1710125 1710126 1710128 1710129 1710130 1710132 1710133 1710135
#> [31906] 1710153 1710172 1710306 1710467 1710468 1710521 1710669 1710677 1710765
#> [31915] 1710766 1710774 1710775 1710776 1710781 1710782 1710783 1710784 1710785
#> [31924] 1710790 1710791 1710792 1710795 1710796 1710797 1710798 1711544 1711582
#> [31933] 1711585 1711599 1711748 1712017 1712020 1712274 1712279 1712282 1712286
#> [31942] 1712301 1712310 1712323 1712324 1712325 1712415 1712417 1712430 1712431
#> [31951] 1712432 1712433 1712434 1712459 1713088 1713552 1713553 1713554 1713568
#> [31960] 1713770 1713771 1713801 1714073 1714074 1714076 1714080 1714081 1714188
#> [31969] 1714189 1714190 1714191 1714192 1714193 1714194 1714195 1714196 1714197
#> [31978] 1714201 1714203 1714204 1714205 1714206 1714207 1714217 1714218 1714219
#> [31987] 1714220 1714233 1714249 1714251 1714253 1714255 1714259 1714350 1714352
#> [31996] 1714354 1714357 1714359 1714417 1714420 1714422 1714426 1714429 1714433
#> [32005] 1714436 1714452 1714462 1714463 1714464 1714465 1714467 1714468 1714469
#> [32014] 1714470 1714500 1714502 1714504 1714548 1714552 1714568 1714574 1714581
#> [32023] 1714588 1714640 1714641 1714889 1714890 1715883 1716436 1716437 1716510
#> [32032] 1716511 1716514 1716521 1716522 1716553 1716554 1716555 1716975 1716982
#> [32041] 1716986 1716987 1716992 1716995 1716998 1717265 1717745 1717748 1717751
#> [32050] 1717754 1717756 1717759 1717762 1717769 1717772 1717796 1717797 1717803
#> [32059] 1717814 1718103 1718104 1718114 1718502 1718997 1719011 1719012 1719306
#> [32068] 1719307 1719371 1719372 1719425 1719426 1719427 1719434 1719443 1719530
#> [32077] 1719532 1719534 1719536 1719538 1719542 1719629 1719659 1719699 1719704
#> [32086] 1719705 1719706 1719708 1719721 1719745 1719746 1719747 1719748 1719749
#> [32095] 1719801 1719826 1720026 1720065 1720085 1720087 1720092 1720125 1720126
#> [32104] 1720225 1720227 1720229 1720256 1720257 1720277 1720278 1720295 1720303
#> [32113] 1720304 1720306 1720309 1720310 1720311 1720312 1720313 1720315 1720360
#> [32122] 1720361 1720439 1720441 1720498 1720499 1720500 1720501 1720506 1720508
#> [32131] 1720510 1720511 1720512 1720513 1720530 1720618 1720634 1720637 1720638
#> [32140] 1720643 1720821 1720822 1720836 1720837 1721280 1721283 1721284 1721285
#> [32149] 1721329 1721603 1721615 1721616 1721668 1721669 1721673 1721674 1721675
#> [32158] 1721676 1721793 1721794 1721798 1721799 1721800 1721801 1721802 1721803
#> [32167] 1721804 1721899 1722006 1722007 1722008 1722009 1722010 1722043 1722046
#> [32176] 1722324 1722469 1722505 1722506 1723061 1723069 1723074 1723456 1723459
#> [32185] 1723463 1723465 1723467 1723470 1723473 1723559 1723950 1723954 1723962
#> [32194] 1723963 1723964 1724183 1724184 1724190 1724305 1724308 1724312 1724377
#> [32203] 1724436 1724440 1724441 1724446 1724505 1724506 1724507 1724577 1724578
#> [32212] 1724579 1724580 1724581 1724586 1724592 1724594 1724595 1724596 1724597
#> [32221] 1724777 1724819 1724841 1724842 1724843 1724883 1724885 1724943 1724951
#> [32230] 1725104 1725216 1725217 1725218 1725219 1725221 1725222 1725223 1725225
#> [32239] 1725226 1725227 1725228 1725307 1725308 1725370 1725372 1725375 1725377
#> [32248] 1725470 1725628 1725633 1725688 1725689 1725690 1725692 1725693 1725694
#> [32257] 1725695 1725716 1725717 1725718 1725772 1725773 1725853 1725854 1725855
#> [32266] 1725928 1725929 1725930 1725931 1725932 1725933 1725934 1725935 1725936
#> [32275] 1726066 1726069 1726073 1726156 1726162 1726174 1726175 1726180 1726181
#> [32284] 1726204 1726263 1726667 1726721 1726722 1726723 1726724 1726725 1726726
#> [32293] 1726727 1726728 1726729 1726730 1726775 1726778 1726781 1726783 1726786
#> [32302] 1726787 1726788 1726789 1726895 1727013 1727061 1727068 1727070 1727071
#> [32311] 1727072 1727252 1727352 1727353 1727360 1727361 1727363 1727379 1727380
#> [32320] 1727396 1727455 1727473 1727475 1727477 1727479 1727481 1727484 1727487
#> [32329] 1727546 1727550 1727551 1727552 1727755 1727757 1727758 1728104 1728107
#> [32338] 1728109 1728167 1728710 1728712 1728727 1728740 1728762 1728767 1728880
#> [32347] 1728881 1729012 1729149 1729150 1729156 1729157 1729158 1729159 1729160
#> [32356] 1729161 1729865 1729866 1729867 1729869 1729928 1729931 1729959 1729960
#> [32365] 1729961 1729962 1729975 1729976 1729978 1729979 1730206 1730251 1730258
#> [32374] 1730376 1730772 1730774 1730776 1730778 1730779 1730780 1730841 1730899
#> [32383] 1730909 1731265 1731310 1731320 1731322 1731413 1731416 1731419 1731426
#> [32392] 1731428 1731461 1731590 1731597 1731600 1731608 1731618 1731743 1731746
#> [32401] 1731747 1731748 1731749 1731750 1731751 1731752 1731887 1732080 1732081
#> [32410] 1732082 1732463 1732464 1732465 1732466 1732467 1732468 1732469 1732470
#> [32419] 1732471 1732472 1732474 1732482 1732504 1732749 1732870 1732871 1733128
#> [32428] 1733660 1733681 1733682 1733683 1733684 1733685 1733686 1733687 1733688
#> [32437] 1733689 1733690 1733691 1733711 1733713 1733777 1733823 1733824 1733826
#> [32446] 1733828 1733834 1733835 1733836 1733837 1733845 1733849 1733861 1733930
#> [32455] 1733941 1733946 1733949 1733982 1734104 1734171 1734487 1734500 1734501
#> [32464] 1734502 1734503 1734504 1734505 1734530 1734531 1734553 1734582 1734650
#> [32473] 1734871 1734873 1734875 1734877 1734879 1734911 1734913 1734915 1735818
#> [32482] 1735820 1735822 1735824 1735826 1735827 1735828 1736155 1736271 1736273
#> [32491] 1736283 1736284 1736285 1736344 1736348 1736356 1736357 1736358 1736359
#> [32500] 1736360 1736361 1736369 1736370 1736371 1736693 1736703 1736732 1736754
#> [32509] 1737347 1737348 1737363 1737435 1737708 1737712 1737715 1737717 1737728
#> [32518] 1737730 1738341 1739127 1739145 1739146 1739147 1739385 1740558 1740560
#> [32527] 1740562 1740564 1740565 1740566 1740567 1740568 1740724 1740726 1740811
#> [32536] 1740812 1740822 1740829 1740837 1740838 1740839 1740840 1740841 1740842
#> [32545] 1740843 1740849 1740850 1740851 1740852 1740853 1740854 1740864 1740865
#> [32554] 1740867 1740868 1740871 1740872 1740874 1740876 1740880 1741060 1741061
#> [32563] 1741390 1741393 1741394 1741395 1741396 1741397 1741398 1741399 1742092
#> [32572] 1742367 1742369 1742371 1742373 1742374 1742375 1742535 1742777 1743087
#> [32581] 1743088 1743089 1743091 1743351 1743352 1743353 1743354 1743355 1743356
#> [32590] 1743357 1743358 1743361 1743362 1743421 1743472 1743473 1743474 1743475
#> [32599] 1743476 1743477 1743571 1743618 1743619 1743626 1743627 1743628 1743629
#> [32608] 1743630 1743631 1743682 1743773 1743775 1743783 1743784 1743785 1743786
#> [32617] 1743787 1743788 1743948 1743949 1743951 1744114 1744119 1744120 1744260
#> [32626] 1744358 1744359 1744361 1744363 1744381 1744385 1744386 1744407 1744464
#> [32635] 1744471 1744483 1744487 1744488 1744489 1744490 1744491 1744492 1747923
#> [32644] 1748534 1748550 1748649 1748650 1748756 1748757 1748840 1748841 1748843
#> [32653] 1748844 1748985 1748986 1749716 1749717 1749739 1749751 1749752 1749753
#> [32662] 1749754 1749756 1749757 1749758 1749770 1749788 1749789 1749891 1749892
#> [32671] 1749980 1749981 1749982 1750089 1750091 1750094 1750096 1750128 1750129
#> [32680] 1750130 1750177 1750322 1750371 1750492 1750494 1750495 1750497 1750499
#> [32689] 1750501 1750503 1750505 1750507 1750509 1750513 1750515 1750518 1750519
#> [32698] 1750520 1750521 1750522 1750523 1750524 1750525 1750526 1750714 1750717
#> [32707] 1750718 1750719 1750720 1750721 1750736 1750737 1750788 1750789 1750818
#> [32716] 1750819 1750883 1750924 1750925 1750977 1750982 1751312 1751499 1751531
#> [32725] 1751543 1751787 1752134 1752138 1752139 1752168 1752297 1752298 1752299
#> [32734] 1752375 1752376 1752379 1752380 1752385 1752386 1752390 1752684 1752692
#> [32743] 1752718 1752723 1752724 1752727 1752839 1752840 1753186 1753187 1753188
#> [32752] 1753189 1753366 1753368 1753479 1753550 1753551 1753552 1753729 1753730
#> [32761] 1753746 1753747 1753880 1753894 1754007 1754120 1754121 1754122 1754123
#> [32770] 1754124 1754125 1754126 1754127 1754128 1754129 1754130 1754202 1754305
#> [32779] 1754311 1754312 1754313 1754399 1754400 1754401 1754402 1754438 1754637
#> [32788] 1754641 1754642 1754643 1754644 1754645 1754646 1754647 1754657 1754658
#> [32797] 1754842 1754844 1754845 1754846 1754847 1755101 1755102 1755103 1755104
#> [32806] 1755534 1755689 1755690 1755851 1755962 1755980 1755981 1755982 1756053
#> [32815] 1756654 1756656 1756658 1756665 1756667 1756674 1756810 1756812 1757088
#> [32824] 1757139 1757141 1757142 1757144 1757145 1757146 1757147 1757389 1757456
#> [32833] 1757458 1757459 1757460 1757888 1757889 1757965 1757968 1757975 1757978
#> [32842] 1757981 1757984 1757987 1757990 1757993 1757996 1758197 1758198 1758294
#> [32851] 1758295 1758652 1758989 1758992 1758994 1758996 1758998 1759001 1759070
#> [32860] 1759073 1759139 1759315 1759558 1759561 1759723 1759755 1760063 1760065
#> [32869] 1760066 1760068 1760069 1760070 1760071 1760081 1760128 1760513 1760514
#> [32878] 1760515 1760524 1760528 1760529 1760530 1760531 1760532 1760533 1760534
#> [32887] 1760535 1760537 1760538 1760539 1760540 1760541 1760542 1760543 1760544
#> [32896] 1760545 1760547 1760548 1760551 1760810 1760813 1760824 1761006 1761009
#> [32905] 1761010 1761014 1761015 1761016 1761017 1761018 1761019 1761020 1761036
#> [32914] 1761038 1761262 1761301 1761302 1761303 1761304 1761322 1761328 1761329
#> [32923] 1761330 1761471 1761713 1761806 1761807 1761818 1761819 1761820 1761821
#> [32932] 1761822 1761823 1762005 1762006 1762010 1762011 1762012 1762956 1763019
#> [32941] 1763366 1763559 1763571 1763573 1763734 1763807 1763808 1763845 1763846
#> [32950] 1763847 1763857 1763858 1763859 1763860 1763861 1763862 1763863 1763897
#> [32959] 1763898 1763899 1763900 1763901 1763902 1763903 1763904 1763905 1763910
#> [32968] 1764005 1764006 1764009 1764021 1764053 1764149 1764403 1764443 1764445
#> [32977] 1764449 1764451 1764453 1764454 1764817 1764873 1764884 1764902 1764904
#> [32986] 1764914 1765010 1765011 1765012 1765013 1765016 1765017 1765018 1765022
#> [32995] 1765172 1765173 1765174 1765177 1765178 1765505 1765692 1765804 1765969
#> [33004] 1766122 1766126 1766127 1766128 1766129 1766130 1766168 1766313 1766418
#> [33013] 1766419 1766430 1766431 1766432 1766433 1766434 1766435 1766436 1766437
#> [33022] 1766438 1766456 1766673 1766708 1766731 1766739 1766740 1766761 1766774
#> [33031] 1766775 1766776 1767115 1767119 1767471 1767521 1767797 1767798 1767800
#> [33040] 1767803 1767805 1767806 1767807 1767809 1767844 1767845 1768141 1768566
#> [33049] 1768567 1768579 1768595 1768669 1768695 1768714 1768715 1768716 1768789
#> [33058] 1768790 1768805 1768826 1768827 1768828 1769171 1769259 1769261 1769262
#> [33067] 1769263 1769268 1769269 1769270 1769290 1769402 1769410 1769411 1769596
#> [33076] 1769617 1769632 1769749 1769753 1769754 1769755 1769756 1769757 1769895
#> [33085] 1770442 1770462 1770463 1770500 1770695 1771013 1771014 1771015 1771016
#> [33094] 1771092 1771356 1771367 1771449 1771452 1771774 1771945 1771947 1771948
#> [33103] 1771950 1771956 1771957 1772265 1772266 1772991 1772996 1772997 1772998
#> [33112] 1772999 1773000 1773001 1773067 1773069 1773078 1773079 1773080 1773081
#> [33121] 1773082 1773083 1773102 1773103 1773104 1773105 1773106 1773107 1773108
#> [33130] 1773118 1773124 1773307 1773308 1773420 1773427 1773428 1773429 1773439
#> [33139] 1773440 1773441 1773445 1773446 1773447 1773448 1773449 1773450 1773582
#> [33148] 1773584 1773586 1773689 1773692 1773826 1773827 1773835 1773836 1773837
#> [33157] 1773838 1773839 1773840 1774049 1774054 1774169 1774170 1774300 1774301
#> [33166] 1774302 1774303 1774304 1774305 1774306 1774307 1774465 1774519 1774520
#> [33175] 1774610 1774611 1774612 1774613 1774614 1774615 1774876 1774997 1774998
#> [33184] 1775036 1775048 1775273 1775347 1775348 1775360 1775481 1775484 1775491
#> [33193] 1775492 1775493 1775494 1775516 1775517 1775676 1775677 1775791 1775792
#> [33202] 1775793 1775797 1775798 1775799 1775800 1775801 1775802 1775841 1775922
#> [33211] 1775923 1775924 1776104 1776128 1776129 1776302 1776304 1776305 1776307
#> [33220] 1776308 1776310 1776311 1776480 1776482 1776489 1776563 1776564 1776623
#> [33229] 1777163 1777329 1777521 1777531 1777606 1777610 1777613 1777679 1777680
#> [33238] 1777936 1778223 1778301 1778302 1778303 1778304 1778340 1778341 1778342
#> [33247] 1778343 1778344 1778345 1778424 1778425 1778427 1778627 1778629 1778630
#> [33256] 1778633 1778970 1778971 1779254 1779646 1779648 1779666 1779761 1779762
#> [33265] 1779763 1780027 1780028 1780034 1780035 1780052 1780057 1780058 1780114
#> [33274] 1780131 1780140 1780141 1780157 1780217 1780359 1780508 1780511 1780617
#> [33283] 1780660 1780661 1780680 1780682 1780683 1780684 1780685 1780686 1780687
#> [33292] 1780688 1780702 1780703 1780712 1781161 1781162 1781171 1781172 1781410
#> [33301] 1781411 1781413 1781472 1781473 1781889 1781909 1781926 1781931 1781932
#> [33310] 1782120 1782215 1782266 1782292 1782294 1782303 1782305 1782307 1782309
#> [33319] 1782412 1782413 1782420 1782422 1782430 1782432 1782434 1782436 1782447
#> [33328] 1782451 1782452 1782453 1782454 1782455 1782518 1782519 1782619 1782672
#> [33337] 1782673 1782674 1782675 1782681 1782682 1782683 1782688 1782691 1782692
#> [33346] 1782697 1782698 1782703 1782704 1782705 1782707 1782711 1782712 1782713
#> [33355] 1782732 1782733 1782735 1782747 1783015 1783418 1783419 1783429 1783430
#> [33364] 1783431 1783432 1783434 1783435 1783613 1783614 1783617 1783619 1783621
#> [33373] 1783622 1783623 1783624 1783628 1783632 1783637 1783834 1784201 1784206
#> [33382] 1784207 1784208 1784211 1784212 1784213 1784214 1784215 1784216 1784314
#> [33391] 1784315 1784316 1784398 1784400 1784404 1784406 1784435 1784436 1784437
#> [33400] 1784438 1784439 1784440 1784464 1784465 1784505 1784623 1784624 1785245
#> [33409] 1785246 1785405 1785765 1785830 1785831 1785856 1785857 1785884 1786122
#> [33418] 1786123 1787214 1787215 1787592 1787593 1787594 1787595 1787596 1787597
#> [33427] 1787598 1787599 1787758 1787870 1787871 1788241 1788687 1788846 1788847
#> [33436] 1788848 1788849 1789640 1789646 1789647 1789648 1789649 1789650 1789651
#> [33445] 1789652 1789653 1789654 1789655 1789656 1789658 1789659 1789660 1789661
#> [33454] 1790813 1790814 1790873 1790874 1790889 1790909 1791540 1791543 1791544
#> [33463] 1791545 1791546 1791549 1791651 1791652 1791974 1791975 1791976 1792055
#> [33472] 1792056 1792057 1792971 1792972 1792973 1794802 1794803 1794805 1794806
#> [33481] 1794807 1794859 1794861 1794864 1794868 1794869 1794872 1794877 1794879
#> [33490] 1794884 1794885 1794913 1794919 1794923 1794925 1794930 1794937 1794939
#> [33499] 1794940 1794963 1794964 1794967 1794968 1794969 1794970 1794971 1794981
#> [33508] 1794991 1794992 1795007 1795008 1795013 1795022 1795047 1795048 1795054
#> [33517] 1795055 1795056 1795057 1795063 1795066 1795078 1795105 1795119 1795141
#> [33526] 1795142 1795143 1795148 1795171 1795189 1795198 1795199 1795206 1795213
#> [33535] 1795227 1795229 1795232 1795294 1795371 1795379 1795407 1795408 1795409
#> [33544] 1795410 1795424 1795440 1795446 1795447 1795459 1795473 1795506 1795507
#> [33553] 1795508 1795509 1795510 1795516 1795536 1795566 1795571 1795592 1795593
#> [33562] 1795594 1795608 1795623 1795633 1795634 1795642 1795658 1795703 1795707
#> [33571] 1795716 1795745 1795754 1795756 1795759 1795762 1795812 1795816 1795829
#> [33580] 1795839 1795874 1795881 1795883 1795888 1795893 1795894 1795902 1795918
#> [33589] 1795949 1795952 1795963 1795964 1795971 1795981 1795991 1796014 1796019
#> [33598] 1796023 1796038 1796059 1796066 1796068 1796069 1796080 1796081 1796082
#> [33607] 1796084 1796085 1796086 1796090 1796092 1796129 1796130 1796131 1796150
#> [33616] 1796155 1796157 1796161 1796173 1796183 1796184 1796202 1796211 1796212
#> [33625] 1796214 1796241 1796243 1796244 1796245 1796263 1796264 1796275 1796341
#> [33634] 1796345 1796381 1796417 1796425 1796426 1796445 1796525 1796526 1796527
#> [33643] 1796539 1796617 1796636 1796648 1796676 1796677 1796678 1796679 1796685
#> [33652] 1796691 1796700 1796705 1796710 1796722 1796728 1796729 1796730 1796733
#> [33661] 1796734 1796743 1796744 1796750 1796754 1796763 1796767 1796768 1796804
#> [33670] 1796882 1796893 1796907 1796920 1796929 1796968 1797023 1797073 1797115
#> [33679] 1797158 1797159 1797160 1797161 1797162 1797176 1797297 1797298 1797301
#> [33688] 1797319 1797324 1797338 1797339 1797343 1797344 1797378 1797395 1797417
#> [33697] 1797418 1797443 1797464 1797465 1797496 1797597 1797648 1797653 1797673
#> [33706] 1797681 1797719 1797724 1797735 1797743 1797746 1797755 1797762 1797777
#> [33715] 1797778 1797822 1797829 1797845 1797849 1797868 1797897 1797908 1797909
#> [33724] 1797922 1797933 1797952 1797956 1797957 1797958 1797959 1797968 1797969
#> [33733] 1797972 1797973 1797974 1797975 1797977 1797978 1797989 1797992 1797995
#> [33742] 1797996 1798008 1798009 1798011 1798012 1798018 1798062 1798069 1798077
#> [33751] 1798103 1798107 1798108 1798109 1798114 1798115 1798118 1798143 1798168
#> [33760] 1798169 1798170 1798171 1798172 1798173 1798174 1798178 1798183 1798186
#> [33769] 1798189 1798192 1798195 1798200 1798201 1798248 1798268 1798291 1798331
#> [33778] 1798361 1798373 1798375 1798382 1798385 1798418 1798444 1798445 1798448
#> [33787] 1798513 1798527 1798528 1798530 1798571 1798576 1798582 1798607 1798608
#> [33796] 1798615 1798616 1798623 1798624 1798625 1798642 1798665 1798669 1798716
#> [33805] 1798730 1798783 1798787 1798792 1798793 1798794 1798795 1798818 1798820
#> [33814] 1798855 1798871 1798884 1798898 1798899 1798904 1798910 1798916 1798919
#> [33823] 1798920 1798922 1798925 1798927 1798928 1798930 1798931 1798946 1798947
#> [33832] 1798948 1798949 1798950 1798958 1798962 1798966 1798970 1798971 1798978
#> [33841] 1799012 1799018 1799034 1799063 1799067 1799078 1799080 1799081 1799082
#> [33850] 1799104 1799133 1799145 1799146 1799200 1799234 1799235 1799236 1799239
#> [33859] 1799240 1799253 1799257 1799262 1799264 1799338 1799346 1799354 1799356
#> [33868] 1799360 1799369 1799380 1799381 1799382 1799384 1799385 1799387 1799388
#> [33877] 1799389 1799397 1799398 1799407 1799414 1799415 1799426 1799427 1799440
#> [33886] 1799466 1799500 1799511 1799512 1799723 1799732 1799733 1799743 1799765
#> [33895] 1800024 1800055 1800099 1800102 1800111 1800192 1801537 1801613 1801624
#> [33904] 1801677 1801679 1801681 1801694 1801711 1801735 1801736 1801737 1801759
#> [33913] 1801803 1801815 1801816 1801817 1801818 1801826 1801827 1801833 1801834
#> [33922] 1801838 1801839 1801840 1801841 1801842 1801861 1801884 1801885 1801894
#> [33931] 1801904 1801918 1801924 1801936 1802017 1802024 1802040 1802042 1802051
#> [33940] 1802066 1802076 1802084 1802086 1802088 1802090 1802096 1802137 1802145
#> [33949] 1802150 1802196 1802198 1802224 1802232 1802270 1802284 1802285 1802289
#> [33958] 1802290 1802291 1802305 1802349 1802365 1802369 1802392 1802405 1802457
#> [33967] 1802532 1802534 1802536 1802551 1802555 1802570 1802616 1802617 1802623
#> [33976] 1802625 1802626 1802627 1802708 1802709 1802716 1802777 1802782 1802783
#> [33985] 1802785 1802786 1802804 1802805 1802806 1802808 1802812 1802814 1802862
#> [33994] 1802885 1802906 1802915 1802964 1802965 1802967 1802968 1803052 1803053
#> [34003] 1803054 1803064 1803092 1803103 1803105 1803125 1803160 1803162 1803164
#> [34012] 1803166 1803181 1803202 1803206 1803207 1803208 1803210 1803233 1803237
#> [34021] 1803240 1803249 1803251 1803265 1803275 1803276 1803332 1803333 1803334
#> [34030] 1803338 1803342 1803352 1803357 1803358 1803372 1803373 1803420 1803452
#> [34039] 1803455 1803458 1803459 1803495 1803536 1803537 1803553 1803554 1803555
#> [34048] 1803573 1803634 1803636 1803660 1803670 1803671 1803674 1803678 1803679
#> [34057] 1803699 1803701 1803708 1803711 1803716 1803726 1803738 1803740 1803748
#> [34066] 1803752 1803760 1803761 1803768 1803769 1803789 1803790 1803792 1803813
#> [34075] 1803854 1803913 1803920 1803934 1803936 1803939 1803940 1803941 1803945
#> [34084] 1803951 1803968 1803969 1803971 1803972 1803984 1803985 1803987 1804003
#> [34093] 1804004 1804014 1804015 1804016 1804017 1804018 1804019 1804021 1804022
#> [34102] 1804023 1804024 1804054 1804055 1804056 1804074 1804094 1804101 1804106
#> [34111] 1804110 1804111 1804112 1804116 1804117 1804122 1804126 1804127 1804138
#> [34120] 1804161 1804162 1804167 1804175 1804181 1804195 1804197 1804198 1804218
#> [34129] 1804219 1804233 1804234 1804235 1804238 1804247 1804249 1804262 1804277
#> [34138] 1804278 1804284 1804289 1804329 1804330 1804331 1804332 1804349 1804357
#> [34147] 1804358 1804403 1804406 1804407 1804408 1804409 1804419 1804435 1804436
#> [34156] 1804461 1804469 1804485 1804487 1804492 1804493 1804505 1804522 1804523
#> [34165] 1804525 1804526 1804540 1804542 1804548 1804555 1804562 1804570 1804573
#> [34174] 1804574 1804579 1804592 1804613 1804614 1804615 1804618 1804620 1804621
#> [34183] 1804626 1804628 1804643 1804651 1804659 1804675 1804695 1804697 1804698
#> [34192] 1804706 1804708 1804713 1804727 1804728 1804754 1804763 1804764 1804775
#> [34201] 1804776 1804777 1804789 1804811 1804846 1804861 1804872 1804873 1804880
#> [34210] 1804884 1804893 1804900 1804950 1804951 1804952 1804953 1805024 1805025
#> [34219] 1805038 1805059 1805064 1805076 1805097 1805108 1805110 1805112 1805113
#> [34228] 1805114 1805115 1805116 1805121 1805140 1805204 1805205 1805226 1805256
#> [34237] 1805257 1805260 1805261 1805271 1805272 1805295 1805296 1805297 1805298
#> [34246] 1805299 1805300 1805301 1805308 1805309 1805310 1805311 1805312 1805313
#> [34255] 1805314 1805335 1805338 1805344 1805346 1805348 1805361 1805397 1805432
#> [34264] 1805459 1805460 1805465 1805482 1805483 1805488 1805489 1805511 1805529
#> [34273] 1805531 1805534 1805566 1805594 1805605 1805607 1805614 1805621 1805655
#> [34282] 1805659 1805688 1805691 1805692 1805703 1805711 1805722 1805730 1805733
#> [34291] 1805741 1805743 1805746 1805748 1805749 1805750 1805774 1805775 1805776
#> [34300] 1805778 1805795 1805796 1805801 1805803 1805811 1805817 1805823 1805834
#> [34309] 1805837 1805850 1805866 1805879 1805902 1805933 1805936 1805944 1805958
#> [34318] 1805968 1806001 1806002 1806003 1806004 1806005 1806006 1806010 1806011
#> [34327] 1806014 1806044 1806072 1806082 1806089 1806098 1806099 1806119 1806120
#> [34336] 1806121 1806122 1806123 1806124 1806126 1806133 1806141 1806164 1806235
#> [34345] 1806247 1806248 1806269 1806283 1806314 1806316 1806325 1806330 1806331
#> [34354] 1806333 1806343 1806359 1806368 1806369 1806374 1806375 1806378 1806409
#> [34363] 1806421 1806423 1806478 1806485 1806494 1806498 1806516 1806592 1806603
#> [34372] 1806605 1806632 1806666 1806669 1806680 1806706 1806723 1806744 1806749
#> [34381] 1806758 1806762 1806783 1806804 1806811 1806833 1806844 1806846 1806853
#> [34390] 1806886 1806889 1806890 1806891 1806898 1806900 1806901 1806902 1806908
#> [34399] 1806911 1806921 1806923 1806925 1806945 1806951 1806952 1806957 1807005
#> [34408] 1807145 1807147 1807163 1807164 1807272 1807693 1807694 1807697 1807698
#> [34417] 1807699 1807700 1807773 1807775 1807810 1807825 1807965 1808126 1808127
#> [34426] 1808203 1808205 1808206 1808207 1808208 1808245 1808246 1808247 1808435
#> [34435] 1808892 1808893 1808894 1808895 1808896 1808897 1808898 1808899 1808900
#> [34444] 1808901 1808902 1808903 1808904 1808905 1808906 1809085 1809086 1809087
#> [34453] 1809088 1809090 1809092 1809260 1809268 1809269 1809378 1809381 1809484
#> [34462] 1809486 1809722 1810097 1810098 1810101 1810189 1810291 1810292 1810337
#> [34471] 1810338 1810339 1810361 1810363 1810367 1810369 1810371 1810416 1810474
#> [34480] 1810475 1810476 1810483 1810484 1810485 1810486 1810495 1810496 1810501
#> [34489] 1810502 1810503 1810504 1810505 1810506 1810531 1810557 1810558 1810616
#> [34498] 1810681 1810684 1810686 1810878 1810940 1810944 1811034 1811035 1811036
#> [34507] 1811037 1811039 1811044 1811085 1811087 1811088 1811102 1811178 1811334
#> [34516] 1811336 1811337 1811399 1811550 1811551 1811599 1811601 1811604 1811746
#> [34525] 1812153 1812198 1812274 1812316 1812401 1812429 1812430 1812431 1812432
#> [34534] 1812557 1812558 1812559 1812567 1812623 1812627 1812628 1812629 1812630
#> [34543] 1812631 1812632 1812633 1812634 1812638 1812639 1812640 1812641 1812642
#> [34552] 1812648 1812649 1812896 1812897 1812898 1812922 1812926 1812970 1812971
#> [34561] 1812974 1812976 1812978 1812980 1812982 1813133 1813134 1813135 1813136
#> [34570] 1813190 1813399 1813701 1813702 1813703 1813704 1813705 1813707 1813708
#> [34579] 1813760 1813761 1813802 1813808 1813810 1813811 1813813 1813814 1813820
#> [34588] 1813821 1813822 1813823 1813824 1813825 1813826 1813827 1813945 1813946
#> [34597] 1813947 1813948 1813949 1813950 1813951 1813952 1813953 1813954 1813955
#> [34606] 1813956 1813957 1813958 1813959 1813960 1813961 1813962 1813963 1813964
#> [34615] 1813965 1813974 1813995 1814208 1814214 1814337 1814338 1814339 1814340
#> [34624] 1814341 1814342 1814344 1814346 1814347 1814349 1814351 1814353 1814507
#> [34633] 1814509 1814511 1814513 1814515 1814517 1814519 1814535 1814536 1814537
#> [34642] 1814538 1814539 1814549 1814610 1814611 1814695 1814788 1814823 1815029
#> [34651] 1815030 1815031 1815032 1815033 1815034 1815035 1815036 1815038 1815250
#> [34660] 1815252 1815255 1815256 1815261 1815328 1815329 1815377 1815378 1815380
#> [34669] 1815381 1815382 1815383 1815384 1815385 1815389 1815406 1815408 1815526
#> [34678] 1815545 1815546 1815849 1815850 1815873 1815874 1815888 1815889 1815893
#> [34687] 1815894 1815895 1815952 1816056 1816058 1816059 1816561 1816562 1816578
#> [34696] 1816580 1816615 1816616 1816618 1816620 1816621 1816622 1816643 1816646
#> [34705] 1816648 1816650 1816658 1816900 1816901 1816902 1816903 1816906 1816907
#> [34714] 1816908 1816909 1816910 1816911 1816912 1816958 1817099 1817158 1817159
#> [34723] 1817382 1817476 1817668 1817669 1817769 1817780 1817781 1817782 1817783
#> [34732] 1818210 1818213 1818527 1818528 1818529 1818530 1818549 1818550 1818551
#> [34741] 1818610 1818613 1818617 1818637 1818667 1818668 1818832 1818835 1818838
#> [34750] 1818839 1818955 1818960 1818961 1819069 1819072 1819073 1819199 1819209
#> [34759] 1819210 1819214 1819215 1819216 1819217 1819218 1819219 1819236 1819237
#> [34768] 1819413 1819424 1819797 1819935 1819936 1819937 1819984 1819985 1819986
#> [34777] 1819987 1820192 1820194 1820201 1820206 1820209 1820210 1820226 1820345
#> [34786] 1820346 1820417 1820419 1820428 1820429 1820436 1820437 1820447 1820460
#> [34795] 1820673 1820695 1820696 1820697 1820706 1820896 1820898 1820899 1820900
#> [34804] 1820901 1820902 1821020 1821778 1821779 1821783 1821847 1821855 1821857
#> [34813] 1822055 1822056 1822057 1822068 1822069 1822070 1822071 1822072 1822073
#> [34822] 1822273 1822276 1822277 1822278 1822279 1822280 1822281 1822282 1822826
#> [34831] 1822827 1822828 1822829 1822830 1822831 1822835 1822836 1822837 1822867
#> [34840] 1822868 1822870 1822871 1822872 1822873 1822945 1823054 1823140 1823141
#> [34849] 1823247 1823317 1823678 1823680 1823683 1823685 1823964 1823969 1824455
#> [34858] 1824524 1824525 1824526 1824527 1824537 1824539 1824582 1824607 1824671
#> [34867] 1825167 1825171 1825172 1825173 1825174 1825175 1825176 1825550 1826041
#> [34876] 1826047 1826113 1826115 1826295 1826299 1826328 1826389 1826504 1826505
#> [34885] 1826506 1826507 1826508 1826509 1826514 1826515 1826516 1826517 1826518
#> [34894] 1826519 1826588 1826711 1826723 1826732 1826734 1826735 1826737 1826748
#> [34903] 1826753 1826755 1827045 1827270 1827271 1827354 1827452 1827453 1827462
#> [34912] 1827463 1827464 1827491 1827529 1827531 1827532 1827533 1827896 1828010
#> [34921] 1828011 1828055 1828191 1828260 1828262 1828263 1828397 1828402 1828410
#> [34930] 1828412 1828421 1828422 1828748 1828920 1828921 1828922 1829006 1829007
#> [34939] 1829008 1829009 1829428 1829429 1829430 1829603 1829629 1829630 1829631
#> [34948] 1829632 1829803 1829804 1829805 1829807 1829999 1830000 1830001 1830002
#> [34957] 1830091 1830531 1830536 1830576 1830581 1830582 1830584 1830604 1830613
#> [34966] 1830615 1830625 1830629 1830634 1830666 1830667 1830670 1830673 1830799
#> [34975] 1830800 1830801 1831103 1831106 1831338 1831359 1831373 1831374 1831681
#> [34984] 1831705 1831920 1831921 1832331 1832718 1832719 1832935 1833092 1833163
#> [34993] 1833590 1833592 1833593 1833598 1833689 1834383 1834384 1834387 1834388
#> [35002] 1834528 1834531 1834533 1834535 1834558 1834560 1834562 1834564 1834566
#> [35011] 1834568 1834570 1834572 1834574 1834576 1834578 1834580 1834582 1834584
#> [35020] 1834586 1834588 1834590 1834592 1834594 1834596 1834598 1834600 1834602
#> [35029] 1834604 1834606 1834608 1834611 1834613 1835421 1845231 1845235 1845237
#> [35038] 1845338 1845472 1845473 1845474 1845475 1845476 1845477 1845478 1845480
#> [35047] 1845481 1845596 1845598 1845599 1845600 1845601 1845602 1845612 1845615
#> [35056] 1845618 1845621 1845625 1845629 1845630 1845632 1845633 1845653 1845677
#> [35065] 1845678 1845684 1845688 1845689 1845692 1845693 1845694 1845695 1845716
#> [35074] 1845729 1845736 1845747 1845748 1845891 1845892 1845893 1845894 1845895
#> [35083] 1845896 1845897 1845898 1845903 1845914 1845931 1845932 1845940 1845946
#> [35092] 1845947 1845948 1845950 1846240 1846266 1846267 1846271 1846275 1846277
#> [35101] 1846320 1846324 1846325 1846328 1846329 1846330 1846331 1846333 1846336
#> [35110] 1846337 1846354 1846355 1846356 1846358 1846359 1846360 1846594 1846595
#> [35119] 1846596 1846597 1846598 1846869 1847042 1847085 1847100 1847102 1847103
#> [35128] 1847106 1847107 1847108 1847112 1847113 1847114 1847119 1847120 1847121
#> [35137] 1847125 1847126 1847127 1847131 1847132 1847133 1847137 1847138 1847139
#> [35146] 1847143 1847144 1847145 1847149 1847150 1847151 1847156 1847157 1847158
#> [35155] 1847162 1847163 1847164 1847168 1847169 1847170 1847171 1847175 1847176
#> [35164] 1847177 1847181 1847182 1847183 1847187 1847188 1847189 1847193 1847215
#> [35173] 1847216 1847234 1847239 1847248 1847249 1847262 1847263 1847492 1847501
#> [35182] 1847503 1847508 1847511 1847512 1847513 1847514 1847515 1847518 1847519
#> [35191] 1847520 1847522 1847523 1847526 1847530 1847534 1847544 1847545 1847665
#> [35200] 1847790 1847962 1848085 1848248 1848251 1848253 1848255 1848490 1848892
#> [35209] 1848902 1848903 1849528 1849704 1849705 1849714 1849716 1849717 1849719
#> [35218] 1849721 1849724 1849730 1849739 1849740 1849741 1849742 1849745 1849752
#> [35227] 1849753 1849754 1849755 1849759 1849760 1849771 1849772 1849913 1849930
#> [35236] 1849932 1849933 1849935 1849936 1849938 1849940 1849942 1849944 1849946
#> [35245] 1849949 1849950 1849951 1849952 1849953 1849954 1849956 1849957 1849960
#> [35254] 1849962 1849963 1849965 1849972 1849973 1849974 1849975 1849976 1850008
#> [35263] 1850011 1850015 1850018 1850020 1850041 1850386 1850406 1850407 1850408
#> [35272] 1850508 1850570 1850571 1850733 1850910 1850911 1851080 1851081 1851192
#> [35281] 1851193 1851195 1851198 1851199 1851200 1851201 1851202 1851240 1851241
#> [35290] 1851242 1851243 1851279 1851283 1851290 1851293 1851301 1851303 1851347
#> [35299] 1851348 1851349 1851353 1851878 1851879 1851880 1851884 1851886 1852184
#> [35308] 1852185 1852186 1852187 1852188 1852189 1852190 1852241 1852242 1852313
#> [35317] 1852319 1852326 1852328 1852332 1852337 1852338 1852339 1852608 1852609
#> [35326] 1852610 1852611 1852612 1852613 1852614 1852615 1852616 1852799 1852802
#> [35335] 1852807 1852809 1852811 1852813 1852815 1852817 1852819 1852820 1852821
#> [35344] 1852822 1852823 1852824 1852964 1852966 1852998 1852999 1853000 1853001
#> [35353] 1853002 1853020 1853085 1853086 1853181 1853217 1853220 1853237 1853238
#> [35362] 1853538 1853710 1853846 1853848 1853853 1853865 1853866 1853867 1853868
#> [35371] 1853870 1853872 1853874 1853876 1853878 1853880 1853882 1853884 1853886
#> [35380] 1853888 1853890 1853892 1853894 1853896 1853898 1853899 1853901 1853902
#> [35389] 1853936 1853937 1853940 1853941 1854133 1854161 1854162 1854163 1854164
#> [35398] 1854167 1854347 1854357 1854360 1854363 1854370 1854388 1854389 1854390
#> [35407] 1854391 1854396 1854399 1854400 1854401 1854402 1854403 1854410 1854411
#> [35416] 1854466 1854467 1854468 1854469 1854470 1854471 1854569 1854571 1854572
#> [35425] 1854573 1854574 1854590 1854930 1854931 1854933 1854934 1854935 1854936
#> [35434] 1854938 1854939 1854959 1854961 1854962 1854963 1854964 1854965 1854966
#> [35443] 1854967 1854968 1854969 1855120 1855414 1855416 1855647 1855684 1855685
#> [35452] 1855687 1855794 1855798 1855799 1855800 1855801 1855802 1855809 1855810
#> [35461] 1855898 1856143 1856144 1856145 1856828 1856839 1856840 1856841 1856855
#> [35470] 1857095 1857096 1857097 1857098 1857161 1857162 1857163 1857167 1857195
#> [35479] 1857250 1857252 1857253 1857254 1857255 1857361 1857362 1857363 1857836
#> [35488] 1857843 1857878 1857879 1857880 1857881 1857882 1857884 1857885 1857887
#> [35497] 1857888 1857889 1858129 1858130 1858131 1858183 1858337 1858338 1858339
#> [35506] 1858343 1858479 1858531 1858559 1858591 1858684 1859002 1859079 1859127
#> [35515] 1859128 1859132 1859146 1859152 1859218 1859222 1859223 1859224 1859225
#> [35524] 1859226 1859227 1859249 1859266 1859267 1859300 1859361 1859363 1859364
#> [35533] 1859370 1859421 1859422 1859601 1859994 1859995 1859998 1860005 1860006
#> [35542] 1860007 1860008 1860009 1860610 1860774 1860784 1860785 1860841 1860905
#> [35551] 1860926 1860935 1860936 1860937 1860938 1860939 1861364 1861453 1861458
#> [35560] 1861459 1861460 1861462 1861463 1861464 1861467 1861468 1861504 1861507
#> [35569] 1861512 1861513 1861514 1861540 1861542 1861545 1861560 1861607 1861677
#> [35578] 1862063 1862229 1862231 1862232 1862233 1862234 1862235 1862267 1862268
#> [35587] 1862561 1862562 1862565 1862566 1862567 1862568 1862569 1862570 1862571
#> [35596] 1862797 1862798 1863306 1863307 1863308 1863309 1863314 1863315 1863415
#> [35605] 1863416 1863417 1863504 1864037 1864043 1864089 1864090 1864092 1864093
#> [35614] 1864094 1864097 1864098 1864099 1864100 1864101 1864127 1864142 1864143
#> [35623] 1864144 1864161 1864519 1865191 1865314 1865316 1865319 1865333 1865334
#> [35632] 1865335 1865344 1865346 1865348 1865350 1865449 1865463 1865632 1865647
#> [35641] 1865648 1865649 1865650 1865651 1865652 1865653 1865719 1865721 1865738
#> [35650] 1865754 1865755 1865756 1865757 1865758 1865759 1865760 1865761 1865784
#> [35659] 1865785 1865834 1865835 1865836 1865837 1865838 1865839 1865840 1865949
#> [35668] 1865957 1865958 1866022 1866029 1866032 1866033 1866034 1866036 1866047
#> [35677] 1866048 1866054 1866061 1866069 1866077 1866082 1866083 1866085 1866086
#> [35686] 1866090 1866092 1866109 1866409 1866410 1866411 1866412 1866413 1866419
#> [35695] 1866676 1866714 1866715 1866716 1866728 1866730 1866731 1866732 1866733
#> [35704] 1866734 1866735 1866736 1866801 1867060 1867062 1867369 1868235 1868236
#> [35713] 1868237 1868262 1868312 1868313 1868314 1868315 1868316 1868317 1868398
#> [35722] 1868399 1868400 1868401 1868402 1868403 1868404 1868405 1868406 1868407
#> [35731] 1868408 1868409 1868410 1868411 1868481 1868615 1868655 1868684 1868688
#> [35740] 1868689 1868690 1868691 1868937 1869095 1869096 1869097 1869098 1869100
#> [35749] 1869101 1869121 1869122 1869123 1869124 1869125 1869126 1869127 1869128
#> [35758] 1869129 1869145 1869199 1869211 1869534 1869535 1869538 1869540 1869542
#> [35767] 1869543 1869544 1869547 1869548 1869610 1869611 1869612 1869613 1869616
#> [35776] 1869619 1869622 1869623 1869627 1869631 1869632 1869719 1869776 1870198
#> [35785] 1870199 1870236 1870316 1870321 1870330 1870357 1870361 1870614 1870619
#> [35794] 1870621 1870622 1870680 1870711 1870712 1870715 1870720 1870736 1870737
#> [35803] 1870738 1870739 1870740 1870741 1870742 1870802 1870807 1870976 1870996
#> [35812] 1871109 1871171 1871176 1871181 1871195 1871196 1871215 1871222 1871225
#> [35821] 1871372 1871421 1871423 1871454 1871636 1871896 1871897 1871993 1871996
#> [35830] 1872000 1872002 1872003 1872004 1872005 1872012 1872021 1872027 1872035
#> [35839] 1872039 1872048 1872113 1872114 1872133 1872135 1872137 1872142 1872147
#> [35848] 1872148 1872153 1872304 1872308 1872309 1872313 1872317 1872322 1872328
#> [35857] 1872330 1872331 1872332 1872336 1872338 1872401 1872402 1872472 1872473
#> [35866] 1872474 1872475 1872489 1872617 1872652 1872653 1872665 1872744 1872755
#> [35875] 1872756 1872793 1872851 1872852 1872853 1872854 1872855 1872856 1872857
#> [35884] 1872913 1873072 1873074 1873075 1873076 1873084 1873085 1873086 1873099
#> [35893] 1873100 1873101 1873126 1873127 1873131 1873141 1873142 1873143 1873146
#> [35902] 1873147 1873153 1873154 1873155 1873156 1873353 1873354 1873355 1873356
#> [35911] 1873516 1873517 1873518 1873807 1874017 1874139 1874140 1874141 1874147
#> [35920] 1874149 1874264 1874265 1874266 1874267 1874269 1874270 1874271 1874272
#> [35929] 1874273 1874274 1874275 1874276 1874277 1874404 1874418 1874419 1874440
#> [35938] 1874441 1874629 1874637 1874639 1874706 1874707 1874708 1874709 1874753
#> [35947] 1874754 1874756 1874757 1874799 1874889 1874890 1874891 1874892 1874927
#> [35956] 1875054 1875154 1875161 1875162 1875163 1875164 1875210 1875213 1875227
#> [35965] 1875228 1875229 1875230 1875231 1875451 1875488 1875489 1875523 1875630
#> [35974] 1875644 1875662 1875664 1875774 1875882 1875889 1875892 1875893 1875896
#> [35983] 1875898 1875903 1875904 1875905 1875906 1875907 1875908 1875910 1875911
#> [35992] 1875917 1875921 1875922 1875925 1875926 1875927 1875928 1875929 1875930
#> [36001] 1875931 1875932 1875933 1875939 1875940 1875941 1875942 1875943 1875979
#> [36010] 1875980 1875990 1875996 1875997 1875998 1875999 1876003 1876011 1876012
#> [36019] 1876017 1876029 1876030 1876031 1876036 1876039 1876040 1876041 1876042
#> [36028] 1876043 1876045 1876046 1876063 1876071 1876072 1876073 1876074 1876075
#> [36037] 1876076 1876077 1876078 1876079 1876080 1876083 1876085 1876086 1876087
#> [36046] 1876088 1876089 1876092 1876094 1876097 1876101 1876103 1876115 1876116
#> [36055] 1876123 1876124 1876128 1876129 1876130 1876133 1876138 1876152 1876153
#> [36064] 1876155 1876174 1876175 1876178 1876196 1876197 1876198 1876199 1876200
#> [36073] 1876220 1876221 1876222 1876223 1876224 1876244 1876245 1876246 1876250
#> [36082] 1876251 1876257 1876259 1876300 1876318 1876319 1876320 1876323 1876325
#> [36091] 1876326 1876328 1876334 1876335 1876404 1876407 1876408 1876418 1876420
#> [36100] 1876421 1876444 1876445 1876446 1876447 1877037 1877044 1877045 1877262
#> [36109] 1877353 1877361 1877362 1877381 1877570 1877573 1877601 1877664 1877912
#> [36118] 1877913 1877917 1878037 1878169 1878172 1878211 1878212 1878213 1878214
#> [36127] 1878281 1878282 1878324 1878327 1878328 1878329 1878336 1878337 1878338
#> [36136] 1878392 1878394 1878405 1878552 1878553 1878555 1878556 1879220 1879222
#> [36145] 1879226 1879228 1879240 1879241 1879242 1879243 1879244 1879377 1879379
#> [36154] 1879405 1879406 1879407 1879408 1879483 1879935 1879944 1879947 1879948
#> [36163] 1879949 1880122 1880123 1880126 1880127 1880132 1880133 1880134 1880139
#> [36172] 1880140 1880142 1880144 1880147 1880205 1880208 1880210 1880246 1880263
#> [36181] 1880372 1880376 1880377 1880378 1880379 1880380 1880674 1880676 1880699
#> [36190] 1880700 1880722 1880735 1880736 1880799 1880800 1880808 1880809 1880810
#> [36199] 1880811 1880812 1880832 1880833 1880835 1880839 1880871 1880872 1880957
#> [36208] 1880958 1881005 1881006 1881024 1881026 1881069 1881070 1881174 1881329
#> [36217] 1881373 1881374 1881375 1881376 1881378 1881379 1881382 1881383 1881391
#> [36226] 1881392 1881431 1881432 1881676 1881678 1881681 1881682 1881683 1881684
#> [36235] 1881685 1881688 1881695 1881729 1881730 1881731 1881732 1881733 1881734
#> [36244] 1881735 1881736 1881737 1881740 1881741 1881742 1881745 1881747 1881756
#> [36253] 1881757 1881845 1881852 1881856 1881857 1881858 1881861 1881862 1881879
#> [36262] 1881880 1881881 1881884 1881887 1881888 1881889 1881918 1881919 1882107
#> [36271] 1882195 1882210 1882219 1882227 1882228 1882229 1882243 1882245 1882246
#> [36280] 1882247 1882248 1882249 1882250 1882254 1882468 1882469 1882470 1882471
#> [36289] 1882472 1882473 1882474 1882475 1882483 1882484 1882485 1882486 1882487
#> [36298] 1882489 1882490 1882591 1882592 1882593 1882594 1882595 1882596 1882597
#> [36307] 1882600 1882601 1882602 1882603 1882604 1882605 1882609 1882610 1882612
#> [36316] 1883318 1883319 1883321 1883324 1883325 1883326 1883327 1883328 1883329
#> [36325] 1883330 1883331 1883332 1883333 1883334 1883335 1883336 1883745 1883750
#> [36334] 1884002 1884004 1884007 1884008 1884010 1884014 1884019 1884022 1884029
#> [36343] 1884032 1884044 1884109 1884110 1884116 1884117 1884126 1884220 1884221
#> [36352] 1884224 1884225 1884226 1884227 1884228 1884229 1884363 1884364 1884365
#> [36361] 1884366 1884367 1884368 1884369 1884370 1884371 1884486 1884489 1884490
#> [36370] 1884491 1884492 1884493 1884558 1884560 1884562 1884564 1884566 1884568
#> [36379] 1884570 1884572 1884647 1884648 1884755 1884766 1884769 1884811 1884812
#> [36388] 1884813 1884960 1884965 1885022 1885023 1885026 1885030 1885031 1885039
#> [36397] 1885041 1885045 1885050 1885054 1885055 1885095 1885201 1885202 1885203
#> [36406] 1885204 1885205 1885206 1885207 1885208 1885210 1885259 1885260 1885277
#> [36415] 1885278 1885303 1885323 1885707 1885708 1885711 1885722 1885723 1885792
#> [36424] 1885798 1885860 1885862 1885864 1886275 1886276 1886279 1886280 1886344
#> [36433] 1886452 1886453 1886455 1886457 1886514 1886515 1886516 1886517 1886815
#> [36442] 1886818 1886821 1886829 1886836 1886840 1886841 1886978 1886979 1886984
#> [36451] 1887439 1887656 1887657 1888116 1888119 1888148 1888335 1888522 1888680
#> [36460] 1888689 1888690 1888694 1888695 1888696 1888697 1888698 1888699 1888741
#> [36469] 1888743 1888745 1888905 1888906 1889088 1889090 1889093 1889252 1889253
#> [36478] 1889259 1889262 1889264 1889267 1889285 1889548 1889553 1889888 1889889
#> [36487] 1890030 1890031 1890032 1890080 1890206 1890353 1890364 1890370 1890500
#> [36496] 1890502 1890671 1890691 1890692 1890693 1890698 1890699 1890700 1890701
#> [36505] 1890702 1890703 1890704 1890705 1890706 1890707 1890708 1891001 1891002
#> [36514] 1891192 1891226 1891229 1891230 1891231 1891303 1891304 1891311 1891312
#> [36523] 1891313 1891314 1891315 1891316 1891317 1891318 1891319 1891510 1891713
#> [36532] 1891732 1891733 1891735 1891770 1891779 1891781 1891832 1891833 1891834
#> [36541] 1891835 1891836 1891837 1891838 1891848 1891849 1891855 1891877 1891878
#> [36550] 1892116 1892117 1892223 1892224 1892278 1892280 1892286 1892329 1892348
#> [36559] 1892349 1892350 1892351 1892352 1892353 1892354 1892358 1892410 1892430
#> [36568] 1892474 1892815 1892816 1893014 1893016 1893027 1893039 1893040 1893041
#> [36577] 1893165 1893219 1893220 1893221 1893222 1893223 1893224 1893225 1893226
#> [36586] 1893227 1893228 1893229 1893230 1893231 1893232 1893233 1893234 1893235
#> [36595] 1893236 1893295 1893296 1893297 1893298 1893299 1893300 1893301 1893302
#> [36604] 1893340 1893343 1893479 1893481 1893483 1893484 1893486 1893566 1893698
#> [36613] 1893713 1893714 1893718 1893734 1893735 1893756 1893877 1893878 1893879
#> [36622] 1893880 1893881 1893882 1893883 1893884 1893885 1893886 1893887 1893888
#> [36631] 1893929 1893948 1893993 1894066 1894167 1894256 1894258 1894267 1894271
#> [36640] 1894272 1894277 1894278 1894279 1894280 1894281 1894282 1894283 1894284
#> [36649] 1894285 1894286 1894287 1894288 1894289 1894290 1894291 1894292 1894293
#> [36658] 1894294 1894315 1894316 1894317 1894318 1894319 1894320 1894321 1894684
#> [36667] 1894685 1894730 1894731 1894746 1894759 1894806 1894807 1894922 1894923
#> [36676] 1894938 1894939 1894942 1894943 1894992 1895060 1895082 1895209 1895211
#> [36685] 1895213 1895214 1895216 1895218 1895221 1895224 1895225 1895226 1895227
#> [36694] 1895228 1895229 1895230 1895231 1895232 1895233 1895234 1895235 1895236
#> [36703] 1895477 1895479 1895492 1895493 1895497 1895498 1895499 1895509 1895524
#> [36712] 1895525 1895526 1895527 1895528 1895529 1895530 1895533 1895534 1895547
#> [36721] 1895548 1895549 1895550 1895551 1895552 1895553 1895563 1895566 1895567
#> [36730] 1895569 1895570 1895571 1895572 1895602 1895603 1895866 1895917 1895918
#> [36739] 1895922 1895923 1896060 1896139 1896147 1896205 1896210 1896325 1896326
#> [36748] 1896327 1896477 1896642 1896646 1896647 1896666 1896668 1896677 1896678
#> [36757] 1896679 1896680 1896683 1896685 1896686 1896688 1896707 1896714 1896715
#> [36766] 1896716 1896717 1896727 1896731 1896748 1896749 1896962 1896965 1896966
#> [36775] 1896973 1896974 1896994 1896995 1896996 1896997 1896998 1897028 1897029
#> [36784] 1897272 1897283 1897592 1897600 1897615 1897616 1897617 1897735 1897736
#> [36793] 1897737 1897738 1897752 1897758 1897759 1897760 1897762 1897766 1897767
#> [36802] 1897769 1897771 1897773 1897818 1897927 1897958 1897968 1897970 1897972
#> [36811] 1898457 1898461 1898542 1898547 1898550 1898574 1898575 1898585 1898586
#> [36820] 1898594 1898605 1898665 1898754 1898839 1899291 1899382 1899384 1899561
#> [36829] 1899702 1899703 1899745 1899746 1899747 1899748 1899922 1899925 1899927
#> [36838] 1900288 1900289 1900352 1900449 1900450 1900734 1900736 1900751 1900753
#> [36847] 1900754 1900755 1900756 1900757 1900758 1900911 1901231 1901233 1901235
#> [36856] 1901244 1901245 1901246 1901248 1901254 1901276 1901408 1901409 1901410
#> [36865] 1901640 1901641 1901642 1901680 1901684 1901688 1901904 1901915 1901964
#> [36874] 1901966 1901967 1902183 1902372 1902612 1902613 1902615 1902913 1902916
#> [36883] 1902923 1902925 1902927 1903110 1903111 1903112 1903113 1903114 1903115
#> [36892] 1903144 1903184 1903201 1903202 1903218 1903219 1903220 1903221 1903222
#> [36901] 1903223 1903332 1903456 1903481 1903487 1903488 1903489 1904123 1904124
#> [36910] 1904166 1904167 1904413 1904414 1904418 1904904 1904905 1904906 1904907
#> [36919] 1904969 1904972 1905487 1905488 1905489 1905490 1905663 1905678 1905820
#> [36928] 1905822 1905824 1905859 1905888 1905895 1905898 1905900 1905901 1905902
#> [36937] 1905903 1906548 1906549 1906594 1906595 1906620 1906635 1906772 1906784
#> [36946] 1906785 1906786 1906787 1906788 1906789 1906790 1906791 1906792 1906793
#> [36955] 1906831 1906919 1906920 1907119 1907266 1907267 1907271 1907479 1907515
#> [36964] 1907757 1907759 1907760 1907761 1907762 1907763 1907898 1907905 1907906
#> [36973] 1907939 1908961 1908962 1908963 1909346 1909347 1909348 1909349 1909350
#> [36982] 1909360 1909492 1909493 1909817 1909818 1909871 1909872 1909873 1910027
#> [36991] 1910211 1910212 1910221 1910334 1910693 1910694 1910696 1910697 1910835
#> [37000] 1911020 1911021 1911022 1911029 1911030 1911031 1911032 1911131 1911673
#> [37009] 1911918 1911919 1911921 1911922 1911925 1911927 1911934 1911936 1911941
#> [37018] 1911942 1911943 1911944 1911987 1911997 1912219 1912220 1912447 1912448
#> [37027] 1912452 1912453 1912454 1912455 1912456 1912457 1912458 1912459 1912460
#> [37036] 1912461 1912462 1912463 1912464 1912465 1912466 1912467 1912468 1912470
#> [37045] 1912471 1912472 1912473 1912474 1912475 1912476 1912477 1912478 1912479
#> [37054] 1912480 1912666 1912667 1912671 1912675 1912676 1912677 1912680 1912686
#> [37063] 1912687 1912697 1912698 1912699 1912702 1912703 1912704 1912709 1912710
#> [37072] 1912714 1912725 1912737 1912738 1912739 1912740 1912743 1912744 1912750
#> [37081] 1912751 1912754 1912764 1912765 1912766 1912767 1912768 1912769 1912776
#> [37090] 1912781 1912782 1912783 1912791 1912803 1912804 1912805 1912806 1912821
#> [37099] 1912822 1912823 1912825 1912829 1912832 1912833 1912837 1912843 1912845
#> [37108] 1912846 1912854 1912855 1912889 1912914 1912930 1912946 1912947 1912948
#> [37117] 1912968 1912984 1912985 1912986 1912987 1912988 1912994 1913007 1913009
#> [37126] 1913010 1913014 1913019 1913025 1913026 1913029 1913035 1913047 1913049
#> [37135] 1913054 1913055 1914095 1914098 1914103 1914784 1915024 1915059 1915142
#> [37144] 1915288 1915290 1915292 1915294 1915332 1915335 1915336 1915339 1915340
#> [37153] 1915341 1915342 1915343 1915344 1915345 1915346 1915347 1915348 1915349
#> [37162] 1915350 1915351 1915352 1915353 1915354 1915364 1915365 1915366 1915367
#> [37171] 1915368 1915369 1915370 1915371 1915372 1915373 1915374 1915375 1915376
#> [37180] 1915377 1915378 1915379 1915380 1915381 1915382 1915607 1915608 1915625
#> [37189] 1915627 1915628 1915629 1915630 1915631 1915708 1915728 1915729 1915749
#> [37198] 1915751 1915940 1915941 1915942 1916032 1916033 1916051 1916201 1916202
#> [37207] 1916203 1916354 1916532 1916746 1916754 1916778 1916786 1916832 1916833
#> [37216] 1916927 1916933 1916935 1916937 1916941 1916944 1916947 1916949 1916952
#> [37225] 1916953 1916956 1916959 1916961 1916963 1916965 1916993 1917081 1917083
#> [37234] 1917155 1917163 1917164 1917165 1917166 1917274 1917455 1917574 1917595
#> [37243] 1917726 1917829 1917853 1917854 1917870 1917871 1917872 1917873 1917874
#> [37252] 1917875 1917877 1917970 1917972 1917975 1917976 1917979 1918011 1918149
#> [37261] 1918460 1918461 1918462 1918470 1918474 1918595 1918596 1918597 1918598
#> [37270] 1918891 1918903 1918904 1918910 1918912 1919025 1919042 1919071 1919105
#> [37279] 1919199 1919210 1919233 1919290 1919372 1919373 1919399 1919400 1919401
#> [37288] 1919411 1919433 1919496 1919497 1919610 1919611 1919616 1919617 1919639
#> [37297] 1919651 1919653 1919703 1919726 1919730 1919731 1919775 1919780 1919781
#> [37306] 1919821 1919822 1919824 1919841 1919880 1919887 1919954 1919957 1919980
#> [37315] 1919981 1920032 1920076 1920149 1920163 1920179 1920187 1920211 1920260
#> [37324] 1920272 1920273 1920276 1920293 1920299 1920307 1920308 1920309 1920310
#> [37333] 1920318 1920319 1920320 1920321 1920322 1920323 1920324 1920326 1920333
#> [37342] 1920411 1920441 1920442 1920615 1920623 1920732 1920755 1920871 1920872
#> [37351] 1920873 1920878 1920894 1920896 1920922 1920923 1920924 1920964 1920969
#> [37360] 1920999 1921000 1921127 1921128 1921230 1921294 1921366 1921383 1921384
#> [37369] 1921385 1921386 1921602 1921609 1921920 1921921 1921962 1921963 1921964
#> [37378] 1922018 1922110 1922114 1922118 1922120 1922122 1922123 1922125 1922126
#> [37387] 1922131 1922132 1922133 1922135 1922136 1922137 1922139 1922142 1922144
#> [37396] 1922145 1922147 1922149 1922186 1922187 1922188 1922266 1922359 1922378
#> [37405] 1922386 1922454 1922455 1922456 1922457 1922500 1922701 1922702 1922703
#> [37414] 1922704 1922705 1922736 1922737 1922769 1922999 1923023 1923041 1923225
#> [37423] 1923226 1923227 1923290 1923291 1923419 1923420 1923421 1923423 1923424
#> [37432] 1923425 1923426 1923459 1923468 1923834 1923835 1923922 1923924 1923931
#> [37441] 1923935 1923937 1923941 1923942 1923955 1923964 1923965 1924040 1924147
#> [37450] 1924159 1924160 1924161 1924186 1924187 1924188 1924189 1924190 1924233
#> [37459] 1924287 1924312 1924313 1924314 1924325 1924326 1924327 1924328 1924329
#> [37468] 1924330 1924331 1924332 1924333 1924596 1924727 1924728 1924729 1924730
#> [37477] 1924732 1924733 1924734 1924736 1924737 1924780 1924782 1924784 1924810
#> [37486] 1924841 1924880 1924881 1924882 1924883 1924889 1924900 1924901 1924920
#> [37495] 1924935 1924944 1925140 1925141 1925142 1925144 1925145 1925146 1925147
#> [37504] 1925148 1925149 1925154 1925155 1925162 1925163 1925164 1925165 1925168
#> [37513] 1925169 1925171 1925172 1925173 1925189 1925319 1925320 1925362 1925363
#> [37522] 1925365 1925366 1925367 1925368 1925369 1925393 1925871 1925872 1925873
#> [37531] 1925874 1925875 1926139 1926201 1926340 1926342 1926354 1926355 1926356
#> [37540] 1926358 1926359 1926360 1926363 1926439 1926464 1926465 1926483 1926486
#> [37549] 1926489 1926492 1926493 1927261 1927264 1927265 1927269 1927277 1927280
#> [37558] 1927285 1927286 1927287 1927288 1927291 1927293 1927294 1927295 1927296
#> [37567] 1927297 1927298 1927300 1927301 1927302 1927303 1927304 1927305 1927306
#> [37576] 1927331 1927369 1927384 1927385 1927386 1927387 1927633 1928065 1928066
#> [37585] 1928067 1928082 1928084 1928089 1928097 1928098 1928099 1928100 1928101
#> [37594] 1928108 1928109 1928110 1928111 1928112 1928241 1928263 1928265 1928266
#> [37603] 1928268 1928270 1928319 1928338 1928339 1928457 1928465 1928466 1928467
#> [37612] 1928547 1928548 1928652 1928653 1928658 1928668 1928701 1928703 1928859
#> [37621] 1929028 1929042 1929044 1929058 1929126 1929195 1929197 1929221 1929224
#> [37630] 1929225 1929226 1929230 1929279 1929301 1929320 1929321 1929341 1929342
#> [37639] 1929343 1929355 1929461 1929462 1929463 1929474 1929530 1929558 1929560
#> [37648] 1929571 1929573 1929588 1929693 1930020 1930022 1930026 1930034 1930049
#> [37657] 1930051 1930078 1930079 1930231 1930232 1930238 1930239 1930240 1930241
#> [37666] 1930242 1930266 1930267 1930273 1930277 1930278 1930520 1930562 1930637
#> [37675] 1930638 1930813 1930814 1930815 1930823 1930862 1930863 1930864 1930966
#> [37684] 1930969 1930971 1930972 1930973 1930975 1930977 1930978 1931058 1931059
#> [37693] 1931060 1931061 1931063 1931064 1931065 1931068 1931145 1931154 1931623
#> [37702] 1931624 1931625 1931626 1931627 1931647 1931659 1931672 1931687 1931692
#> [37711] 1931697 1931702 1931705 1931706 1931707 1931715 1931721 1931725 1931728
#> [37720] 1931736 1931737 1931738 1931752 1931756 1931757 1931758 1931759 1931785
#> [37729] 1931790 1931793 1931794 1931827 1931865 1932149 1932153 1932158 1932164
#> [37738] 1932168 1932170 1932171 1932172 1932190 1932192 1932193 1932197 1932198
#> [37747] 1932201 1932202 1932205 1932207 1932208 1932211 1932212 1932215 1932216
#> [37756] 1932217 1932218 1932219 1932223 1932224 1932225 1932226 1932227 1932228
#> [37765] 1932230 1932235 1932236 1932237 1932238 1932239 1932240 1932385 1932566
#> [37774] 1932567 1932703 1932704 1932765 1932767 1932770 1932879 1932884 1932887
#> [37783] 1932895 1932897 1932898 1932900 1932902 1932904 1932906 1932907 1932912
#> [37792] 1932913 1932916 1932918 1932919 1932922 1932924 1932925 1932927 1933141
#> [37801] 1933154 1933155 1933161 1933282 1933283 1933284 1933287 1933288 1933289
#> [37810] 1933293 1933294 1933302 1933303 1933305 1933322 1933354 1933355 1933356
#> [37819] 1933357 1933358 1933359 1933360 1933363 1933364 1933371 1933378 1933379
#> [37828] 1933380 1933381 1933382 1933383 1933407 1933417 1933418 1933419 1933420
#> [37837] 1933421 1933422 1933447 1933448 1933449 1933450 1933458 1933462 1933463
#> [37846] 1933467 1933510 1933511 1933517 1933519 1933528 1933538 1933539 1933542
#> [37855] 1933543 1933544 1933545 1933559 1933827 1933917 1933920 1933921 1933922
#> [37864] 1933923 1933924 1933925 1933926 1933927 1933928 1933929 1933930 1933931
#> [37873] 1933932 1933933 1933935 1933936 1933939 1933954 1934008 1934014 1934015
#> [37882] 1934025 1934028 1934038 1934044 1934045 1934046 1934049 1934050 1934051
#> [37891] 1934055 1934056 1934120 1934125 1934219 1934221 1934222 1934225 1934297
#> [37900] 1934298 1934300 1934302 1934304 1934305 1934306 1934307 1934439 1934462
#> [37909] 1934463 1934464 1934465 1934467 1934468 1934471 1934477 1934525 1934615
#> [37918] 1934617 1934620 1934624 1934628 1934630 1934632 1934637 1934638 1934741
#> [37927] 1934743 1935152 1935219 1935220 1935224 1935225 1935226 1935227 1935228
#> [37936] 1935229 1935350 1935351 1935352 1935353 1935501 1935502 1935503 1935504
#> [37945] 1935505 1935506 1935510 1935511 1935877 1935878 1935879 1935882 1935889
#> [37954] 1935924 1935925 1935926 1935991 1935992 1936345 1936348 1936444 1936445
#> [37963] 1936895 1936897 1936902 1936957 1936961 1936963 1936964 1936965 1936966
#> [37972] 1936967 1936968 1936981 1936982 1936983 1936984 1936985 1936986 1936987
#> [37981] 1937044 1937220 1937222 1937313 1937314 1937315 1937316 1937330 1937336
#> [37990] 1937501 1937526 1937595 1937599 1937885 1937886 1937887 1937943 1937948
#> [37999] 1937959 1937960 1937963 1937964 1937967 1937968 1937969 1937970 1937971
#> [38008] 1937972 1937973 1937976 1937977 1937978 1937980 1937984 1938030 1938031
#> [38017] 1938227 1938229 1938231 1938232 1938247 1938255 1938295 1938300 1938302
#> [38026] 1938314 1938328 1938337 1938507 1938508 1938564 1938578 1938819 1938934
#> [38035] 1939015 1939141 1939142 1939144 1939146 1939147 1939194 1939263 1939265
#> [38044] 1939266 1939490 1939502 1939549 1939550 1939555 1939797 1939798 1939799
#> [38053] 1939875 1939876 1939896 1939901 1939908 1939909 1939940 1939941 1940047
#> [38062] 1940388 1940393 1940395 1940397 1940460 1940677 1940705 1940706 1940708
#> [38071] 1940711 1940736 1940763 1940764 1940765 1940766 1940767 1940768 1940770
#> [38080] 1940771 1940772 1940775 1940776 1940777 1940779 1940923 1941006 1941007
#> [38089] 1941023 1941024 1941041 1941042 1941047 1941072 1941091 1941163 1941164
#> [38098] 1941179 1941180 1941191 1941207 1941219 1941354 1941357 1941358 1941359
#> [38107] 1941592 1941602 1941605 1942006 1942038 1942039 1942232 1942235 1942239
#> [38116] 1942296 1942297 1942307 1942340 1942341 1942456 1942534 1942535 1942536
#> [38125] 1942537 1942540 1942541 1942542 1942543 1942544 1942545 1942547 1942549
#> [38134] 1942550 1942551 1942554 1942555 1942556 1942558 1942673 1942674 1942675
#> [38143] 1942685 1942759 1942762 1942765 1942768 1942771 1942850 1942863 1942867
#> [38152] 1942868 1942869 1942870 1942871 1942872 1942874 1942885 1942887 1942888
#> [38161] 1942889 1942890 1942891 1942892 1942893 1942894 1942895 1942896 1942905
#> [38170] 1942979 1942980 1942981 1943213 1943217 1943219 1943254 1943255 1943266
#> [38179] 1943324 1943325 1943410 1943416 1943451 1943469 1943520 1943548 1943579
#> [38188] 1943678 1943686 1943687 1943689 1943707 1943716 1943717 1943718 1943719
#> [38197] 1943720 1943721 1943737 1943742 1943744 1943746 1943750 1943761 1943766
#> [38206] 1943769 1943779 1943781 1944002 1944004 1944015 1944016 1944018 1944019
#> [38215] 1944020 1944028 1944029 1944036 1944037 1944040 1944042 1944043 1944044
#> [38224] 1944046 1944047 1944049 1944053 1944356 1944972 1944974 1944976 1944977
#> [38233] 1944978 1944979 1944980 1944981 1944983 1944984 1944985 1944986 1944987
#> [38242] 1944990 1945227 1945228 1945314 1945409 1945412 1945569 1945570 1945627
#> [38251] 1945640 1946225 1946226 1946227 1946228 1946229 1946230 1946231 1946232
#> [38260] 1946238 1946239 1946240 1946241 1946242 1946245 1946246 1946247 1946250
#> [38269] 1946251 1946252 1946254 1946255 1946256 1946257 1946258 1946259 1946260
#> [38278] 1946262 1946267 1946268 1946334 1946335 1946336 1946344 1946535 1946679
#> [38287] 1946681 1946698 1946775 1946884 1946886 1946932 1946933 1946937 1946938
#> [38296] 1946939 1946947 1946948 1946949 1946950 1947110 1947113 1947190 1947191
#> [38305] 1947213 1947214 1947439 1947440 1947558 1947560 1947562 1947576 1947586
#> [38314] 1947792 1948112 1948128 1948129 1948130 1948131 1948132 1948133 1948134
#> [38323] 1948135 1948136 1948137 1948138 1948139 1948140 1948141 1948142 1948143
#> [38332] 1948144 1948145 1948408 1948459 1948460 1948461 1948462 1948525 1948685
#> [38341] 1948728 1948803 1949096 1949097 1949098 1949099 1949100 1949101 1949102
#> [38350] 1949103 1949110 1949111 1949112 1949113 1949114 1949115 1949116 1949117
#> [38359] 1949132 1949133 1949137 1949174 1949185 1949263 1949264 1949279 1949280
#> [38368] 1949281 1949282 1949283 1949284 1949285 1949286 1949287 1949288 1949291
#> [38377] 1949292 1949293 1949294 1949359 1949431 1949521 1949572 1949573 1949574
#> [38386] 1949576 1949577 1949578 1949579 1949607 1949626 1949676 1949685 1949713
#> [38395] 1949714 1949715 1949716 1949717 1949732 1949733 1949734 1949735 1949736
#> [38404] 1949737 1949744 1949745 1949750 1949758 1949761 1949762 1949763 1949773
#> [38413] 1949792 1949902 1949905 1949907 1949909 1949910 1949912 1949917 1949918
#> [38422] 1949919 1949969 1949970 1950242 1950243 1950257 1950264 1950265 1950266
#> [38431] 1950267 1950269 1950270 1950271 1950773 1950793 1950832 1950833 1950846
#> [38440] 1950847 1950848 1950849 1950850 1950851 1950867 1950868 1950871 1950872
#> [38449] 1950875 1950876 1950879 1950881 1950883 1951044 1951045 1951066 1951067
#> [38458] 1951075 1951076 1951078 1951104 1951105 1951107 1951108 1951109 1951174
#> [38467] 1951263 1951264 1951337 1951421 1951422 1951423 1951424 1951425 1951510
#> [38476] 1951541 1951639 1951642 1951645 1951648 1951651 1951654 1951657 1951660
#> [38485] 1951663 1951666 1951669 1951672 1951675 1951975 1951977 1952154 1952157
#> [38494] 1952162 1952163 1952166 1952168 1952173 1952174 1952176 1952177 1952452
#> [38503] 1952454 1952676 1952677 1952678 1952679 1952680 1952681 1952682 1952683
#> [38512] 1952684 1952685 1952686 1952687 1952689 1952697 1952698 1952699 1952700
#> [38521] 1952716 1952815 1952831 1952834 1952862 1952916 1952945 1952949 1953300
#> [38530] 1953301 1953311 1953332 1953411 1953412 1953584 1953609 1953610 1953611
#> [38539] 1953612 1953728 1953745 1953746 1953749 1953752 1953753 1953754 1953755
#> [38548] 1953756 1953768 1953769 1953770 1953771 1953788 1953792 1953797 1953801
#> [38557] 1953803 1953812 1953814 1953818 1953820 1953824 1954051 1954052 1954053
#> [38566] 1954063 1954064 1954065 1954066 1954067 1954068 1954069 1954070 1954071
#> [38575] 1954075 1954080 1954081 1954087 1954090 1954091 1954092 1954097 1954098
#> [38584] 1954100 1954103 1954104 1954112 1954114 1954225 1954226 1954227 1954228
#> [38593] 1954229 1954230 1954231 1954232 1954233 1954235 1954237 1954327 1954328
#> [38602] 1954581 1954676 1954679 1954680 1954682 1954826 1954828 1954846 1954854
#> [38611] 1954856 1954857 1954858 1954861 1955045 1955063 1955065 1955068 1955069
#> [38620] 1955071 1955078 1955079 1955080 1955081 1955082 1955440 1955486 1955487
#> [38629] 1955488 1955489 1955490 1955491 1955492 1955493 1955495 1955496 1955504
#> [38638] 1955505 1955510 1955511 1955516 1955517 1955522 1955523 1955524 1955525
#> [38647] 1955532 1955534 1955538 1955539 1955540 1955541 1955542 1955543 1955544
#> [38656] 1955545 1955557 1955570 1955571 1955572 1955576 1955577 1955578 1955579
#> [38665] 1955580 1955581 1955582 1955583 1955584 1955585 1955586 1955587 1955635
#> [38674] 1955642 1955643 1955644 1955820 1956008 1956114 1956116 1956124 1956127
#> [38683] 1956131 1956134 1956257 1956347 1956348 1956458 1956459 1956460 1956473
#> [38692] 1956510 1956641 1956642 1956643 1956644 1956645 1956646 1956647 1956648
#> [38701] 1956649 1956650 1956651 1956819 1957003 1957006 1957007 1957013 1957046
#> [38710] 1957056 1957087 1957156 1957195 1957224 1957225 1957226 1957227 1957228
#> [38719] 1957229 1957230 1957231 1957249 1957250 1957290 1957439 1957528 1957532
#> [38728] 1957533 1957543 1959096 1959123 1959169 1959170 1959182 1959184 1959185
#> [38737] 1959186 1959356 1959375 1959380 1959556 1959679 1959700 1959701 1959768
#> [38746] 1959769 1959771 1959794 1959913 1959914 1959916 1959917 1959918 1959919
#> [38755] 1960099 1960105 1960107 1960417 1960449 1960450 1960455 1960456 1960457
#> [38764] 1960458 1960581 1960582 1960583 1960710 1960724 1960918 1960919 1960920
#> [38773] 1960921 1960922 1960923 1960924 1960925 1960926 1960927 1960928 1960929
#> [38782] 1960930 1960931 1960935 1960938 1960940 1960941 1960942 1961203 1961347
#> [38791] 1961349 1961531 1961606 1961607 1961608 1961609 1961611 1961614 1961617
#> [38800] 1961619 1961622 1961648 1962465 1963009 1963010 1963012 1963014 1963016
#> [38809] 1963018 1963020 1963022 1963024 1963026 1963028 1963030 1963032 1963034
#> [38818] 1963036 1963038 1963040 1963042 1963044 1963046 1963048 1963050 1963052
#> [38827] 1963054 1963056 1963060 1963063 1963065 1963067 1963070 1963075 1963077
#> [38836] 1963116 1963117 1963118 1963119 1963120 1963121 1963122 1963124 1963126
#> [38845] 1963128 1963130 1963132 1963134 1963136 1963138 1963140 1963146 1963155
#> [38854] 1963157 1963163 1963165 1963171 1963174 1963176 1963178 1963180 1963182
#> [38863] 1963184 1963186 1963187 1963189 1963191 1963195 1963196 1963198 1963205
#> [38872] 1963207 1963213 1963214 1963219 1963222 1963224 1963226 1963228 1963230
#> [38881] 1963232 1963234 1963235 1963237 1963239 1963243 1963244 1963246 1963253
#> [38890] 1963255 1963262 1963263 1963268 1963287 1963288 1963326 1963327 1963328
#> [38899] 1963329 1963330 1963331 1963332 1963333 1963337 1963341 1963352 1963353
#> [38908] 1963354 1963370 1963383 1963386 1963395 1963396 1963398 1963401 1963402
#> [38917] 1963405 1963407 1963408 1963409 1963459 1963461 1963462 1963463 1963464
#> [38926] 1963468 1963471 1963473 1963474 1963475 1963480 1963506 1963528 1963534
#> [38935] 1963539

These examples demonstrate the flexibility of PUG REST in accessing specific BioAssay data. Users can efficiently retrieve detailed descriptions, comprehensive data sets, concise readouts, and target information, making it a valuable tool for researchers and scientists working with BioAssay data.

3.4. Genes

PubChem provides various methods to access gene data, making it a valuable resource for genetic research. Here’s how you can utilize PUG REST to access gene-related information:

1. Gene Input Methods:

  • By Gene ID: Access gene data using NCBI Gene identifiers. For example, to get a summary for gene IDs 1956 and 13649 in JSON format:
result <- get_pug_rest(identifier = "1956,13649", namespace = "geneid", domain = "gene", operation = "summary", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Gene
#>   - Namespace: DomainSpecific
#>   - Operation: summary
#>   - Identifier: 1956,13649
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $GeneSummaries
#> $GeneSummaries$GeneSummary
#> $GeneSummaries$GeneSummary[[1]]
#> $GeneSummaries$GeneSummary[[1]]$GeneID
#> [1] 1956
#> 
#> $GeneSummaries$GeneSummary[[1]]$Symbol
#> [1] "EGFR"
#> 
#> $GeneSummaries$GeneSummary[[1]]$Name
#> [1] "epidermal growth factor receptor"
#> 
#> $GeneSummaries$GeneSummary[[1]]$TaxonomyID
#> [1] 9606
#> 
#> $GeneSummaries$GeneSummary[[1]]$Taxonomy
#> [1] "Homo sapiens (human)"
#> 
#> $GeneSummaries$GeneSummary[[1]]$Description
#> [1] "The protein encoded by this gene is a transmembrane glycoprotein that is a member of the protein kinase superfamily. This protein is a receptor for members of the epidermal growth factor family. EGFR is a cell surface protein that binds to epidermal growth factor, thus inducing receptor dimerization and tyrosine autophosphorylation leading to cell proliferation. Mutations in this gene are associated with lung cancer. EGFR is a component of the cytokine storm which contributes to a severe form of Coronavirus Disease 2019 (COVID-19) resulting from infection with severe acute respiratory syndrome coronavirus-2 (SARS-CoV-2). [provided by RefSeq, Jul 2020]"
#> 
#> $GeneSummaries$GeneSummary[[1]]$Synonym
#>  [1] "ERBB"                                                          
#>  [2] "ERBB1"                                                         
#>  [3] "ERRP"                                                          
#>  [4] "HER1"                                                          
#>  [5] "NISBD2"                                                        
#>  [6] "PIG61"                                                         
#>  [7] "mENA"                                                          
#>  [8] "EGFR vIII"                                                     
#>  [9] "avian erythroblastic leukemia viral (v-erb-b) oncogene homolog"
#> [10] "cell growth inhibiting protein 40"                             
#> [11] "cell proliferation-inducing protein 61"                        
#> [12] "epidermal growth factor receptor tyrosine kinase domain"       
#> [13] "erb-b2 receptor tyrosine kinase 1"                             
#> [14] "proto-oncogene c-ErbB-1"                                       
#> [15] "receptor tyrosine-protein kinase erbB-1"                       
#> 
#> 
#> $GeneSummaries$GeneSummary[[2]]
#> $GeneSummaries$GeneSummary[[2]]$GeneID
#> [1] 13649
#> 
#> $GeneSummaries$GeneSummary[[2]]$Symbol
#> [1] "Egfr"
#> 
#> $GeneSummaries$GeneSummary[[2]]$Name
#> [1] "epidermal growth factor receptor"
#> 
#> $GeneSummaries$GeneSummary[[2]]$TaxonomyID
#> [1] 10090
#> 
#> $GeneSummaries$GeneSummary[[2]]$Taxonomy
#> [1] "Mus musculus (house mouse)"
#> 
#> $GeneSummaries$GeneSummary[[2]]$Description
#> [1] ""
#> 
#> $GeneSummaries$GeneSummary[[2]]$Synonym
#> [1] "9030024J15Rik"                                                 
#> [2] "Erbb"                                                          
#> [3] "Errb1"                                                         
#> [4] "Errp"                                                          
#> [5] "Wa5"                                                           
#> [6] "wa-2"                                                          
#> [7] "wa2"                                                           
#> [8] "avian erythroblastic leukemia viral (v-erb-b) oncogene homolog"
#> [9] "waved 2"
  • By Gene Symbol: Use the official gene symbol, which often maps to multiple genes. For example, to access data for the EGFR gene symbol:
result <- get_pug_rest(identifier = "EGFR", namespace = "genesymbol", domain = "gene", operation = "summary", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Gene
#>   - Namespace: DomainSpecific
#>   - Operation: summary
#>   - Identifier: EGFR
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $GeneSummaries
#> $GeneSummaries$GeneSummary
#> $GeneSummaries$GeneSummary[[1]]
#> $GeneSummaries$GeneSummary[[1]]$GeneID
#> [1] 1956
#> 
#> $GeneSummaries$GeneSummary[[1]]$Symbol
#> [1] "EGFR"
#> 
#> $GeneSummaries$GeneSummary[[1]]$Name
#> [1] "epidermal growth factor receptor"
#> 
#> $GeneSummaries$GeneSummary[[1]]$TaxonomyID
#> [1] 9606
#> 
#> $GeneSummaries$GeneSummary[[1]]$Taxonomy
#> [1] "Homo sapiens (human)"
#> 
#> $GeneSummaries$GeneSummary[[1]]$Description
#> [1] "The protein encoded by this gene is a transmembrane glycoprotein that is a member of the protein kinase superfamily. This protein is a receptor for members of the epidermal growth factor family. EGFR is a cell surface protein that binds to epidermal growth factor, thus inducing receptor dimerization and tyrosine autophosphorylation leading to cell proliferation. Mutations in this gene are associated with lung cancer. EGFR is a component of the cytokine storm which contributes to a severe form of Coronavirus Disease 2019 (COVID-19) resulting from infection with severe acute respiratory syndrome coronavirus-2 (SARS-CoV-2). [provided by RefSeq, Jul 2020]"
#> 
#> $GeneSummaries$GeneSummary[[1]]$Synonym
#>  [1] "ERBB"                                                          
#>  [2] "ERBB1"                                                         
#>  [3] "ERRP"                                                          
#>  [4] "HER1"                                                          
#>  [5] "NISBD2"                                                        
#>  [6] "PIG61"                                                         
#>  [7] "mENA"                                                          
#>  [8] "EGFR vIII"                                                     
#>  [9] "avian erythroblastic leukemia viral (v-erb-b) oncogene homolog"
#> [10] "cell growth inhibiting protein 40"                             
#> [11] "cell proliferation-inducing protein 61"                        
#> [12] "epidermal growth factor receptor tyrosine kinase domain"       
#> [13] "erb-b2 receptor tyrosine kinase 1"                             
#> [14] "proto-oncogene c-ErbB-1"                                       
#> [15] "receptor tyrosine-protein kinase erbB-1"
  • By Gene Synonym: Access gene data using synonyms like alternative names. For example, for the ERBB1 synonym:
result <- get_pug_rest(identifier = "ERBB1", namespace = "synonym", domain = "gene", operation = "summary", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Gene
#>   - Namespace: DomainSpecific
#>   - Operation: summary
#>   - Identifier: ERBB1
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $GeneSummaries
#> $GeneSummaries$GeneSummary
#> $GeneSummaries$GeneSummary[[1]]
#> $GeneSummaries$GeneSummary[[1]]$GeneID
#> [1] 1956
#> 
#> $GeneSummaries$GeneSummary[[1]]$Symbol
#> [1] "EGFR"
#> 
#> $GeneSummaries$GeneSummary[[1]]$Name
#> [1] "epidermal growth factor receptor"
#> 
#> $GeneSummaries$GeneSummary[[1]]$TaxonomyID
#> [1] 9606
#> 
#> $GeneSummaries$GeneSummary[[1]]$Taxonomy
#> [1] "Homo sapiens (human)"
#> 
#> $GeneSummaries$GeneSummary[[1]]$Description
#> [1] "The protein encoded by this gene is a transmembrane glycoprotein that is a member of the protein kinase superfamily. This protein is a receptor for members of the epidermal growth factor family. EGFR is a cell surface protein that binds to epidermal growth factor, thus inducing receptor dimerization and tyrosine autophosphorylation leading to cell proliferation. Mutations in this gene are associated with lung cancer. EGFR is a component of the cytokine storm which contributes to a severe form of Coronavirus Disease 2019 (COVID-19) resulting from infection with severe acute respiratory syndrome coronavirus-2 (SARS-CoV-2). [provided by RefSeq, Jul 2020]"
#> 
#> $GeneSummaries$GeneSummary[[1]]$Synonym
#>  [1] "ERBB"                                                          
#>  [2] "ERBB1"                                                         
#>  [3] "ERRP"                                                          
#>  [4] "HER1"                                                          
#>  [5] "NISBD2"                                                        
#>  [6] "PIG61"                                                         
#>  [7] "mENA"                                                          
#>  [8] "EGFR vIII"                                                     
#>  [9] "avian erythroblastic leukemia viral (v-erb-b) oncogene homolog"
#> [10] "cell growth inhibiting protein 40"                             
#> [11] "cell proliferation-inducing protein 61"                        
#> [12] "epidermal growth factor receptor tyrosine kinase domain"       
#> [13] "erb-b2 receptor tyrosine kinase 1"                             
#> [14] "proto-oncogene c-ErbB-1"                                       
#> [15] "receptor tyrosine-protein kinase erbB-1"                       
#> 
#> 
#> $GeneSummaries$GeneSummary[[2]]
#> $GeneSummaries$GeneSummary[[2]]$GeneID
#> [1] 24329
#> 
#> $GeneSummaries$GeneSummary[[2]]$Symbol
#> [1] "Egfr"
#> 
#> $GeneSummaries$GeneSummary[[2]]$Name
#> [1] "epidermal growth factor receptor"
#> 
#> $GeneSummaries$GeneSummary[[2]]$TaxonomyID
#> [1] 10116
#> 
#> $GeneSummaries$GeneSummary[[2]]$Taxonomy
#> [1] "Rattus norvegicus (Norway rat)"
#> 
#> $GeneSummaries$GeneSummary[[2]]$Description
#> [1] "promotes cell proliferation and differentiation; mediates GPCR regulated induction of protein synthesis [RGD, Feb 2006]"
#> 
#> $GeneSummaries$GeneSummary[[2]]$Synonym
#> [1] "ERBB1"                                                                                                           
#> [2] "ErbB-1"                                                                                                          
#> [3] "Errp"                                                                                                            
#> [4] "EGFR-related peptide"                                                                                            
#> [5] "Epidermal growth factor receptor formerly avian erythroblastic leukemia viral (v-erbB) oncogene homolog (Erbb1)" 
#> [6] "avian erythroblastic leukemia viral (v-erbB) oncogene homolog"                                                   
#> [7] "epidermal growth factor receptor, formerly avian erythroblastic leukemia viral (v-erbB) oncogene homolog (Erbb1)"
#> 
#> 
#> $GeneSummaries$GeneSummary[[3]]
#> $GeneSummaries$GeneSummary[[3]]$GeneID
#> [1] 724072
#> 
#> $GeneSummaries$GeneSummary[[3]]$Symbol
#> [1] "egfr.L"
#> 
#> $GeneSummaries$GeneSummary[[3]]$Name
#> [1] "epidermal growth factor receptor L homeolog"
#> 
#> $GeneSummaries$GeneSummary[[3]]$TaxonomyID
#> [1] 8355
#> 
#> $GeneSummaries$GeneSummary[[3]]$Taxonomy
#> [1] "Xenopus laevis (African clawed frog)"
#> 
#> $GeneSummaries$GeneSummary[[3]]$Description
#> [1] ""
#> 
#> $GeneSummaries$GeneSummary[[3]]$Synonym
#> [1] "XEgfr"                            "egfr"                            
#> [3] "erbb"                             "erbb1"                           
#> [5] "her1"                             "epidermal growth factor receptor"
#> 
#> 
#> $GeneSummaries$GeneSummary[[4]]
#> $GeneSummaries$GeneSummary[[4]]$GeneID
#> [1] 100492965
#> 
#> $GeneSummaries$GeneSummary[[4]]$Symbol
#> [1] "egfr"
#> 
#> $GeneSummaries$GeneSummary[[4]]$Name
#> [1] "epidermal growth factor receptor"
#> 
#> $GeneSummaries$GeneSummary[[4]]$TaxonomyID
#> [1] 8364
#> 
#> $GeneSummaries$GeneSummary[[4]]$Taxonomy
#> [1] "Xenopus tropicalis (tropical clawed frog)"
#> 
#> $GeneSummaries$GeneSummary[[4]]$Description
#> [1] ""
#> 
#> $GeneSummaries$GeneSummary[[4]]$Synonym
#> [1] "XEgfr" "erbb"  "erbb1" "her1" 
#> 
#> 
#> $GeneSummaries$GeneSummary[[5]]
#> $GeneSummaries$GeneSummary[[5]]$GeneID
#> [1] 100537376
#> 
#> $GeneSummaries$GeneSummary[[5]]$Symbol
#> [1] "egfrb"
#> 
#> $GeneSummaries$GeneSummary[[5]]$Name
#> [1] "epidermal growth factor receptor b (erythroblastic leukemia viral (v-erb-b) oncogene homolog, avian)"
#> 
#> $GeneSummaries$GeneSummary[[5]]$TaxonomyID
#> [1] 7955
#> 
#> $GeneSummaries$GeneSummary[[5]]$Taxonomy
#> [1] "Danio rerio (zebrafish)"
#> 
#> $GeneSummaries$GeneSummary[[5]]$Description
#> [1] ""
#> 
#> $GeneSummaries$GeneSummary[[5]]$Synonym
#> [1] "erbb1"  "erbb1b"
#> 
#> 
#> $GeneSummaries$GeneSummary[[6]]
#> $GeneSummaries$GeneSummary[[6]]$GeneID
#> [1] 108719997
#> 
#> $GeneSummaries$GeneSummary[[6]]$Symbol
#> [1] "egfr.S"
#> 
#> $GeneSummaries$GeneSummary[[6]]$Name
#> [1] "epidermal growth factor receptor S homeolog"
#> 
#> $GeneSummaries$GeneSummary[[6]]$TaxonomyID
#> [1] 8355
#> 
#> $GeneSummaries$GeneSummary[[6]]$Taxonomy
#> [1] "Xenopus laevis (African clawed frog)"
#> 
#> $GeneSummaries$GeneSummary[[6]]$Description
#> [1] ""
#> 
#> $GeneSummaries$GeneSummary[[6]]$Synonym
#> [1] "XEgfr"                            "erbb"                            
#> [3] "erbb1"                            "her1"                            
#> [5] "epidermal growth factor receptor"

2. Available Gene Data:

  • Gene Summary: Returns a summary including GeneID, Symbol, Name, TaxonomyID, Description, and Synonyms. For example:
result <- get_pug_rest(identifier = "1956,13649", namespace = "geneid", domain = "gene", operation = "summary", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Gene
#>   - Namespace: DomainSpecific
#>   - Operation: summary
#>   - Identifier: 1956,13649
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $GeneSummaries
#> $GeneSummaries$GeneSummary
#> $GeneSummaries$GeneSummary[[1]]
#> $GeneSummaries$GeneSummary[[1]]$GeneID
#> [1] 1956
#> 
#> $GeneSummaries$GeneSummary[[1]]$Symbol
#> [1] "EGFR"
#> 
#> $GeneSummaries$GeneSummary[[1]]$Name
#> [1] "epidermal growth factor receptor"
#> 
#> $GeneSummaries$GeneSummary[[1]]$TaxonomyID
#> [1] 9606
#> 
#> $GeneSummaries$GeneSummary[[1]]$Taxonomy
#> [1] "Homo sapiens (human)"
#> 
#> $GeneSummaries$GeneSummary[[1]]$Description
#> [1] "The protein encoded by this gene is a transmembrane glycoprotein that is a member of the protein kinase superfamily. This protein is a receptor for members of the epidermal growth factor family. EGFR is a cell surface protein that binds to epidermal growth factor, thus inducing receptor dimerization and tyrosine autophosphorylation leading to cell proliferation. Mutations in this gene are associated with lung cancer. EGFR is a component of the cytokine storm which contributes to a severe form of Coronavirus Disease 2019 (COVID-19) resulting from infection with severe acute respiratory syndrome coronavirus-2 (SARS-CoV-2). [provided by RefSeq, Jul 2020]"
#> 
#> $GeneSummaries$GeneSummary[[1]]$Synonym
#>  [1] "ERBB"                                                          
#>  [2] "ERBB1"                                                         
#>  [3] "ERRP"                                                          
#>  [4] "HER1"                                                          
#>  [5] "NISBD2"                                                        
#>  [6] "PIG61"                                                         
#>  [7] "mENA"                                                          
#>  [8] "EGFR vIII"                                                     
#>  [9] "avian erythroblastic leukemia viral (v-erb-b) oncogene homolog"
#> [10] "cell growth inhibiting protein 40"                             
#> [11] "cell proliferation-inducing protein 61"                        
#> [12] "epidermal growth factor receptor tyrosine kinase domain"       
#> [13] "erb-b2 receptor tyrosine kinase 1"                             
#> [14] "proto-oncogene c-ErbB-1"                                       
#> [15] "receptor tyrosine-protein kinase erbB-1"                       
#> 
#> 
#> $GeneSummaries$GeneSummary[[2]]
#> $GeneSummaries$GeneSummary[[2]]$GeneID
#> [1] 13649
#> 
#> $GeneSummaries$GeneSummary[[2]]$Symbol
#> [1] "Egfr"
#> 
#> $GeneSummaries$GeneSummary[[2]]$Name
#> [1] "epidermal growth factor receptor"
#> 
#> $GeneSummaries$GeneSummary[[2]]$TaxonomyID
#> [1] 10090
#> 
#> $GeneSummaries$GeneSummary[[2]]$Taxonomy
#> [1] "Mus musculus (house mouse)"
#> 
#> $GeneSummaries$GeneSummary[[2]]$Description
#> [1] ""
#> 
#> $GeneSummaries$GeneSummary[[2]]$Synonym
#> [1] "9030024J15Rik"                                                 
#> [2] "Erbb"                                                          
#> [3] "Errb1"                                                         
#> [4] "Errp"                                                          
#> [5] "Wa5"                                                           
#> [6] "wa-2"                                                          
#> [7] "wa2"                                                           
#> [8] "avian erythroblastic leukemia viral (v-erb-b) oncogene homolog"
#> [9] "waved 2"
  • Assays from Gene: Retrieves a list of AIDs tested against a specific gene. For example, for gene ID 13649:
result <- get_pug_rest(identifier = "13649", namespace = "geneid", domain = "gene", operation = "aids", output = "TXT")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Gene
#>   - Namespace: DomainSpecific
#>   - Operation: aids
#>   - Identifier: 13649
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#>         V1
#> 1    66438
#> 2    69721
#> 3    69722
#> 4    69724
#> 5    69727
#> 6    69728
#> 7    69729
#> 8    69730
#> 9   106697
#> 10  209326
#> 11  241562
#> 12  241823
#> 13  337238
#> 14  337243
#> 15  337244
#> 16  415757
#> 17  415758
#> 18  415759
#> 19  415760
#> 20 1053208
#> 21 1224826
#> 22 1224828
#> 23 1527521
#> 24 1740135
#> 25 1815786
#> 26 1815820
#> 27 1862914
#> 28 1896806
  • Bioactivities from Gene: Returns concise bioactivity data for a specific gene. For example:
result <- get_pug_rest(identifier = "13649", namespace = "geneid", domain = "gene", operation = "concise", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Gene
#>   - Namespace: DomainSpecific
#>   - Operation: concise
#>   - Identifier: 13649
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $Table
#> $Table$Columns
#> $Table$Columns$Column
#>  [1] "AID"                 "SID"                 "CID"                
#>  [4] "Activity Outcome"    "Target Accession"    "Activity Value [uM]"
#>  [7] "Activity Name"       "Assay Name"          "Assay Type"         
#> [10] "PubMed ID"           "RNAi"               
#> 
#> 
#> $Table$Row
#> $Table$Row[[1]]
#> $Table$Row[[1]]$Cell
#>  [1] "66438"                                                           
#>  [2] "103250953"                                                       
#>  [3] "25017867"                                                        
#>  [4] "Active"                                                          
#>  [5] "Q01279"                                                          
#>  [6] "0.01"                                                            
#>  [7] "Effective concentration"                                         
#>  [8] "Inhibition of epidermal growth factor binding in C3H10T1/2 cells"
#>  [9] "Confirmatory"                                                    
#> [10] "1597853"                                                         
#> [11] ""                                                                
#> 
#> 
#> $Table$Row[[2]]
#> $Table$Row[[2]]$Cell
#>  [1] "66438"                                                           
#>  [2] "103432098"                                                       
#>  [3] "454217"                                                          
#>  [4] "Active"                                                          
#>  [5] "Q01279"                                                          
#>  [6] "0.22"                                                            
#>  [7] "Effective concentration"                                         
#>  [8] "Inhibition of epidermal growth factor binding in C3H10T1/2 cells"
#>  [9] "Confirmatory"                                                    
#> [10] "1597853"                                                         
#> [11] ""                                                                
#> 
#> 
#> $Table$Row[[3]]
#> $Table$Row[[3]]$Cell
#>  [1] "69721"                                                                              
#>  [2] "103358917"                                                                          
#>  [3] "135512509"                                                                          
#>  [4] "Unspecified"                                                                        
#>  [5] "Q01279"                                                                             
#>  [6] "22.7"                                                                               
#>  [7] "IC50"                                                                               
#>  [8] "Inhibition of Epidermal growth factor receptor mediated mitogenesis of NIH3T3 cells"
#>  [9] "Confirmatory"                                                                       
#> [10] "9748366"                                                                            
#> [11] ""                                                                                   
#> 
#> 
#> $Table$Row[[4]]
#> $Table$Row[[4]]$Cell
#>  [1] "69721"                                                                              
#>  [2] "103358918"                                                                          
#>  [3] "135434086"                                                                          
#>  [4] "Unspecified"                                                                        
#>  [5] "Q01279"                                                                             
#>  [6] "36.9"                                                                               
#>  [7] "IC50"                                                                               
#>  [8] "Inhibition of Epidermal growth factor receptor mediated mitogenesis of NIH3T3 cells"
#>  [9] "Confirmatory"                                                                       
#> [10] "9748366"                                                                            
#> [11] ""                                                                                   
#> 
#> 
#> $Table$Row[[5]]
#> $Table$Row[[5]]$Cell
#>  [1] "69721"                                                                              
#>  [2] "103358919"                                                                          
#>  [3] "135455949"                                                                          
#>  [4] "Unspecified"                                                                        
#>  [5] "Q01279"                                                                             
#>  [6] "11.3"                                                                               
#>  [7] "IC50"                                                                               
#>  [8] "Inhibition of Epidermal growth factor receptor mediated mitogenesis of NIH3T3 cells"
#>  [9] "Confirmatory"                                                                       
#> [10] "9748366"                                                                            
#> [11] ""                                                                                   
#> 
#> 
#> $Table$Row[[6]]
#> $Table$Row[[6]]$Cell
#>  [1] "69722"                                                                                                           
#>  [2] "103253186"                                                                                                       
#>  [3] "5328592"                                                                                                         
#>  [4] "Unspecified"                                                                                                     
#>  [5] "Q01279"                                                                                                          
#>  [6] "100"                                                                                                             
#>  [7] "IC50"                                                                                                            
#>  [8] "Inhibition of epidermal growth factor receptor (EGFR-mediated tyrosine autophosphorylation in mouse fibroblasts."
#>  [9] "Confirmatory"                                                                                                    
#> [10] "8027985"                                                                                                         
#> [11] ""                                                                                                                
#> 
#> 
#> $Table$Row[[7]]
#> $Table$Row[[7]]$Cell
#>  [1] "69722"                                                                                                           
#>  [2] "103253755"                                                                                                       
#>  [3] "5328614"                                                                                                         
#>  [4] "Unspecified"                                                                                                     
#>  [5] "Q01279"                                                                                                          
#>  [6] "100"                                                                                                             
#>  [7] "IC50"                                                                                                            
#>  [8] "Inhibition of epidermal growth factor receptor (EGFR-mediated tyrosine autophosphorylation in mouse fibroblasts."
#>  [9] "Confirmatory"                                                                                                    
#> [10] "8027985"                                                                                                         
#> [11] ""                                                                                                                
#> 
#> 
#> $Table$Row[[8]]
#> $Table$Row[[8]]$Cell
#>  [1] "69722"                                                                                                           
#>  [2] "103254313"                                                                                                       
#>  [3] "5328618"                                                                                                         
#>  [4] "Unspecified"                                                                                                     
#>  [5] "Q01279"                                                                                                          
#>  [6] "100"                                                                                                             
#>  [7] "IC50"                                                                                                            
#>  [8] "Inhibition of epidermal growth factor receptor (EGFR-mediated tyrosine autophosphorylation in mouse fibroblasts."
#>  [9] "Confirmatory"                                                                                                    
#> [10] "8027985"                                                                                                         
#> [11] ""                                                                                                                
#> 
#> 
#> $Table$Row[[9]]
#> $Table$Row[[9]]$Cell
#>  [1] "69722"                                                                                                           
#>  [2] "103254592"                                                                                                       
#>  [3] "5328617"                                                                                                         
#>  [4] "Unspecified"                                                                                                     
#>  [5] "Q01279"                                                                                                          
#>  [6] "25"                                                                                                              
#>  [7] "IC50"                                                                                                            
#>  [8] "Inhibition of epidermal growth factor receptor (EGFR-mediated tyrosine autophosphorylation in mouse fibroblasts."
#>  [9] "Confirmatory"                                                                                                    
#> [10] "8027985"                                                                                                         
#> [11] ""                                                                                                                
#> 
#> 
#> $Table$Row[[10]]
#> $Table$Row[[10]]$Cell
#>  [1] "69724"                                                                   
#>  [2] "103237764"                                                               
#>  [3] "5328042"                                                                 
#>  [4] "Active"                                                                  
#>  [5] "Q01279"                                                                  
#>  [6] "0.04"                                                                    
#>  [7] "IC50"                                                                    
#>  [8] "Inhibition of epidermal growth factor receptor tyrosine kinase (EGFR TK)"
#>  [9] "Confirmatory"                                                            
#> [10] "14640561"                                                                
#> [11] ""                                                                        
#> 
#> 
#> $Table$Row[[11]]
#> $Table$Row[[11]]$Cell
#>  [1] "69724"                                                                   
#>  [2] "103373305"                                                               
#>  [3] "9882519"                                                                 
#>  [4] "Active"                                                                  
#>  [5] "Q01279"                                                                  
#>  [6] "0.2"                                                                     
#>  [7] "IC50"                                                                    
#>  [8] "Inhibition of epidermal growth factor receptor tyrosine kinase (EGFR TK)"
#>  [9] "Confirmatory"                                                            
#> [10] "14640561"                                                                
#> [11] ""                                                                        
#> 
#> 
#> $Table$Row[[12]]
#> $Table$Row[[12]]$Cell
#>  [1] "69724"                                                                   
#>  [2] "103373788"                                                               
#>  [3] "9885081"                                                                 
#>  [4] "Active"                                                                  
#>  [5] "Q01279"                                                                  
#>  [6] "0.07"                                                                    
#>  [7] "IC50"                                                                    
#>  [8] "Inhibition of epidermal growth factor receptor tyrosine kinase (EGFR TK)"
#>  [9] "Confirmatory"                                                            
#> [10] "14640561"                                                                
#> [11] ""                                                                        
#> 
#> 
#> $Table$Row[[13]]
#> $Table$Row[[13]]$Cell
#>  [1] "69724"                                                                   
#>  [2] "103399645"                                                               
#>  [3] "11198415"                                                                
#>  [4] "Active"                                                                  
#>  [5] "Q01279"                                                                  
#>  [6] "0.578"                                                                   
#>  [7] "IC50"                                                                    
#>  [8] "Inhibition of epidermal growth factor receptor tyrosine kinase (EGFR TK)"
#>  [9] "Confirmatory"                                                            
#> [10] "14640561"                                                                
#> [11] ""                                                                        
#> 
#> 
#> $Table$Row[[14]]
#> $Table$Row[[14]]$Cell
#>  [1] "69724"                                                                   
#>  [2] "103399736"                                                               
#>  [3] "10094127"                                                                
#>  [4] "Active"                                                                  
#>  [5] "Q01279"                                                                  
#>  [6] "0.13"                                                                    
#>  [7] "IC50"                                                                    
#>  [8] "Inhibition of epidermal growth factor receptor tyrosine kinase (EGFR TK)"
#>  [9] "Confirmatory"                                                            
#> [10] "14640561"                                                                
#> [11] ""                                                                        
#> 
#> 
#> $Table$Row[[15]]
#> $Table$Row[[15]]$Cell
#>  [1] "69724"                                                                   
#>  [2] "103399893"                                                               
#>  [3] "11349700"                                                                
#>  [4] "Active"                                                                  
#>  [5] "Q01279"                                                                  
#>  [6] "0.11"                                                                    
#>  [7] "IC50"                                                                    
#>  [8] "Inhibition of epidermal growth factor receptor tyrosine kinase (EGFR TK)"
#>  [9] "Confirmatory"                                                            
#> [10] "14640561"                                                                
#> [11] ""                                                                        
#> 
#> 
#> $Table$Row[[16]]
#> $Table$Row[[16]]$Cell
#>  [1] "69727"                                                                                  
#>  [2] "103167027"                                                                              
#>  [3] "5280343"                                                                                
#>  [4] "Unspecified"                                                                            
#>  [5] "Q01279"                                                                                 
#>  [6] ""                                                                                       
#>  [7] ""                                                                                       
#>  [8] "Inhibition of epidermal growth factor (EGF) receptor from A431 cell membranes at 150 uM"
#>  [9] "Other"                                                                                  
#> [10] "8201603"                                                                                
#> [11] ""                                                                                       
#> 
#> 
#> $Table$Row[[17]]
#> $Table$Row[[17]]$Cell
#>  [1] "69728"                                                                              
#>  [2] "103399857"                                                                          
#>  [3] "44368090"                                                                           
#>  [4] "Inactive"                                                                           
#>  [5] "Q01279"                                                                             
#>  [6] ""                                                                                   
#>  [7] ""                                                                                   
#>  [8] "Inhibition of epidermal growth factor receptor tyrosine kinase (EGFR TK) (inactive)"
#>  [9] "Other"                                                                              
#> [10] "14640561"                                                                           
#> [11] ""                                                                                   
#> 
#> 
#> $Table$Row[[18]]
#> $Table$Row[[18]]$Cell
#>  [1] "69729"                                                                                  
#>  [2] "103167027"                                                                              
#>  [3] "5280343"                                                                                
#>  [4] "Unspecified"                                                                            
#>  [5] "Q01279"                                                                                 
#>  [6] ""                                                                                       
#>  [7] ""                                                                                       
#>  [8] "Inhibition of epidermal growth factor (EGF) receptor from A431 cell membranes at 150 uM"
#>  [9] "Other"                                                                                  
#> [10] "8201603"                                                                                
#> [11] ""                                                                                       
#> 
#> 
#> $Table$Row[[19]]
#> $Table$Row[[19]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103226434"                                                                                   
#>  [3] "10318571"                                                                                    
#>  [4] "Active"                                                                                      
#>  [5] "Q01279"                                                                                      
#>  [6] "4"                                                                                           
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> [11] ""                                                                                            
#> 
#> 
#> $Table$Row[[20]]
#> $Table$Row[[20]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103350640"                                                                                   
#>  [3] "10406106"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "Q01279"                                                                                      
#>  [6] "14"                                                                                          
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> [11] ""                                                                                            
#> 
#> 
#> $Table$Row[[21]]
#> $Table$Row[[21]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103378973"                                                                                   
#>  [3] "10738302"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "Q01279"                                                                                      
#>  [6] "33"                                                                                          
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> [11] ""                                                                                            
#> 
#> 
#> $Table$Row[[22]]
#> $Table$Row[[22]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103378974"                                                                                   
#>  [3] "10761144"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "Q01279"                                                                                      
#>  [6] "200"                                                                                         
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> [11] ""                                                                                            
#> 
#> 
#> $Table$Row[[23]]
#> $Table$Row[[23]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379003"                                                                                   
#>  [3] "10044189"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "Q01279"                                                                                      
#>  [6] "500"                                                                                         
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> [11] ""                                                                                            
#> 
#> 
#> $Table$Row[[24]]
#> $Table$Row[[24]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379199"                                                                                   
#>  [3] "10428841"                                                                                    
#>  [4] "Active"                                                                                      
#>  [5] "Q01279"                                                                                      
#>  [6] "8"                                                                                           
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> [11] ""                                                                                            
#> 
#> 
#> $Table$Row[[25]]
#> $Table$Row[[25]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379200"                                                                                   
#>  [3] "10716388"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "Q01279"                                                                                      
#>  [6] "100"                                                                                         
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> [11] ""                                                                                            
#> 
#> 
#> $Table$Row[[26]]
#> $Table$Row[[26]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379360"                                                                                   
#>  [3] "10452792"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "Q01279"                                                                                      
#>  [6] "50"                                                                                          
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> [11] ""                                                                                            
#> 
#> 
#> $Table$Row[[27]]
#> $Table$Row[[27]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379591"                                                                                   
#>  [3] "10620637"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "Q01279"                                                                                      
#>  [6] "300"                                                                                         
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> [11] ""                                                                                            
#> 
#> 
#> $Table$Row[[28]]
#> $Table$Row[[28]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379616"                                                                                   
#>  [3] "10593843"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "Q01279"                                                                                      
#>  [6] "100"                                                                                         
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> [11] ""                                                                                            
#> 
#> 
#> $Table$Row[[29]]
#> $Table$Row[[29]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379617"                                                                                   
#>  [3] "10787405"                                                                                    
#>  [4] "Active"                                                                                      
#>  [5] "Q01279"                                                                                      
#>  [6] "4"                                                                                           
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> [11] ""                                                                                            
#> 
#> 
#> $Table$Row[[30]]
#> $Table$Row[[30]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379660"                                                                                   
#>  [3] "10343317"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "Q01279"                                                                                      
#>  [6] "35"                                                                                          
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> [11] ""                                                                                            
#> 
#> 
#> $Table$Row[[31]]
#> $Table$Row[[31]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379661"                                                                                   
#>  [3] "10499929"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "Q01279"                                                                                      
#>  [6] "15"                                                                                          
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> [11] ""                                                                                            
#> 
#> 
#> $Table$Row[[32]]
#> $Table$Row[[32]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379682"                                                                                   
#>  [3] "10500718"                                                                                    
#>  [4] "Active"                                                                                      
#>  [5] "Q01279"                                                                                      
#>  [6] "1"                                                                                           
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> [11] ""                                                                                            
#> 
#> 
#> $Table$Row[[33]]
#> $Table$Row[[33]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379908"                                                                                   
#>  [3] "10619651"                                                                                    
#>  [4] "Active"                                                                                      
#>  [5] "Q01279"                                                                                      
#>  [6] "10"                                                                                          
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> [11] ""                                                                                            
#> 
#> 
#> $Table$Row[[34]]
#> $Table$Row[[34]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379909"                                                                                   
#>  [3] "10504027"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "Q01279"                                                                                      
#>  [6] "35"                                                                                          
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> [11] ""                                                                                            
#> 
#> 
#> $Table$Row[[35]]
#> $Table$Row[[35]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379910"                                                                                   
#>  [3] "10740438"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "Q01279"                                                                                      
#>  [6] "46"                                                                                          
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> [11] ""                                                                                            
#> 
#> 
#> $Table$Row[[36]]
#> $Table$Row[[36]]$Cell
#>  [1] "106697"                                                              
#>  [2] "103166113"                                                           
#>  [3] "10499619"                                                            
#>  [4] "Active"                                                              
#>  [5] "Q01279"                                                              
#>  [6] "9.55"                                                                
#>  [7] "IC50"                                                                
#>  [8] "Inhibition of EGF-dependent mouse keratinocyte MK cell proliferation"
#>  [9] "Confirmatory"                                                        
#> [10] "10090785"                                                            
#> [11] ""                                                                    
#> 
#> 
#> $Table$Row[[37]]
#> $Table$Row[[37]]$Cell
#>  [1] "106697"                                                              
#>  [2] "103166157"                                                           
#>  [3] "9978638"                                                             
#>  [4] "Active"                                                              
#>  [5] "Q01279"                                                              
#>  [6] "4.93"                                                                
#>  [7] "IC50"                                                                
#>  [8] "Inhibition of EGF-dependent mouse keratinocyte MK cell proliferation"
#>  [9] "Confirmatory"                                                        
#> [10] "10090785"                                                            
#> [11] ""                                                                    
#> 
#> 
#> $Table$Row[[38]]
#> $Table$Row[[38]]$Cell
#>  [1] "106697"                                                              
#>  [2] "103166217"                                                           
#>  [3] "10590515"                                                            
#>  [4] "Unspecified"                                                         
#>  [5] "Q01279"                                                              
#>  [6] "45.2"                                                                
#>  [7] "IC50"                                                                
#>  [8] "Inhibition of EGF-dependent mouse keratinocyte MK cell proliferation"
#>  [9] "Confirmatory"                                                        
#> [10] "10090785"                                                            
#> [11] ""                                                                    
#> 
#> 
#> $Table$Row[[39]]
#> $Table$Row[[39]]$Cell
#>  [1] "106697"                                                              
#>  [2] "103166266"                                                           
#>  [3] "10803234"                                                            
#>  [4] "Unspecified"                                                         
#>  [5] "Q01279"                                                              
#>  [6] "10.2"                                                                
#>  [7] "IC50"                                                                
#>  [8] "Inhibition of EGF-dependent mouse keratinocyte MK cell proliferation"
#>  [9] "Confirmatory"                                                        
#> [10] "10090785"                                                            
#> [11] ""                                                                    
#> 
#> 
#> $Table$Row[[40]]
#> $Table$Row[[40]]$Cell
#>  [1] "106697"                                                              
#>  [2] "103166322"                                                           
#>  [3] "2051"                                                                
#>  [4] "Active"                                                              
#>  [5] "Q01279"                                                              
#>  [6] "0.1"                                                                 
#>  [7] "IC50"                                                                
#>  [8] "Inhibition of EGF-dependent mouse keratinocyte MK cell proliferation"
#>  [9] "Confirmatory"                                                        
#> [10] "10090785"                                                            
#> [11] ""                                                                    
#> 
#> 
#> $Table$Row[[41]]
#> $Table$Row[[41]]$Cell
#>  [1] "106697"                                                              
#>  [2] "103166323"                                                           
#>  [3] "10850934"                                                            
#>  [4] "Unspecified"                                                         
#>  [5] "Q01279"                                                              
#>  [6] "16"                                                                  
#>  [7] "IC50"                                                                
#>  [8] "Inhibition of EGF-dependent mouse keratinocyte MK cell proliferation"
#>  [9] "Confirmatory"                                                        
#> [10] "10090785"                                                            
#> [11] ""                                                                    
#> 
#> 
#> $Table$Row[[42]]
#> $Table$Row[[42]]$Cell
#>  [1] "106697"                                                              
#>  [2] "103166405"                                                           
#>  [3] "9883384"                                                             
#>  [4] "Active"                                                              
#>  [5] "Q01279"                                                              
#>  [6] "2.83"                                                                
#>  [7] "IC50"                                                                
#>  [8] "Inhibition of EGF-dependent mouse keratinocyte MK cell proliferation"
#>  [9] "Confirmatory"                                                        
#> [10] "10090785"                                                            
#> [11] ""                                                                    
#> 
#> 
#> $Table$Row[[43]]
#> $Table$Row[[43]]$Cell
#>  [1] "106697"                                                              
#>  [2] "103166415"                                                           
#>  [3] "10494548"                                                            
#>  [4] "Unspecified"                                                         
#>  [5] "Q01279"                                                              
#>  [6] "11.4"                                                                
#>  [7] "IC50"                                                                
#>  [8] "Inhibition of EGF-dependent mouse keratinocyte MK cell proliferation"
#>  [9] "Confirmatory"                                                        
#> [10] "10090785"                                                            
#> [11] ""                                                                    
#> 
#> 
#> $Table$Row[[44]]
#> $Table$Row[[44]]$Cell
#>  [1] "106697"                                                              
#>  [2] "103166416"                                                           
#>  [3] "689033"                                                              
#>  [4] "Unspecified"                                                         
#>  [5] "Q01279"                                                              
#>  [6] "46.2"                                                                
#>  [7] "IC50"                                                                
#>  [8] "Inhibition of EGF-dependent mouse keratinocyte MK cell proliferation"
#>  [9] "Confirmatory"                                                        
#> [10] "10090785"                                                            
#> [11] ""                                                                    
#> 
#> 
#> $Table$Row[[45]]
#> $Table$Row[[45]]$Cell
#>  [1] "209326"                                                   
#>  [2] "103257455"                                                
#>  [3] "2428"                                                     
#>  [4] "Active"                                                   
#>  [5] "Q01279"                                                   
#>  [6] "0.046"                                                    
#>  [7] "IC50"                                                     
#>  [8] "Inhibition of EGF-mediated mitogenesis in Swiss 3T3 cells"
#>  [9] "Confirmatory"                                             
#> [10] "8632415"                                                  
#> [11] ""                                                         
#> 
#> 
#> $Table$Row[[46]]
#> $Table$Row[[46]]$Cell
#>  [1] "241562"                                                     
#>  [2] "103439646"                                                  
#>  [3] "10209082"                                                   
#>  [4] "Unspecified"                                                
#>  [5] "Q01279"                                                     
#>  [6] "10"                                                         
#>  [7] "IC50"                                                       
#>  [8] "Inhibition of Epidermal growth factor receptor in P19 cells"
#>  [9] "Confirmatory"                                               
#> [10] "15771419"                                                   
#> [11] ""                                                           
#> 
#> 
#> $Table$Row[[47]]
#> $Table$Row[[47]]$Cell
#>  [1] "241562"                                                     
#>  [2] "103439659"                                                  
#>  [3] "10185160"                                                   
#>  [4] "Unspecified"                                                
#>  [5] "Q01279"                                                     
#>  [6] "10"                                                         
#>  [7] "IC50"                                                       
#>  [8] "Inhibition of Epidermal growth factor receptor in P19 cells"
#>  [9] "Confirmatory"                                               
#> [10] "15771419"                                                   
#> [11] ""                                                           
#> 
#> 
#> $Table$Row[[48]]
#> $Table$Row[[48]]$Cell
#>  [1] "241562"                                                     
#>  [2] "103439663"                                                  
#>  [3] "10143584"                                                   
#>  [4] "Unspecified"                                                
#>  [5] "Q01279"                                                     
#>  [6] "10"                                                         
#>  [7] "IC50"                                                       
#>  [8] "Inhibition of Epidermal growth factor receptor in P19 cells"
#>  [9] "Confirmatory"                                               
#> [10] "15771419"                                                   
#> [11] ""                                                           
#> 
#> 
#> $Table$Row[[49]]
#> $Table$Row[[49]]$Cell
#>  [1] "241562"                                                     
#>  [2] "103439672"                                                  
#>  [3] "10163439"                                                   
#>  [4] "Unspecified"                                                
#>  [5] "Q01279"                                                     
#>  [6] "10"                                                         
#>  [7] "IC50"                                                       
#>  [8] "Inhibition of Epidermal growth factor receptor in P19 cells"
#>  [9] "Confirmatory"                                               
#> [10] "15771419"                                                   
#> [11] ""                                                           
#> 
#> 
#> $Table$Row[[50]]
#> $Table$Row[[50]]$Cell
#>  [1] "241562"                                                     
#>  [2] "103439700"                                                  
#>  [3] "10302405"                                                   
#>  [4] "Unspecified"                                                
#>  [5] "Q01279"                                                     
#>  [6] "10"                                                         
#>  [7] "IC50"                                                       
#>  [8] "Inhibition of Epidermal growth factor receptor in P19 cells"
#>  [9] "Confirmatory"                                               
#> [10] "15771419"                                                   
#> [11] ""                                                           
#> 
#> 
#> $Table$Row[[51]]
#> $Table$Row[[51]]$Cell
#>  [1] "241562"                                                     
#>  [2] "103439717"                                                  
#>  [3] "10187378"                                                   
#>  [4] "Unspecified"                                                
#>  [5] "Q01279"                                                     
#>  [6] "10"                                                         
#>  [7] "IC50"                                                       
#>  [8] "Inhibition of Epidermal growth factor receptor in P19 cells"
#>  [9] "Confirmatory"                                               
#> [10] "15771419"                                                   
#> [11] ""                                                           
#> 
#> 
#> $Table$Row[[52]]
#> $Table$Row[[52]]$Cell
#>  [1] "241562"                                                     
#>  [2] "123092436"                                                  
#>  [3] "44259"                                                      
#>  [4] "Unspecified"                                                
#>  [5] "Q01279"                                                     
#>  [6] "10"                                                         
#>  [7] "IC50"                                                       
#>  [8] "Inhibition of Epidermal growth factor receptor in P19 cells"
#>  [9] "Confirmatory"                                               
#> [10] "15771419"                                                   
#> [11] ""                                                           
#> 
#> 
#> $Table$Row[[53]]
#> $Table$Row[[53]]$Cell
#>  [1] "241823"                                                                             
#>  [2] "103452251"                                                                          
#>  [3] "22732319"                                                                           
#>  [4] "Inconclusive"                                                                       
#>  [5] "Q01279"                                                                             
#>  [6] ""                                                                                   
#>  [7] ""                                                                                   
#>  [8] "Inhibition of Epidermal growth factor receptor tyrosine kinase activity; not tested"
#>  [9] "Other"                                                                              
#> [10] "15454232"                                                                           
#> [11] ""                                                                                   
#> 
#> 
#> $Table$Row[[54]]
#> $Table$Row[[54]]$Cell
#>  [1] "337238"                                                   
#>  [2] "103194285"                                                
#>  [3] "4075"                                                     
#>  [4] "Unspecified"                                              
#>  [5] "Q01279"                                                   
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> [11] ""                                                         
#> 
#> 
#> $Table$Row[[55]]
#> $Table$Row[[55]]$Cell
#>  [1] "337238"                                                   
#>  [2] "103227545"                                                
#>  [3] "5328552"                                                  
#>  [4] "Unspecified"                                              
#>  [5] "Q01279"                                                   
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> [11] ""                                                         
#> 
#> 
#> $Table$Row[[56]]
#> $Table$Row[[56]]$Cell
#>  [1] "337238"                                                   
#>  [2] "103319670"                                                
#>  [3] "3894"                                                     
#>  [4] "Unspecified"                                              
#>  [5] "Q01279"                                                   
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> [11] ""                                                         
#> 
#> 
#> $Table$Row[[57]]
#> $Table$Row[[57]]$Cell
#>  [1] "337238"                                                   
#>  [2] "103319671"                                                
#>  [3] "3896"                                                     
#>  [4] "Unspecified"                                              
#>  [5] "Q01279"                                                   
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> [11] ""                                                         
#> 
#> 
#> $Table$Row[[58]]
#> $Table$Row[[58]]$Cell
#>  [1] "337238"                                                   
#>  [2] "103529702"                                                
#>  [3] "65083"                                                    
#>  [4] "Unspecified"                                              
#>  [5] "Q01279"                                                   
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> [11] ""                                                         
#> 
#> 
#> $Table$Row[[59]]
#> $Table$Row[[59]]$Cell
#>  [1] "337238"                                                   
#>  [2] "103529722"                                                
#>  [3] "70949"                                                    
#>  [4] "Unspecified"                                              
#>  [5] "Q01279"                                                   
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> [11] ""                                                         
#> 
#> 
#> $Table$Row[[60]]
#> $Table$Row[[60]]$Cell
#>  [1] "337238"                                                   
#>  [2] "103618685"                                                
#>  [3] "3895"                                                     
#>  [4] "Unspecified"                                              
#>  [5] "Q01279"                                                   
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> [11] ""                                                         
#> 
#> 
#> $Table$Row[[61]]
#> $Table$Row[[61]]$Cell
#>  [1] "337238"                                                   
#>  [2] "103618686"                                                
#>  [3] "44593598"                                                 
#>  [4] "Unspecified"                                              
#>  [5] "Q01279"                                                   
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> [11] ""                                                         
#> 
#> 
#> $Table$Row[[62]]
#> $Table$Row[[62]]$Cell
#>  [1] "337238"                                                   
#>  [2] "103618687"                                                
#>  [3] "44593599"                                                 
#>  [4] "Unspecified"                                              
#>  [5] "Q01279"                                                   
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> [11] ""                                                         
#> 
#> 
#> $Table$Row[[63]]
#> $Table$Row[[63]]$Cell
#>  [1] "337238"                                                   
#>  [2] "103618691"                                                
#>  [3] "375472"                                                   
#>  [4] "Unspecified"                                              
#>  [5] "Q01279"                                                   
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> [11] ""                                                         
#> 
#> 
#> $Table$Row[[64]]
#> $Table$Row[[64]]$Cell
#>  [1] "337238"                                                   
#>  [2] "123092436"                                                
#>  [3] "44259"                                                    
#>  [4] "Unspecified"                                              
#>  [5] "Q01279"                                                   
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> [11] ""                                                         
#> 
#> 
#> $Table$Row[[65]]
#> $Table$Row[[65]]$Cell
#>  [1] "337243"                                                                                        
#>  [2] "103319670"                                                                                     
#>  [3] "3894"                                                                                          
#>  [4] "Active"                                                                                        
#>  [5] "Q01279"                                                                                        
#>  [6] ""                                                                                              
#>  [7] ""                                                                                              
#>  [8] "Inhibition of mouse EGFR using [32P]gammaATP as substrate by competitive Lineweaver-Burke plot"
#>  [9] "Other"                                                                                         
#> [10] "2614420"                                                                                       
#> [11] ""                                                                                              
#> 
#> 
#> $Table$Row[[66]]
#> $Table$Row[[66]]$Cell
#>  [1] "337244"                                                                                           
#>  [2] "103319670"                                                                                        
#>  [3] "3894"                                                                                             
#>  [4] "Active"                                                                                           
#>  [5] "Q01279"                                                                                           
#>  [6] ""                                                                                                 
#>  [7] ""                                                                                                 
#>  [8] "Inhibition of mouse EGFR using tridecapeptide as substrate by uncompetitive Lineweaver-Burke plot"
#>  [9] "Other"                                                                                            
#> [10] "2614420"                                                                                          
#> [11] ""                                                                                                 
#> 
#> 
#> $Table$Row[[67]]
#> $Table$Row[[67]]$Cell
#>  [1] "415757"                                                                                  
#>  [2] "103294831"                                                                               
#>  [3] "5289418"                                                                                 
#>  [4] "Active"                                                                                  
#>  [5] "Q01279"                                                                                  
#>  [6] ""                                                                                        
#>  [7] ""                                                                                        
#>  [8] "Inhibition of EGF-stimulated EGFR phosphorylation in mouse HER14 cells by immunoblotting"
#>  [9] "Other"                                                                                   
#> [10] "9139660"                                                                                 
#> [11] ""                                                                                        
#> 
#> 
#> $Table$Row[[68]]
#> $Table$Row[[68]]$Cell
#>  [1] "415757"                                                                                  
#>  [2] "103295395"                                                                               
#>  [3] "5941540"                                                                                 
#>  [4] "Active"                                                                                  
#>  [5] "Q01279"                                                                                  
#>  [6] ""                                                                                        
#>  [7] ""                                                                                        
#>  [8] "Inhibition of EGF-stimulated EGFR phosphorylation in mouse HER14 cells by immunoblotting"
#>  [9] "Other"                                                                                   
#> [10] "9139660"                                                                                 
#> [11] ""                                                                                        
#> 
#> 
#> $Table$Row[[69]]
#> $Table$Row[[69]]$Cell
#>  [1] "415758"                                                                                                                
#>  [2] "103294831"                                                                                                             
#>  [3] "5289418"                                                                                                               
#>  [4] "Active"                                                                                                                
#>  [5] "Q01279"                                                                                                                
#>  [6] ""                                                                                                                      
#>  [7] ""                                                                                                                      
#>  [8] "Inhibition of EGFR in mouse HER14 cells assessed as inhibition of EGF-stimulated Shc phosphorylation by immunoblotting"
#>  [9] "Other"                                                                                                                 
#> [10] "9139660"                                                                                                               
#> [11] ""                                                                                                                      
#> 
#> 
#> $Table$Row[[70]]
#> $Table$Row[[70]]$Cell
#>  [1] "415758"                                                                                                                
#>  [2] "103295395"                                                                                                             
#>  [3] "5941540"                                                                                                               
#>  [4] "Active"                                                                                                                
#>  [5] "Q01279"                                                                                                                
#>  [6] ""                                                                                                                      
#>  [7] ""                                                                                                                      
#>  [8] "Inhibition of EGFR in mouse HER14 cells assessed as inhibition of EGF-stimulated Shc phosphorylation by immunoblotting"
#>  [9] "Other"                                                                                                                 
#> [10] "9139660"                                                                                                               
#> [11] ""                                                                                                                      
#> 
#> 
#> $Table$Row[[71]]
#> $Table$Row[[71]]$Cell
#>  [1] "415759"                                                                                                            
#>  [2] "103294831"                                                                                                         
#>  [3] "5289418"                                                                                                           
#>  [4] "Active"                                                                                                            
#>  [5] "Q01279"                                                                                                            
#>  [6] ""                                                                                                                  
#>  [7] ""                                                                                                                  
#>  [8] "Inhibition of EGFR in mouse HER14 cells assessed as inhibition of EGF-stimulated ERK2 activation by immunoblotting"
#>  [9] "Other"                                                                                                             
#> [10] "9139660"                                                                                                           
#> [11] ""                                                                                                                  
#> 
#> 
#> $Table$Row[[72]]
#> $Table$Row[[72]]$Cell
#>  [1] "415759"                                                                                                            
#>  [2] "103295395"                                                                                                         
#>  [3] "5941540"                                                                                                           
#>  [4] "Active"                                                                                                            
#>  [5] "Q01279"                                                                                                            
#>  [6] ""                                                                                                                  
#>  [7] ""                                                                                                                  
#>  [8] "Inhibition of EGFR in mouse HER14 cells assessed as inhibition of EGF-stimulated ERK2 activation by immunoblotting"
#>  [9] "Other"                                                                                                             
#> [10] "9139660"                                                                                                           
#> [11] ""                                                                                                                  
#> 
#> 
#> $Table$Row[[73]]
#> $Table$Row[[73]]$Cell
#>  [1] "415760"                                                             
#>  [2] "103294831"                                                          
#>  [3] "5289418"                                                            
#>  [4] "Inactive"                                                           
#>  [5] "Q01279"                                                             
#>  [6] ""                                                                   
#>  [7] ""                                                                   
#>  [8] "Inhibition of EGFR phosphorylation in mouse NIH/3T3 cells at 200 uM"
#>  [9] "Other"                                                              
#> [10] "9139660"                                                            
#> [11] ""                                                                   
#> 
#> 
#> $Table$Row[[74]]
#> $Table$Row[[74]]$Cell
#>  [1] "415760"                                                             
#>  [2] "103295395"                                                          
#>  [3] "5941540"                                                            
#>  [4] "Inactive"                                                           
#>  [5] "Q01279"                                                             
#>  [6] ""                                                                   
#>  [7] ""                                                                   
#>  [8] "Inhibition of EGFR phosphorylation in mouse NIH/3T3 cells at 200 uM"
#>  [9] "Other"                                                              
#> [10] "9139660"                                                            
#> [11] ""                                                                   
#> 
#> 
#> $Table$Row[[75]]
#> $Table$Row[[75]]$Cell
#>  [1] "1053208"                                                                                                         
#>  [2] "152302885"                                                                                                       
#>  [3] ""                                                                                                                
#>  [4] "Inactive"                                                                                                        
#>  [5] ""                                                                                                                
#>  [6] ""                                                                                                                
#>  [7] ""                                                                                                                
#>  [8] "A screen to identify the genes that modify the response of osteosarcoma to doxorubicin in mouse - Primary Screen"
#>  [9] "Screening"                                                                                                       
#> [10] "25862761"                                                                                                        
#> [11] "1"                                                                                                               
#> 
#> 
#> $Table$Row[[76]]
#> $Table$Row[[76]]$Cell
#>  [1] "1224826"                                                                                                                                                      
#>  [2] "315466459"                                                                                                                                                    
#>  [3] ""                                                                                                                                                             
#>  [4] "Inactive"                                                                                                                                                     
#>  [5] ""                                                                                                                                                             
#>  [6] ""                                                                                                                                                             
#>  [7] ""                                                                                                                                                             
#>  [8] "Genome-wide siRNA screen of genes regulating the Lipopolysaccharide-induced NF-kappaB and TNF-alpha responses in mouse macrophages_Primary screen TNF readout"
#>  [9] "Summary"                                                                                                                                                      
#> [10] ""                                                                                                                                                             
#> [11] "1"                                                                                                                                                            
#> 
#> 
#> $Table$Row[[77]]
#> $Table$Row[[77]]$Cell
#>  [1] "1224828"                                                                                                                                                       
#>  [2] "315466459"                                                                                                                                                     
#>  [3] ""                                                                                                                                                              
#>  [4] "Inactive"                                                                                                                                                      
#>  [5] ""                                                                                                                                                              
#>  [6] ""                                                                                                                                                              
#>  [7] ""                                                                                                                                                              
#>  [8] "Genome-wide siRNA screen of genes regulating the Lipopolysaccharide-induced NF-kappaB and TNF-alpha responses in mouse macrophages_Primary screen NFkB readout"
#>  [9] "Summary"                                                                                                                                                       
#> [10] ""                                                                                                                                                              
#> [11] "1"                                                                                                                                                             
#> 
#> 
#> $Table$Row[[78]]
#> $Table$Row[[78]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "312367127"                                                                                                                                                          
#>  [3] "71496458"                                                                                                                                                           
#>  [4] "Active"                                                                                                                                                             
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "0.081"                                                                                                                                                              
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[79]]
#> $Table$Row[[79]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440110169"                                                                                                                                                          
#>  [3] "139593669"                                                                                                                                                          
#>  [4] "Unspecified"                                                                                                                                                        
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "10"                                                                                                                                                                 
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[80]]
#> $Table$Row[[80]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440119817"                                                                                                                                                          
#>  [3] "155517202"                                                                                                                                                          
#>  [4] "Inconclusive"                                                                                                                                                       
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] ""                                                                                                                                                                   
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[81]]
#> $Table$Row[[81]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440125045"                                                                                                                                                          
#>  [3] "139447864"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "3.6"                                                                                                                                                                
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[82]]
#> $Table$Row[[82]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440160302"                                                                                                                                                          
#>  [3] "139593670"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "1.3"                                                                                                                                                                
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[83]]
#> $Table$Row[[83]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440163841"                                                                                                                                                          
#>  [3] "139447649"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "5.1"                                                                                                                                                                
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[84]]
#> $Table$Row[[84]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440172005"                                                                                                                                                          
#>  [3] "139447554"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "0.7"                                                                                                                                                                
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[85]]
#> $Table$Row[[85]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440176009"                                                                                                                                                          
#>  [3] "139600318"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "0.19"                                                                                                                                                               
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[86]]
#> $Table$Row[[86]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440182946"                                                                                                                                                          
#>  [3] "155444794"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "2.3"                                                                                                                                                                
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[87]]
#> $Table$Row[[87]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440203081"                                                                                                                                                          
#>  [3] "155444797"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "1.1"                                                                                                                                                                
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[88]]
#> $Table$Row[[88]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440207922"                                                                                                                                                          
#>  [3] "155444848"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "0.27"                                                                                                                                                               
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[89]]
#> $Table$Row[[89]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440227038"                                                                                                                                                          
#>  [3] "139593668"                                                                                                                                                          
#>  [4] "Inconclusive"                                                                                                                                                       
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] ""                                                                                                                                                                   
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[90]]
#> $Table$Row[[90]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "312367127"                                                                                                                                                          
#>  [3] "71496458"                                                                                                                                                           
#>  [4] "Active"                                                                                                                                                             
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "2.6"                                                                                                                                                                
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[91]]
#> $Table$Row[[91]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461515468"                                                                                                                                                          
#>  [3] "162643657"                                                                                                                                                          
#>  [4] "Inconclusive"                                                                                                                                                       
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] ""                                                                                                                                                                   
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[92]]
#> $Table$Row[[92]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461515649"                                                                                                                                                          
#>  [3] "162643790"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "9.23"                                                                                                                                                               
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[93]]
#> $Table$Row[[93]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461542097"                                                                                                                                                          
#>  [3] "162662364"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "3.91"                                                                                                                                                               
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[94]]
#> $Table$Row[[94]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461543217"                                                                                                                                                          
#>  [3] "162663118"                                                                                                                                                          
#>  [4] "Unspecified"                                                                                                                                                        
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "10"                                                                                                                                                                 
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[95]]
#> $Table$Row[[95]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461546315"                                                                                                                                                          
#>  [3] "162665339"                                                                                                                                                          
#>  [4] "Unspecified"                                                                                                                                                        
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "10"                                                                                                                                                                 
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[96]]
#> $Table$Row[[96]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461547480"                                                                                                                                                          
#>  [3] "162666122"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "4.27"                                                                                                                                                               
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[97]]
#> $Table$Row[[97]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461549927"                                                                                                                                                          
#>  [3] "162667840"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "3.79"                                                                                                                                                               
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[98]]
#> $Table$Row[[98]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461550238"                                                                                                                                                          
#>  [3] "162668052"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "2.65"                                                                                                                                                               
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[99]]
#> $Table$Row[[99]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461550466"                                                                                                                                                          
#>  [3] "162668204"                                                                                                                                                          
#>  [4] "Unspecified"                                                                                                                                                        
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "10"                                                                                                                                                                 
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[100]]
#> $Table$Row[[100]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461555362"                                                                                                                                                          
#>  [3] "162671649"                                                                                                                                                          
#>  [4] "Inconclusive"                                                                                                                                                       
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] ""                                                                                                                                                                   
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[101]]
#> $Table$Row[[101]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461557317"                                                                                                                                                          
#>  [3] "162673094"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "9.23"                                                                                                                                                               
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[102]]
#> $Table$Row[[102]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461557891"                                                                                                                                                          
#>  [3] "162673491"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "3.79"                                                                                                                                                               
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[103]]
#> $Table$Row[[103]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461558880"                                                                                                                                                          
#>  [3] "162674154"                                                                                                                                                          
#>  [4] "Inconclusive"                                                                                                                                                       
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] ""                                                                                                                                                                   
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[104]]
#> $Table$Row[[104]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461562991"                                                                                                                                                          
#>  [3] "162677073"                                                                                                                                                          
#>  [4] "Unspecified"                                                                                                                                                        
#>  [5] "Q01279"                                                                                                                                                             
#>  [6] "10"                                                                                                                                                                 
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> [11] ""                                                                                                                                                                   
#> 
#> 
#> $Table$Row[[105]]
#> $Table$Row[[105]]$Cell
#>  [1] "1815786"                                                                                                                                        
#>  [2] "475982343"                                                                                                                                      
#>  [3] "166627448"                                                                                                                                      
#>  [4] "Unspecified"                                                                                                                                    
#>  [5] "Q01279"                                                                                                                                         
#>  [6] ""                                                                                                                                               
#>  [7] ""                                                                                                                                               
#>  [8] "Inhibition of EGFR phosphorylation in mouse BaF3 cells expressing EGFR 19Del/T790M/C797S triple mutant measured after 2 hrs by Western blotting"
#>  [9] "Other"                                                                                                                                          
#> [10] "35178175"                                                                                                                                       
#> [11] ""                                                                                                                                               
#> 
#> 
#> $Table$Row[[106]]
#> $Table$Row[[106]]$Cell
#>  [1] "1815820"                                                                                                                                        
#>  [2] "475982343"                                                                                                                                      
#>  [3] "166627448"                                                                                                                                      
#>  [4] "Unspecified"                                                                                                                                    
#>  [5] "Q01279"                                                                                                                                         
#>  [6] ""                                                                                                                                               
#>  [7] ""                                                                                                                                               
#>  [8] "Inhibition of EGFR phosphorylation in mouse BaF3 cells expressing EGFR L858R/T790M/C797S triple mutant measured after 2 hrs by Western blotting"
#>  [9] "Other"                                                                                                                                          
#> [10] "35178175"                                                                                                                                       
#> [11] ""                                                                                                                                               
#> 
#> 
#> $Table$Row[[107]]
#> $Table$Row[[107]]$Cell
#>  [1] "1862914"                                                                                                                                                                                                                             
#>  [2] "482063640"                                                                                                                                                                                                                           
#>  [3] "155431347"                                                                                                                                                                                                                           
#>  [4] "Active"                                                                                                                                                                                                                              
#>  [5] "Q01279"                                                                                                                                                                                                                              
#>  [6] ""                                                                                                                                                                                                                                    
#>  [7] ""                                                                                                                                                                                                                                    
#>  [8] "Invivo inhibition of EGFR phosphorylation in nude mouse implanted with mouse BaF3 cells harboring EGFR del18/T790M/C797S triple mutant at 20 mg/kg, po administered as single dose and measured upto 24 hrs by Western blot analysis"
#>  [9] "Other"                                                                                                                                                                                                                               
#> [10] "35810715"                                                                                                                                                                                                                            
#> [11] ""                                                                                                                                                                                                                                    
#> 
#> 
#> $Table$Row[[108]]
#> $Table$Row[[108]]$Cell
#>  [1] "1896806"                                                                                                                                           
#>  [2] "482061797"                                                                                                                                         
#>  [3] "166176964"                                                                                                                                         
#>  [4] "Unspecified"                                                                                                                                       
#>  [5] "Q01279"                                                                                                                                            
#>  [6] ""                                                                                                                                                  
#>  [7] ""                                                                                                                                                  
#>  [8] "Inhibition of Wild type EGFR in mouse BaF3 cells assessed as protein phosphorylation at 10 to 1000 nM incubated for 8 hrs by Western blot analysis"
#>  [9] "Other"                                                                                                                                             
#> [10] "36384036"                                                                                                                                          
#> [11] ""                                                                                                                                                  
#> 
#> 
#> $Table$Row[[109]]
#> $Table$Row[[109]]$Cell
#>  [1] "1896806"                                                                                                                                           
#>  [2] "482062269"                                                                                                                                         
#>  [3] "168280117"                                                                                                                                         
#>  [4] "Unspecified"                                                                                                                                       
#>  [5] "Q01279"                                                                                                                                            
#>  [6] ""                                                                                                                                                  
#>  [7] ""                                                                                                                                                  
#>  [8] "Inhibition of Wild type EGFR in mouse BaF3 cells assessed as protein phosphorylation at 10 to 1000 nM incubated for 8 hrs by Western blot analysis"
#>  [9] "Other"                                                                                                                                             
#> [10] "36384036"                                                                                                                                          
#> [11] ""
  • Pathways from Gene: Provides a list of pathways involving a specific gene. For example, for gene ID 13649:
result <- get_pug_rest(identifier = "13649", namespace = "geneid", domain = "gene", operation = "pwaccs", output = "TXT")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Gene
#>   - Namespace: DomainSpecific
#>   - Operation: pwaccs
#>   - Identifier: 13649
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#>                        V1
#> 1          PANTHER:P06664
#> 2     PathBank:SMP0120900
#> 3     PathBank:SMP0120901
#> 4  Reactome:R-MMU-1227986
#> 5  Reactome:R-MMU-1236394
#> 6  Reactome:R-MMU-1266738
#> 7   Reactome:R-MMU-157118
#> 8   Reactome:R-MMU-162582
#> 9   Reactome:R-MMU-177929
#> 10  Reactome:R-MMU-179812
#> 11  Reactome:R-MMU-180292
#> 12  Reactome:R-MMU-180336
#> 13  Reactome:R-MMU-182971
#> 14  Reactome:R-MMU-199991
#> 15  Reactome:R-MMU-212718
#> 16 Reactome:R-MMU-2179392
#> 17  Reactome:R-MMU-372790
#> 18  Reactome:R-MMU-373760
#> 19  Reactome:R-MMU-388396
#> 20  Reactome:R-MMU-416476
#> 21  Reactome:R-MMU-422475
#> 22  Reactome:R-MMU-445144
#> 23 Reactome:R-MMU-5653656
#> 24  Reactome:R-MMU-881907
#> 25 Reactome:R-MMU-8848021
#> 26 Reactome:R-MMU-8856825
#> 27 Reactome:R-MMU-8856828
#> 28 Reactome:R-MMU-8857538
#> 29 Reactome:R-MMU-8939211
#> 30 Reactome:R-MMU-9006927
#> 31 Reactome:R-MMU-9006931
#> 32 Reactome:R-MMU-9006934
#> 33 Reactome:R-MMU-9009391
#> 34 Reactome:R-MMU-9012852
#> 35 Reactome:R-MMU-9013507
#> 36 Reactome:R-MMU-9675108
#> 37    WikiPathways:WP1261
#> 38     WikiPathways:WP265
#> 39    WikiPathways:WP2841
#> 40     WikiPathways:WP339
#> 41    WikiPathways:WP3663
#> 42     WikiPathways:WP488
#> 43     WikiPathways:WP493
#> 44     WikiPathways:WP523
#> 45    WikiPathways:WP5242
#> 46     WikiPathways:WP572
#> 47      WikiPathways:WP85

These methods offer a comprehensive way to access and analyze gene-related data in PubChem, catering to various research needs in genetics and molecular biology.

3.5. Proteins

PubChem provides a versatile platform for accessing detailed protein data, essential for researchers in biochemistry and molecular biology. Here’s how you can utilize PUG REST for protein-related queries:

1. Protein Input Methods:

  • By Protein Accession: Use NCBI Protein accessions to access protein data. For example, to get a summary for protein accessions P00533 and P01422 in JSON format:
result <- get_pug_rest(identifier = "P00533,P01422", namespace = "accession", domain = "protein", operation = "summary", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Protein
#>   - Namespace: DomainSpecific
#>   - Operation: summary
#>   - Identifier: P00533,P01422
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $ProteinSummaries
#> $ProteinSummaries$ProteinSummary
#> $ProteinSummaries$ProteinSummary[[1]]
#> $ProteinSummaries$ProteinSummary[[1]]$ProteinAccession
#> [1] "P00533"
#> 
#> $ProteinSummaries$ProteinSummary[[1]]$Name
#> [1] "Epidermal growth factor receptor"
#> 
#> $ProteinSummaries$ProteinSummary[[1]]$TaxonomyID
#> [1] 9606
#> 
#> $ProteinSummaries$ProteinSummary[[1]]$Taxonomy
#> [1] "Homo sapiens (human)"
#> 
#> $ProteinSummaries$ProteinSummary[[1]]$Synonym
#> [1] "EC 2.7.10.1"                            
#> [2] "Proto-oncogene c-ErbB-1"                
#> [3] "Receptor tyrosine-protein kinase erbB-1"
#> 
#> 
#> $ProteinSummaries$ProteinSummary[[2]]
#> $ProteinSummaries$ProteinSummary[[2]]$ProteinAccession
#> [1] "P01422"
#> 
#> $ProteinSummaries$ProteinSummary[[2]]$Name
#> [1] "Short neurotoxin 2"
#> 
#> $ProteinSummaries$ProteinSummary[[2]]$TaxonomyID
#> [1] 96794
#> 
#> $ProteinSummaries$ProteinSummary[[2]]$Taxonomy
#> [1] "Naja annulifera (banded Egyptian cobra)"
#> 
#> $ProteinSummaries$ProteinSummary[[2]]$Synonym
#> [1] "Toxin CM-14"  "Toxin V-N-I2"

By Protein Synonym: Access protein data using synonyms or identifiers from external sources. For example, using a ChEMBL ID:

result <- get_pug_rest(identifier = "ChEMBL:CHEMBL203", namespace = "synonym", domain = "protein", operation = "summary", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Protein
#>   - Namespace: DomainSpecific
#>   - Operation: summary
#>   - Identifier: ChEMBL:CHEMBL203
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $ProteinSummaries
#> $ProteinSummaries$ProteinSummary
#> $ProteinSummaries$ProteinSummary[[1]]
#> $ProteinSummaries$ProteinSummary[[1]]$ProteinAccession
#> [1] "P00533"
#> 
#> $ProteinSummaries$ProteinSummary[[1]]$Name
#> [1] "Epidermal growth factor receptor"
#> 
#> $ProteinSummaries$ProteinSummary[[1]]$TaxonomyID
#> [1] 9606
#> 
#> $ProteinSummaries$ProteinSummary[[1]]$Taxonomy
#> [1] "Homo sapiens (human)"
#> 
#> $ProteinSummaries$ProteinSummary[[1]]$Synonym
#> [1] "EC 2.7.10.1"                            
#> [2] "Proto-oncogene c-ErbB-1"                
#> [3] "Receptor tyrosine-protein kinase erbB-1"

2. Available Protein Data:

  • Protein Summary: Returns a summary including ProteinAccession, Name, TaxonomyID, and Synonyms. For example:
result <- get_pug_rest(identifier = "P00533,P01422", namespace = "accession", domain = "protein", operation = "summary", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Protein
#>   - Namespace: DomainSpecific
#>   - Operation: summary
#>   - Identifier: P00533,P01422
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $ProteinSummaries
#> $ProteinSummaries$ProteinSummary
#> $ProteinSummaries$ProteinSummary[[1]]
#> $ProteinSummaries$ProteinSummary[[1]]$ProteinAccession
#> [1] "P00533"
#> 
#> $ProteinSummaries$ProteinSummary[[1]]$Name
#> [1] "Epidermal growth factor receptor"
#> 
#> $ProteinSummaries$ProteinSummary[[1]]$TaxonomyID
#> [1] 9606
#> 
#> $ProteinSummaries$ProteinSummary[[1]]$Taxonomy
#> [1] "Homo sapiens (human)"
#> 
#> $ProteinSummaries$ProteinSummary[[1]]$Synonym
#> [1] "EC 2.7.10.1"                            
#> [2] "Proto-oncogene c-ErbB-1"                
#> [3] "Receptor tyrosine-protein kinase erbB-1"
#> 
#> 
#> $ProteinSummaries$ProteinSummary[[2]]
#> $ProteinSummaries$ProteinSummary[[2]]$ProteinAccession
#> [1] "P01422"
#> 
#> $ProteinSummaries$ProteinSummary[[2]]$Name
#> [1] "Short neurotoxin 2"
#> 
#> $ProteinSummaries$ProteinSummary[[2]]$TaxonomyID
#> [1] 96794
#> 
#> $ProteinSummaries$ProteinSummary[[2]]$Taxonomy
#> [1] "Naja annulifera (banded Egyptian cobra)"
#> 
#> $ProteinSummaries$ProteinSummary[[2]]$Synonym
#> [1] "Toxin CM-14"  "Toxin V-N-I2"

Assays from Protein: Retrieves a list of AIDs tested against a specific protein. For example, for protein accession P00533:

result <- get_pug_rest(identifier = "P00533", namespace = "accession", domain = "protein", operation = "aids", output = "TXT")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Protein
#>   - Namespace: DomainSpecific
#>   - Operation: aids
#>   - Identifier: P00533
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#>           V1
#> 1       1433
#> 2       1726
#> 3       1727
#> 4       1729
#> 5       1731
#> 6       1742
#> 7       1982
#> 8       3364
#> 9       3365
#> 10      7884
#> 11      7888
#> 12      7890
#> 13      7899
#> 14      7901
#> 15      7903
#> 16      7907
#> 17      7909
#> 18      7910
#> 19      7911
#> 20      8066
#> 21      8069
#> 22      8070
#> 23      8076
#> 24      8077
#> 25      8621
#> 26     32370
#> 27     51584
#> 28     66431
#> 29     66435
#> 30     66436
#> 31     66437
#> 32     66442
#> 33     66443
#> 34     66444
#> 35     66445
#> 36     66446
#> 37     66447
#> 38     66448
#> 39     66449
#> 40     66450
#> 41     66451
#> 42     66452
#> 43     66453
#> 44     66454
#> 45     66455
#> 46     66456
#> 47     66457
#> 48     66458
#> 49     66459
#> 50     66460
#> 51     66595
#> 52     66596
#> 53     66597
#> 54     66598
#> 55     66599
#> 56     66600
#> 57     66601
#> 58     66602
#> 59     66603
#> 60     66604
#> 61     66605
#> 62     66606
#> 63     66607
#> 64     66608
#> 65     66609
#> 66     66610
#> 67     66611
#> 68     66612
#> 69     66613
#> 70     66614
#> 71     66615
#> 72     66618
#> 73     66619
#> 74     66620
#> 75     66621
#> 76     66622
#> 77     66623
#> 78     66624
#> 79     66625
#> 80     66626
#> 81     66627
#> 82     66628
#> 83     66629
#> 84     66630
#> 85     66631
#> 86     67273
#> 87     67274
#> 88     67275
#> 89     67276
#> 90     67277
#> 91     67278
#> 92     67279
#> 93     67280
#> 94     67281
#> 95     67282
#> 96     67283
#> 97     67284
#> 98     67285
#> 99     67286
#> 100    67287
#> 101    67288
#> 102    67289
#> 103    67290
#> 104    67291
#> 105    67292
#> 106    67293
#> 107    67944
#> 108    67945
#> 109    67946
#> 110    67947
#> 111    67948
#> 112    67949
#> 113    67950
#> 114    67951
#> 115    67952
#> 116    67953
#> 117    67954
#> 118    67958
#> 119    67959
#> 120    67960
#> 121    67961
#> 122    67962
#> 123    67972
#> 124    67973
#> 125    68085
#> 126    68086
#> 127    68087
#> 128    68088
#> 129    68089
#> 130    68090
#> 131    68091
#> 132    68092
#> 133    68093
#> 134    68094
#> 135    69398
#> 136    69399
#> 137    69400
#> 138    69401
#> 139    69402
#> 140    69403
#> 141    69404
#> 142    69405
#> 143    69406
#> 144    69407
#> 145    69408
#> 146    69409
#> 147    69410
#> 148    69411
#> 149    69412
#> 150    69413
#> 151    69414
#> 152    69415
#> 153    69416
#> 154    69417
#> 155    69418
#> 156    69419
#> 157    69420
#> 158    69421
#> 159    69422
#> 160    69423
#> 161    69424
#> 162    69425
#> 163    69426
#> 164    69427
#> 165    69428
#> 166    69429
#> 167    69430
#> 168    69431
#> 169    69432
#> 170    69433
#> 171    69434
#> 172    69435
#> 173    69549
#> 174    69550
#> 175    69551
#> 176    69552
#> 177    69553
#> 178    69554
#> 179    69555
#> 180    69556
#> 181    69557
#> 182    69558
#> 183    69559
#> 184    69560
#> 185    69561
#> 186    69562
#> 187    69563
#> 188    69564
#> 189    69565
#> 190    69566
#> 191    69567
#> 192    69568
#> 193    69569
#> 194    69570
#> 195    69571
#> 196    69572
#> 197    69573
#> 198    69574
#> 199    69575
#> 200    69576
#> 201    69577
#> 202    69578
#> 203    69579
#> 204    69580
#> 205    69581
#> 206    69707
#> 207    69708
#> 208    69709
#> 209    69710
#> 210    69711
#> 211    69718
#> 212    69719
#> 213    69720
#> 214    69725
#> 215    69726
#> 216    69731
#> 217    69732
#> 218    69733
#> 219    69734
#> 220    69735
#> 221    69739
#> 222    69740
#> 223    69741
#> 224    69742
#> 225    69874
#> 226    69875
#> 227    69876
#> 228    69877
#> 229    69878
#> 230    69879
#> 231    69880
#> 232    69881
#> 233    69882
#> 234    69883
#> 235    69884
#> 236    69885
#> 237    69886
#> 238    69887
#> 239    69889
#> 240    69890
#> 241    69891
#> 242    69892
#> 243    69893
#> 244    69894
#> 245    69895
#> 246    69896
#> 247    69897
#> 248    69898
#> 249    69899
#> 250    69900
#> 251    69901
#> 252    69902
#> 253    69903
#> 254    69908
#> 255    69909
#> 256    69910
#> 257    69911
#> 258    69912
#> 259    69913
#> 260    69914
#> 261    69915
#> 262    70039
#> 263    70041
#> 264    70042
#> 265    70043
#> 266    70044
#> 267    70045
#> 268    70046
#> 269    70047
#> 270    70048
#> 271    70049
#> 272    70050
#> 273    70051
#> 274    70052
#> 275    70053
#> 276    70054
#> 277    70055
#> 278    79545
#> 279    81334
#> 280    81335
#> 281    81336
#> 282    81560
#> 283    81561
#> 284    81562
#> 285    81563
#> 286    81564
#> 287    81565
#> 288    81566
#> 289    81567
#> 290    81568
#> 291    81569
#> 292    81570
#> 293    81571
#> 294    81572
#> 295    81573
#> 296    81578
#> 297    84823
#> 298    85137
#> 299    85139
#> 300    89322
#> 301    89323
#> 302    89324
#> 303    89325
#> 304    89326
#> 305    92132
#> 306    96371
#> 307   102177
#> 308   102607
#> 309   162571
#> 310   164333
#> 311   205012
#> 312   205013
#> 313   215071
#> 314   219670
#> 315   224428
#> 316   224429
#> 317   226585
#> 318   227709
#> 319   235147
#> 320   235148
#> 321   240913
#> 322   240965
#> 323   241077
#> 324   241116
#> 325   241169
#> 326   241170
#> 327   241239
#> 328   241262
#> 329   241284
#> 330   241322
#> 331   241388
#> 332   241432
#> 333   241490
#> 334   241671
#> 335   241732
#> 336   241764
#> 337   241818
#> 338   241895
#> 339   241905
#> 340   241976
#> 341   242087
#> 342   242149
#> 343   242190
#> 344   242228
#> 345   242288
#> 346   242302
#> 347   242324
#> 348   242350
#> 349   242351
#> 350   242365
#> 351   242443
#> 352   242444
#> 353   242461
#> 354   242462
#> 355   242463
#> 356   242479
#> 357   242480
#> 358   242532
#> 359   242548
#> 360   243906
#> 361   243910
#> 362   243912
#> 363   244014
#> 364   244180
#> 365   244206
#> 366   248902
#> 367   248903
#> 368   248969
#> 369   254692
#> 370   254694
#> 371   254806
#> 372   254912
#> 373   254936
#> 374   254942
#> 375   255760
#> 376   256664
#> 377   256710
#> 378   257345
#> 379   257490
#> 380   258034
#> 381   258035
#> 382   258758
#> 383   258769
#> 384   258770
#> 385   258771
#> 386   258772
#> 387   258924
#> 388   258925
#> 389   258926
#> 390   259740
#> 391   259773
#> 392   259777
#> 393   259781
#> 394   259786
#> 395   259787
#> 396   259788
#> 397   259789
#> 398   260050
#> 399   260441
#> 400   260442
#> 401   260895
#> 402   260898
#> 403   261922
#> 404   261923
#> 405   262078
#> 406   262321
#> 407   262322
#> 408   262347
#> 409   262729
#> 410   263416
#> 411   263473
#> 412   263474
#> 413   263475
#> 414   263613
#> 415   263980
#> 416   264807
#> 417   264808
#> 418   266064
#> 419   266090
#> 420   266868
#> 421   267201
#> 422   267414
#> 423   268483
#> 424   268874
#> 425   269261
#> 426   269262
#> 427   269263
#> 428   269264
#> 429   269265
#> 430   269266
#> 431   269877
#> 432   270617
#> 433   271124
#> 434   271125
#> 435   271202
#> 436   271215
#> 437   271216
#> 438   271751
#> 439   271838
#> 440   271971
#> 441   272233
#> 442   272763
#> 443   273802
#> 444   273821
#> 445   273833
#> 446   275023
#> 447   276188
#> 448   276632
#> 449   276914
#> 450   277404
#> 451   277646
#> 452   281187
#> 453   282236
#> 454   282724
#> 455   283008
#> 456   283009
#> 457   283012
#> 458   283014
#> 459   284566
#> 460   288400
#> 461   288404
#> 462   290551
#> 463   290556
#> 464   295196
#> 465   295762
#> 466   295763
#> 467   295764
#> 468   295765
#> 469   295766
#> 470   295767
#> 471   295768
#> 472   296209
#> 473   296210
#> 474   296994
#> 475   297603
#> 476   297878
#> 477   298426
#> 478   298749
#> 479   299190
#> 480   299322
#> 481   300845
#> 482   301974
#> 483   302721
#> 484   303316
#> 485   305833
#> 486   306290
#> 487   306363
#> 488   306443
#> 489   306907
#> 490   307035
#> 491   307490
#> 492   308302
#> 493   308829
#> 494   309618
#> 495   309619
#> 496   309841
#> 497   309858
#> 498   310063
#> 499   310409
#> 500   313402
#> 501   314511
#> 502   314863
#> 503   314925
#> 504   314966
#> 505   314967
#> 506   315251
#> 507   315727
#> 508   319731
#> 509   320573
#> 510   320620
#> 511   320960
#> 512   323098
#> 513   323517
#> 514   325539
#> 515   325546
#> 516   325547
#> 517   325548
#> 518   325628
#> 519   325790
#> 520   325823
#> 521   325825
#> 522   325842
#> 523   325848
#> 524   327908
#> 525   328042
#> 526   329119
#> 527   329535
#> 528   330087
#> 529   330088
#> 530   330089
#> 531   330090
#> 532   330091
#> 533   331422
#> 534   331435
#> 535   331536
#> 536   331927
#> 537   331999
#> 538   334681
#> 539   337239
#> 540   340324
#> 541   340386
#> 542   341701
#> 543   341711
#> 544   344460
#> 545   345860
#> 546   345874
#> 547   345875
#> 548   345876
#> 549   345877
#> 550   346705
#> 551   347285
#> 552   347662
#> 553   349059
#> 554   349117
#> 555   349132
#> 556   349255
#> 557   350262
#> 558   350326
#> 559   350407
#> 560   350455
#> 561   353508
#> 562   353535
#> 563   353712
#> 564   357183
#> 565   358171
#> 566   358179
#> 567   358180
#> 568   358181
#> 569   358418
#> 570   361267
#> 571   361655
#> 572   362388
#> 573   362392
#> 574   363172
#> 575   364116
#> 576   364141
#> 577   364387
#> 578   364693
#> 579   364801
#> 580   364802
#> 581   365239
#> 582   365899
#> 583   367150
#> 584   367173
#> 585   370515
#> 586   370574
#> 587   370953
#> 588   371020
#> 589   371170
#> 590   371183
#> 591   371298
#> 592   371614
#> 593   372680
#> 594   372681
#> 595   375748
#> 596   378668
#> 597   380371
#> 598   381492
#> 599   381969
#> 600   383062
#> 601   383069
#> 602   383070
#> 603   383071
#> 604   388111
#> 605   388112
#> 606   388113
#> 607   388114
#> 608   388115
#> 609   388814
#> 610   390051
#> 611   390490
#> 612   390491
#> 613   390492
#> 614   390493
#> 615   390494
#> 616   390703
#> 617   390958
#> 618   392129
#> 619   392551
#> 620   392584
#> 621   393229
#> 622   394049
#> 623   394660
#> 624   394661
#> 625   394664
#> 626   394727
#> 627   397043
#> 628   402132
#> 629   405904
#> 630   406968
#> 631   407799
#> 632   408110
#> 633   408788
#> 634   409436
#> 635   410049
#> 636   410895
#> 637   410943
#> 638   410948
#> 639   410951
#> 640   410953
#> 641   412429
#> 642   412433
#> 643   412823
#> 644   414809
#> 645   415003
#> 646   415072
#> 647   417631
#> 648   417896
#> 649   418367
#> 650   418565
#> 651   418566
#> 652   418569
#> 653   418577
#> 654   418918
#> 655   418921
#> 656   419708
#> 657   419709
#> 658   419710
#> 659   419711
#> 660   419712
#> 661   419713
#> 662   419714
#> 663   420172
#> 664   420261
#> 665   420262
#> 666   422340
#> 667   423602
#> 668   427475
#> 669   429308
#> 670   430649
#> 671   433339
#> 672   433340
#> 673   433341
#> 674   433876
#> 675   435137
#> 676   435156
#> 677   435157
#> 678   435392
#> 679   435402
#> 680   435525
#> 681   435652
#> 682   435653
#> 683   435791
#> 684   435792
#> 685   435906
#> 686   435907
#> 687   437896
#> 688   438181
#> 689   439133
#> 690   439275
#> 691   439276
#> 692   439277
#> 693   439278
#> 694   439279
#> 695   439280
#> 696   439281
#> 697   439282
#> 698   439283
#> 699   439284
#> 700   439896
#> 701   440202
#> 702   440203
#> 703   440204
#> 704   440205
#> 705   440617
#> 706   440975
#> 707   441963
#> 708   441965
#> 709   441995
#> 710   444211
#> 711   444990
#> 712   445188
#> 713   445580
#> 714   447768
#> 715   449028
#> 716   450352
#> 717   450353
#> 718   450354
#> 719   450355
#> 720   450598
#> 721   450599
#> 722   450600
#> 723   450601
#> 724   450750
#> 725   450751
#> 726   450752
#> 727   450753
#> 728   451384
#> 729   451414
#> 730   451415
#> 731   451504
#> 732   451505
#> 733   451594
#> 734   451595
#> 735   452116
#> 736   452303
#> 737   453329
#> 738   454326
#> 739   454333
#> 740   455875
#> 741   456090
#> 742   456099
#> 743   456588
#> 744   456589
#> 745   456590
#> 746   456591
#> 747   456592
#> 748   456904
#> 749   457018
#> 750   457029
#> 751   457030
#> 752   457031
#> 753   457032
#> 754   457033
#> 755   457036
#> 756   457038
#> 757   457040
#> 758   457041
#> 759   457278
#> 760   457343
#> 761   458721
#> 762   459558
#> 763   460303
#> 764   460504
#> 765   460689
#> 766   460883
#> 767   460885
#> 768   460933
#> 769   461251
#> 770   463369
#> 771   463638
#> 772   463708
#> 773   463916
#> 774   464481
#> 775   465678
#> 776   466546
#> 777   467361
#> 778   467362
#> 779   467363
#> 780   467364
#> 781   467942
#> 782   469069
#> 783   469664
#> 784   469665
#> 785   469666
#> 786   469667
#> 787   469668
#> 788   470469
#> 789   470891
#> 790   472050
#> 791   472051
#> 792   472897
#> 793   473321
#> 794   473322
#> 795   473323
#> 796   473526
#> 797   474116
#> 798   474118
#> 799   476556
#> 800   480262
#> 801   480551
#> 802   480656
#> 803   481530
#> 804   481817
#> 805   481821
#> 806   481941
#> 807   481945
#> 808   481946
#> 809   481947
#> 810   483380
#> 811   484456
#> 812   484564
#> 813   485509
#> 814   485510
#> 815   485511
#> 816   485512
#> 817   485513
#> 818   485514
#> 819   485515
#> 820   485599
#> 821   485600
#> 822   485601
#> 823   485602
#> 824   486356
#> 825   486357
#> 826   486802
#> 827   488715
#> 828   489258
#> 829   489609
#> 830   490682
#> 831   490683
#> 832   490684
#> 833   490685
#> 834   490686
#> 835   490687
#> 836   490688
#> 837   490689
#> 838   490690
#> 839   490691
#> 840   490692
#> 841   490693
#> 842   491742
#> 843   491922
#> 844   491923
#> 845   492036
#> 846   492108
#> 847   492109
#> 848   492110
#> 849   492320
#> 850   494394
#> 851   494402
#> 852   500003
#> 853   500004
#> 854   502965
#> 855   502966
#> 856   502967
#> 857   502968
#> 858   502969
#> 859   502970
#> 860   503767
#> 861   507084
#> 862   507197
#> 863   507519
#> 864   507520
#> 865   507521
#> 866   507689
#> 867   507690
#> 868   507703
#> 869   507908
#> 870   507910
#> 871   507911
#> 872   507915
#> 873   507916
#> 874   507917
#> 875   509590
#> 876   509715
#> 877   510254
#> 878   510404
#> 879   511488
#> 880   511826
#> 881   512415
#> 882   512421
#> 883   512580
#> 884   513127
#> 885   513986
#> 886   514033
#> 887   514034
#> 888   514035
#> 889   515896
#> 890   516619
#> 891   517218
#> 892   517320
#> 893   517323
#> 894   517562
#> 895   526050
#> 896   527003
#> 897   527448
#> 898   528338
#> 899   528340
#> 900   528341
#> 901   528342
#> 902   535995
#> 903   537796
#> 904   538788
#> 905   539563
#> 906   546551
#> 907   546565
#> 908   549931
#> 909   550444
#> 910   550460
#> 911   550540
#> 912   550541
#> 913   550624
#> 914   550663
#> 915   552199
#> 916   552200
#> 917   552201
#> 918   552202
#> 919   552203
#> 920   553029
#> 921   577967
#> 922   577995
#> 923   578471
#> 924   578699
#> 925   578726
#> 926   579003
#> 927   579111
#> 928   580190
#> 929   581172
#> 930   586443
#> 931   589576
#> 932   589577
#> 933   589684
#> 934   591162
#> 935   591887
#> 936   592282
#> 937   592965
#> 938   596576
#> 939   597038
#> 940   597116
#> 941   597681
#> 942   598164
#> 943   598165
#> 944   598839
#> 945   599704
#> 946   601667
#> 947   601668
#> 948   601669
#> 949   601670
#> 950   602888
#> 951   603083
#> 952   603816
#> 953   603958
#> 954   605587
#> 955   605826
#> 956   607978
#> 957   608487
#> 958   609409
#> 959   611835
#> 960   611842
#> 961   611845
#> 962   612122
#> 963   612771
#> 964   613153
#> 965   613199
#> 966   613200
#> 967   613201
#> 968   613202
#> 969   613203
#> 970   613204
#> 971   613205
#> 972   614856
#> 973   615007
#> 974   615098
#> 975   615120
#> 976   615354
#> 977   615355
#> 978   616546
#> 979   616951
#> 980   618743
#> 981   618971
#> 982   620239
#> 983   620241
#> 984   621665
#> 985   623492
#> 986   624996
#> 987   624997
#> 988   624998
#> 989   624999
#> 990   625000
#> 991   625001
#> 992   625002
#> 993   625003
#> 994   625004
#> 995   625005
#> 996   625006
#> 997   625007
#> 998   625184
#> 999   625519
#> 1000  626081
#> 1001  627245
#> 1002  627246
#> 1003  627247
#> 1004  629219
#> 1005  629272
#> 1006  629306
#> 1007  629471
#> 1008  629472
#> 1009  629473
#> 1010  629824
#> 1011  629825
#> 1012  629826
#> 1013  629929
#> 1014  630068
#> 1015  630334
#> 1016  630515
#> 1017  630516
#> 1018  630766
#> 1019  630785
#> 1020  632227
#> 1021  633717
#> 1022  634135
#> 1023  634136
#> 1024  634625
#> 1025  634930
#> 1026  636123
#> 1027  636131
#> 1028  636163
#> 1029  636384
#> 1030  636420
#> 1031  637121
#> 1032  637257
#> 1033  637323
#> 1034  637639
#> 1035  638067
#> 1036  638084
#> 1037  638112
#> 1038  638916
#> 1039  639687
#> 1040  640254
#> 1041  641996
#> 1042  642302
#> 1043  642483
#> 1044  642760
#> 1045  642761
#> 1046  643601
#> 1047  643942
#> 1048  644271
#> 1049  644272
#> 1050  644745
#> 1051  644746
#> 1052  645933
#> 1053  646071
#> 1054  646402
#> 1055  647744
#> 1056  647745
#> 1057  648951
#> 1058  649305
#> 1059  649352
#> 1060  649840
#> 1061  650379
#> 1062  650455
#> 1063  650467
#> 1064  650681
#> 1065  651402
#> 1066  651403
#> 1067  651404
#> 1068  651405
#> 1069  651406
#> 1070  651407
#> 1071  651408
#> 1072  651409
#> 1073  651410
#> 1074  651411
#> 1075  653733
#> 1076  653881
#> 1077  654153
#> 1078  654154
#> 1079  655326
#> 1080  655327
#> 1081  655328
#> 1082  655329
#> 1083  655330
#> 1084  655996
#> 1085  656205
#> 1086  656465
#> 1087  656489
#> 1088  660688
#> 1089  660894
#> 1090  661561
#> 1091  661562
#> 1092  661563
#> 1093  661564
#> 1094  661582
#> 1095  661583
#> 1096  661590
#> 1097  661591
#> 1098  661592
#> 1099  662478
#> 1100  662479
#> 1101  662480
#> 1102  662481
#> 1103  662482
#> 1104  662483
#> 1105  662484
#> 1106  662485
#> 1107  662486
#> 1108  662487
#> 1109  662508
#> 1110  662509
#> 1111  662510
#> 1112  662511
#> 1113  662512
#> 1114  662577
#> 1115  662578
#> 1116  662579
#> 1117  662580
#> 1118  662581
#> 1119  662582
#> 1120  662583
#> 1121  662584
#> 1122  662585
#> 1123  662586
#> 1124  662587
#> 1125  662588
#> 1126  662589
#> 1127  662590
#> 1128  662591
#> 1129  662592
#> 1130  662593
#> 1131  662594
#> 1132  662595
#> 1133  662616
#> 1134  662617
#> 1135  662802
#> 1136  662803
#> 1137  662804
#> 1138  664631
#> 1139  664632
#> 1140  664736
#> 1141  664738
#> 1142  666196
#> 1143  666197
#> 1144  666198
#> 1145  666199
#> 1146  666200
#> 1147  666201
#> 1148  666202
#> 1149  666203
#> 1150  666324
#> 1151  669884
#> 1152  670127
#> 1153  670129
#> 1154  670513
#> 1155  671088
#> 1156  673705
#> 1157  674129
#> 1158  674429
#> 1159  674615
#> 1160  674645
#> 1161  674789
#> 1162  674790
#> 1163  677070
#> 1164  677662
#> 1165  678104
#> 1166  678508
#> 1167  678509
#> 1168  678514
#> 1169  683479
#> 1170  683480
#> 1171  684216
#> 1172  684962
#> 1173  685282
#> 1174  685434
#> 1175  688739
#> 1176  688861
#> 1177  688862
#> 1178  688863
#> 1179  688864
#> 1180  688865
#> 1181  688866
#> 1182  688867
#> 1183  688868
#> 1184  688869
#> 1185  688870
#> 1186  688871
#> 1187  688872
#> 1188  688873
#> 1189  688874
#> 1190  688875
#> 1191  688876
#> 1192  688881
#> 1193  689246
#> 1194  689488
#> 1195  689489
#> 1196  689490
#> 1197  689491
#> 1198  689664
#> 1199  689668
#> 1200  689678
#> 1201  690171
#> 1202  690206
#> 1203  691095
#> 1204  692840
#> 1205  694020
#> 1206  695967
#> 1207  696622
#> 1208  697296
#> 1209  697382
#> 1210  701047
#> 1211  705003
#> 1212  708790
#> 1213  708791
#> 1214  708792
#> 1215  708793
#> 1216  708794
#> 1217  708795
#> 1218  708796
#> 1219  708839
#> 1220  708842
#> 1221  708972
#> 1222  708973
#> 1223  708974
#> 1224  708975
#> 1225  708978
#> 1226  708983
#> 1227  708984
#> 1228  709746
#> 1229  710535
#> 1230  710623
#> 1231  711534
#> 1232  711547
#> 1233  713443
#> 1234  714343
#> 1235  714344
#> 1236  714345
#> 1237  714346
#> 1238  714347
#> 1239  714348
#> 1240  714349
#> 1241  714545
#> 1242  714546
#> 1243  714547
#> 1244  714548
#> 1245  714549
#> 1246  715336
#> 1247  718823
#> 1248  719077
#> 1249  719231
#> 1250  719884
#> 1251  719885
#> 1252  719886
#> 1253  719889
#> 1254  719892
#> 1255  720121
#> 1256  720122
#> 1257  720910
#> 1258  721391
#> 1259  722207
#> 1260  723353
#> 1261  725957
#> 1262  725958
#> 1263  725963
#> 1264  725966
#> 1265  727732
#> 1266  727733
#> 1267  727734
#> 1268  729554
#> 1269  729555
#> 1270  729556
#> 1271  729557
#> 1272  729977
#> 1273  730005
#> 1274  731106
#> 1275  731916
#> 1276  732198
#> 1277  734141
#> 1278  734221
#> 1279  734224
#> 1280  734773
#> 1281  735315
#> 1282  735372
#> 1283  737513
#> 1284  737514
#> 1285  737515
#> 1286  737516
#> 1287  737517
#> 1288  738834
#> 1289  738835
#> 1290  738836
#> 1291  738837
#> 1292  739385
#> 1293  739427
#> 1294  739428
#> 1295  739429
#> 1296  739430
#> 1297  739685
#> 1298  739688
#> 1299  739690
#> 1300  739692
#> 1301  739693
#> 1302  739789
#> 1303  740396
#> 1304  740397
#> 1305  740935
#> 1306  740936
#> 1307  741245
#> 1308  741246
#> 1309  741247
#> 1310  741248
#> 1311  741249
#> 1312  743668
#> 1313  743671
#> 1314  745320
#> 1315  745352
#> 1316  746532
#> 1317  748064
#> 1318  748065
#> 1319  748066
#> 1320  748067
#> 1321  748068
#> 1322  748069
#> 1323  748091
#> 1324  748093
#> 1325  748094
#> 1326  748799
#> 1327  748805
#> 1328  749335
#> 1329  749394
#> 1330  749763
#> 1331  750072
#> 1332  752152
#> 1333  752176
#> 1334  752702
#> 1335  753284
#> 1336  755962
#> 1337  757290
#> 1338  757291
#> 1339  757292
#> 1340  757293
#> 1341  757294
#> 1342  757674
#> 1343  758024
#> 1344  760331
#> 1345  760332
#> 1346  761265
#> 1347  761587
#> 1348  761588
#> 1349  761589
#> 1350  761591
#> 1351  761601
#> 1352  761602
#> 1353  761603
#> 1354  764900
#> 1355  764901
#> 1356  764902
#> 1357  764903
#> 1358  764904
#> 1359  764905
#> 1360  764906
#> 1361  764907
#> 1362  764908
#> 1363  764909
#> 1364  764910
#> 1365  764911
#> 1366  764912
#> 1367  764925
#> 1368  764926
#> 1369  764927
#> 1370  764928
#> 1371  766544
#> 1372  766550
#> 1373  766931
#> 1374  767006
#> 1375  767092
#> 1376  768502
#> 1377  769201
#> 1378  769202
#> 1379  769206
#> 1380  769207
#> 1381  769368
#> 1382  770078
#> 1383  770081
#> 1384  770082
#> 1385  770083
#> 1386  770096
#> 1387  770439
#> 1388  770794
#> 1389  771338
#> 1390  771341
#> 1391  771342
#> 1392  771343
#> 1393  771344
#> 1394  771345
#> 1395  771346
#> 1396  774898
#> 1397  775221
#> 1398  775356
#> 1399  775615
#> 1400  775616
#> 1401  775619
#> 1402  775622
#> 1403  775623
#> 1404  775624
#> 1405  775625
#> 1406  776746
#> 1407  776778
#> 1408  777290
#> 1409  777398
#> 1410  777419
#> 1411  777420
#> 1412  777421
#> 1413  777422
#> 1414  777423
#> 1415  777424
#> 1416  778801
#> 1417  778844
#> 1418  779874
#> 1419  780347
#> 1420  780820
#> 1421 1053577
#> 1422 1053592
#> 1423 1053593
#> 1424 1053594
#> 1425 1053595
#> 1426 1053596
#> 1427 1053597
#> 1428 1053598
#> 1429 1053599
#> 1430 1053604
#> 1431 1053605
#> 1432 1053606
#> 1433 1053607
#> 1434 1053608
#> 1435 1053618
#> 1436 1054747
#> 1437 1055116
#> 1438 1056134
#> 1439 1057912
#> 1440 1057925
#> 1441 1057926
#> 1442 1057927
#> 1443 1057929
#> 1444 1057930
#> 1445 1057931
#> 1446 1057932
#> 1447 1057933
#> 1448 1057934
#> 1449 1058149
#> 1450 1058631
#> 1451 1059191
#> 1452 1059192
#> 1453 1059193
#> 1454 1060345
#> 1455 1060491
#> 1456 1061308
#> 1457 1061337
#> 1458 1061603
#> 1459 1062001
#> 1460 1062002
#> 1461 1062003
#> 1462 1064886
#> 1463 1066961
#> 1464 1067113
#> 1465 1068982
#> 1466 1068983
#> 1467 1069577
#> 1468 1073264
#> 1469 1075251
#> 1470 1075262
#> 1471 1077506
#> 1472 1077570
#> 1473 1077573
#> 1474 1078216
#> 1475 1078355
#> 1476 1078404
#> 1477 1078466
#> 1478 1078575
#> 1479 1078637
#> 1480 1078746
#> 1481 1078849
#> 1482 1078973
#> 1483 1079020
#> 1484 1079144
#> 1485 1079192
#> 1486 1079315
#> 1487 1079363
#> 1488 1079750
#> 1489 1093388
#> 1490 1106449
#> 1491 1117570
#> 1492 1117574
#> 1493 1117575
#> 1494 1117576
#> 1495 1117578
#> 1496 1117804
#> 1497 1117806
#> 1498 1119051
#> 1499 1119724
#> 1500 1119822
#> 1501 1119823
#> 1502 1119827
#> 1503 1119828
#> 1504 1119829
#> 1505 1119830
#> 1506 1119835
#> 1507 1119836
#> 1508 1119837
#> 1509 1119838
#> 1510 1119839
#> 1511 1119840
#> 1512 1119841
#> 1513 1119842
#> 1514 1119844
#> 1515 1119845
#> 1516 1119846
#> 1517 1120079
#> 1518 1120256
#> 1519 1120257
#> 1520 1120258
#> 1521 1120259
#> 1522 1120260
#> 1523 1120261
#> 1524 1120262
#> 1525 1120322
#> 1526 1120783
#> 1527 1126274
#> 1528 1127829
#> 1529 1128564
#> 1530 1128565
#> 1531 1128568
#> 1532 1128569
#> 1533 1128570
#> 1534 1128571
#> 1535 1128572
#> 1536 1128573
#> 1537 1128574
#> 1538 1128575
#> 1539 1128589
#> 1540 1128590
#> 1541 1128932
#> 1542 1128944
#> 1543 1128950
#> 1544 1128951
#> 1545 1128952
#> 1546 1129567
#> 1547 1129568
#> 1548 1129569
#> 1549 1129588
#> 1550 1129589
#> 1551 1129590
#> 1552 1129593
#> 1553 1130095
#> 1554 1130096
#> 1555 1137579
#> 1556 1137580
#> 1557 1137596
#> 1558 1137598
#> 1559 1137600
#> 1560 1137607
#> 1561 1138452
#> 1562 1138453
#> 1563 1139063
#> 1564 1140573
#> 1565 1142096
#> 1566 1142097
#> 1567 1142420
#> 1568 1142994
#> 1569 1155021
#> 1570 1155097
#> 1571 1155100
#> 1572 1155502
#> 1573 1155508
#> 1574 1156999
#> 1575 1157406
#> 1576 1157567
#> 1577 1158369
#> 1578 1160535
#> 1579 1160536
#> 1580 1162094
#> 1581 1163157
#> 1582 1163158
#> 1583 1163159
#> 1584 1163160
#> 1585 1163161
#> 1586 1163162
#> 1587 1163163
#> 1588 1163187
#> 1589 1163188
#> 1590 1163220
#> 1591 1163221
#> 1592 1163222
#> 1593 1163223
#> 1594 1163224
#> 1595 1163225
#> 1596 1163289
#> 1597 1163503
#> 1598 1164107
#> 1599 1165336
#> 1600 1167082
#> 1601 1167101
#> 1602 1167102
#> 1603 1167103
#> 1604 1167665
#> 1605 1167806
#> 1606 1168535
#> 1607 1168539
#> 1608 1168541
#> 1609 1168542
#> 1610 1168545
#> 1611 1168547
#> 1612 1168548
#> 1613 1168554
#> 1614 1169271
#> 1615 1170394
#> 1616 1170824
#> 1617 1170825
#> 1618 1170826
#> 1619 1170838
#> 1620 1170839
#> 1621 1170850
#> 1622 1170851
#> 1623 1171419
#> 1624 1171420
#> 1625 1172278
#> 1626 1172507
#> 1627 1173104
#> 1628 1173170
#> 1629 1173888
#> 1630 1173894
#> 1631 1173900
#> 1632 1174299
#> 1633 1174871
#> 1634 1175324
#> 1635 1175520
#> 1636 1176840
#> 1637 1177759
#> 1638 1178238
#> 1639 1178239
#> 1640 1178687
#> 1641 1179013
#> 1642 1179600
#> 1643 1181816
#> 1644 1182667
#> 1645 1182830
#> 1646 1184140
#> 1647 1184492
#> 1648 1186391
#> 1649 1186630
#> 1650 1187672
#> 1651 1189770
#> 1652 1189786
#> 1653 1190102
#> 1654 1190117
#> 1655 1190132
#> 1656 1190997
#> 1657 1191001
#> 1658 1191167
#> 1659 1192060
#> 1660 1192061
#> 1661 1192062
#> 1662 1192063
#> 1663 1192065
#> 1664 1193682
#> 1665 1193684
#> 1666 1193956
#> 1667 1195283
#> 1668 1198818
#> 1669 1201366
#> 1670 1201367
#> 1671 1201368
#> 1672 1201369
#> 1673 1201370
#> 1674 1201886
#> 1675 1201887
#> 1676 1202434
#> 1677 1204628
#> 1678 1204629
#> 1679 1204630
#> 1680 1205021
#> 1681 1205971
#> 1682 1206239
#> 1683 1223918
#> 1684 1224256
#> 1685 1226561
#> 1686 1226614
#> 1687 1230130
#> 1688 1234624
#> 1689 1234984
#> 1690 1235505
#> 1691 1239416
#> 1692 1240683
#> 1693 1241286
#> 1694 1241287
#> 1695 1241288
#> 1696 1241289
#> 1697 1241290
#> 1698 1241295
#> 1699 1241296
#> 1700 1241297
#> 1701 1241298
#> 1702 1241299
#> 1703 1241300
#> 1704 1242283
#> 1705 1242284
#> 1706 1242285
#> 1707 1242286
#> 1708 1242287
#> 1709 1243173
#> 1710 1243176
#> 1711 1243996
#> 1712 1243997
#> 1713 1244850
#> 1714 1244851
#> 1715 1244852
#> 1716 1244853
#> 1717 1244854
#> 1718 1244855
#> 1719 1244856
#> 1720 1247594
#> 1721 1247624
#> 1722 1247695
#> 1723 1247696
#> 1724 1247697
#> 1725 1247698
#> 1726 1247699
#> 1727 1247700
#> 1728 1247701
#> 1729 1247702
#> 1730 1247703
#> 1731 1247704
#> 1732 1250263
#> 1733 1250365
#> 1734 1250380
#> 1735 1250405
#> 1736 1250406
#> 1737 1250407
#> 1738 1250408
#> 1739 1250409
#> 1740 1250410
#> 1741 1250411
#> 1742 1250748
#> 1743 1251091
#> 1744 1251459
#> 1745 1251460
#> 1746 1251475
#> 1747 1251476
#> 1748 1252466
#> 1749 1252467
#> 1750 1252717
#> 1751 1253271
#> 1752 1253398
#> 1753 1253399
#> 1754 1253719
#> 1755 1254370
#> 1756 1255209
#> 1757 1255210
#> 1758 1255211
#> 1759 1255233
#> 1760 1255234
#> 1761 1255250
#> 1762 1255251
#> 1763 1256452
#> 1764 1261426
#> 1765 1261427
#> 1766 1261447
#> 1767 1261455
#> 1768 1261456
#> 1769 1261461
#> 1770 1262476
#> 1771 1263409
#> 1772 1263411
#> 1773 1263969
#> 1774 1263972
#> 1775 1263984
#> 1776 1263987
#> 1777 1264286
#> 1778 1264287
#> 1779 1264288
#> 1780 1264289
#> 1781 1264290
#> 1782 1264291
#> 1783 1264567
#> 1784 1264572
#> 1785 1264814
#> 1786 1266267
#> 1787 1266268
#> 1788 1266550
#> 1789 1267818
#> 1790 1268284
#> 1791 1268676
#> 1792 1268756
#> 1793 1269775
#> 1794 1269991
#> 1795 1270174
#> 1796 1270377
#> 1797 1270378
#> 1798 1270379
#> 1799 1270380
#> 1800 1270381
#> 1801 1270382
#> 1802 1270384
#> 1803 1270385
#> 1804 1270386
#> 1805 1270387
#> 1806 1270388
#> 1807 1270393
#> 1808 1270394
#> 1809 1270398
#> 1810 1270399
#> 1811 1270400
#> 1812 1270401
#> 1813 1270402
#> 1814 1270403
#> 1815 1270404
#> 1816 1270405
#> 1817 1272593
#> 1818 1273072
#> 1819 1273653
#> 1820 1273654
#> 1821 1273663
#> 1822 1274037
#> 1823 1274046
#> 1824 1274047
#> 1825 1274048
#> 1826 1274049
#> 1827 1274115
#> 1828 1274116
#> 1829 1274117
#> 1830 1274118
#> 1831 1274119
#> 1832 1274360
#> 1833 1274365
#> 1834 1274919
#> 1835 1275676
#> 1836 1276507
#> 1837 1277862
#> 1838 1278231
#> 1839 1278392
#> 1840 1278393
#> 1841 1278394
#> 1842 1278400
#> 1843 1278401
#> 1844 1279048
#> 1845 1279101
#> 1846 1279299
#> 1847 1279301
#> 1848 1280769
#> 1849 1283722
#> 1850 1283723
#> 1851 1283724
#> 1852 1283725
#> 1853 1283726
#> 1854 1283992
#> 1855 1283993
#> 1856 1284867
#> 1857 1284943
#> 1858 1284944
#> 1859 1285190
#> 1860 1285291
#> 1861 1286788
#> 1862 1286789
#> 1863 1286791
#> 1864 1286793
#> 1865 1286794
#> 1866 1287299
#> 1867 1287300
#> 1868 1288051
#> 1869 1289534
#> 1870 1289535
#> 1871 1289536
#> 1872 1289537
#> 1873 1289538
#> 1874 1289541
#> 1875 1289542
#> 1876 1289543
#> 1877 1289544
#> 1878 1289545
#> 1879 1289546
#> 1880 1289550
#> 1881 1289551
#> 1882 1289554
#> 1883 1289555
#> 1884 1289557
#> 1885 1289558
#> 1886 1289559
#> 1887 1289561
#> 1888 1290653
#> 1889 1290958
#> 1890 1291005
#> 1891 1291016
#> 1892 1291323
#> 1893 1291324
#> 1894 1291325
#> 1895 1291326
#> 1896 1291327
#> 1897 1291328
#> 1898 1291329
#> 1899 1291330
#> 1900 1291332
#> 1901 1291334
#> 1902 1291335
#> 1903 1291336
#> 1904 1291347
#> 1905 1291348
#> 1906 1291349
#> 1907 1291350
#> 1908 1291351
#> 1909 1291354
#> 1910 1293803
#> 1911 1294530
#> 1912 1295944
#> 1913 1295947
#> 1914 1296983
#> 1915 1297808
#> 1916 1297809
#> 1917 1298012
#> 1918 1298088
#> 1919 1298203
#> 1920 1298204
#> 1921 1298217
#> 1922 1298487
#> 1923 1298660
#> 1924 1298661
#> 1925 1298663
#> 1926 1298664
#> 1927 1298665
#> 1928 1298673
#> 1929 1298674
#> 1930 1298675
#> 1931 1298676
#> 1932 1298677
#> 1933 1300486
#> 1934 1301213
#> 1935 1301217
#> 1936 1301348
#> 1937 1301349
#> 1938 1301350
#> 1939 1301362
#> 1940 1301717
#> 1941 1301793
#> 1942 1301821
#> 1943 1301832
#> 1944 1303327
#> 1945 1303331
#> 1946 1303332
#> 1947 1303333
#> 1948 1303334
#> 1949 1303336
#> 1950 1303337
#> 1951 1303338
#> 1952 1303339
#> 1953 1303342
#> 1954 1303499
#> 1955 1303500
#> 1956 1305066
#> 1957 1305352
#> 1958 1305355
#> 1959 1305356
#> 1960 1305357
#> 1961 1305360
#> 1962 1305361
#> 1963 1305373
#> 1964 1305808
#> 1965 1306574
#> 1966 1306576
#> 1967 1306577
#> 1968 1306578
#> 1969 1306579
#> 1970 1306580
#> 1971 1306581
#> 1972 1306585
#> 1973 1306586
#> 1974 1306587
#> 1975 1306588
#> 1976 1307364
#> 1977 1307365
#> 1978 1307366
#> 1979 1307368
#> 1980 1307369
#> 1981 1308939
#> 1982 1308940
#> 1983 1308941
#> 1984 1308942
#> 1985 1309512
#> 1986 1309513
#> 1987 1309514
#> 1988 1309518
#> 1989 1309519
#> 1990 1310977
#> 1991 1312467
#> 1992 1312557
#> 1993 1312558
#> 1994 1312564
#> 1995 1312565
#> 1996 1312566
#> 1997 1313622
#> 1998 1315424
#> 1999 1315978
#> 2000 1315982
#> 2001 1315985
#> 2002 1315986
#> 2003 1315987
#> 2004 1317489
#> 2005 1317873
#> 2006 1317881
#> 2007 1317922
#> 2008 1317923
#> 2009 1319175
#> 2010 1321087
#> 2011 1321088
#> 2012 1321089
#> 2013 1321090
#> 2014 1321091
#> 2015 1321092
#> 2016 1321093
#> 2017 1321095
#> 2018 1321096
#> 2019 1321097
#> 2020 1321098
#> 2021 1321151
#> 2022 1321152
#> 2023 1321153
#> 2024 1321154
#> 2025 1321923
#> 2026 1321924
#> 2027 1321926
#> 2028 1325432
#> 2029 1326940
#> 2030 1330640
#> 2031 1330728
#> 2032 1330842
#> 2033 1330923
#> 2034 1330924
#> 2035 1330928
#> 2036 1330931
#> 2037 1330933
#> 2038 1330935
#> 2039 1330937
#> 2040 1330939
#> 2041 1330949
#> 2042 1330950
#> 2043 1330966
#> 2044 1330967
#> 2045 1335027
#> 2046 1335805
#> 2047 1336032
#> 2048 1337176
#> 2049 1337730
#> 2050 1341596
#> 2051 1341617
#> 2052 1341622
#> 2053 1341624
#> 2054 1341757
#> 2055 1341758
#> 2056 1341763
#> 2057 1341764
#> 2058 1341765
#> 2059 1341766
#> 2060 1341767
#> 2061 1342328
#> 2062 1342636
#> 2063 1345502
#> 2064 1348155
#> 2065 1350803
#> 2066 1350804
#> 2067 1350805
#> 2068 1350806
#> 2069 1350814
#> 2070 1350815
#> 2071 1350816
#> 2072 1350817
#> 2073 1350820
#> 2074 1350821
#> 2075 1350822
#> 2076 1350853
#> 2077 1350854
#> 2078 1350855
#> 2079 1350856
#> 2080 1350857
#> 2081 1350858
#> 2082 1350859
#> 2083 1350860
#> 2084 1350861
#> 2085 1350862
#> 2086 1350863
#> 2087 1350864
#> 2088 1350897
#> 2089 1352745
#> 2090 1352750
#> 2091 1353459
#> 2092 1353460
#> 2093 1353461
#> 2094 1353462
#> 2095 1353463
#> 2096 1353464
#> 2097 1353465
#> 2098 1353466
#> 2099 1353467
#> 2100 1353468
#> 2101 1353469
#> 2102 1353470
#> 2103 1353471
#> 2104 1353472
#> 2105 1353476
#> 2106 1353477
#> 2107 1353478
#> 2108 1353479
#> 2109 1353480
#> 2110 1353481
#> 2111 1353482
#> 2112 1357746
#> 2113 1357755
#> 2114 1358748
#> 2115 1358811
#> 2116 1359368
#> 2117 1359369
#> 2118 1359374
#> 2119 1359375
#> 2120 1359376
#> 2121 1359377
#> 2122 1359917
#> 2123 1359922
#> 2124 1359923
#> 2125 1360607
#> 2126 1360965
#> 2127 1361678
#> 2128 1361679
#> 2129 1361680
#> 2130 1361681
#> 2131 1361682
#> 2132 1361683
#> 2133 1361863
#> 2134 1361864
#> 2135 1361865
#> 2136 1361866
#> 2137 1361867
#> 2138 1361868
#> 2139 1361869
#> 2140 1361871
#> 2141 1361872
#> 2142 1361873
#> 2143 1361874
#> 2144 1364047
#> 2145 1364403
#> 2146 1364452
#> 2147 1364453
#> 2148 1364458
#> 2149 1364459
#> 2150 1364462
#> 2151 1364463
#> 2152 1364466
#> 2153 1364537
#> 2154 1364538
#> 2155 1364539
#> 2156 1364541
#> 2157 1364542
#> 2158 1364543
#> 2159 1364545
#> 2160 1364548
#> 2161 1365191
#> 2162 1365564
#> 2163 1365565
#> 2164 1365566
#> 2165 1365567
#> 2166 1365568
#> 2167 1365569
#> 2168 1365570
#> 2169 1365571
#> 2170 1365572
#> 2171 1365573
#> 2172 1365574
#> 2173 1365575
#> 2174 1365576
#> 2175 1365577
#> 2176 1365578
#> 2177 1365583
#> 2178 1365584
#> 2179 1365585
#> 2180 1365586
#> 2181 1365587
#> 2182 1365748
#> 2183 1366001
#> 2184 1367262
#> 2185 1367529
#> 2186 1367530
#> 2187 1368035
#> 2188 1368036
#> 2189 1370352
#> 2190 1370933
#> 2191 1371602
#> 2192 1371603
#> 2193 1371604
#> 2194 1371605
#> 2195 1371606
#> 2196 1371607
#> 2197 1371608
#> 2198 1371609
#> 2199 1371610
#> 2200 1371611
#> 2201 1371612
#> 2202 1371613
#> 2203 1372110
#> 2204 1372112
#> 2205 1372113
#> 2206 1372114
#> 2207 1372115
#> 2208 1372117
#> 2209 1372118
#> 2210 1372400
#> 2211 1373080
#> 2212 1373081
#> 2213 1374818
#> 2214 1375525
#> 2215 1376029
#> 2216 1376035
#> 2217 1376036
#> 2218 1376515
#> 2219 1376516
#> 2220 1376517
#> 2221 1376518
#> 2222 1376519
#> 2223 1378273
#> 2224 1378274
#> 2225 1378275
#> 2226 1378276
#> 2227 1378277
#> 2228 1378278
#> 2229 1378279
#> 2230 1378280
#> 2231 1378281
#> 2232 1378282
#> 2233 1378283
#> 2234 1378287
#> 2235 1378288
#> 2236 1378289
#> 2237 1378290
#> 2238 1378291
#> 2239 1378292
#> 2240 1378293
#> 2241 1379773
#> 2242 1381595
#> 2243 1381744
#> 2244 1381770
#> 2245 1382532
#> 2246 1382533
#> 2247 1382534
#> 2248 1382535
#> 2249 1382536
#> 2250 1382537
#> 2251 1382538
#> 2252 1389856
#> 2253 1389857
#> 2254 1389858
#> 2255 1389969
#> 2256 1389971
#> 2257 1390633
#> 2258 1390635
#> 2259 1390636
#> 2260 1390638
#> 2261 1390894
#> 2262 1391281
#> 2263 1391283
#> 2264 1391284
#> 2265 1391286
#> 2266 1391841
#> 2267 1393181
#> 2268 1393599
#> 2269 1394199
#> 2270 1394200
#> 2271 1394201
#> 2272 1394202
#> 2273 1394203
#> 2274 1394204
#> 2275 1394205
#> 2276 1394206
#> 2277 1394207
#> 2278 1394208
#> 2279 1394209
#> 2280 1394210
#> 2281 1394679
#> 2282 1394683
#> 2283 1394726
#> 2284 1394727
#> 2285 1394812
#> 2286 1395241
#> 2287 1396416
#> 2288 1396417
#> 2289 1396513
#> 2290 1396514
#> 2291 1396811
#> 2292 1396844
#> 2293 1397231
#> 2294 1398876
#> 2295 1399364
#> 2296 1399807
#> 2297 1401884
#> 2298 1401963
#> 2299 1402422
#> 2300 1402423
#> 2301 1402424
#> 2302 1402504
#> 2303 1402505
#> 2304 1402506
#> 2305 1402960
#> 2306 1402961
#> 2307 1402962
#> 2308 1402963
#> 2309 1403293
#> 2310 1403294
#> 2311 1403917
#> 2312 1404100
#> 2313 1404619
#> 2314 1404759
#> 2315 1404897
#> 2316 1404960
#> 2317 1404962
#> 2318 1404963
#> 2319 1404964
#> 2320 1404965
#> 2321 1404966
#> 2322 1404967
#> 2323 1404968
#> 2324 1404974
#> 2325 1404975
#> 2326 1404976
#> 2327 1404977
#> 2328 1404978
#> 2329 1404979
#> 2330 1404980
#> 2331 1404981
#> 2332 1406661
#> 2333 1407099
#> 2334 1407100
#> 2335 1407101
#> 2336 1407105
#> 2337 1407106
#> 2338 1409093
#> 2339 1411545
#> 2340 1411546
#> 2341 1411549
#> 2342 1411550
#> 2343 1411551
#> 2344 1411556
#> 2345 1411557
#> 2346 1411558
#> 2347 1412316
#> 2348 1412317
#> 2349 1412321
#> 2350 1412322
#> 2351 1412323
#> 2352 1412324
#> 2353 1412325
#> 2354 1412326
#> 2355 1412463
#> 2356 1412703
#> 2357 1412708
#> 2358 1412846
#> 2359 1415023
#> 2360 1417363
#> 2361 1417834
#> 2362 1417835
#> 2363 1417836
#> 2364 1417837
#> 2365 1417838
#> 2366 1417839
#> 2367 1417840
#> 2368 1417841
#> 2369 1417842
#> 2370 1417843
#> 2371 1417844
#> 2372 1417845
#> 2373 1418418
#> 2374 1418419
#> 2375 1418420
#> 2376 1419163
#> 2377 1419930
#> 2378 1419931
#> 2379 1420632
#> 2380 1420633
#> 2381 1420634
#> 2382 1420635
#> 2383 1420636
#> 2384 1420640
#> 2385 1420671
#> 2386 1420674
#> 2387 1420676
#> 2388 1420678
#> 2389 1420679
#> 2390 1420680
#> 2391 1420681
#> 2392 1420682
#> 2393 1420683
#> 2394 1420684
#> 2395 1420685
#> 2396 1420686
#> 2397 1421134
#> 2398 1421264
#> 2399 1421409
#> 2400 1421410
#> 2401 1422234
#> 2402 1423307
#> 2403 1423308
#> 2404 1423311
#> 2405 1423312
#> 2406 1423824
#> 2407 1423825
#> 2408 1423826
#> 2409 1423828
#> 2410 1423829
#> 2411 1423830
#> 2412 1423831
#> 2413 1424192
#> 2414 1424193
#> 2415 1424200
#> 2416 1424201
#> 2417 1424202
#> 2418 1424203
#> 2419 1424204
#> 2420 1424205
#> 2421 1424206
#> 2422 1424207
#> 2423 1424261
#> 2424 1424262
#> 2425 1424361
#> 2426 1424363
#> 2427 1424364
#> 2428 1424369
#> 2429 1424371
#> 2430 1424372
#> 2431 1424373
#> 2432 1424398
#> 2433 1424983
#> 2434 1426855
#> 2435 1426964
#> 2436 1428029
#> 2437 1428030
#> 2438 1428362
#> 2439 1428884
#> 2440 1430980
#> 2441 1431174
#> 2442 1431285
#> 2443 1432775
#> 2444 1432776
#> 2445 1432777
#> 2446 1432797
#> 2447 1432798
#> 2448 1432799
#> 2449 1432800
#> 2450 1434201
#> 2451 1434568
#> 2452 1434569
#> 2453 1434579
#> 2454 1434580
#> 2455 1434581
#> 2456 1434582
#> 2457 1435450
#> 2458 1435625
#> 2459 1435626
#> 2460 1435627
#> 2461 1435628
#> 2462 1435629
#> 2463 1435630
#> 2464 1436457
#> 2465 1436879
#> 2466 1438343
#> 2467 1439619
#> 2468 1439620
#> 2469 1439621
#> 2470 1439622
#> 2471 1439623
#> 2472 1439624
#> 2473 1439625
#> 2474 1439629
#> 2475 1439630
#> 2476 1439631
#> 2477 1439632
#> 2478 1439753
#> 2479 1440116
#> 2480 1440316
#> 2481 1440730
#> 2482 1441910
#> 2483 1441911
#> 2484 1441912
#> 2485 1441913
#> 2486 1441914
#> 2487 1441917
#> 2488 1441922
#> 2489 1441923
#> 2490 1441924
#> 2491 1441925
#> 2492 1441929
#> 2493 1441930
#> 2494 1441931
#> 2495 1441932
#> 2496 1441937
#> 2497 1441938
#> 2498 1441939
#> 2499 1441940
#> 2500 1441941
#> 2501 1441942
#> 2502 1441944
#> 2503 1441945
#> 2504 1441946
#> 2505 1441947
#> 2506 1441948
#> 2507 1441949
#> 2508 1441950
#> 2509 1441951
#> 2510 1441952
#> 2511 1442426
#> 2512 1442427
#> 2513 1442428
#> 2514 1443455
#> 2515 1443465
#> 2516 1443477
#> 2517 1443538
#> 2518 1444111
#> 2519 1444155
#> 2520 1444158
#> 2521 1444159
#> 2522 1444160
#> 2523 1444161
#> 2524 1445468
#> 2525 1445469
#> 2526 1445470
#> 2527 1445471
#> 2528 1445472
#> 2529 1445473
#> 2530 1445474
#> 2531 1445479
#> 2532 1445480
#> 2533 1445481
#> 2534 1446437
#> 2535 1446714
#> 2536 1446715
#> 2537 1450098
#> 2538 1450405
#> 2539 1450412
#> 2540 1450709
#> 2541 1450710
#> 2542 1450767
#> 2543 1450768
#> 2544 1450769
#> 2545 1452382
#> 2546 1452454
#> 2547 1455679
#> 2548 1458976
#> 2549 1458977
#> 2550 1458978
#> 2551 1459020
#> 2552 1461120
#> 2553 1461121
#> 2554 1461122
#> 2555 1461123
#> 2556 1461124
#> 2557 1461125
#> 2558 1461126
#> 2559 1461127
#> 2560 1461128
#> 2561 1461129
#> 2562 1461130
#> 2563 1461131
#> 2564 1461711
#> 2565 1461712
#> 2566 1461714
#> 2567 1461715
#> 2568 1461716
#> 2569 1461717
#> 2570 1461718
#> 2571 1461719
#> 2572 1461720
#> 2573 1461721
#> 2574 1461722
#> 2575 1462163
#> 2576 1463353
#> 2577 1463973
#> 2578 1463975
#> 2579 1464302
#> 2580 1464456
#> 2581 1466303
#> 2582 1466304
#> 2583 1466329
#> 2584 1466854
#> 2585 1468807
#> 2586 1469701
#> 2587 1469776
#> 2588 1469777
#> 2589 1469778
#> 2590 1469779
#> 2591 1469890
#> 2592 1470056
#> 2593 1470057
#> 2594 1470058
#> 2595 1470059
#> 2596 1470060
#> 2597 1470061
#> 2598 1470062
#> 2599 1470063
#> 2600 1470064
#> 2601 1470065
#> 2602 1470066
#> 2603 1470067
#> 2604 1470863
#> 2605 1470864
#> 2606 1470865
#> 2607 1470939
#> 2608 1470940
#> 2609 1470960
#> 2610 1471073
#> 2611 1471074
#> 2612 1471075
#> 2613 1471076
#> 2614 1471077
#> 2615 1471079
#> 2616 1474494
#> 2617 1475828
#> 2618 1478764
#> 2619 1478910
#> 2620 1478911
#> 2621 1481308
#> 2622 1481309
#> 2623 1481310
#> 2624 1481312
#> 2625 1481313
#> 2626 1481314
#> 2627 1481316
#> 2628 1481317
#> 2629 1481318
#> 2630 1481319
#> 2631 1481320
#> 2632 1481321
#> 2633 1481322
#> 2634 1481323
#> 2635 1481324
#> 2636 1481325
#> 2637 1481326
#> 2638 1481327
#> 2639 1481328
#> 2640 1481329
#> 2641 1481330
#> 2642 1481331
#> 2643 1481340
#> 2644 1481341
#> 2645 1481350
#> 2646 1481351
#> 2647 1481353
#> 2648 1481354
#> 2649 1481355
#> 2650 1481356
#> 2651 1481357
#> 2652 1481358
#> 2653 1481361
#> 2654 1481362
#> 2655 1481363
#> 2656 1481364
#> 2657 1481365
#> 2658 1481366
#> 2659 1481367
#> 2660 1481368
#> 2661 1481369
#> 2662 1481370
#> 2663 1481371
#> 2664 1481372
#> 2665 1481373
#> 2666 1481374
#> 2667 1481375
#> 2668 1481376
#> 2669 1481377
#> 2670 1481378
#> 2671 1481379
#> 2672 1481380
#> 2673 1481381
#> 2674 1481382
#> 2675 1481383
#> 2676 1481384
#> 2677 1481385
#> 2678 1481386
#> 2679 1481427
#> 2680 1481428
#> 2681 1481429
#> 2682 1481430
#> 2683 1481431
#> 2684 1481432
#> 2685 1483363
#> 2686 1483364
#> 2687 1483365
#> 2688 1483366
#> 2689 1483367
#> 2690 1483368
#> 2691 1483369
#> 2692 1483370
#> 2693 1483375
#> 2694 1483376
#> 2695 1483377
#> 2696 1483378
#> 2697 1483379
#> 2698 1483380
#> 2699 1483385
#> 2700 1483386
#> 2701 1483387
#> 2702 1483388
#> 2703 1483389
#> 2704 1483390
#> 2705 1483391
#> 2706 1483410
#> 2707 1483411
#> 2708 1483412
#> 2709 1484432
#> 2710 1484433
#> 2711 1484434
#> 2712 1484894
#> 2713 1484895
#> 2714 1485537
#> 2715 1488002
#> 2716 1488003
#> 2717 1488004
#> 2718 1488207
#> 2719 1488208
#> 2720 1488209
#> 2721 1488516
#> 2722 1488737
#> 2723 1488746
#> 2724 1490106
#> 2725 1490107
#> 2726 1491837
#> 2727 1491838
#> 2728 1492056
#> 2729 1492163
#> 2730 1492192
#> 2731 1492283
#> 2732 1492390
#> 2733 1492412
#> 2734 1492507
#> 2735 1492556
#> 2736 1492632
#> 2737 1492672
#> 2738 1492990
#> 2739 1493616
#> 2740 1494799
#> 2741 1497678
#> 2742 1497679
#> 2743 1497680
#> 2744 1497681
#> 2745 1497682
#> 2746 1497683
#> 2747 1497684
#> 2748 1497691
#> 2749 1497692
#> 2750 1497693
#> 2751 1497694
#> 2752 1498599
#> 2753 1498600
#> 2754 1498606
#> 2755 1498607
#> 2756 1498608
#> 2757 1498609
#> 2758 1498610
#> 2759 1498611
#> 2760 1499230
#> 2761 1499231
#> 2762 1499233
#> 2763 1499598
#> 2764 1499599
#> 2765 1499600
#> 2766 1499601
#> 2767 1499602
#> 2768 1499603
#> 2769 1499604
#> 2770 1499605
#> 2771 1499606
#> 2772 1500166
#> 2773 1500431
#> 2774 1502391
#> 2775 1503435
#> 2776 1503436
#> 2777 1504166
#> 2778 1504753
#> 2779 1507120
#> 2780 1507441
#> 2781 1507444
#> 2782 1507448
#> 2783 1507462
#> 2784 1508705
#> 2785 1508706
#> 2786 1508844
#> 2787 1509627
#> 2788 1510874
#> 2789 1511366
#> 2790 1511394
#> 2791 1511583
#> 2792 1511584
#> 2793 1511585
#> 2794 1511586
#> 2795 1511587
#> 2796 1511588
#> 2797 1511589
#> 2798 1511590
#> 2799 1511591
#> 2800 1511592
#> 2801 1511593
#> 2802 1511594
#> 2803 1513293
#> 2804 1516620
#> 2805 1516673
#> 2806 1517030
#> 2807 1517249
#> 2808 1518420
#> 2809 1518421
#> 2810 1518422
#> 2811 1518423
#> 2812 1518424
#> 2813 1519080
#> 2814 1519106
#> 2815 1519413
#> 2816 1519414
#> 2817 1519441
#> 2818 1519442
#> 2819 1520225
#> 2820 1525532
#> 2821 1527516
#> 2822 1527518
#> 2823 1528993
#> 2824 1529017
#> 2825 1529900
#> 2826 1530946
#> 2827 1531306
#> 2828 1531670
#> 2829 1532891
#> 2830 1532893
#> 2831 1533594
#> 2832 1534219
#> 2833 1535422
#> 2834 1535423
#> 2835 1535424
#> 2836 1535425
#> 2837 1535426
#> 2838 1535427
#> 2839 1535438
#> 2840 1535442
#> 2841 1535504
#> 2842 1536118
#> 2843 1536504
#> 2844 1536505
#> 2845 1536506
#> 2846 1536507
#> 2847 1536508
#> 2848 1536509
#> 2849 1536510
#> 2850 1536511
#> 2851 1536512
#> 2852 1536513
#> 2853 1536514
#> 2854 1536515
#> 2855 1538060
#> 2856 1538061
#> 2857 1538062
#> 2858 1538063
#> 2859 1538064
#> 2860 1538771
#> 2861 1539887
#> 2862 1539888
#> 2863 1539889
#> 2864 1539890
#> 2865 1539891
#> 2866 1540476
#> 2867 1541723
#> 2868 1542170
#> 2869 1542831
#> 2870 1542926
#> 2871 1543469
#> 2872 1543716
#> 2873 1544356
#> 2874 1544357
#> 2875 1544720
#> 2876 1544721
#> 2877 1544759
#> 2878 1545164
#> 2879 1545376
#> 2880 1545466
#> 2881 1545469
#> 2882 1545470
#> 2883 1545471
#> 2884 1545472
#> 2885 1545473
#> 2886 1545474
#> 2887 1545475
#> 2888 1545476
#> 2889 1545477
#> 2890 1545478
#> 2891 1545480
#> 2892 1545481
#> 2893 1545484
#> 2894 1545485
#> 2895 1545486
#> 2896 1545489
#> 2897 1545497
#> 2898 1545522
#> 2899 1548404
#> 2900 1548406
#> 2901 1549279
#> 2902 1549564
#> 2903 1550199
#> 2904 1550200
#> 2905 1550517
#> 2906 1550976
#> 2907 1551638
#> 2908 1551665
#> 2909 1551765
#> 2910 1551768
#> 2911 1551769
#> 2912 1552893
#> 2913 1553448
#> 2914 1554252
#> 2915 1554253
#> 2916 1554254
#> 2917 1554255
#> 2918 1554256
#> 2919 1554763
#> 2920 1555636
#> 2921 1555842
#> 2922 1555843
#> 2923 1556671
#> 2924 1557565
#> 2925 1558400
#> 2926 1559935
#> 2927 1560155
#> 2928 1560156
#> 2929 1560157
#> 2930 1560158
#> 2931 1560159
#> 2932 1560160
#> 2933 1560161
#> 2934 1560162
#> 2935 1560163
#> 2936 1560164
#> 2937 1560165
#> 2938 1560166
#> 2939 1560826
#> 2940 1560842
#> 2941 1561646
#> 2942 1561647
#> 2943 1562643
#> 2944 1562644
#> 2945 1562645
#> 2946 1562646
#> 2947 1562647
#> 2948 1562648
#> 2949 1562649
#> 2950 1562650
#> 2951 1562651
#> 2952 1562652
#> 2953 1562653
#> 2954 1562654
#> 2955 1562655
#> 2956 1563732
#> 2957 1563733
#> 2958 1564219
#> 2959 1564228
#> 2960 1564389
#> 2961 1565409
#> 2962 1565421
#> 2963 1565422
#> 2964 1565423
#> 2965 1565424
#> 2966 1565425
#> 2967 1565431
#> 2968 1565432
#> 2969 1565433
#> 2970 1565434
#> 2971 1565435
#> 2972 1565436
#> 2973 1565438
#> 2974 1567753
#> 2975 1567754
#> 2976 1567755
#> 2977 1567756
#> 2978 1567757
#> 2979 1567758
#> 2980 1567759
#> 2981 1567760
#> 2982 1567761
#> 2983 1567762
#> 2984 1567763
#> 2985 1567764
#> 2986 1568440
#> 2987 1572261
#> 2988 1572263
#> 2989 1572264
#> 2990 1572286
#> 2991 1572652
#> 2992 1572752
#> 2993 1573270
#> 2994 1573285
#> 2995 1573349
#> 2996 1574235
#> 2997 1574928
#> 2998 1574929
#> 2999 1574930
#> 3000 1576796
#> 3001 1576797
#> 3002 1576798
#> 3003 1576799
#> 3004 1576941
#> 3005 1576959
#> 3006 1578256
#> 3007 1578257
#> 3008 1578258
#> 3009 1578326
#> 3010 1579440
#> 3011 1580125
#> 3012 1580126
#> 3013 1580127
#> 3014 1580189
#> 3015 1580190
#> 3016 1580191
#> 3017 1580192
#> 3018 1580193
#> 3019 1580194
#> 3020 1580220
#> 3021 1580221
#> 3022 1580222
#> 3023 1580223
#> 3024 1580224
#> 3025 1580528
#> 3026 1580946
#> 3027 1580947
#> 3028 1580948
#> 3029 1580949
#> 3030 1580950
#> 3031 1582348
#> 3032 1582365
#> 3033 1582366
#> 3034 1582367
#> 3035 1582368
#> 3036 1582370
#> 3037 1582371
#> 3038 1582372
#> 3039 1582373
#> 3040 1582374
#> 3041 1582375
#> 3042 1582376
#> 3043 1582377
#> 3044 1582378
#> 3045 1582379
#> 3046 1582380
#> 3047 1582381
#> 3048 1582382
#> 3049 1582383
#> 3050 1582384
#> 3051 1582385
#> 3052 1582386
#> 3053 1582387
#> 3054 1582388
#> 3055 1582389
#> 3056 1582390
#> 3057 1582391
#> 3058 1582392
#> 3059 1582393
#> 3060 1582394
#> 3061 1582395
#> 3062 1582398
#> 3063 1582399
#> 3064 1582400
#> 3065 1582401
#> 3066 1582402
#> 3067 1582403
#> 3068 1582404
#> 3069 1582405
#> 3070 1582406
#> 3071 1582407
#> 3072 1582408
#> 3073 1582409
#> 3074 1582410
#> 3075 1582411
#> 3076 1582412
#> 3077 1582413
#> 3078 1582414
#> 3079 1582415
#> 3080 1582416
#> 3081 1582417
#> 3082 1582418
#> 3083 1582419
#> 3084 1582420
#> 3085 1582421
#> 3086 1582422
#> 3087 1582423
#> 3088 1582424
#> 3089 1582425
#> 3090 1582426
#> 3091 1582427
#> 3092 1582428
#> 3093 1582429
#> 3094 1582430
#> 3095 1582431
#> 3096 1582432
#> 3097 1582433
#> 3098 1582434
#> 3099 1582435
#> 3100 1582436
#> 3101 1582437
#> 3102 1582438
#> 3103 1582439
#> 3104 1582440
#> 3105 1582442
#> 3106 1582443
#> 3107 1583836
#> 3108 1583837
#> 3109 1583838
#> 3110 1583839
#> 3111 1583840
#> 3112 1583841
#> 3113 1583844
#> 3114 1583845
#> 3115 1583851
#> 3116 1583854
#> 3117 1583855
#> 3118 1583862
#> 3119 1583863
#> 3120 1583865
#> 3121 1583867
#> 3122 1583869
#> 3123 1583870
#> 3124 1584016
#> 3125 1584017
#> 3126 1584018
#> 3127 1584019
#> 3128 1584020
#> 3129 1584021
#> 3130 1584022
#> 3131 1584023
#> 3132 1584024
#> 3133 1584025
#> 3134 1584026
#> 3135 1584027
#> 3136 1584395
#> 3137 1585296
#> 3138 1585297
#> 3139 1585298
#> 3140 1585300
#> 3141 1585301
#> 3142 1585302
#> 3143 1585303
#> 3144 1585919
#> 3145 1585920
#> 3146 1585964
#> 3147 1585965
#> 3148 1585966
#> 3149 1585970
#> 3150 1585971
#> 3151 1585972
#> 3152 1585980
#> 3153 1585981
#> 3154 1585982
#> 3155 1586668
#> 3156 1586911
#> 3157 1587023
#> 3158 1587025
#> 3159 1588684
#> 3160 1588685
#> 3161 1588959
#> 3162 1589886
#> 3163 1589887
#> 3164 1589904
#> 3165 1589905
#> 3166 1589906
#> 3167 1589907
#> 3168 1589908
#> 3169 1589909
#> 3170 1589910
#> 3171 1589911
#> 3172 1589912
#> 3173 1589913
#> 3174 1589914
#> 3175 1589920
#> 3176 1589921
#> 3177 1589922
#> 3178 1589923
#> 3179 1589924
#> 3180 1589925
#> 3181 1590557
#> 3182 1590558
#> 3183 1590559
#> 3184 1590560
#> 3185 1590561
#> 3186 1590562
#> 3187 1590563
#> 3188 1590564
#> 3189 1590565
#> 3190 1590566
#> 3191 1590567
#> 3192 1590568
#> 3193 1591034
#> 3194 1591035
#> 3195 1591036
#> 3196 1591037
#> 3197 1591038
#> 3198 1591039
#> 3199 1591040
#> 3200 1591041
#> 3201 1591042
#> 3202 1591043
#> 3203 1591044
#> 3204 1591045
#> 3205 1591631
#> 3206 1592583
#> 3207 1592584
#> 3208 1592585
#> 3209 1592586
#> 3210 1592587
#> 3211 1592588
#> 3212 1592589
#> 3213 1592590
#> 3214 1592591
#> 3215 1592592
#> 3216 1592593
#> 3217 1592594
#> 3218 1594502
#> 3219 1594503
#> 3220 1595473
#> 3221 1595474
#> 3222 1595475
#> 3223 1595476
#> 3224 1595477
#> 3225 1595478
#> 3226 1595485
#> 3227 1595486
#> 3228 1595487
#> 3229 1595488
#> 3230 1595615
#> 3231 1595618
#> 3232 1595620
#> 3233 1595637
#> 3234 1595638
#> 3235 1595639
#> 3236 1595644
#> 3237 1595651
#> 3238 1596990
#> 3239 1597221
#> 3240 1598163
#> 3241 1599509
#> 3242 1599511
#> 3243 1599794
#> 3244 1599795
#> 3245 1599836
#> 3246 1599837
#> 3247 1599838
#> 3248 1599843
#> 3249 1599844
#> 3250 1599893
#> 3251 1599932
#> 3252 1599941
#> 3253 1599942
#> 3254 1599945
#> 3255 1599946
#> 3256 1599950
#> 3257 1599951
#> 3258 1599952
#> 3259 1600531
#> 3260 1600532
#> 3261 1600798
#> 3262 1601052
#> 3263 1601320
#> 3264 1602519
#> 3265 1602520
#> 3266 1602521
#> 3267 1602522
#> 3268 1602523
#> 3269 1602524
#> 3270 1602525
#> 3271 1602526
#> 3272 1602527
#> 3273 1603711
#> 3274 1606161
#> 3275 1607642
#> 3276 1607643
#> 3277 1608248
#> 3278 1608655
#> 3279 1608656
#> 3280 1608657
#> 3281 1608658
#> 3282 1609522
#> 3283 1610896
#> 3284 1610897
#> 3285 1610943
#> 3286 1610967
#> 3287 1610968
#> 3288 1610969
#> 3289 1611097
#> 3290 1611104
#> 3291 1611560
#> 3292 1611561
#> 3293 1611562
#> 3294 1611563
#> 3295 1611564
#> 3296 1611565
#> 3297 1611566
#> 3298 1611567
#> 3299 1611568
#> 3300 1612545
#> 3301 1612546
#> 3302 1612890
#> 3303 1612891
#> 3304 1612896
#> 3305 1612929
#> 3306 1612959
#> 3307 1612989
#> 3308 1613109
#> 3309 1614789
#> 3310 1614797
#> 3311 1615345
#> 3312 1615387
#> 3313 1616553
#> 3314 1616555
#> 3315 1616556
#> 3316 1616559
#> 3317 1616561
#> 3318 1616564
#> 3319 1616575
#> 3320 1616576
#> 3321 1616577
#> 3322 1616578
#> 3323 1616579
#> 3324 1616580
#> 3325 1616581
#> 3326 1616582
#> 3327 1616583
#> 3328 1616584
#> 3329 1616585
#> 3330 1616586
#> 3331 1616601
#> 3332 1616603
#> 3333 1616948
#> 3334 1617466
#> 3335 1617467
#> 3336 1617468
#> 3337 1617954
#> 3338 1617955
#> 3339 1617956
#> 3340 1617957
#> 3341 1617959
#> 3342 1617960
#> 3343 1617961
#> 3344 1617975
#> 3345 1617981
#> 3346 1617982
#> 3347 1617983
#> 3348 1618015
#> 3349 1618026
#> 3350 1620788
#> 3351 1625022
#> 3352 1625319
#> 3353 1625320
#> 3354 1625325
#> 3355 1625327
#> 3356 1627085
#> 3357 1627086
#> 3358 1627091
#> 3359 1627092
#> 3360 1627104
#> 3361 1627105
#> 3362 1627106
#> 3363 1627692
#> 3364 1627748
#> 3365 1629483
#> 3366 1630435
#> 3367 1630436
#> 3368 1630438
#> 3369 1630439
#> 3370 1631222
#> 3371 1632290
#> 3372 1632301
#> 3373 1632327
#> 3374 1633243
#> 3375 1636724
#> 3376 1636808
#> 3377 1636809
#> 3378 1637072
#> 3379 1637540
#> 3380 1638787
#> 3381 1638788
#> 3382 1646570
#> 3383 1646613
#> 3384 1646614
#> 3385 1646615
#> 3386 1646616
#> 3387 1646617
#> 3388 1646945
#> 3389 1646966
#> 3390 1649859
#> 3391 1649860
#> 3392 1649861
#> 3393 1649862
#> 3394 1649863
#> 3395 1649864
#> 3396 1649865
#> 3397 1652200
#> 3398 1654042
#> 3399 1656256
#> 3400 1656714
#> 3401 1656715
#> 3402 1656985
#> 3403 1658303
#> 3404 1658308
#> 3405 1658309
#> 3406 1658312
#> 3407 1658313
#> 3408 1658315
#> 3409 1658316
#> 3410 1658317
#> 3411 1658318
#> 3412 1658319
#> 3413 1658320
#> 3414 1658321
#> 3415 1658322
#> 3416 1658323
#> 3417 1658324
#> 3418 1658325
#> 3419 1658326
#> 3420 1658327
#> 3421 1658328
#> 3422 1658329
#> 3423 1659246
#> 3424 1659784
#> 3425 1659786
#> 3426 1659955
#> 3427 1659956
#> 3428 1659957
#> 3429 1659958
#> 3430 1659959
#> 3431 1659960
#> 3432 1659961
#> 3433 1659962
#> 3434 1659963
#> 3435 1659964
#> 3436 1659965
#> 3437 1659966
#> 3438 1659967
#> 3439 1659968
#> 3440 1659972
#> 3441 1659973
#> 3442 1659974
#> 3443 1664188
#> 3444 1664192
#> 3445 1664193
#> 3446 1664194
#> 3447 1664195
#> 3448 1664196
#> 3449 1664199
#> 3450 1664200
#> 3451 1664394
#> 3452 1664395
#> 3453 1664396
#> 3454 1664397
#> 3455 1664425
#> 3456 1664426
#> 3457 1664427
#> 3458 1667574
#> 3459 1667575
#> 3460 1667592
#> 3461 1672580
#> 3462 1672723
#> 3463 1672724
#> 3464 1672938
#> 3465 1673088
#> 3466 1673305
#> 3467 1673312
#> 3468 1673827
#> 3469 1673834
#> 3470 1673934
#> 3471 1676511
#> 3472 1676512
#> 3473 1676513
#> 3474 1676514
#> 3475 1676515
#> 3476 1676680
#> 3477 1676868
#> 3478 1676869
#> 3479 1677821
#> 3480 1677853
#> 3481 1679034
#> 3482 1679045
#> 3483 1679757
#> 3484 1688918
#> 3485 1688919
#> 3486 1689697
#> 3487 1690317
#> 3488 1690728
#> 3489 1690736
#> 3490 1690737
#> 3491 1690738
#> 3492 1690739
#> 3493 1690740
#> 3494 1690741
#> 3495 1690742
#> 3496 1690743
#> 3497 1690744
#> 3498 1690749
#> 3499 1691109
#> 3500 1691110
#> 3501 1691112
#> 3502 1691113
#> 3503 1691116
#> 3504 1691117
#> 3505 1691118
#> 3506 1691119
#> 3507 1691120
#> 3508 1691121
#> 3509 1691122
#> 3510 1691125
#> 3511 1691126
#> 3512 1691127
#> 3513 1691128
#> 3514 1691129
#> 3515 1691130
#> 3516 1691131
#> 3517 1691132
#> 3518 1691133
#> 3519 1691134
#> 3520 1691135
#> 3521 1691136
#> 3522 1691137
#> 3523 1691139
#> 3524 1691140
#> 3525 1691141
#> 3526 1691142
#> 3527 1691143
#> 3528 1691144
#> 3529 1691145
#> 3530 1691384
#> 3531 1693246
#> 3532 1695555
#> 3533 1697063
#> 3534 1699720
#> 3535 1699735
#> 3536 1702613
#> 3537 1702614
#> 3538 1702615
#> 3539 1702616
#> 3540 1703381
#> 3541 1703398
#> 3542 1704357
#> 3543 1704927
#> 3544 1704928
#> 3545 1704929
#> 3546 1704930
#> 3547 1704931
#> 3548 1704939
#> 3549 1704940
#> 3550 1704941
#> 3551 1704942
#> 3552 1704943
#> 3553 1704944
#> 3554 1704945
#> 3555 1704946
#> 3556 1704947
#> 3557 1704948
#> 3558 1704949
#> 3559 1704950
#> 3560 1704951
#> 3561 1704952
#> 3562 1704953
#> 3563 1704954
#> 3564 1704955
#> 3565 1704956
#> 3566 1704957
#> 3567 1704960
#> 3568 1704961
#> 3569 1704962
#> 3570 1704963
#> 3571 1704964
#> 3572 1704965
#> 3573 1704966
#> 3574 1704967
#> 3575 1704968
#> 3576 1704969
#> 3577 1704970
#> 3578 1704971
#> 3579 1704972
#> 3580 1704973
#> 3581 1704974
#> 3582 1704975
#> 3583 1704976
#> 3584 1704977
#> 3585 1704978
#> 3586 1706939
#> 3587 1708147
#> 3588 1708236
#> 3589 1708237
#> 3590 1708238
#> 3591 1708302
#> 3592 1709289
#> 3593 1709292
#> 3594 1709313
#> 3595 1709314
#> 3596 1709316
#> 3597 1709459
#> 3598 1710199
#> 3599 1710850
#> 3600 1710851
#> 3601 1711467
#> 3602 1712123
#> 3603 1713436
#> 3604 1713454
#> 3605 1713455
#> 3606 1713456
#> 3607 1713467
#> 3608 1713705
#> 3609 1714838
#> 3610 1715121
#> 3611 1715371
#> 3612 1715723
#> 3613 1715787
#> 3614 1715788
#> 3615 1715789
#> 3616 1715791
#> 3617 1715796
#> 3618 1715979
#> 3619 1717446
#> 3620 1717447
#> 3621 1717448
#> 3622 1717449
#> 3623 1718804
#> 3624 1718805
#> 3625 1718891
#> 3626 1718992
#> 3627 1718993
#> 3628 1719557
#> 3629 1719558
#> 3630 1719559
#> 3631 1719560
#> 3632 1719561
#> 3633 1719562
#> 3634 1719563
#> 3635 1719564
#> 3636 1720107
#> 3637 1720112
#> 3638 1720507
#> 3639 1720509
#> 3640 1720514
#> 3641 1720530
#> 3642 1721874
#> 3643 1723351
#> 3644 1723352
#> 3645 1724039
#> 3646 1724046
#> 3647 1724051
#> 3648 1724473
#> 3649 1724474
#> 3650 1724534
#> 3651 1724535
#> 3652 1724536
#> 3653 1724541
#> 3654 1724542
#> 3655 1724543
#> 3656 1724890
#> 3657 1724891
#> 3658 1724899
#> 3659 1724914
#> 3660 1724922
#> 3661 1724925
#> 3662 1726708
#> 3663 1726709
#> 3664 1726716
#> 3665 1730437
#> 3666 1730445
#> 3667 1730446
#> 3668 1730447
#> 3669 1730448
#> 3670 1730449
#> 3671 1730450
#> 3672 1730451
#> 3673 1730452
#> 3674 1730458
#> 3675 1730459
#> 3676 1730460
#> 3677 1730461
#> 3678 1730462
#> 3679 1730463
#> 3680 1730464
#> 3681 1730858
#> 3682 1730859
#> 3683 1730860
#> 3684 1730865
#> 3685 1730866
#> 3686 1730883
#> 3687 1730885
#> 3688 1730886
#> 3689 1730888
#> 3690 1730889
#> 3691 1730891
#> 3692 1730892
#> 3693 1731395
#> 3694 1731397
#> 3695 1731979
#> 3696 1734767
#> 3697 1734769
#> 3698 1735358
#> 3699 1737847
#> 3700 1738031
#> 3701 1738032
#> 3702 1738033
#> 3703 1738568
#> 3704 1738669
#> 3705 1738670
#> 3706 1738671
#> 3707 1738675
#> 3708 1738676
#> 3709 1738683
#> 3710 1738684
#> 3711 1738685
#> 3712 1738686
#> 3713 1738687
#> 3714 1738688
#> 3715 1738689
#> 3716 1738690
#> 3717 1738691
#> 3718 1738692
#> 3719 1739679
#> 3720 1739959
#> 3721 1739960
#> 3722 1739964
#> 3723 1739965
#> 3724 1740136
#> 3725 1740137
#> 3726 1740138
#> 3727 1740139
#> 3728 1740140
#> 3729 1740141
#> 3730 1740143
#> 3731 1740144
#> 3732 1740145
#> 3733 1740146
#> 3734 1740147
#> 3735 1740149
#> 3736 1741603
#> 3737 1742783
#> 3738 1743535
#> 3739 1743741
#> 3740 1746461
#> 3741 1746462
#> 3742 1746463
#> 3743 1746464
#> 3744 1746465
#> 3745 1746466
#> 3746 1746467
#> 3747 1746468
#> 3748 1746469
#> 3749 1746470
#> 3750 1746471
#> 3751 1746472
#> 3752 1747049
#> 3753 1747050
#> 3754 1747051
#> 3755 1747052
#> 3756 1747053
#> 3757 1747054
#> 3758 1747055
#> 3759 1747056
#> 3760 1747057
#> 3761 1747058
#> 3762 1747059
#> 3763 1747060
#> 3764 1747475
#> 3765 1747476
#> 3766 1747477
#> 3767 1747478
#> 3768 1747479
#> 3769 1747480
#> 3770 1747481
#> 3771 1747482
#> 3772 1747483
#> 3773 1747484
#> 3774 1747485
#> 3775 1747486
#> 3776 1747905
#> 3777 1748066
#> 3778 1748067
#> 3779 1748068
#> 3780 1748069
#> 3781 1748070
#> 3782 1748071
#> 3783 1748072
#> 3784 1748073
#> 3785 1748074
#> 3786 1748075
#> 3787 1748076
#> 3788 1748077
#> 3789 1749383
#> 3790 1750396
#> 3791 1751280
#> 3792 1751281
#> 3793 1751473
#> 3794 1752176
#> 3795 1753429
#> 3796 1753430
#> 3797 1753431
#> 3798 1755834
#> 3799 1756967
#> 3800 1756968
#> 3801 1756972
#> 3802 1756991
#> 3803 1756992
#> 3804 1756993
#> 3805 1756994
#> 3806 1756995
#> 3807 1756996
#> 3808 1757018
#> 3809 1757235
#> 3810 1757237
#> 3811 1757409
#> 3812 1757439
#> 3813 1758203
#> 3814 1760291
#> 3815 1760294
#> 3816 1760612
#> 3817 1760613
#> 3818 1760614
#> 3819 1760615
#> 3820 1762240
#> 3821 1764517
#> 3822 1765422
#> 3823 1765423
#> 3824 1766922
#> 3825 1766923
#> 3826 1766924
#> 3827 1766925
#> 3828 1766926
#> 3829 1766927
#> 3830 1766928
#> 3831 1766929
#> 3832 1766930
#> 3833 1766931
#> 3834 1766932
#> 3835 1766933
#> 3836 1766934
#> 3837 1766936
#> 3838 1766937
#> 3839 1766938
#> 3840 1766939
#> 3841 1766940
#> 3842 1766949
#> 3843 1766950
#> 3844 1766951
#> 3845 1766952
#> 3846 1766953
#> 3847 1766954
#> 3848 1766955
#> 3849 1766957
#> 3850 1768123
#> 3851 1769046
#> 3852 1769053
#> 3853 1769056
#> 3854 1769799
#> 3855 1770181
#> 3856 1770182
#> 3857 1770183
#> 3858 1770184
#> 3859 1770185
#> 3860 1770186
#> 3861 1770187
#> 3862 1770188
#> 3863 1770189
#> 3864 1770190
#> 3865 1770191
#> 3866 1770192
#> 3867 1770193
#> 3868 1770194
#> 3869 1770240
#> 3870 1770241
#> 3871 1770245
#> 3872 1770246
#> 3873 1770247
#> 3874 1770248
#> 3875 1771671
#> 3876 1771672
#> 3877 1771673
#> 3878 1771674
#> 3879 1771675
#> 3880 1771676
#> 3881 1771694
#> 3882 1771695
#> 3883 1771696
#> 3884 1771697
#> 3885 1771698
#> 3886 1771699
#> 3887 1771700
#> 3888 1771701
#> 3889 1771702
#> 3890 1771703
#> 3891 1771720
#> 3892 1771721
#> 3893 1771722
#> 3894 1771723
#> 3895 1771724
#> 3896 1771729
#> 3897 1772706
#> 3898 1772707
#> 3899 1772708
#> 3900 1772709
#> 3901 1772744
#> 3902 1772745
#> 3903 1772778
#> 3904 1772779
#> 3905 1772780
#> 3906 1772900
#> 3907 1772909
#> 3908 1772920
#> 3909 1772921
#> 3910 1772922
#> 3911 1773379
#> 3912 1775724
#> 3913 1776223
#> 3914 1776225
#> 3915 1776908
#> 3916 1777020
#> 3917 1778613
#> 3918 1779644
#> 3919 1780856
#> 3920 1781602
#> 3921 1781999
#> 3922 1784108
#> 3923 1784184
#> 3924 1784553
#> 3925 1784556
#> 3926 1784557
#> 3927 1784562
#> 3928 1784591
#> 3929 1784593
#> 3930 1784612
#> 3931 1785056
#> 3932 1785942
#> 3933 1785943
#> 3934 1786376
#> 3935 1786832
#> 3936 1787124
#> 3937 1787306
#> 3938 1787623
#> 3939 1788980
#> 3940 1789257
#> 3941 1789668
#> 3942 1789731
#> 3943 1790049
#> 3944 1790164
#> 3945 1790165
#> 3946 1790166
#> 3947 1790167
#> 3948 1790168
#> 3949 1790482
#> 3950 1790553
#> 3951 1790653
#> 3952 1790985
#> 3953 1790986
#> 3954 1790987
#> 3955 1790988
#> 3956 1790989
#> 3957 1791476
#> 3958 1791587
#> 3959 1792259
#> 3960 1792260
#> 3961 1792261
#> 3962 1792262
#> 3963 1792263
#> 3964 1792264
#> 3965 1792265
#> 3966 1792266
#> 3967 1792267
#> 3968 1792268
#> 3969 1792269
#> 3970 1792659
#> 3971 1793069
#> 3972 1793363
#> 3973 1793654
#> 3974 1794053
#> 3975 1794054
#> 3976 1794055
#> 3977 1794056
#> 3978 1794057
#> 3979 1794058
#> 3980 1794059
#> 3981 1794060
#> 3982 1794061
#> 3983 1794062
#> 3984 1794063
#> 3985 1794064
#> 3986 1794473
#> 3987 1794553
#> 3988 1794871
#> 3989 1795051
#> 3990 1795071
#> 3991 1795072
#> 3992 1795073
#> 3993 1795123
#> 3994 1795309
#> 3995 1795419
#> 3996 1795424
#> 3997 1795439
#> 3998 1795457
#> 3999 1795505
#> 4000 1795513
#> 4001 1795518
#> 4002 1795540
#> 4003 1795546
#> 4004 1795547
#> 4005 1795551
#> 4006 1795552
#> 4007 1795555
#> 4008 1795556
#> 4009 1795558
#> 4010 1795584
#> 4011 1795588
#> 4012 1795591
#> 4013 1795628
#> 4014 1795632
#> 4015 1795635
#> 4016 1795638
#> 4017 1795646
#> 4018 1795660
#> 4019 1795681
#> 4020 1795684
#> 4021 1795688
#> 4022 1795704
#> 4023 1795705
#> 4024 1795712
#> 4025 1795741
#> 4026 1795746
#> 4027 1795747
#> 4028 1795752
#> 4029 1795753
#> 4030 1795774
#> 4031 1795775
#> 4032 1795856
#> 4033 1795889
#> 4034 1795895
#> 4035 1795900
#> 4036 1795920
#> 4037 1795974
#> 4038 1796250
#> 4039 1796430
#> 4040 1796550
#> 4041 1796605
#> 4042 1796863
#> 4043 1796887
#> 4044 1796911
#> 4045 1796957
#> 4046 1797176
#> 4047 1797252
#> 4048 1797253
#> 4049 1797254
#> 4050 1797255
#> 4051 1797499
#> 4052 1798057
#> 4053 1798058
#> 4054 1798059
#> 4055 1798060
#> 4056 1798141
#> 4057 1798142
#> 4058 1798244
#> 4059 1798381
#> 4060 1798403
#> 4061 1798470
#> 4062 1798474
#> 4063 1798578
#> 4064 1798633
#> 4065 1798634
#> 4066 1798858
#> 4067 1798859
#> 4068 1798869
#> 4069 1798897
#> 4070 1798900
#> 4071 1799141
#> 4072 1799178
#> 4073 1799243
#> 4074 1799574
#> 4075 1799615
#> 4076 1799617
#> 4077 1799625
#> 4078 1799771
#> 4079 1799815
#> 4080 1800017
#> 4081 1800264
#> 4082 1800296
#> 4083 1800438
#> 4084 1800686
#> 4085 1800785
#> 4086 1800803
#> 4087 1800956
#> 4088 1801080
#> 4089 1801412
#> 4090 1801434
#> 4091 1801474
#> 4092 1801647
#> 4093 1801868
#> 4094 1801874
#> 4095 1801898
#> 4096 1802136
#> 4097 1802137
#> 4098 1802325
#> 4099 1802525
#> 4100 1802578
#> 4101 1802918
#> 4102 1802919
#> 4103 1802936
#> 4104 1802974
#> 4105 1802992
#> 4106 1803023
#> 4107 1803024
#> 4108 1803025
#> 4109 1803088
#> 4110 1803154
#> 4111 1803180
#> 4112 1803181
#> 4113 1803203
#> 4114 1803274
#> 4115 1803310
#> 4116 1803399
#> 4117 1803412
#> 4118 1803805
#> 4119 1803853
#> 4120 1803858
#> 4121 1804000
#> 4122 1804197
#> 4123 1804293
#> 4124 1804325
#> 4125 1804410
#> 4126 1804433
#> 4127 1804859
#> 4128 1804965
#> 4129 1804972
#> 4130 1804977
#> 4131 1805069
#> 4132 1805145
#> 4133 1805273
#> 4134 1805304
#> 4135 1805507
#> 4136 1805558
#> 4137 1805668
#> 4138 1805683
#> 4139 1805847
#> 4140 1805904
#> 4141 1805911
#> 4142 1805923
#> 4143 1806019
#> 4144 1806100
#> 4145 1806101
#> 4146 1806114
#> 4147 1806351
#> 4148 1806356
#> 4149 1806384
#> 4150 1806436
#> 4151 1806437
#> 4152 1806453
#> 4153 1806454
#> 4154 1806503
#> 4155 1806542
#> 4156 1806553
#> 4157 1806554
#> 4158 1806579
#> 4159 1806610
#> 4160 1806667
#> 4161 1806668
#> 4162 1806769
#> 4163 1806801
#> 4164 1807691
#> 4165 1807692
#> 4166 1807693
#> 4167 1807694
#> 4168 1807698
#> 4169 1807699
#> 4170 1807700
#> 4171 1807880
#> 4172 1809035
#> 4173 1809036
#> 4174 1809037
#> 4175 1809038
#> 4176 1809051
#> 4177 1809346
#> 4178 1809347
#> 4179 1809348
#> 4180 1809353
#> 4181 1809354
#> 4182 1809355
#> 4183 1809356
#> 4184 1809435
#> 4185 1809462
#> 4186 1809464
#> 4187 1810735
#> 4188 1811625
#> 4189 1811626
#> 4190 1811627
#> 4191 1811628
#> 4192 1811975
#> 4193 1812027
#> 4194 1812036
#> 4195 1812038
#> 4196 1812799
#> 4197 1812800
#> 4198 1812801
#> 4199 1812802
#> 4200 1813292
#> 4201 1813864
#> 4202 1813866
#> 4203 1813869
#> 4204 1813879
#> 4205 1813976
#> 4206 1814379
#> 4207 1815232
#> 4208 1815785
#> 4209 1815787
#> 4210 1815789
#> 4211 1816270
#> 4212 1817355
#> 4213 1817356
#> 4214 1817358
#> 4215 1817360
#> 4216 1817364
#> 4217 1817366
#> 4218 1817367
#> 4219 1817369
#> 4220 1817372
#> 4221 1820084
#> 4222 1821869
#> 4223 1822764
#> 4224 1822769
#> 4225 1822806
#> 4226 1822807
#> 4227 1823020
#> 4228 1824039
#> 4229 1824040
#> 4230 1824041
#> 4231 1825949
#> 4232 1825950
#> 4233 1825951
#> 4234 1825968
#> 4235 1825969
#> 4236 1830144
#> 4237 1830145
#> 4238 1830146
#> 4239 1830557
#> 4240 1834113
#> 4241 1834646
#> 4242 1834755
#> 4243 1834949
#> 4244 1835706
#> 4245 1845273
#> 4246 1845392
#> 4247 1846706
#> 4248 1846709
#> 4249 1846710
#> 4250 1846711
#> 4251 1846712
#> 4252 1846713
#> 4253 1846715
#> 4254 1846717
#> 4255 1846721
#> 4256 1846723
#> 4257 1846724
#> 4258 1846730
#> 4259 1846731
#> 4260 1846734
#> 4261 1846747
#> 4262 1846777
#> 4263 1846789
#> 4264 1846790
#> 4265 1846838
#> 4266 1848430
#> 4267 1848536
#> 4268 1848537
#> 4269 1849135
#> 4270 1849136
#> 4271 1849655
#> 4272 1850190
#> 4273 1851522
#> 4274 1853203
#> 4275 1855210
#> 4276 1855624
#> 4277 1855769
#> 4278 1856438
#> 4279 1857167
#> 4280 1857195
#> 4281 1858633
#> 4282 1858635
#> 4283 1859058
#> 4284 1859065
#> 4285 1859066
#> 4286 1859161
#> 4287 1859426
#> 4288 1859429
#> 4289 1859430
#> 4290 1859431
#> 4291 1859432
#> 4292 1859433
#> 4293 1859434
#> 4294 1859435
#> 4295 1860200
#> 4296 1860386
#> 4297 1860451
#> 4298 1860733
#> 4299 1860734
#> 4300 1860735
#> 4301 1860736
#> 4302 1860737
#> 4303 1860738
#> 4304 1860739
#> 4305 1860740
#> 4306 1860741
#> 4307 1860742
#> 4308 1860743
#> 4309 1860769
#> 4310 1860770
#> 4311 1861560
#> 4312 1861561
#> 4313 1861562
#> 4314 1861565
#> 4315 1861566
#> 4316 1861567
#> 4317 1861568
#> 4318 1861569
#> 4319 1861570
#> 4320 1861607
#> 4321 1861611
#> 4322 1861965
#> 4323 1861966
#> 4324 1861967
#> 4325 1861968
#> 4326 1861969
#> 4327 1862859
#> 4328 1862860
#> 4329 1862861
#> 4330 1862936
#> 4331 1862937
#> 4332 1864438
#> 4333 1864595
#> 4334 1865358
#> 4335 1865359
#> 4336 1865379
#> 4337 1865380
#> 4338 1865381
#> 4339 1865382
#> 4340 1865403
#> 4341 1865404
#> 4342 1865633
#> 4343 1865634
#> 4344 1865635
#> 4345 1865636
#> 4346 1865637
#> 4347 1865638
#> 4348 1865645
#> 4349 1866055
#> 4350 1866989
#> 4351 1867134
#> 4352 1867135
#> 4353 1867136
#> 4354 1867137
#> 4355 1867185
#> 4356 1867186
#> 4357 1867213
#> 4358 1867214
#> 4359 1867215
#> 4360 1867476
#> 4361 1867477
#> 4362 1867478
#> 4363 1867479
#> 4364 1870642
#> 4365 1870643
#> 4366 1870651
#> 4367 1870653
#> 4368 1870654
#> 4369 1870656
#> 4370 1870657
#> 4371 1870658
#> 4372 1871558
#> 4373 1871559
#> 4374 1871560
#> 4375 1871564
#> 4376 1871566
#> 4377 1871567
#> 4378 1871569
#> 4379 1871573
#> 4380 1871580
#> 4381 1871582
#> 4382 1871584
#> 4383 1871588
#> 4384 1871593
#> 4385 1871597
#> 4386 1871599
#> 4387 1871600
#> 4388 1871765
#> 4389 1872757
#> 4390 1873620
#> 4391 1874024
#> 4392 1875934
#> 4393 1876161
#> 4394 1876269
#> 4395 1877817
#> 4396 1877822
#> 4397 1877823
#> 4398 1877824
#> 4399 1877909
#> 4400 1878118
#> 4401 1880122
#> 4402 1880123
#> 4403 1880124
#> 4404 1880126
#> 4405 1880128
#> 4406 1880129
#> 4407 1880130
#> 4408 1880132
#> 4409 1880138
#> 4410 1880140
#> 4411 1880576
#> 4412 1880577
#> 4413 1880578
#> 4414 1880579
#> 4415 1880580
#> 4416 1880581
#> 4417 1880582
#> 4418 1880583
#> 4419 1880584
#> 4420 1880585
#> 4421 1880586
#> 4422 1880588
#> 4423 1880589
#> 4424 1880590
#> 4425 1880591
#> 4426 1880592
#> 4427 1880593
#> 4428 1880594
#> 4429 1880595
#> 4430 1880596
#> 4431 1880597
#> 4432 1880598
#> 4433 1880599
#> 4434 1880600
#> 4435 1880601
#> 4436 1880602
#> 4437 1880603
#> 4438 1880604
#> 4439 1880605
#> 4440 1880606
#> 4441 1880607
#> 4442 1880608
#> 4443 1880609
#> 4444 1880610
#> 4445 1880611
#> 4446 1880612
#> 4447 1880613
#> 4448 1880614
#> 4449 1880615
#> 4450 1880616
#> 4451 1880617
#> 4452 1880618
#> 4453 1880619
#> 4454 1880620
#> 4455 1880621
#> 4456 1880622
#> 4457 1880627
#> 4458 1880628
#> 4459 1881816
#> 4460 1881817
#> 4461 1881819
#> 4462 1881820
#> 4463 1881821
#> 4464 1881822
#> 4465 1881823
#> 4466 1881824
#> 4467 1882134
#> 4468 1882139
#> 4469 1882140
#> 4470 1882141
#> 4471 1882145
#> 4472 1882626
#> 4473 1882627
#> 4474 1882632
#> 4475 1882637
#> 4476 1882641
#> 4477 1882645
#> 4478 1882646
#> 4479 1882652
#> 4480 1882655
#> 4481 1882660
#> 4482 1882661
#> 4483 1883959
#> 4484 1884418
#> 4485 1884788
#> 4486 1884789
#> 4487 1884790
#> 4488 1884791
#> 4489 1885339
#> 4490 1885341
#> 4491 1885342
#> 4492 1885343
#> 4493 1885371
#> 4494 1885372
#> 4495 1885373
#> 4496 1885374
#> 4497 1885375
#> 4498 1885376
#> 4499 1885377
#> 4500 1885486
#> 4501 1886715
#> 4502 1887635
#> 4503 1887636
#> 4504 1887637
#> 4505 1887639
#> 4506 1887642
#> 4507 1887643
#> 4508 1887647
#> 4509 1887648
#> 4510 1887649
#> 4511 1887680
#> 4512 1888970
#> 4513 1889499
#> 4514 1890815
#> 4515 1890816
#> 4516 1891048
#> 4517 1891050
#> 4518 1891069
#> 4519 1891383
#> 4520 1893104
#> 4521 1893379
#> 4522 1894146
#> 4523 1894148
#> 4524 1894149
#> 4525 1894151
#> 4526 1894152
#> 4527 1894153
#> 4528 1894155
#> 4529 1894156
#> 4530 1894157
#> 4531 1894161
#> 4532 1894164
#> 4533 1894624
#> 4534 1894678
#> 4535 1895668
#> 4536 1895673
#> 4537 1896769
#> 4538 1896770
#> 4539 1896771
#> 4540 1896772
#> 4541 1896773
#> 4542 1896774
#> 4543 1896775
#> 4544 1896782
#> 4545 1896784
#> 4546 1896785
#> 4547 1896786
#> 4548 1896787
#> 4549 1896788
#> 4550 1896791
#> 4551 1898317
#> 4552 1898661
#> 4553 1898662
#> 4554 1898665
#> 4555 1898666
#> 4556 1898674
#> 4557 1899709
#> 4558 1901540
#> 4559 1904029
#> 4560 1904122
#> 4561 1904299
#> 4562 1904300
#> 4563 1904301
#> 4564 1904302
#> 4565 1904305
#> 4566 1904306
#> 4567 1904309
#> 4568 1904310
#> 4569 1904311
#> 4570 1904318
#> 4571 1904319
#> 4572 1904320
#> 4573 1904321
#> 4574 1904322
#> 4575 1904323
#> 4576 1904324
#> 4577 1904325
#> 4578 1904326
#> 4579 1904327
#> 4580 1904328
#> 4581 1904329
#> 4582 1904330
#> 4583 1904331
#> 4584 1904332
#> 4585 1904333
#> 4586 1904335
#> 4587 1904336
#> 4588 1904340
#> 4589 1904341
#> 4590 1904342
#> 4591 1904343
#> 4592 1904344
#> 4593 1904345
#> 4594 1904347
#> 4595 1904349
#> 4596 1904350
#> 4597 1904351
#> 4598 1904352
#> 4599 1904353
#> 4600 1904473
#> 4601 1904474
#> 4602 1904475
#> 4603 1904478
#> 4604 1904544
#> 4605 1904545
#> 4606 1904552
#> 4607 1904555
#> 4608 1904558
#> 4609 1904561
#> 4610 1904564
#> 4611 1905727
#> 4612 1905794
#> 4613 1908699
#> 4614 1909240
#> 4615 1909241
#> 4616 1909242
#> 4617 1909243
#> 4618 1909248
#> 4619 1909251
#> 4620 1909685
#> 4621 1909886
#> 4622 1909888
#> 4623 1909890
#> 4624 1909899
#> 4625 1910562
#> 4626 1912865
#> 4627 1913054
#> 4628 1913374
#> 4629 1913459
#> 4630 1913505
#> 4631 1913676
#> 4632 1913717
#> 4633 1913718
#> 4634 1913804
#> 4635 1913805
#> 4636 1913871
#> 4637 1914046
#> 4638 1914053
#> 4639 1914125
#> 4640 1914203
#> 4641 1914311
#> 4642 1914653
#> 4643 1914684
#> 4644 1914919
#> 4645 1914976
#> 4646 1915188
#> 4647 1915407
#> 4648 1915408
#> 4649 1915409
#> 4650 1915410
#> 4651 1915467
#> 4652 1915468
#> 4653 1915469
#> 4654 1915535
#> 4655 1915572
#> 4656 1915575
#> 4657 1915576
#> 4658 1915577
#> 4659 1915677
#> 4660 1915678
#> 4661 1915679
#> 4662 1915685
#> 4663 1915688
#> 4664 1915689
#> 4665 1915690
#> 4666 1915691
#> 4667 1915692
#> 4668 1915693
#> 4669 1915694
#> 4670 1915697
#> 4671 1915698
#> 4672 1915699
#> 4673 1915705
#> 4674 1915719
#> 4675 1916784
#> 4676 1919057
#> 4677 1919092
#> 4678 1919093
#> 4679 1919180
#> 4680 1919215
#> 4681 1919300
#> 4682 1919455
#> 4683 1919495
#> 4684 1919607
#> 4685 1919644
#> 4686 1919678
#> 4687 1919849
#> 4688 1919856
#> 4689 1919928
#> 4690 1919985
#> 4691 1919999
#> 4692 1920013
#> 4693 1920045
#> 4694 1920191
#> 4695 1921360
#> 4696 1921363
#> 4697 1921364
#> 4698 1921814
#> 4699 1921815
#> 4700 1921816
#> 4701 1922095
#> 4702 1922295
#> 4703 1923076
#> 4704 1923183
#> 4705 1924191
#> 4706 1924659
#> 4707 1925327
#> 4708 1925450
#> 4709 1925467
#> 4710 1925476
#> 4711 1925478
#> 4712 1925485
#> 4713 1925497
#> 4714 1925499
#> 4715 1925501
#> 4716 1925516
#> 4717 1925517
#> 4718 1927458
#> 4719 1927644
#> 4720 1927645
#> 4721 1927646
#> 4722 1927647
#> 4723 1927649
#> 4724 1927651
#> 4725 1927653
#> 4726 1927658
#> 4727 1927669
#> 4728 1927678
#> 4729 1927684
#> 4730 1927685
#> 4731 1927691
#> 4732 1927695
#> 4733 1927699
#> 4734 1927701
#> 4735 1927702
#> 4736 1927705
#> 4737 1927706
#> 4738 1927707
#> 4739 1927712
#> 4740 1927714
#> 4741 1927715
#> 4742 1927716
#> 4743 1927717
#> 4744 1928276
#> 4745 1928914
#> 4746 1929371
#> 4747 1929375
#> 4748 1930037
#> 4749 1930755
#> 4750 1930756
#> 4751 1933403
#> 4752 1934726
#> 4753 1934848
#> 4754 1935444
#> 4755 1935462
#> 4756 1935464
#> 4757 1936611
#> 4758 1936712
#> 4759 1937347
#> 4760 1937700
#> 4761 1937704
#> 4762 1937919
#> 4763 1937920
#> 4764 1939172
#> 4765 1939174
#> 4766 1939436
#> 4767 1939605
#> 4768 1939975
#> 4769 1939977
#> 4770 1939981
#> 4771 1939982
#> 4772 1939983
#> 4773 1939984
#> 4774 1940017
#> 4775 1940255
#> 4776 1940841
#> 4777 1941740
#> 4778 1942598
#> 4779 1946252
#> 4780 1946254
#> 4781 1946255
#> 4782 1946507
#> 4783 1946518
#> 4784 1946519
#> 4785 1948213
#> 4786 1948215
#> 4787 1948227
#> 4788 1948241
#> 4789 1948304
#> 4790 1948925
#> 4791 1949540
#> 4792 1949832
#> 4793 1949847
#> 4794 1949848
#> 4795 1949849
#> 4796 1949850
#> 4797 1949857
#> 4798 1949858
#> 4799 1949859
#> 4800 1949860
#> 4801 1949861
#> 4802 1949874
#> 4803 1949875
#> 4804 1949876
#> 4805 1949877
#> 4806 1949878
#> 4807 1949879
#> 4808 1951283
#> 4809 1951284
#> 4810 1951285
#> 4811 1951286
#> 4812 1951287
#> 4813 1951289
#> 4814 1951291
#> 4815 1951304
#> 4816 1951895
#> 4817 1951896
#> 4818 1951897
#> 4819 1951898
#> 4820 1951899
#> 4821 1951900
#> 4822 1951901
#> 4823 1952793
#> 4824 1953122
#> 4825 1953508
#> 4826 1953631
#> 4827 1954449
#> 4828 1954480
#> 4829 1954812
#> 4830 1954813
#> 4831 1955433
#> 4832 1955684
#> 4833 1955685
#> 4834 1955686
#> 4835 1955938
#> 4836 1956454
#> 4837 1956455
#> 4838 1956456
#> 4839 1956457
#> 4840 1956461
#> 4841 1956472
#> 4842 1958843
#> 4843 1959126
#> 4844 1959127
#> 4845 1959130
#> 4846 1959134
#> 4847 1959135
#> 4848 1959136
#> 4849 1959139
#> 4850 1959358
#> 4851 1960665
#> 4852 1960671
#> 4853 1960854
#> 4854 1961744
#> 4855 1962262
#> 4856 1962409
#> 4857 1962577
#> 4858 1963350
#> 4859 1963351
#> 4860 1963502

Bioactivities from Protein: Returns concise bioactivity data for a specific protein. For example:

result <- get_pug_rest(identifier = "Q01279", namespace = "accession", domain = "protein", operation = "concise", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Protein
#>   - Namespace: DomainSpecific
#>   - Operation: concise
#>   - Identifier: Q01279
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $Table
#> $Table$Columns
#> $Table$Columns$Column
#>  [1] "AID"                 "SID"                 "CID"                
#>  [4] "Activity Outcome"    "Target GeneID"       "Activity Value [uM]"
#>  [7] "Activity Name"       "Assay Name"          "Assay Type"         
#> [10] "PubMed ID"          
#> 
#> 
#> $Table$Row
#> $Table$Row[[1]]
#> $Table$Row[[1]]$Cell
#>  [1] "66438"                                                           
#>  [2] "103250953"                                                       
#>  [3] "25017867"                                                        
#>  [4] "Active"                                                          
#>  [5] "13649"                                                           
#>  [6] "0.01"                                                            
#>  [7] "Effective concentration"                                         
#>  [8] "Inhibition of epidermal growth factor binding in C3H10T1/2 cells"
#>  [9] "Confirmatory"                                                    
#> [10] "1597853"                                                         
#> 
#> 
#> $Table$Row[[2]]
#> $Table$Row[[2]]$Cell
#>  [1] "66438"                                                           
#>  [2] "103432098"                                                       
#>  [3] "454217"                                                          
#>  [4] "Active"                                                          
#>  [5] "13649"                                                           
#>  [6] "0.22"                                                            
#>  [7] "Effective concentration"                                         
#>  [8] "Inhibition of epidermal growth factor binding in C3H10T1/2 cells"
#>  [9] "Confirmatory"                                                    
#> [10] "1597853"                                                         
#> 
#> 
#> $Table$Row[[3]]
#> $Table$Row[[3]]$Cell
#>  [1] "69721"                                                                              
#>  [2] "103358917"                                                                          
#>  [3] "135512509"                                                                          
#>  [4] "Unspecified"                                                                        
#>  [5] "13649"                                                                              
#>  [6] "22.7"                                                                               
#>  [7] "IC50"                                                                               
#>  [8] "Inhibition of Epidermal growth factor receptor mediated mitogenesis of NIH3T3 cells"
#>  [9] "Confirmatory"                                                                       
#> [10] "9748366"                                                                            
#> 
#> 
#> $Table$Row[[4]]
#> $Table$Row[[4]]$Cell
#>  [1] "69721"                                                                              
#>  [2] "103358918"                                                                          
#>  [3] "135434086"                                                                          
#>  [4] "Unspecified"                                                                        
#>  [5] "13649"                                                                              
#>  [6] "36.9"                                                                               
#>  [7] "IC50"                                                                               
#>  [8] "Inhibition of Epidermal growth factor receptor mediated mitogenesis of NIH3T3 cells"
#>  [9] "Confirmatory"                                                                       
#> [10] "9748366"                                                                            
#> 
#> 
#> $Table$Row[[5]]
#> $Table$Row[[5]]$Cell
#>  [1] "69721"                                                                              
#>  [2] "103358919"                                                                          
#>  [3] "135455949"                                                                          
#>  [4] "Unspecified"                                                                        
#>  [5] "13649"                                                                              
#>  [6] "11.3"                                                                               
#>  [7] "IC50"                                                                               
#>  [8] "Inhibition of Epidermal growth factor receptor mediated mitogenesis of NIH3T3 cells"
#>  [9] "Confirmatory"                                                                       
#> [10] "9748366"                                                                            
#> 
#> 
#> $Table$Row[[6]]
#> $Table$Row[[6]]$Cell
#>  [1] "69722"                                                                                                           
#>  [2] "103253186"                                                                                                       
#>  [3] "5328592"                                                                                                         
#>  [4] "Unspecified"                                                                                                     
#>  [5] "13649"                                                                                                           
#>  [6] "100"                                                                                                             
#>  [7] "IC50"                                                                                                            
#>  [8] "Inhibition of epidermal growth factor receptor (EGFR-mediated tyrosine autophosphorylation in mouse fibroblasts."
#>  [9] "Confirmatory"                                                                                                    
#> [10] "8027985"                                                                                                         
#> 
#> 
#> $Table$Row[[7]]
#> $Table$Row[[7]]$Cell
#>  [1] "69722"                                                                                                           
#>  [2] "103253755"                                                                                                       
#>  [3] "5328614"                                                                                                         
#>  [4] "Unspecified"                                                                                                     
#>  [5] "13649"                                                                                                           
#>  [6] "100"                                                                                                             
#>  [7] "IC50"                                                                                                            
#>  [8] "Inhibition of epidermal growth factor receptor (EGFR-mediated tyrosine autophosphorylation in mouse fibroblasts."
#>  [9] "Confirmatory"                                                                                                    
#> [10] "8027985"                                                                                                         
#> 
#> 
#> $Table$Row[[8]]
#> $Table$Row[[8]]$Cell
#>  [1] "69722"                                                                                                           
#>  [2] "103254313"                                                                                                       
#>  [3] "5328618"                                                                                                         
#>  [4] "Unspecified"                                                                                                     
#>  [5] "13649"                                                                                                           
#>  [6] "100"                                                                                                             
#>  [7] "IC50"                                                                                                            
#>  [8] "Inhibition of epidermal growth factor receptor (EGFR-mediated tyrosine autophosphorylation in mouse fibroblasts."
#>  [9] "Confirmatory"                                                                                                    
#> [10] "8027985"                                                                                                         
#> 
#> 
#> $Table$Row[[9]]
#> $Table$Row[[9]]$Cell
#>  [1] "69722"                                                                                                           
#>  [2] "103254592"                                                                                                       
#>  [3] "5328617"                                                                                                         
#>  [4] "Unspecified"                                                                                                     
#>  [5] "13649"                                                                                                           
#>  [6] "25"                                                                                                              
#>  [7] "IC50"                                                                                                            
#>  [8] "Inhibition of epidermal growth factor receptor (EGFR-mediated tyrosine autophosphorylation in mouse fibroblasts."
#>  [9] "Confirmatory"                                                                                                    
#> [10] "8027985"                                                                                                         
#> 
#> 
#> $Table$Row[[10]]
#> $Table$Row[[10]]$Cell
#>  [1] "69724"                                                                   
#>  [2] "103237764"                                                               
#>  [3] "5328042"                                                                 
#>  [4] "Active"                                                                  
#>  [5] "13649"                                                                   
#>  [6] "0.04"                                                                    
#>  [7] "IC50"                                                                    
#>  [8] "Inhibition of epidermal growth factor receptor tyrosine kinase (EGFR TK)"
#>  [9] "Confirmatory"                                                            
#> [10] "14640561"                                                                
#> 
#> 
#> $Table$Row[[11]]
#> $Table$Row[[11]]$Cell
#>  [1] "69724"                                                                   
#>  [2] "103373305"                                                               
#>  [3] "9882519"                                                                 
#>  [4] "Active"                                                                  
#>  [5] "13649"                                                                   
#>  [6] "0.2"                                                                     
#>  [7] "IC50"                                                                    
#>  [8] "Inhibition of epidermal growth factor receptor tyrosine kinase (EGFR TK)"
#>  [9] "Confirmatory"                                                            
#> [10] "14640561"                                                                
#> 
#> 
#> $Table$Row[[12]]
#> $Table$Row[[12]]$Cell
#>  [1] "69724"                                                                   
#>  [2] "103373788"                                                               
#>  [3] "9885081"                                                                 
#>  [4] "Active"                                                                  
#>  [5] "13649"                                                                   
#>  [6] "0.07"                                                                    
#>  [7] "IC50"                                                                    
#>  [8] "Inhibition of epidermal growth factor receptor tyrosine kinase (EGFR TK)"
#>  [9] "Confirmatory"                                                            
#> [10] "14640561"                                                                
#> 
#> 
#> $Table$Row[[13]]
#> $Table$Row[[13]]$Cell
#>  [1] "69724"                                                                   
#>  [2] "103399645"                                                               
#>  [3] "11198415"                                                                
#>  [4] "Active"                                                                  
#>  [5] "13649"                                                                   
#>  [6] "0.578"                                                                   
#>  [7] "IC50"                                                                    
#>  [8] "Inhibition of epidermal growth factor receptor tyrosine kinase (EGFR TK)"
#>  [9] "Confirmatory"                                                            
#> [10] "14640561"                                                                
#> 
#> 
#> $Table$Row[[14]]
#> $Table$Row[[14]]$Cell
#>  [1] "69724"                                                                   
#>  [2] "103399736"                                                               
#>  [3] "10094127"                                                                
#>  [4] "Active"                                                                  
#>  [5] "13649"                                                                   
#>  [6] "0.13"                                                                    
#>  [7] "IC50"                                                                    
#>  [8] "Inhibition of epidermal growth factor receptor tyrosine kinase (EGFR TK)"
#>  [9] "Confirmatory"                                                            
#> [10] "14640561"                                                                
#> 
#> 
#> $Table$Row[[15]]
#> $Table$Row[[15]]$Cell
#>  [1] "69724"                                                                   
#>  [2] "103399893"                                                               
#>  [3] "11349700"                                                                
#>  [4] "Active"                                                                  
#>  [5] "13649"                                                                   
#>  [6] "0.11"                                                                    
#>  [7] "IC50"                                                                    
#>  [8] "Inhibition of epidermal growth factor receptor tyrosine kinase (EGFR TK)"
#>  [9] "Confirmatory"                                                            
#> [10] "14640561"                                                                
#> 
#> 
#> $Table$Row[[16]]
#> $Table$Row[[16]]$Cell
#>  [1] "69727"                                                                                  
#>  [2] "103167027"                                                                              
#>  [3] "5280343"                                                                                
#>  [4] "Unspecified"                                                                            
#>  [5] "13649"                                                                                  
#>  [6] ""                                                                                       
#>  [7] ""                                                                                       
#>  [8] "Inhibition of epidermal growth factor (EGF) receptor from A431 cell membranes at 150 uM"
#>  [9] "Other"                                                                                  
#> [10] "8201603"                                                                                
#> 
#> 
#> $Table$Row[[17]]
#> $Table$Row[[17]]$Cell
#>  [1] "69728"                                                                              
#>  [2] "103399857"                                                                          
#>  [3] "44368090"                                                                           
#>  [4] "Inactive"                                                                           
#>  [5] "13649"                                                                              
#>  [6] ""                                                                                   
#>  [7] ""                                                                                   
#>  [8] "Inhibition of epidermal growth factor receptor tyrosine kinase (EGFR TK) (inactive)"
#>  [9] "Other"                                                                              
#> [10] "14640561"                                                                           
#> 
#> 
#> $Table$Row[[18]]
#> $Table$Row[[18]]$Cell
#>  [1] "69729"                                                                                  
#>  [2] "103167027"                                                                              
#>  [3] "5280343"                                                                                
#>  [4] "Unspecified"                                                                            
#>  [5] "13649"                                                                                  
#>  [6] ""                                                                                       
#>  [7] ""                                                                                       
#>  [8] "Inhibition of epidermal growth factor (EGF) receptor from A431 cell membranes at 150 uM"
#>  [9] "Other"                                                                                  
#> [10] "8201603"                                                                                
#> 
#> 
#> $Table$Row[[19]]
#> $Table$Row[[19]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103226434"                                                                                   
#>  [3] "10318571"                                                                                    
#>  [4] "Active"                                                                                      
#>  [5] "13649"                                                                                       
#>  [6] "4"                                                                                           
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> 
#> 
#> $Table$Row[[20]]
#> $Table$Row[[20]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103350640"                                                                                   
#>  [3] "10406106"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "13649"                                                                                       
#>  [6] "14"                                                                                          
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> 
#> 
#> $Table$Row[[21]]
#> $Table$Row[[21]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103378973"                                                                                   
#>  [3] "10738302"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "13649"                                                                                       
#>  [6] "33"                                                                                          
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> 
#> 
#> $Table$Row[[22]]
#> $Table$Row[[22]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103378974"                                                                                   
#>  [3] "10761144"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "13649"                                                                                       
#>  [6] "200"                                                                                         
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> 
#> 
#> $Table$Row[[23]]
#> $Table$Row[[23]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379003"                                                                                   
#>  [3] "10044189"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "13649"                                                                                       
#>  [6] "500"                                                                                         
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> 
#> 
#> $Table$Row[[24]]
#> $Table$Row[[24]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379199"                                                                                   
#>  [3] "10428841"                                                                                    
#>  [4] "Active"                                                                                      
#>  [5] "13649"                                                                                       
#>  [6] "8"                                                                                           
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> 
#> 
#> $Table$Row[[25]]
#> $Table$Row[[25]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379200"                                                                                   
#>  [3] "10716388"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "13649"                                                                                       
#>  [6] "100"                                                                                         
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> 
#> 
#> $Table$Row[[26]]
#> $Table$Row[[26]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379360"                                                                                   
#>  [3] "10452792"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "13649"                                                                                       
#>  [6] "50"                                                                                          
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> 
#> 
#> $Table$Row[[27]]
#> $Table$Row[[27]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379591"                                                                                   
#>  [3] "10620637"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "13649"                                                                                       
#>  [6] "300"                                                                                         
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> 
#> 
#> $Table$Row[[28]]
#> $Table$Row[[28]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379616"                                                                                   
#>  [3] "10593843"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "13649"                                                                                       
#>  [6] "100"                                                                                         
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> 
#> 
#> $Table$Row[[29]]
#> $Table$Row[[29]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379617"                                                                                   
#>  [3] "10787405"                                                                                    
#>  [4] "Active"                                                                                      
#>  [5] "13649"                                                                                       
#>  [6] "4"                                                                                           
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> 
#> 
#> $Table$Row[[30]]
#> $Table$Row[[30]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379660"                                                                                   
#>  [3] "10343317"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "13649"                                                                                       
#>  [6] "35"                                                                                          
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> 
#> 
#> $Table$Row[[31]]
#> $Table$Row[[31]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379661"                                                                                   
#>  [3] "10499929"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "13649"                                                                                       
#>  [6] "15"                                                                                          
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> 
#> 
#> $Table$Row[[32]]
#> $Table$Row[[32]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379682"                                                                                   
#>  [3] "10500718"                                                                                    
#>  [4] "Active"                                                                                      
#>  [5] "13649"                                                                                       
#>  [6] "1"                                                                                           
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> 
#> 
#> $Table$Row[[33]]
#> $Table$Row[[33]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379908"                                                                                   
#>  [3] "10619651"                                                                                    
#>  [4] "Active"                                                                                      
#>  [5] "13649"                                                                                       
#>  [6] "10"                                                                                          
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> 
#> 
#> $Table$Row[[34]]
#> $Table$Row[[34]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379909"                                                                                   
#>  [3] "10504027"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "13649"                                                                                       
#>  [6] "35"                                                                                          
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> 
#> 
#> $Table$Row[[35]]
#> $Table$Row[[35]]$Cell
#>  [1] "69730"                                                                                       
#>  [2] "103379910"                                                                                   
#>  [3] "10740438"                                                                                    
#>  [4] "Unspecified"                                                                                 
#>  [5] "13649"                                                                                       
#>  [6] "46"                                                                                          
#>  [7] "IC50"                                                                                        
#>  [8] "Inhibition of epidermal growth factor receptor phosphorylation in BaF3 mouse lymphoid cells."
#>  [9] "Confirmatory"                                                                                
#> [10] "11462983"                                                                                    
#> 
#> 
#> $Table$Row[[36]]
#> $Table$Row[[36]]$Cell
#>  [1] "106697"                                                              
#>  [2] "103166113"                                                           
#>  [3] "10499619"                                                            
#>  [4] "Active"                                                              
#>  [5] "13649"                                                               
#>  [6] "9.55"                                                                
#>  [7] "IC50"                                                                
#>  [8] "Inhibition of EGF-dependent mouse keratinocyte MK cell proliferation"
#>  [9] "Confirmatory"                                                        
#> [10] "10090785"                                                            
#> 
#> 
#> $Table$Row[[37]]
#> $Table$Row[[37]]$Cell
#>  [1] "106697"                                                              
#>  [2] "103166157"                                                           
#>  [3] "9978638"                                                             
#>  [4] "Active"                                                              
#>  [5] "13649"                                                               
#>  [6] "4.93"                                                                
#>  [7] "IC50"                                                                
#>  [8] "Inhibition of EGF-dependent mouse keratinocyte MK cell proliferation"
#>  [9] "Confirmatory"                                                        
#> [10] "10090785"                                                            
#> 
#> 
#> $Table$Row[[38]]
#> $Table$Row[[38]]$Cell
#>  [1] "106697"                                                              
#>  [2] "103166217"                                                           
#>  [3] "10590515"                                                            
#>  [4] "Unspecified"                                                         
#>  [5] "13649"                                                               
#>  [6] "45.2"                                                                
#>  [7] "IC50"                                                                
#>  [8] "Inhibition of EGF-dependent mouse keratinocyte MK cell proliferation"
#>  [9] "Confirmatory"                                                        
#> [10] "10090785"                                                            
#> 
#> 
#> $Table$Row[[39]]
#> $Table$Row[[39]]$Cell
#>  [1] "106697"                                                              
#>  [2] "103166266"                                                           
#>  [3] "10803234"                                                            
#>  [4] "Unspecified"                                                         
#>  [5] "13649"                                                               
#>  [6] "10.2"                                                                
#>  [7] "IC50"                                                                
#>  [8] "Inhibition of EGF-dependent mouse keratinocyte MK cell proliferation"
#>  [9] "Confirmatory"                                                        
#> [10] "10090785"                                                            
#> 
#> 
#> $Table$Row[[40]]
#> $Table$Row[[40]]$Cell
#>  [1] "106697"                                                              
#>  [2] "103166322"                                                           
#>  [3] "2051"                                                                
#>  [4] "Active"                                                              
#>  [5] "13649"                                                               
#>  [6] "0.1"                                                                 
#>  [7] "IC50"                                                                
#>  [8] "Inhibition of EGF-dependent mouse keratinocyte MK cell proliferation"
#>  [9] "Confirmatory"                                                        
#> [10] "10090785"                                                            
#> 
#> 
#> $Table$Row[[41]]
#> $Table$Row[[41]]$Cell
#>  [1] "106697"                                                              
#>  [2] "103166323"                                                           
#>  [3] "10850934"                                                            
#>  [4] "Unspecified"                                                         
#>  [5] "13649"                                                               
#>  [6] "16"                                                                  
#>  [7] "IC50"                                                                
#>  [8] "Inhibition of EGF-dependent mouse keratinocyte MK cell proliferation"
#>  [9] "Confirmatory"                                                        
#> [10] "10090785"                                                            
#> 
#> 
#> $Table$Row[[42]]
#> $Table$Row[[42]]$Cell
#>  [1] "106697"                                                              
#>  [2] "103166405"                                                           
#>  [3] "9883384"                                                             
#>  [4] "Active"                                                              
#>  [5] "13649"                                                               
#>  [6] "2.83"                                                                
#>  [7] "IC50"                                                                
#>  [8] "Inhibition of EGF-dependent mouse keratinocyte MK cell proliferation"
#>  [9] "Confirmatory"                                                        
#> [10] "10090785"                                                            
#> 
#> 
#> $Table$Row[[43]]
#> $Table$Row[[43]]$Cell
#>  [1] "106697"                                                              
#>  [2] "103166415"                                                           
#>  [3] "10494548"                                                            
#>  [4] "Unspecified"                                                         
#>  [5] "13649"                                                               
#>  [6] "11.4"                                                                
#>  [7] "IC50"                                                                
#>  [8] "Inhibition of EGF-dependent mouse keratinocyte MK cell proliferation"
#>  [9] "Confirmatory"                                                        
#> [10] "10090785"                                                            
#> 
#> 
#> $Table$Row[[44]]
#> $Table$Row[[44]]$Cell
#>  [1] "106697"                                                              
#>  [2] "103166416"                                                           
#>  [3] "689033"                                                              
#>  [4] "Unspecified"                                                         
#>  [5] "13649"                                                               
#>  [6] "46.2"                                                                
#>  [7] "IC50"                                                                
#>  [8] "Inhibition of EGF-dependent mouse keratinocyte MK cell proliferation"
#>  [9] "Confirmatory"                                                        
#> [10] "10090785"                                                            
#> 
#> 
#> $Table$Row[[45]]
#> $Table$Row[[45]]$Cell
#>  [1] "209326"                                                   
#>  [2] "103257455"                                                
#>  [3] "2428"                                                     
#>  [4] "Active"                                                   
#>  [5] "13649"                                                    
#>  [6] "0.046"                                                    
#>  [7] "IC50"                                                     
#>  [8] "Inhibition of EGF-mediated mitogenesis in Swiss 3T3 cells"
#>  [9] "Confirmatory"                                             
#> [10] "8632415"                                                  
#> 
#> 
#> $Table$Row[[46]]
#> $Table$Row[[46]]$Cell
#>  [1] "241562"                                                     
#>  [2] "103439646"                                                  
#>  [3] "10209082"                                                   
#>  [4] "Unspecified"                                                
#>  [5] "13649"                                                      
#>  [6] "10"                                                         
#>  [7] "IC50"                                                       
#>  [8] "Inhibition of Epidermal growth factor receptor in P19 cells"
#>  [9] "Confirmatory"                                               
#> [10] "15771419"                                                   
#> 
#> 
#> $Table$Row[[47]]
#> $Table$Row[[47]]$Cell
#>  [1] "241562"                                                     
#>  [2] "103439659"                                                  
#>  [3] "10185160"                                                   
#>  [4] "Unspecified"                                                
#>  [5] "13649"                                                      
#>  [6] "10"                                                         
#>  [7] "IC50"                                                       
#>  [8] "Inhibition of Epidermal growth factor receptor in P19 cells"
#>  [9] "Confirmatory"                                               
#> [10] "15771419"                                                   
#> 
#> 
#> $Table$Row[[48]]
#> $Table$Row[[48]]$Cell
#>  [1] "241562"                                                     
#>  [2] "103439663"                                                  
#>  [3] "10143584"                                                   
#>  [4] "Unspecified"                                                
#>  [5] "13649"                                                      
#>  [6] "10"                                                         
#>  [7] "IC50"                                                       
#>  [8] "Inhibition of Epidermal growth factor receptor in P19 cells"
#>  [9] "Confirmatory"                                               
#> [10] "15771419"                                                   
#> 
#> 
#> $Table$Row[[49]]
#> $Table$Row[[49]]$Cell
#>  [1] "241562"                                                     
#>  [2] "103439672"                                                  
#>  [3] "10163439"                                                   
#>  [4] "Unspecified"                                                
#>  [5] "13649"                                                      
#>  [6] "10"                                                         
#>  [7] "IC50"                                                       
#>  [8] "Inhibition of Epidermal growth factor receptor in P19 cells"
#>  [9] "Confirmatory"                                               
#> [10] "15771419"                                                   
#> 
#> 
#> $Table$Row[[50]]
#> $Table$Row[[50]]$Cell
#>  [1] "241562"                                                     
#>  [2] "103439700"                                                  
#>  [3] "10302405"                                                   
#>  [4] "Unspecified"                                                
#>  [5] "13649"                                                      
#>  [6] "10"                                                         
#>  [7] "IC50"                                                       
#>  [8] "Inhibition of Epidermal growth factor receptor in P19 cells"
#>  [9] "Confirmatory"                                               
#> [10] "15771419"                                                   
#> 
#> 
#> $Table$Row[[51]]
#> $Table$Row[[51]]$Cell
#>  [1] "241562"                                                     
#>  [2] "103439717"                                                  
#>  [3] "10187378"                                                   
#>  [4] "Unspecified"                                                
#>  [5] "13649"                                                      
#>  [6] "10"                                                         
#>  [7] "IC50"                                                       
#>  [8] "Inhibition of Epidermal growth factor receptor in P19 cells"
#>  [9] "Confirmatory"                                               
#> [10] "15771419"                                                   
#> 
#> 
#> $Table$Row[[52]]
#> $Table$Row[[52]]$Cell
#>  [1] "241562"                                                     
#>  [2] "123092436"                                                  
#>  [3] "44259"                                                      
#>  [4] "Unspecified"                                                
#>  [5] "13649"                                                      
#>  [6] "10"                                                         
#>  [7] "IC50"                                                       
#>  [8] "Inhibition of Epidermal growth factor receptor in P19 cells"
#>  [9] "Confirmatory"                                               
#> [10] "15771419"                                                   
#> 
#> 
#> $Table$Row[[53]]
#> $Table$Row[[53]]$Cell
#>  [1] "241823"                                                                             
#>  [2] "103452251"                                                                          
#>  [3] "22732319"                                                                           
#>  [4] "Inconclusive"                                                                       
#>  [5] "13649"                                                                              
#>  [6] ""                                                                                   
#>  [7] ""                                                                                   
#>  [8] "Inhibition of Epidermal growth factor receptor tyrosine kinase activity; not tested"
#>  [9] "Other"                                                                              
#> [10] "15454232"                                                                           
#> 
#> 
#> $Table$Row[[54]]
#> $Table$Row[[54]]$Cell
#>  [1] "337238"                                                   
#>  [2] "103194285"                                                
#>  [3] "4075"                                                     
#>  [4] "Unspecified"                                              
#>  [5] "13649"                                                    
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> 
#> 
#> $Table$Row[[55]]
#> $Table$Row[[55]]$Cell
#>  [1] "337238"                                                   
#>  [2] "103227545"                                                
#>  [3] "5328552"                                                  
#>  [4] "Unspecified"                                              
#>  [5] "13649"                                                    
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> 
#> 
#> $Table$Row[[56]]
#> $Table$Row[[56]]$Cell
#>  [1] "337238"                                                   
#>  [2] "103319670"                                                
#>  [3] "3894"                                                     
#>  [4] "Unspecified"                                              
#>  [5] "13649"                                                    
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> 
#> 
#> $Table$Row[[57]]
#> $Table$Row[[57]]$Cell
#>  [1] "337238"                                                   
#>  [2] "103319671"                                                
#>  [3] "3896"                                                     
#>  [4] "Unspecified"                                              
#>  [5] "13649"                                                    
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> 
#> 
#> $Table$Row[[58]]
#> $Table$Row[[58]]$Cell
#>  [1] "337238"                                                   
#>  [2] "103529702"                                                
#>  [3] "65083"                                                    
#>  [4] "Unspecified"                                              
#>  [5] "13649"                                                    
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> 
#> 
#> $Table$Row[[59]]
#> $Table$Row[[59]]$Cell
#>  [1] "337238"                                                   
#>  [2] "103529722"                                                
#>  [3] "70949"                                                    
#>  [4] "Unspecified"                                              
#>  [5] "13649"                                                    
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> 
#> 
#> $Table$Row[[60]]
#> $Table$Row[[60]]$Cell
#>  [1] "337238"                                                   
#>  [2] "103618685"                                                
#>  [3] "3895"                                                     
#>  [4] "Unspecified"                                              
#>  [5] "13649"                                                    
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> 
#> 
#> $Table$Row[[61]]
#> $Table$Row[[61]]$Cell
#>  [1] "337238"                                                   
#>  [2] "103618686"                                                
#>  [3] "44593598"                                                 
#>  [4] "Unspecified"                                              
#>  [5] "13649"                                                    
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> 
#> 
#> $Table$Row[[62]]
#> $Table$Row[[62]]$Cell
#>  [1] "337238"                                                   
#>  [2] "103618687"                                                
#>  [3] "44593599"                                                 
#>  [4] "Unspecified"                                              
#>  [5] "13649"                                                    
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> 
#> 
#> $Table$Row[[63]]
#> $Table$Row[[63]]$Cell
#>  [1] "337238"                                                   
#>  [2] "103618691"                                                
#>  [3] "375472"                                                   
#>  [4] "Unspecified"                                              
#>  [5] "13649"                                                    
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> 
#> 
#> $Table$Row[[64]]
#> $Table$Row[[64]]$Cell
#>  [1] "337238"                                                   
#>  [2] "123092436"                                                
#>  [3] "44259"                                                    
#>  [4] "Unspecified"                                              
#>  [5] "13649"                                                    
#>  [6] ""                                                         
#>  [7] ""                                                         
#>  [8] "Inhibition of mouse EGFR by liquid scintillation counting"
#>  [9] "Other"                                                    
#> [10] "2614420"                                                  
#> 
#> 
#> $Table$Row[[65]]
#> $Table$Row[[65]]$Cell
#>  [1] "337243"                                                                                        
#>  [2] "103319670"                                                                                     
#>  [3] "3894"                                                                                          
#>  [4] "Active"                                                                                        
#>  [5] "13649"                                                                                         
#>  [6] ""                                                                                              
#>  [7] ""                                                                                              
#>  [8] "Inhibition of mouse EGFR using [32P]gammaATP as substrate by competitive Lineweaver-Burke plot"
#>  [9] "Other"                                                                                         
#> [10] "2614420"                                                                                       
#> 
#> 
#> $Table$Row[[66]]
#> $Table$Row[[66]]$Cell
#>  [1] "337244"                                                                                           
#>  [2] "103319670"                                                                                        
#>  [3] "3894"                                                                                             
#>  [4] "Active"                                                                                           
#>  [5] "13649"                                                                                            
#>  [6] ""                                                                                                 
#>  [7] ""                                                                                                 
#>  [8] "Inhibition of mouse EGFR using tridecapeptide as substrate by uncompetitive Lineweaver-Burke plot"
#>  [9] "Other"                                                                                            
#> [10] "2614420"                                                                                          
#> 
#> 
#> $Table$Row[[67]]
#> $Table$Row[[67]]$Cell
#>  [1] "415757"                                                                                  
#>  [2] "103294831"                                                                               
#>  [3] "5289418"                                                                                 
#>  [4] "Active"                                                                                  
#>  [5] "13649"                                                                                   
#>  [6] ""                                                                                        
#>  [7] ""                                                                                        
#>  [8] "Inhibition of EGF-stimulated EGFR phosphorylation in mouse HER14 cells by immunoblotting"
#>  [9] "Other"                                                                                   
#> [10] "9139660"                                                                                 
#> 
#> 
#> $Table$Row[[68]]
#> $Table$Row[[68]]$Cell
#>  [1] "415757"                                                                                  
#>  [2] "103295395"                                                                               
#>  [3] "5941540"                                                                                 
#>  [4] "Active"                                                                                  
#>  [5] "13649"                                                                                   
#>  [6] ""                                                                                        
#>  [7] ""                                                                                        
#>  [8] "Inhibition of EGF-stimulated EGFR phosphorylation in mouse HER14 cells by immunoblotting"
#>  [9] "Other"                                                                                   
#> [10] "9139660"                                                                                 
#> 
#> 
#> $Table$Row[[69]]
#> $Table$Row[[69]]$Cell
#>  [1] "415758"                                                                                                                
#>  [2] "103294831"                                                                                                             
#>  [3] "5289418"                                                                                                               
#>  [4] "Active"                                                                                                                
#>  [5] "13649"                                                                                                                 
#>  [6] ""                                                                                                                      
#>  [7] ""                                                                                                                      
#>  [8] "Inhibition of EGFR in mouse HER14 cells assessed as inhibition of EGF-stimulated Shc phosphorylation by immunoblotting"
#>  [9] "Other"                                                                                                                 
#> [10] "9139660"                                                                                                               
#> 
#> 
#> $Table$Row[[70]]
#> $Table$Row[[70]]$Cell
#>  [1] "415758"                                                                                                                
#>  [2] "103295395"                                                                                                             
#>  [3] "5941540"                                                                                                               
#>  [4] "Active"                                                                                                                
#>  [5] "13649"                                                                                                                 
#>  [6] ""                                                                                                                      
#>  [7] ""                                                                                                                      
#>  [8] "Inhibition of EGFR in mouse HER14 cells assessed as inhibition of EGF-stimulated Shc phosphorylation by immunoblotting"
#>  [9] "Other"                                                                                                                 
#> [10] "9139660"                                                                                                               
#> 
#> 
#> $Table$Row[[71]]
#> $Table$Row[[71]]$Cell
#>  [1] "415759"                                                                                                            
#>  [2] "103294831"                                                                                                         
#>  [3] "5289418"                                                                                                           
#>  [4] "Active"                                                                                                            
#>  [5] "13649"                                                                                                             
#>  [6] ""                                                                                                                  
#>  [7] ""                                                                                                                  
#>  [8] "Inhibition of EGFR in mouse HER14 cells assessed as inhibition of EGF-stimulated ERK2 activation by immunoblotting"
#>  [9] "Other"                                                                                                             
#> [10] "9139660"                                                                                                           
#> 
#> 
#> $Table$Row[[72]]
#> $Table$Row[[72]]$Cell
#>  [1] "415759"                                                                                                            
#>  [2] "103295395"                                                                                                         
#>  [3] "5941540"                                                                                                           
#>  [4] "Active"                                                                                                            
#>  [5] "13649"                                                                                                             
#>  [6] ""                                                                                                                  
#>  [7] ""                                                                                                                  
#>  [8] "Inhibition of EGFR in mouse HER14 cells assessed as inhibition of EGF-stimulated ERK2 activation by immunoblotting"
#>  [9] "Other"                                                                                                             
#> [10] "9139660"                                                                                                           
#> 
#> 
#> $Table$Row[[73]]
#> $Table$Row[[73]]$Cell
#>  [1] "415760"                                                             
#>  [2] "103294831"                                                          
#>  [3] "5289418"                                                            
#>  [4] "Inactive"                                                           
#>  [5] "13649"                                                              
#>  [6] ""                                                                   
#>  [7] ""                                                                   
#>  [8] "Inhibition of EGFR phosphorylation in mouse NIH/3T3 cells at 200 uM"
#>  [9] "Other"                                                              
#> [10] "9139660"                                                            
#> 
#> 
#> $Table$Row[[74]]
#> $Table$Row[[74]]$Cell
#>  [1] "415760"                                                             
#>  [2] "103295395"                                                          
#>  [3] "5941540"                                                            
#>  [4] "Inactive"                                                           
#>  [5] "13649"                                                              
#>  [6] ""                                                                   
#>  [7] ""                                                                   
#>  [8] "Inhibition of EGFR phosphorylation in mouse NIH/3T3 cells at 200 uM"
#>  [9] "Other"                                                              
#> [10] "9139660"                                                            
#> 
#> 
#> $Table$Row[[75]]
#> $Table$Row[[75]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "312367127"                                                                                                                                                          
#>  [3] "71496458"                                                                                                                                                           
#>  [4] "Active"                                                                                                                                                             
#>  [5] "13649"                                                                                                                                                              
#>  [6] "0.081"                                                                                                                                                              
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[76]]
#> $Table$Row[[76]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440110169"                                                                                                                                                          
#>  [3] "139593669"                                                                                                                                                          
#>  [4] "Unspecified"                                                                                                                                                        
#>  [5] "13649"                                                                                                                                                              
#>  [6] "10"                                                                                                                                                                 
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[77]]
#> $Table$Row[[77]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440119817"                                                                                                                                                          
#>  [3] "155517202"                                                                                                                                                          
#>  [4] "Inconclusive"                                                                                                                                                       
#>  [5] "13649"                                                                                                                                                              
#>  [6] ""                                                                                                                                                                   
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[78]]
#> $Table$Row[[78]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440125045"                                                                                                                                                          
#>  [3] "139447864"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "13649"                                                                                                                                                              
#>  [6] "3.6"                                                                                                                                                                
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[79]]
#> $Table$Row[[79]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440160302"                                                                                                                                                          
#>  [3] "139593670"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "13649"                                                                                                                                                              
#>  [6] "1.3"                                                                                                                                                                
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[80]]
#> $Table$Row[[80]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440163841"                                                                                                                                                          
#>  [3] "139447649"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "13649"                                                                                                                                                              
#>  [6] "5.1"                                                                                                                                                                
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[81]]
#> $Table$Row[[81]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440172005"                                                                                                                                                          
#>  [3] "139447554"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "13649"                                                                                                                                                              
#>  [6] "0.7"                                                                                                                                                                
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[82]]
#> $Table$Row[[82]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440176009"                                                                                                                                                          
#>  [3] "139600318"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "13649"                                                                                                                                                              
#>  [6] "0.19"                                                                                                                                                               
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[83]]
#> $Table$Row[[83]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440182946"                                                                                                                                                          
#>  [3] "155444794"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "13649"                                                                                                                                                              
#>  [6] "2.3"                                                                                                                                                                
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[84]]
#> $Table$Row[[84]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440203081"                                                                                                                                                          
#>  [3] "155444797"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "13649"                                                                                                                                                              
#>  [6] "1.1"                                                                                                                                                                
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[85]]
#> $Table$Row[[85]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440207922"                                                                                                                                                          
#>  [3] "155444848"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "13649"                                                                                                                                                              
#>  [6] "0.27"                                                                                                                                                               
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[86]]
#> $Table$Row[[86]]$Cell
#>  [1] "1527521"                                                                                                                                                            
#>  [2] "440227038"                                                                                                                                                          
#>  [3] "139593668"                                                                                                                                                          
#>  [4] "Inconclusive"                                                                                                                                                       
#>  [5] "13649"                                                                                                                                                              
#>  [6] ""                                                                                                                                                                   
#>  [7] "IC50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BAF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "31689114"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[87]]
#> $Table$Row[[87]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "312367127"                                                                                                                                                          
#>  [3] "71496458"                                                                                                                                                           
#>  [4] "Active"                                                                                                                                                             
#>  [5] "13649"                                                                                                                                                              
#>  [6] "2.6"                                                                                                                                                                
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[88]]
#> $Table$Row[[88]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461515468"                                                                                                                                                          
#>  [3] "162643657"                                                                                                                                                          
#>  [4] "Inconclusive"                                                                                                                                                       
#>  [5] "13649"                                                                                                                                                              
#>  [6] ""                                                                                                                                                                   
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[89]]
#> $Table$Row[[89]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461515649"                                                                                                                                                          
#>  [3] "162643790"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "13649"                                                                                                                                                              
#>  [6] "9.23"                                                                                                                                                               
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[90]]
#> $Table$Row[[90]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461542097"                                                                                                                                                          
#>  [3] "162662364"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "13649"                                                                                                                                                              
#>  [6] "3.91"                                                                                                                                                               
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[91]]
#> $Table$Row[[91]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461543217"                                                                                                                                                          
#>  [3] "162663118"                                                                                                                                                          
#>  [4] "Unspecified"                                                                                                                                                        
#>  [5] "13649"                                                                                                                                                              
#>  [6] "10"                                                                                                                                                                 
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[92]]
#> $Table$Row[[92]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461546315"                                                                                                                                                          
#>  [3] "162665339"                                                                                                                                                          
#>  [4] "Unspecified"                                                                                                                                                        
#>  [5] "13649"                                                                                                                                                              
#>  [6] "10"                                                                                                                                                                 
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[93]]
#> $Table$Row[[93]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461547480"                                                                                                                                                          
#>  [3] "162666122"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "13649"                                                                                                                                                              
#>  [6] "4.27"                                                                                                                                                               
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[94]]
#> $Table$Row[[94]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461549927"                                                                                                                                                          
#>  [3] "162667840"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "13649"                                                                                                                                                              
#>  [6] "3.79"                                                                                                                                                               
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[95]]
#> $Table$Row[[95]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461550238"                                                                                                                                                          
#>  [3] "162668052"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "13649"                                                                                                                                                              
#>  [6] "2.65"                                                                                                                                                               
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[96]]
#> $Table$Row[[96]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461550466"                                                                                                                                                          
#>  [3] "162668204"                                                                                                                                                          
#>  [4] "Unspecified"                                                                                                                                                        
#>  [5] "13649"                                                                                                                                                              
#>  [6] "10"                                                                                                                                                                 
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[97]]
#> $Table$Row[[97]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461555362"                                                                                                                                                          
#>  [3] "162671649"                                                                                                                                                          
#>  [4] "Inconclusive"                                                                                                                                                       
#>  [5] "13649"                                                                                                                                                              
#>  [6] ""                                                                                                                                                                   
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[98]]
#> $Table$Row[[98]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461557317"                                                                                                                                                          
#>  [3] "162673094"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "13649"                                                                                                                                                              
#>  [6] "9.23"                                                                                                                                                               
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[99]]
#> $Table$Row[[99]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461557891"                                                                                                                                                          
#>  [3] "162673491"                                                                                                                                                          
#>  [4] "Active"                                                                                                                                                             
#>  [5] "13649"                                                                                                                                                              
#>  [6] "3.79"                                                                                                                                                               
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[100]]
#> $Table$Row[[100]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461558880"                                                                                                                                                          
#>  [3] "162674154"                                                                                                                                                          
#>  [4] "Inconclusive"                                                                                                                                                       
#>  [5] "13649"                                                                                                                                                              
#>  [6] ""                                                                                                                                                                   
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[101]]
#> $Table$Row[[101]]$Cell
#>  [1] "1740135"                                                                                                                                                            
#>  [2] "461562991"                                                                                                                                                          
#>  [3] "162677073"                                                                                                                                                          
#>  [4] "Unspecified"                                                                                                                                                        
#>  [5] "13649"                                                                                                                                                              
#>  [6] "10"                                                                                                                                                                 
#>  [7] "GI50"                                                                                                                                                               
#>  [8] "Inhibition of wild type EGFR in mouse BaF3 cells assessed as reduction in cell proliferation incubated for 72 hrs by Celltiter-Glo luminescent cell viability assay"
#>  [9] "Confirmatory"                                                                                                                                                       
#> [10] "32619886"                                                                                                                                                           
#> 
#> 
#> $Table$Row[[102]]
#> $Table$Row[[102]]$Cell
#>  [1] "1815786"                                                                                                                                        
#>  [2] "475982343"                                                                                                                                      
#>  [3] "166627448"                                                                                                                                      
#>  [4] "Unspecified"                                                                                                                                    
#>  [5] "13649"                                                                                                                                          
#>  [6] ""                                                                                                                                               
#>  [7] ""                                                                                                                                               
#>  [8] "Inhibition of EGFR phosphorylation in mouse BaF3 cells expressing EGFR 19Del/T790M/C797S triple mutant measured after 2 hrs by Western blotting"
#>  [9] "Other"                                                                                                                                          
#> [10] "35178175"                                                                                                                                       
#> 
#> 
#> $Table$Row[[103]]
#> $Table$Row[[103]]$Cell
#>  [1] "1815820"                                                                                                                                        
#>  [2] "475982343"                                                                                                                                      
#>  [3] "166627448"                                                                                                                                      
#>  [4] "Unspecified"                                                                                                                                    
#>  [5] "13649"                                                                                                                                          
#>  [6] ""                                                                                                                                               
#>  [7] ""                                                                                                                                               
#>  [8] "Inhibition of EGFR phosphorylation in mouse BaF3 cells expressing EGFR L858R/T790M/C797S triple mutant measured after 2 hrs by Western blotting"
#>  [9] "Other"                                                                                                                                          
#> [10] "35178175"                                                                                                                                       
#> 
#> 
#> $Table$Row[[104]]
#> $Table$Row[[104]]$Cell
#>  [1] "1862914"                                                                                                                                                                                                                             
#>  [2] "482063640"                                                                                                                                                                                                                           
#>  [3] "155431347"                                                                                                                                                                                                                           
#>  [4] "Active"                                                                                                                                                                                                                              
#>  [5] "13649"                                                                                                                                                                                                                               
#>  [6] ""                                                                                                                                                                                                                                    
#>  [7] ""                                                                                                                                                                                                                                    
#>  [8] "Invivo inhibition of EGFR phosphorylation in nude mouse implanted with mouse BaF3 cells harboring EGFR del18/T790M/C797S triple mutant at 20 mg/kg, po administered as single dose and measured upto 24 hrs by Western blot analysis"
#>  [9] "Other"                                                                                                                                                                                                                               
#> [10] "35810715"                                                                                                                                                                                                                            
#> 
#> 
#> $Table$Row[[105]]
#> $Table$Row[[105]]$Cell
#>  [1] "1896806"                                                                                                                                           
#>  [2] "482061797"                                                                                                                                         
#>  [3] "166176964"                                                                                                                                         
#>  [4] "Unspecified"                                                                                                                                       
#>  [5] "13649"                                                                                                                                             
#>  [6] ""                                                                                                                                                  
#>  [7] ""                                                                                                                                                  
#>  [8] "Inhibition of Wild type EGFR in mouse BaF3 cells assessed as protein phosphorylation at 10 to 1000 nM incubated for 8 hrs by Western blot analysis"
#>  [9] "Other"                                                                                                                                             
#> [10] "36384036"                                                                                                                                          
#> 
#> 
#> $Table$Row[[106]]
#> $Table$Row[[106]]$Cell
#>  [1] "1896806"                                                                                                                                           
#>  [2] "482062269"                                                                                                                                         
#>  [3] "168280117"                                                                                                                                         
#>  [4] "Unspecified"                                                                                                                                       
#>  [5] "13649"                                                                                                                                             
#>  [6] ""                                                                                                                                                  
#>  [7] ""                                                                                                                                                  
#>  [8] "Inhibition of Wild type EGFR in mouse BaF3 cells assessed as protein phosphorylation at 10 to 1000 nM incubated for 8 hrs by Western blot analysis"
#>  [9] "Other"                                                                                                                                             
#> [10] "36384036"

Pathways from Protein: Provides a list of pathways involving a specific protein. For example, for protein accession P00533:

result <- get_pug_rest(identifier = "P00533", namespace = "accession", domain = "protein", operation = "pwaccs", output = "TXT")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Protein
#>   - Namespace: DomainSpecific
#>   - Operation: pwaccs
#>   - Identifier: P00533
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#>                                           V1
#> 1                        PathBank:SMP0000472
#> 2                        PathBank:SMP0000473
#> 3                        PathBank:SMP0000474
#> 4                        PathBank:SMP0000475
#> 5                        PathBank:SMP0000476
#> 6                        PathBank:SMP0063810
#> 7                        PathBank:SMP0063811
#> 8                                    Pathway
#> 9                                Interaction
#> 10       Database:a6b1_a6b4_integrin_pathway
#> 11                                   Pathway
#> 12                               Interaction
#> 13                  Database:ajdiss_2pathway
#> 14                                   Pathway
#> 15                               Interaction
#> 16                     Database:arf6_pathway
#> 17                                   Pathway
#> 18                               Interaction
#> 19   Database:ecadherin_keratinocyte_pathway
#> 20                                   Pathway
#> 21                               Interaction
#> 22  Database:ecadherin_stabilization_pathway
#> 23                                   Pathway
#> 24                               Interaction
#> 25         Database:erbb1_downstream_pathway
#> 26                                   Pathway
#> 27                               Interaction
#> 28    Database:erbb1_internalization_pathway
#> 29                                   Pathway
#> 30                               Interaction
#> 31             Database:erbb_network_pathway
#> 32                                   Pathway
#> 33                               Interaction
#> 34                   Database:et_egfrpathway
#> 35                                   Pathway
#> 36                               Interaction
#> 37         Database:lysophospholipid_pathway
#> 38                                   Pathway
#> 39                               Interaction
#> 40             Database:p53downstreampathway
#> 41                                   Pathway
#> 42                               Interaction
#> 43                     Database:ptp1bpathway
#> 44                                   Pathway
#> 45                               Interaction
#> 46                     Database:shp2_pathway
#> 47                                   Pathway
#> 48                               Interaction
#> 49               Database:syndecan_3_pathway
#> 50                                   Pathway
#> 51                               Interaction
#> 52                    Database:tcptp_pathway
#> 53                                   Pathway
#> 54                               Interaction
#> 55                Database:telomerasepathway
#> 56                                   Pathway
#> 57                               Interaction
#> 58                      Database:txa2pathway
#> 59                                   Pathway
#> 60                               Interaction
#> 61                 Database:upa_upar_pathway
#> 62                      PharmGKB:PA152325160
#> 63                      PharmGKB:PA154426903
#> 64                      PharmGKB:PA162356267
#> 65                      PharmGKB:PA165980050
#> 66                    Reactome:R-HSA-1227986
#> 67                    Reactome:R-HSA-1227990
#> 68                    Reactome:R-HSA-1236394
#> 69                    Reactome:R-HSA-1266738
#> 70                     Reactome:R-HSA-157118
#> 71                     Reactome:R-HSA-162582
#> 72                    Reactome:R-HSA-1643685
#> 73                    Reactome:R-HSA-1643713
#> 74                     Reactome:R-HSA-177929
#> 75                     Reactome:R-HSA-179812
#> 76                     Reactome:R-HSA-180292
#> 77                     Reactome:R-HSA-180336
#> 78                     Reactome:R-HSA-182971
#> 79                     Reactome:R-HSA-199991
#> 80                     Reactome:R-HSA-212436
#> 81                     Reactome:R-HSA-212718
#> 82                    Reactome:R-HSA-2179392
#> 83                     Reactome:R-HSA-372790
#> 84                     Reactome:R-HSA-373760
#> 85                     Reactome:R-HSA-388396
#> 86                     Reactome:R-HSA-416476
#> 87                     Reactome:R-HSA-422475
#> 88                     Reactome:R-HSA-445144
#> 89                    Reactome:R-HSA-5637810
#> 90                    Reactome:R-HSA-5637812
#> 91                    Reactome:R-HSA-5638302
#> 92                    Reactome:R-HSA-5638303
#> 93                    Reactome:R-HSA-5653656
#> 94                    Reactome:R-HSA-5663202
#> 95                      Reactome:R-HSA-73857
#> 96                      Reactome:R-HSA-74160
#> 97                     Reactome:R-HSA-881907
#> 98                    Reactome:R-HSA-8848021
#> 99                    Reactome:R-HSA-8856825
#> 100                   Reactome:R-HSA-8856828
#> 101                   Reactome:R-HSA-8857538
#> 102                   Reactome:R-HSA-8864260
#> 103                   Reactome:R-HSA-8866910
#> 104                   Reactome:R-HSA-8939211
#> 105                   Reactome:R-HSA-9006927
#> 106                   Reactome:R-HSA-9006931
#> 107                   Reactome:R-HSA-9006934
#> 108                   Reactome:R-HSA-9009391
#> 109                   Reactome:R-HSA-9012852
#> 110                   Reactome:R-HSA-9013507
#> 111                   Reactome:R-HSA-9634638
#> 112                   Reactome:R-HSA-9664565
#> 113                   Reactome:R-HSA-9665348
#> 114                   Reactome:R-HSA-9665686
#> 115                   Reactome:R-HSA-9675108
#> 116                      WikiPathways:WP1984
#> 117                      WikiPathways:WP2643
#> 118                      WikiPathways:WP2840
#> 119                      WikiPathways:WP5144
#> 120                      WikiPathways:WP5158
#> 121                      WikiPathways:WP5322

These methods offer a comprehensive approach to accessing and analyzing protein-related data in PubChem, supporting a wide range of research applications in the fields of biochemistry, molecular biology, and pharmacology.

3.6. Pathways

PubChem’s PUG REST service offers a detailed and comprehensive approach to accessing pathway information, crucial for researchers in fields like bioinformatics, pharmacology, and molecular biology. Here’s how to utilize PUG REST for pathway-related queries:

1. Pathway Input Methods:

By Pathway Accession: The primary method to access pathway data in PubChem. Pathway Accession is formatted as Source:ID. For example, to get a summary for the Reactome pathway R-HSA-70171 in JSON format:

result <- get_pug_rest(identifier = "Reactome:R-HSA-70171", namespace = "pwacc", domain = "pathway", operation = "summary", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: DomainSpecific (pathway)
#>   - Namespace: DomainSpecific
#>   - Operation: summary
#>   - Identifier: Reactome:R-HSA-70171
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $PathwaySummaries
#> $PathwaySummaries$PathwaySummary
#> $PathwaySummaries$PathwaySummary[[1]]
#> $PathwaySummaries$PathwaySummary[[1]]$PathwayAccession
#> [1] "Reactome:R-HSA-70171"
#> 
#> $PathwaySummaries$PathwaySummary[[1]]$SourceName
#> [1] "Reactome"
#> 
#> $PathwaySummaries$PathwaySummary[[1]]$SourceID
#> [1] "R-HSA-70171"
#> 
#> $PathwaySummaries$PathwaySummary[[1]]$SourceURL
#> [1] "https://reactome.org/content/detail/R-HSA-70171"
#> 
#> $PathwaySummaries$PathwaySummary[[1]]$Name
#> [1] "Glycolysis"
#> 
#> $PathwaySummaries$PathwaySummary[[1]]$Type
#> [1] "organism_specific"
#> 
#> $PathwaySummaries$PathwaySummary[[1]]$Category
#> [1] "pathway"
#> 
#> $PathwaySummaries$PathwaySummary[[1]]$Description
#> [1] "The reactions of glycolysis (e.g., van Wijk and van Solinge 2005) convert glucose 6-phosphate to pyruvate. The entire process is cytosolic. Glucose 6-phosphate is reversibly isomerized to form fructose 6-phosphate. Phosphofructokinase 1 catalyzes the physiologically irreversible phosphorylation of fructose 6-phosphate to form fructose 1,6-bisphosphate. In six reversible reactions, fructose 1,6-bisphosphate is converted to two molecules of phosphoenolpyruvate and two molecules of NAD+ are reduced to NADH + H+. Each molecule of phosphoenolpyruvate reacts with ADP to form ATP and pyruvate in a physiologically irreversible reaction. Under aerobic conditions the NADH +H+ can be reoxidized to NAD+ via electron transport to yield additional ATP, while under anaerobic conditions or in cells lacking mitochondria NAD+ can be regenerated via the reduction of pyruvate to lactate."
#> 
#> $PathwaySummaries$PathwaySummary[[1]]$TaxonomyID
#> [1] 9606
#> 
#> $PathwaySummaries$PathwaySummary[[1]]$Taxonomy
#> [1] "Homo sapiens (human)"

2. Available Pathway Data:

Pathway Summary: Returns a summary including PathwayAccession, SourceName, Name, Type, Category, Description, TaxonomyID, and Taxonomy. For example:

result <- get_pug_rest(identifier = "Reactome:R-HSA-70171,BioCyc:HUMAN_PWY-4983", namespace = "pwacc", domain = "pathway", operation = "summary", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: DomainSpecific (pathway)
#>   - Namespace: DomainSpecific
#>   - Operation: summary
#>   - Identifier: Reactome:R-HSA-70171,BioCyc:HUMAN_PWY-4983
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $PathwaySummaries
#> $PathwaySummaries$PathwaySummary
#> $PathwaySummaries$PathwaySummary[[1]]
#> $PathwaySummaries$PathwaySummary[[1]]$PathwayAccession
#> [1] "Reactome:R-HSA-70171"
#> 
#> $PathwaySummaries$PathwaySummary[[1]]$SourceName
#> [1] "Reactome"
#> 
#> $PathwaySummaries$PathwaySummary[[1]]$SourceID
#> [1] "R-HSA-70171"
#> 
#> $PathwaySummaries$PathwaySummary[[1]]$SourceURL
#> [1] "https://reactome.org/content/detail/R-HSA-70171"
#> 
#> $PathwaySummaries$PathwaySummary[[1]]$Name
#> [1] "Glycolysis"
#> 
#> $PathwaySummaries$PathwaySummary[[1]]$Type
#> [1] "organism_specific"
#> 
#> $PathwaySummaries$PathwaySummary[[1]]$Category
#> [1] "pathway"
#> 
#> $PathwaySummaries$PathwaySummary[[1]]$Description
#> [1] "The reactions of glycolysis (e.g., van Wijk and van Solinge 2005) convert glucose 6-phosphate to pyruvate. The entire process is cytosolic. Glucose 6-phosphate is reversibly isomerized to form fructose 6-phosphate. Phosphofructokinase 1 catalyzes the physiologically irreversible phosphorylation of fructose 6-phosphate to form fructose 1,6-bisphosphate. In six reversible reactions, fructose 1,6-bisphosphate is converted to two molecules of phosphoenolpyruvate and two molecules of NAD+ are reduced to NADH + H+. Each molecule of phosphoenolpyruvate reacts with ADP to form ATP and pyruvate in a physiologically irreversible reaction. Under aerobic conditions the NADH +H+ can be reoxidized to NAD+ via electron transport to yield additional ATP, while under anaerobic conditions or in cells lacking mitochondria NAD+ can be regenerated via the reduction of pyruvate to lactate."
#> 
#> $PathwaySummaries$PathwaySummary[[1]]$TaxonomyID
#> [1] 9606
#> 
#> $PathwaySummaries$PathwaySummary[[1]]$Taxonomy
#> [1] "Homo sapiens (human)"
#> 
#> 
#> $PathwaySummaries$PathwaySummary[[2]]
#> $PathwaySummaries$PathwaySummary[[2]]$PathwayAccession
#> [1] "BioCyc:HUMAN_PWY-4983"
#> 
#> $PathwaySummaries$PathwaySummary[[2]]$SourceName
#> [1] "BioCyc"
#> 
#> $PathwaySummaries$PathwaySummary[[2]]$SourceID
#> [1] "PWY-4983"
#> 
#> $PathwaySummaries$PathwaySummary[[2]]$SourceURL
#> [1] "https://biocyc.org/HUMAN/NEW-IMAGE?object=PWY-4983"
#> 
#> $PathwaySummaries$PathwaySummary[[2]]$Name
#> [1] "citrulline-nitric oxide cycle"
#> 
#> $PathwaySummaries$PathwaySummary[[2]]$Type
#> [1] "organism_specific"
#> 
#> $PathwaySummaries$PathwaySummary[[2]]$Category
#> [1] "pathway"
#> 
#> $PathwaySummaries$PathwaySummary[[2]]$Description
#> [1] "<b>General Background</b>\n\n|FRAME: NITRIC-OXIDE \"Nitric oxide\"| (NO) is the active moiety of the endothelium-derived relaxing factor. In the vasculature NO relaxes smooth muscle and inhibits platelet and leukocyte adhesion. Outside the vasculature, NO participates in the immunologic response to infection. It serves as a neurotransmitter and plays an important role in cell signaling in the nervous system, and in synaptic plasticity. \n\nNitric oxide synthases are a family of enzymes responsible for the NADPH dependent synthesis of nitric oxide from |FRAME: ARG| and oxygen in the |FRAME: PWY-4983|.\n\n<b>About this Pathway</b>\n\n|FRAME: NITRIC-OXIDE \"Nitric oxide\"| can be synthesized by three nitric oxide synthases from |FRAME: ARG| generating |FRAME:L-CITRULLINE| as a by-product. In this cycle, arginine forms NO and citrulline, and is subsequently regenerated from citrulline by the action of the enzymes |FRAME:CPLX-6641| and |FRAME:CPLX-6661|. These two enzymes are shared with the |FRAME: PWY-4984|. Citrulline is also required in |FRAME: PWY-4921|.\n\nThe citrulline-NO cycle functions in many different types of cells. It has been demonstrated in epithelial cells, chondrocytes, endothelial cells, macrophages and neurons |CITS: [2236071]||CITS:[1731766]|.\n\nThe enzymes |FRAME: CPLX-6641| and |FRAME: CPLX-6661| confer cells with the capacity to produce NO without the need for exogenous arginine. In vascular smooth muscle cells |FRAME: CPLX-6661| is constitutively expressed but |FRAME: CPLX-6641| is inducible by cytokines and bacterial endotoxin |CITS:[7511585]|."
#> 
#> $PathwaySummaries$PathwaySummary[[2]]$TaxonomyID
#> [1] 9606
#> 
#> $PathwaySummaries$PathwaySummary[[2]]$Taxonomy
#> [1] "Homo sapiens (human)"

Compounds from Pathway: Retrieves a list of compounds involved in a specific pathway. For example, for the Reactome pathway R-HSA-70171:

result <- get_pug_rest(identifier = "Reactome:R-HSA-70171", namespace = "pwacc", domain = "pathway", operation = "cids", output = "TXT")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: DomainSpecific (pathway)
#>   - Namespace: DomainSpecific
#>   - Operation: cids
#>   - Identifier: Reactome:R-HSA-70171
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#>          V1
#> 1       223
#> 2       311
#> 3       753
#> 4       813
#> 5       888
#> 6       962
#> 7      1038
#> 8     65246
#> 9     79025
#> 10    82400
#> 11   105021
#> 12   107735
#> 13   152306
#> 14   439217
#> 15  3674425
#> 16  3681305
#> 17  4643300
#> 18  5460765
#> 19  5461108
#> 20  7058055
#> 21  7059571
#> 22  9548671
#> 23 15938965
#> 24 15938971
#> 25 21604863
#> 26 21604864
#> 27 21604869
#> 28 24794350
#> 29 25245548
#> 30 40467846
#> 31 45266541
#> 32 46878409

Genes from Pathway: Provides a list of genes involved in a specific pathway. For example, for the Reactome pathway R-HSA-70171:

result <- get_pug_rest(identifier = "Reactome:R-HSA-70171", namespace = "pwacc", domain = "pathway", operation = "geneids", output = "TXT")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: DomainSpecific (pathway)
#>   - Namespace: DomainSpecific
#>   - Operation: geneids
#>   - Identifier: Reactome:R-HSA-70171
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#>        V1
#> 1     226
#> 2     229
#> 3     230
#> 4     669
#> 5    2023
#> 6    2026
#> 7    2027
#> 8    2597
#> 9    2645
#> 10   2646
#> 11   2821
#> 12   4927
#> 13   5207
#> 14   5208
#> 15   5209
#> 16   5210
#> 17   5211
#> 18   5213
#> 19   5214
#> 20   5223
#> 21   5224
#> 22   5230
#> 23   5232
#> 24   5528
#> 25   5903
#> 26   6396
#> 27   7167
#> 28   7175
#> 29   8021
#> 30   8086
#> 31   8480
#> 32   9631
#> 33   9688
#> 34   9972
#> 35  10007
#> 36  10762
#> 37  11097
#> 38  23165
#> 39  23225
#> 40  23279
#> 41  23511
#> 42  23636
#> 43  26330
#> 44  53371
#> 45  55706
#> 46  55746
#> 47  57122
#> 48  79023
#> 49  79902
#> 50  83440
#> 51 129401
#> 52 132789
#> 53 283209
#> 54 283871
#> 55 348995
#> 56 387712

Proteins from Pathway: Returns a list of proteins involved in a given pathway. For example, for the Reactome pathway R-HSA-70171:

result <- get_pug_rest(identifier = "Reactome:R-HSA-70171", namespace = "pwacc", domain = "pathway", operation = "accessions", output = "TXT")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: DomainSpecific (pathway)
#>   - Namespace: DomainSpecific
#>   - Operation: accessions
#>   - Identifier: Reactome:R-HSA-70171
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#>          V1
#> 1    A6NDG6
#> 2    A6NNW6
#> 3    O14556
#> 4    O15504
#> 5    O60825
#> 6    O75694
#> 7    P00558
#> 8    P04075
#> 9    P04406
#> 10   P05062
#> 11   P06733
#> 12   P06744
#> 13   P07205
#> 14   P07738
#> 15   P08237
#> 16   P09104
#> 17   P09972
#> 18   P12270
#> 19   P13929
#> 20 P14618-1
#> 21 P14618-2
#> 22   P15259
#> 23   P16118
#> 24   P17858
#> 25   P18669
#> 26   P35557
#> 27   P35658
#> 28   P37198
#> 29   P46926
#> 30   P49790
#> 31   P49792
#> 32 P52948-5
#> 33   P55735
#> 34   P57740
#> 35   P60174
#> 36   P78406
#> 37   Q01813
#> 38   Q12769
#> 39   Q14397
#> 40   Q14738
#> 41   Q16875
#> 42   Q16877
#> 43   Q5SRE5
#> 44   Q6PCE3
#> 45   Q7Z3B4
#> 46   Q8N1F7
#> 47   Q8NFH3
#> 48   Q8NFH4
#> 49   Q8NFH5
#> 50   Q8TDQ7
#> 51   Q8TEM1
#> 52   Q8WUM0
#> 53   Q92621
#> 54 Q96EE3-1
#> 55 Q96EE3-2
#> 56   Q99567
#> 57   Q9BRR6
#> 58   Q9BTX1
#> 59   Q9BW27
#> 60   Q9NRG9
#> 61   Q9UKX7

These methods offer a streamlined and efficient way to access and analyze pathway-related data in PubChem, supporting a wide range of research applications in bioinformatics, molecular biology, and related fields.

3.7. Taxonomies

PubChem’s PUG REST service provides a comprehensive approach to accessing taxonomy information, essential for researchers in fields like biology, pharmacology, and environmental science. Here’s how to utilize PUG REST for taxonomy-related queries:

1. Taxonomy Input Methods:

By Taxonomy ID: The primary method to access taxonomy data in PubChem using NCBI Taxonomy identifiers. For example, to get a summary for human (Taxonomy ID 9606) and SARS-CoV-2 (Taxonomy ID 2697049) in JSON format:

result <- get_pug_rest(identifier = "9606,2697049", namespace = "taxid", domain = "taxonomy", operation = "summary", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Taxonomy
#>   - Namespace: DomainSpecific
#>   - Operation: summary
#>   - Identifier: 9606,2697049
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $TaxonomySummaries
#> $TaxonomySummaries$TaxonomySummary
#> $TaxonomySummaries$TaxonomySummary[[1]]
#> $TaxonomySummaries$TaxonomySummary[[1]]$TaxonomyID
#> [1] 9606
#> 
#> $TaxonomySummaries$TaxonomySummary[[1]]$ScientificName
#> [1] "Homo sapiens"
#> 
#> $TaxonomySummaries$TaxonomySummary[[1]]$CommonName
#> [1] "human"
#> 
#> $TaxonomySummaries$TaxonomySummary[[1]]$Rank
#> [1] "species"
#> 
#> $TaxonomySummaries$TaxonomySummary[[1]]$RankedLineage
#>      Species        Genus       Family        Order        Class       Phylum 
#>           ""       "Homo"  "Hominidae"   "Primates"   "Mammalia"   "Chordata" 
#>      Kingdom Superkingdom 
#>    "Metazoa"  "Eukaryota" 
#> 
#> $TaxonomySummaries$TaxonomySummary[[1]]$Synonym
#> [1] "Homo sapiens Linnaeus, 1758" "Homo sapiens"               
#> [3] "human"                      
#> 
#> 
#> $TaxonomySummaries$TaxonomySummary[[2]]
#> $TaxonomySummaries$TaxonomySummary[[2]]$TaxonomyID
#> [1] 2697049
#> 
#> $TaxonomySummaries$TaxonomySummary[[2]]$ScientificName
#> [1] "Severe acute respiratory syndrome coronavirus 2"
#> 
#> $TaxonomySummaries$TaxonomySummary[[2]]$CommonName
#> [1] ""
#> 
#> $TaxonomySummaries$TaxonomySummary[[2]]$Rank
#> [1] "no rank"
#> 
#> $TaxonomySummaries$TaxonomySummary[[2]]$RankedLineage
#>                                                 Species 
#> "Severe acute respiratory syndrome-related coronavirus" 
#>                                                   Genus 
#>                                       "Betacoronavirus" 
#>                                                  Family 
#>                                         "Coronaviridae" 
#>                                                   Order 
#>                                           "Nidovirales" 
#>                                                   Class 
#>                                       "Pisoniviricetes" 
#>                                                  Phylum 
#>                                          "Pisuviricota" 
#>                                                 Kingdom 
#>                                         "Orthornavirae" 
#>                                            Superkingdom 
#>                                               "Viruses" 
#> 
#> $TaxonomySummaries$TaxonomySummary[[2]]$Synonym
#> [1] "2019-nCoV"                                      
#> [2] "COVID-19 virus"                                 
#> [3] "HCoV-19"                                        
#> [4] "Human coronavirus 2019"                         
#> [5] "SARS-2"                                         
#> [6] "SARS2"                                          
#> [7] "SARS-CoV2"                                      
#> [8] "Severe acute respiratory syndrome coronavirus 2"

By Taxonomy Synonym: Access taxonomy data using synonyms like scientific or common names. For example, for Homo sapiens:

result <- get_pug_rest(identifier = "Homo sapiens", namespace = "synonym", domain = "taxonomy", operation = "summary", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Taxonomy
#>   - Namespace: DomainSpecific
#>   - Operation: summary
#>   - Identifier: Homo sapiens
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result) 
#> $TaxonomySummaries
#> $TaxonomySummaries$TaxonomySummary
#> $TaxonomySummaries$TaxonomySummary[[1]]
#> $TaxonomySummaries$TaxonomySummary[[1]]$TaxonomyID
#> [1] 9606
#> 
#> $TaxonomySummaries$TaxonomySummary[[1]]$ScientificName
#> [1] "Homo sapiens"
#> 
#> $TaxonomySummaries$TaxonomySummary[[1]]$CommonName
#> [1] "human"
#> 
#> $TaxonomySummaries$TaxonomySummary[[1]]$Rank
#> [1] "species"
#> 
#> $TaxonomySummaries$TaxonomySummary[[1]]$RankedLineage
#>      Species        Genus       Family        Order        Class       Phylum 
#>           ""       "Homo"  "Hominidae"   "Primates"   "Mammalia"   "Chordata" 
#>      Kingdom Superkingdom 
#>    "Metazoa"  "Eukaryota" 
#> 
#> $TaxonomySummaries$TaxonomySummary[[1]]$Synonym
#> [1] "Homo sapiens Linnaeus, 1758" "Homo sapiens"               
#> [3] "human"

2. Available Taxonomy Data:

Taxonomy Summary: Returns a summary including TaxonomyID, ScientificName, CommonName, Rank, RankedLineage, and Synonyms. For example:

result <- get_pug_rest(identifier = "9606,10090,10116", namespace = "taxid", domain = "taxonomy", operation = "summary", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Taxonomy
#>   - Namespace: DomainSpecific
#>   - Operation: summary
#>   - Identifier: 9606,10090,10116
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $TaxonomySummaries
#> $TaxonomySummaries$TaxonomySummary
#> $TaxonomySummaries$TaxonomySummary[[1]]
#> $TaxonomySummaries$TaxonomySummary[[1]]$TaxonomyID
#> [1] 9606
#> 
#> $TaxonomySummaries$TaxonomySummary[[1]]$ScientificName
#> [1] "Homo sapiens"
#> 
#> $TaxonomySummaries$TaxonomySummary[[1]]$CommonName
#> [1] "human"
#> 
#> $TaxonomySummaries$TaxonomySummary[[1]]$Rank
#> [1] "species"
#> 
#> $TaxonomySummaries$TaxonomySummary[[1]]$RankedLineage
#>      Species        Genus       Family        Order        Class       Phylum 
#>           ""       "Homo"  "Hominidae"   "Primates"   "Mammalia"   "Chordata" 
#>      Kingdom Superkingdom 
#>    "Metazoa"  "Eukaryota" 
#> 
#> $TaxonomySummaries$TaxonomySummary[[1]]$Synonym
#> [1] "Homo sapiens Linnaeus, 1758" "Homo sapiens"               
#> [3] "human"                      
#> 
#> 
#> $TaxonomySummaries$TaxonomySummary[[2]]
#> $TaxonomySummaries$TaxonomySummary[[2]]$TaxonomyID
#> [1] 10090
#> 
#> $TaxonomySummaries$TaxonomySummary[[2]]$ScientificName
#> [1] "Mus musculus"
#> 
#> $TaxonomySummaries$TaxonomySummary[[2]]$CommonName
#> [1] "house mouse"
#> 
#> $TaxonomySummaries$TaxonomySummary[[2]]$Rank
#> [1] "species"
#> 
#> $TaxonomySummaries$TaxonomySummary[[2]]$RankedLineage
#>      Species        Genus       Family        Order        Class       Phylum 
#>           ""        "Mus"    "Muridae"   "Rodentia"   "Mammalia"   "Chordata" 
#>      Kingdom Superkingdom 
#>    "Metazoa"  "Eukaryota" 
#> 
#> $TaxonomySummaries$TaxonomySummary[[2]]$Synonym
#> [1] "house mouse"                 "mouse"                      
#> [3] "Mus musculus Linnaeus, 1758" "Mus musculus"               
#> 
#> 
#> $TaxonomySummaries$TaxonomySummary[[3]]
#> $TaxonomySummaries$TaxonomySummary[[3]]$TaxonomyID
#> [1] 10116
#> 
#> $TaxonomySummaries$TaxonomySummary[[3]]$ScientificName
#> [1] "Rattus norvegicus"
#> 
#> $TaxonomySummaries$TaxonomySummary[[3]]$CommonName
#> [1] "Norway rat"
#> 
#> $TaxonomySummaries$TaxonomySummary[[3]]$Rank
#> [1] "species"
#> 
#> $TaxonomySummaries$TaxonomySummary[[3]]$RankedLineage
#>      Species        Genus       Family        Order        Class       Phylum 
#>           ""     "Rattus"    "Muridae"   "Rodentia"   "Mammalia"   "Chordata" 
#>      Kingdom Superkingdom 
#>    "Metazoa"  "Eukaryota" 
#> 
#> $TaxonomySummaries$TaxonomySummary[[3]]$Synonym
#> [1] "brown rat"                       "Mus norvegicus Berkenhout, 1769"
#> [3] "Mus norvegicus"                  "Norway rat"                     
#> [5] "rat"                             "rats"                           
#> [7] "Rattus norvegicus"

Assays and Bioactivities: Retrieves a list of assays (AIDs) associated with a given taxonomy. For example, for SARS-CoV-2:

result <- get_pug_rest(identifier = "2697049", namespace = "taxid", domain = "taxonomy", operation = "aids", output = "TXT")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Taxonomy
#>   - Namespace: DomainSpecific
#>   - Operation: aids
#>   - Identifier: 2697049
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result) 
#>          V1
#> 1   1409578
#> 2   1409579
#> 3   1409582
#> 4   1409585
#> 5   1409588
#> 6   1409589
#> 7   1409590
#> 8   1409594
#> 9   1409595
#> 10  1409598
#> 11  1409599
#> 12  1409602
#> 13  1409603
#> 14  1409605
#> 15  1409606
#> 16  1409607
#> 17  1409608
#> 18  1409614
#> 19  1409623
#> 20  1645758
#> 21  1645759
#> 22  1671498
#> 23  1671499
#> 24  1678482
#> 25  1682556
#> 26  1684795
#> 27  1684805
#> 28  1684808
#> 29  1684809
#> 30  1685583
#> 31  1692496
#> 32  1704258
#> 33  1717739
#> 34  1717742
#> 35  1717748
#> 36  1717755
#> 37  1717812
#> 38  1717813
#> 39  1733128
#> 40  1733183
#> 41  1750792
#> 42  1756674
#> 43  1756676
#> 44  1756677
#> 45  1756960
#> 46  1756961
#> 47  1756962
#> 48  1762039
#> 49  1762040
#> 50  1762041
#> 51  1762042
#> 52  1762043
#> 53  1762044
#> 54  1763053
#> 55  1763054
#> 56  1763571
#> 57  1763573
#> 58  1763925
#> 59  1766061
#> 60  1766062
#> 61  1766065
#> 62  1766066
#> 63  1766070
#> 64  1766122
#> 65  1766126
#> 66  1766127
#> 67  1766128
#> 68  1766129
#> 69  1766130
#> 70  1766166
#> 71  1766167
#> 72  1766168
#> 73  1767844
#> 74  1767845
#> 75  1768968
#> 76  1768969
#> 77  1774049
#> 78  1774051
#> 79  1774052
#> 80  1774053
#> 81  1774054
#> 82  1777358
#> 83  1777359
#> 84  1777360
#> 85  1777361
#> 86  1777362
#> 87  1778630
#> 88  1782697
#> 89  1783387
#> 90  1783391
#> 91  1783393
#> 92  1783396
#> 93  1783398
#> 94  1783399
#> 95  1783400
#> 96  1783420
#> 97  1783421
#> 98  1783422
#> 99  1785765
#> 100 1785767
#> 101 1785768
#> 102 1785769
#> 103 1785770
#> 104 1785771
#> 105 1785772
#> 106 1785773
#> 107 1785774
#> 108 1785775
#> 109 1785776
#> 110 1808127
#> 111 1809725
#> 112 1809727
#> 113 1809728
#> 114 1810094
#> 115 1810095
#> 116 1810096
#> 117 1810097
#> 118 1810098
#> 119 1810099
#> 120 1811315
#> 121 1811318
#> 122 1811334
#> 123 1811336
#> 124 1811337
#> 125 1812897
#> 126 1815250
#> 127 1815252
#> 128 1815257
#> 129 1815261
#> 130 1815328
#> 131 1815329
#> 132 1816643
#> 133 1816646
#> 134 1816648
#> 135 1816650
#> 136 1816677
#> 137 1816678
#> 138 1816679
#> 139 1816680
#> 140 1817679
#> 141 1817680
#> 142 1817681
#> 143 1817683
#> 144 1817714
#> 145 1817715
#> 146 1817716
#> 147 1818936
#> 148 1820302
#> 149 1820303
#> 150 1820306
#> 151 1820307
#> 152 1820344
#> 153 1820345
#> 154 1820346
#> 155 1820417
#> 156 1820419
#> 157 1820425
#> 158 1820426
#> 159 1820428
#> 160 1820429
#> 161 1820434
#> 162 1820437
#> 163 1820447
#> 164 1825216
#> 165 1825217
#> 166 1825218
#> 167 1825219
#> 168 1825220
#> 169 1832331
#> 170 1845235
#> 171 1845237
#> 172 1846469
#> 173 1846470
#> 174 1846471
#> 175 1846472
#> 176 1846473
#> 177 1846487
#> 178 1851895
#> 179 1851900
#> 180 1853884
#> 181 1853885
#> 182 1853886
#> 183 1853887
#> 184 1853888
#> 185 1853889
#> 186 1853890
#> 187 1853891
#> 188 1853892
#> 189 1853893
#> 190 1853894
#> 191 1853895
#> 192 1853896
#> 193 1853897
#> 194 1853898
#> 195 1853899
#> 196 1853900
#> 197 1854357
#> 198 1854360
#> 199 1854363
#> 200 1854437
#> 201 1856553
#> 202 1857250
#> 203 1857252
#> 204 1857253
#> 205 1857254
#> 206 1857255
#> 207 1857878
#> 208 1857879
#> 209 1857880
#> 210 1857881
#> 211 1857882
#> 212 1857884
#> 213 1857885
#> 214 1858559
#> 215 1858562
#> 216 1859992
#> 217 1859993
#> 218 1859994
#> 219 1859995
#> 220 1859998
#> 221 1860001
#> 222 1860002
#> 223 1860003
#> 224 1860004
#> 225 1860005
#> 226 1860006
#> 227 1860007
#> 228 1860008
#> 229 1860009
#> 230 1860012
#> 231 1860014
#> 232 1860015
#> 233 1860016
#> 234 1862231
#> 235 1862232
#> 236 1862233
#> 237 1862234
#> 238 1862235
#> 239 1863307
#> 240 1863308
#> 241 1863309
#> 242 1863314
#> 243 1863315
#> 244 1865408
#> 245 1865409
#> 246 1869094
#> 247 1869096
#> 248 1871176
#> 249 1871186
#> 250 1871187
#> 251 1871188
#> 252 1871195
#> 253 1871196
#> 254 1873612
#> 255 1875154
#> 256 1875161
#> 257 1875162
#> 258 1875163
#> 259 1875164
#> 260 1875166
#> 261 1875882
#> 262 1875889
#> 263 1875890
#> 264 1875896
#> 265 1875897
#> 266 1875908
#> 267 1875986
#> 268 1876053
#> 269 1876098
#> 270 1876253
#> 271 1876316
#> 272 1876321
#> 273 1876328
#> 274 1876330
#> 275 1876331
#> 276 1876332
#> 277 1877262
#> 278 1877267
#> 279 1877268
#> 280 1877269
#> 281 1877270
#> 282 1877271
#> 283 1877272
#> 284 1877273
#> 285 1877274
#> 286 1877275
#> 287 1877276
#> 288 1877277
#> 289 1878326
#> 290 1878327
#> 291 1878328
#> 292 1878329
#> 293 1878336
#> 294 1878337
#> 295 1878338
#> 296 1878353
#> 297 1878355
#> 298 1878356
#> 299 1879911
#> 300 1880205
#> 301 1880957
#> 302 1880958
#> 303 1881678
#> 304 1881681
#> 305 1881688
#> 306 1881695
#> 307 1881721
#> 308 1881729
#> 309 1881730
#> 310 1881733
#> 311 1881734
#> 312 1881735
#> 313 1881736
#> 314 1881737
#> 315 1881740
#> 316 1881741
#> 317 1881745
#> 318 1881747
#> 319 1882572
#> 320 1882573
#> 321 1882574
#> 322 1882575
#> 323 1884002
#> 324 1884004
#> 325 1884008
#> 326 1884010
#> 327 1884014
#> 328 1884019
#> 329 1884022
#> 330 1884029
#> 331 1884032
#> 332 1884044
#> 333 1884126
#> 334 1884127
#> 335 1884558
#> 336 1884560
#> 337 1884562
#> 338 1884564
#> 339 1884566
#> 340 1884568
#> 341 1884570
#> 342 1884572
#> 343 1888678
#> 344 1888679
#> 345 1888680
#> 346 1890667
#> 347 1890668
#> 348 1890669
#> 349 1890670
#> 350 1890671
#> 351 1890673
#> 352 1890674
#> 353 1890675
#> 354 1893718
#> 355 1893719
#> 356 1894685
#> 357 1895996
#> 358 1897958
#> 359 1897968
#> 360 1897970
#> 361 1897972
#> 362 1898047
#> 363 1898048
#> 364 1898049
#> 365 1898371
#> 366 1898372
#> 367 1898373
#> 368 1898386
#> 369 1898457
#> 370 1898461
#> 371 1898547
#> 372 1898748
#> 373 1898754
#> 374 1898765
#> 375 1898766
#> 376 1898773
#> 377 1898774
#> 378 1898775
#> 379 1898779
#> 380 1898782
#> 381 1898783
#> 382 1904972
#> 383 1906772
#> 384 1906784
#> 385 1906785
#> 386 1906786
#> 387 1906787
#> 388 1906788
#> 389 1906789
#> 390 1906802
#> 391 1906803
#> 392 1911673
#> 393 1911674
#> 394 1916354
#> 395 1916961
#> 396 1918729
#> 397 1918735
#> 398 1920272
#> 399 1920273
#> 400 1920276
#> 401 1922108
#> 402 1922110
#> 403 1922114
#> 404 1922118
#> 405 1922120
#> 406 1922122
#> 407 1922123
#> 408 1922125
#> 409 1922126
#> 410 1922131
#> 411 1922132
#> 412 1922133
#> 413 1922135
#> 414 1922136
#> 415 1922137
#> 416 1922139
#> 417 1922142
#> 418 1922144
#> 419 1922145
#> 420 1922147
#> 421 1922149
#> 422 1922999
#> 423 1923922
#> 424 1923923
#> 425 1923924
#> 426 1923931
#> 427 1923935
#> 428 1923952
#> 429 1926781
#> 430 1927265
#> 431 1927280
#> 432 1927286
#> 433 1928658
#> 434 1928660
#> 435 1928661
#> 436 1928667
#> 437 1928668
#> 438 1928669
#> 439 1928670
#> 440 1929028
#> 441 1929044
#> 442 1929691
#> 443 1929692
#> 444 1929693
#> 445 1931760
#> 446 1942232
#> 447 1942235
#> 448 1942239
#> 449 1942534
#> 450 1942540
#> 451 1942547
#> 452 1942556
#> 453 1942759
#> 454 1943742
#> 455 1943744
#> 456 1943746
#> 457 1943750
#> 458 1943779
#> 459 1943781
#> 460 1946884
#> 461 1946886
#> 462 1946932
#> 463 1946933
#> 464 1946937
#> 465 1946938
#> 466 1946939
#> 467 1948588
#> 468 1948591
#> 469 1951065
#> 470 1951067
#> 471 1951075
#> 472 1951104
#> 473 1951111
#> 474 1951112
#> 475 1951115
#> 476 1951510
#> 477 1951513
#> 478 1952452
#> 479 1952454
#> 480 1954264
#> 481 1954265
#> 482 1954267
#> 483 1955375
#> 484 1955377
#> 485 1955378
#> 486 1955380
#> 487 1955381
#> 488 1955384
#> 489 1955385
#> 490 1956257
#> 491 1956689
#> 492 1962013

To aggregate concise bioactivity data from each AID:

result <- get_pug_rest(identifier = "1409578", namespace = "aid", domain = "assay", operation = "concise", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Assay
#>   - Namespace: AID
#>   - Operation: concise
#>   - Identifier: 1409578
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $Table
#> $Table$Columns
#> $Table$Columns$Column
#>  [1] "AID"                 "SID"                 "CID"                
#>  [4] "Activity Outcome"    "Target Accession"    "Target GeneID"      
#>  [7] "Activity Value [uM]" "Activity Name"       "Assay Name"         
#> [10] "Assay Type"          "PubMed ID"           "RNAi"               
#> 
#> 
#> $Table$Row
#> $Table$Row[[1]]
#> $Table$Row[[1]]$Cell
#>  [1] "1409578"                                                                                                                                                    
#>  [2] "103196897"                                                                                                                                                  
#>  [3] "11199915"                                                                                                                                                   
#>  [4] "Active"                                                                                                                                                     
#>  [5] ""                                                                                                                                                           
#>  [6] ""                                                                                                                                                           
#>  [7] "0.22"                                                                                                                                                       
#>  [8] "EC50"                                                                                                                                                       
#>  [9] "Determination of antiviral efficacy in high-content imaging assay in Vero E6 cells infected with SARS-CoV-2 (USA-WA1/2020 isolate) at MOI 0.75 after 24 hrs"
#> [10] "Confirmatory"                                                                                                                                               
#> [11] ""                                                                                                                                                           
#> [12] ""                                                                                                                                                           
#> 
#> 
#> $Table$Row[[2]]
#> $Table$Row[[2]]$Cell
#>  [1] "1409578"                                                                                                                                                    
#>  [2] "103224052"                                                                                                                                                  
#>  [3] "2247"                                                                                                                                                       
#>  [4] "Active"                                                                                                                                                     
#>  [5] ""                                                                                                                                                           
#>  [6] ""                                                                                                                                                           
#>  [7] "1.1"                                                                                                                                                        
#>  [8] "EC50"                                                                                                                                                       
#>  [9] "Determination of antiviral efficacy in high-content imaging assay in Vero E6 cells infected with SARS-CoV-2 (USA-WA1/2020 isolate) at MOI 0.75 after 24 hrs"
#> [10] "Confirmatory"                                                                                                                                               
#> [11] ""                                                                                                                                                           
#> [12] ""                                                                                                                                                           
#> 
#> 
#> $Table$Row[[3]]
#> $Table$Row[[3]]$Cell
#>  [1] "1409578"                                                                                                                                                    
#>  [2] "103246927"                                                                                                                                                  
#>  [3] "208917"                                                                                                                                                     
#>  [4] "Active"                                                                                                                                                     
#>  [5] ""                                                                                                                                                           
#>  [6] ""                                                                                                                                                           
#>  [7] "1.1"                                                                                                                                                        
#>  [8] "EC50"                                                                                                                                                       
#>  [9] "Determination of antiviral efficacy in high-content imaging assay in Vero E6 cells infected with SARS-CoV-2 (USA-WA1/2020 isolate) at MOI 0.75 after 24 hrs"
#> [10] "Confirmatory"                                                                                                                                               
#> [11] ""                                                                                                                                                           
#> [12] ""                                                                                                                                                           
#> 
#> 
#> $Table$Row[[4]]
#> $Table$Row[[4]]$Cell
#>  [1] "1409578"                                                                                                                                                    
#>  [2] "103281094"                                                                                                                                                  
#>  [3] "9801987"                                                                                                                                                    
#>  [4] "Active"                                                                                                                                                     
#>  [5] ""                                                                                                                                                           
#>  [6] ""                                                                                                                                                           
#>  [7] "0.75"                                                                                                                                                       
#>  [8] "EC50"                                                                                                                                                       
#>  [9] "Determination of antiviral efficacy in high-content imaging assay in Vero E6 cells infected with SARS-CoV-2 (USA-WA1/2020 isolate) at MOI 0.75 after 24 hrs"
#> [10] "Confirmatory"                                                                                                                                               
#> [11] ""                                                                                                                                                           
#> [12] ""                                                                                                                                                           
#> 
#> 
#> $Table$Row[[5]]
#> $Table$Row[[5]]$Cell
#>  [1] "1409578"                                                                                                                                                    
#>  [2] "103368147"                                                                                                                                                  
#>  [3] "6476696"                                                                                                                                                    
#>  [4] "Active"                                                                                                                                                     
#>  [5] ""                                                                                                                                                           
#>  [6] ""                                                                                                                                                           
#>  [7] "0.25"                                                                                                                                                       
#>  [8] "EC50"                                                                                                                                                       
#>  [9] "Determination of antiviral efficacy in high-content imaging assay in Vero E6 cells infected with SARS-CoV-2 (USA-WA1/2020 isolate) at MOI 0.75 after 24 hrs"
#> [10] "Confirmatory"                                                                                                                                               
#> [11] ""                                                                                                                                                           
#> [12] ""                                                                                                                                                           
#> 
#> 
#> $Table$Row[[6]]
#> $Table$Row[[6]]$Cell
#>  [1] "1409578"                                                                                                                                                    
#>  [2] "103389209"                                                                                                                                                  
#>  [3] "10316203"                                                                                                                                                   
#>  [4] "Active"                                                                                                                                                     
#>  [5] ""                                                                                                                                                           
#>  [6] ""                                                                                                                                                           
#>  [7] "1.2"                                                                                                                                                        
#>  [8] "EC50"                                                                                                                                                       
#>  [9] "Determination of antiviral efficacy in high-content imaging assay in Vero E6 cells infected with SARS-CoV-2 (USA-WA1/2020 isolate) at MOI 0.75 after 24 hrs"
#> [10] "Confirmatory"                                                                                                                                               
#> [11] ""                                                                                                                                                           
#> [12] ""                                                                                                                                                           
#> 
#> 
#> $Table$Row[[7]]
#> $Table$Row[[7]]$Cell
#>  [1] "1409578"                                                                                                                                                    
#>  [2] "103439840"                                                                                                                                                  
#>  [3] "73078"                                                                                                                                                      
#>  [4] "Active"                                                                                                                                                     
#>  [5] ""                                                                                                                                                           
#>  [6] ""                                                                                                                                                           
#>  [7] "1.1"                                                                                                                                                        
#>  [8] "EC50"                                                                                                                                                       
#>  [9] "Determination of antiviral efficacy in high-content imaging assay in Vero E6 cells infected with SARS-CoV-2 (USA-WA1/2020 isolate) at MOI 0.75 after 24 hrs"
#> [10] "Confirmatory"                                                                                                                                               
#> [11] ""                                                                                                                                                           
#> [12] ""                                                                                                                                                           
#> 
#> 
#> $Table$Row[[8]]
#> $Table$Row[[8]]$Cell
#>  [1] "1409578"                                                                                                                                                    
#>  [2] "103467980"                                                                                                                                                  
#>  [3] "11591924"                                                                                                                                                   
#>  [4] "Active"                                                                                                                                                     
#>  [5] ""                                                                                                                                                           
#>  [6] ""                                                                                                                                                           
#>  [7] "1.2"                                                                                                                                                        
#>  [8] "EC50"                                                                                                                                                       
#>  [9] "Determination of antiviral efficacy in high-content imaging assay in Vero E6 cells infected with SARS-CoV-2 (USA-WA1/2020 isolate) at MOI 0.75 after 24 hrs"
#> [10] "Confirmatory"                                                                                                                                               
#> [11] ""                                                                                                                                                           
#> [12] ""                                                                                                                                                           
#> 
#> 
#> $Table$Row[[9]]
#> $Table$Row[[9]]$Cell
#>  [1] "1409578"                                                                                                                                                    
#>  [2] "103490076"                                                                                                                                                  
#>  [3] "15984102"                                                                                                                                                   
#>  [4] "Active"                                                                                                                                                     
#>  [5] ""                                                                                                                                                           
#>  [6] ""                                                                                                                                                           
#>  [7] "0.95"                                                                                                                                                       
#>  [8] "EC50"                                                                                                                                                       
#>  [9] "Determination of antiviral efficacy in high-content imaging assay in Vero E6 cells infected with SARS-CoV-2 (USA-WA1/2020 isolate) at MOI 0.75 after 24 hrs"
#> [10] "Confirmatory"                                                                                                                                               
#> [11] ""                                                                                                                                                           
#> [12] ""                                                                                                                                                           
#> 
#> 
#> $Table$Row[[10]]
#> $Table$Row[[10]]$Cell
#>  [1] "1409578"                                                                                                                                                    
#>  [2] "103626512"                                                                                                                                                  
#>  [3] "44579921"                                                                                                                                                   
#>  [4] "Active"                                                                                                                                                     
#>  [5] ""                                                                                                                                                           
#>  [6] ""                                                                                                                                                           
#>  [7] "1.6"                                                                                                                                                        
#>  [8] "EC50"                                                                                                                                                       
#>  [9] "Determination of antiviral efficacy in high-content imaging assay in Vero E6 cells infected with SARS-CoV-2 (USA-WA1/2020 isolate) at MOI 0.75 after 24 hrs"
#> [10] "Confirmatory"                                                                                                                                               
#> [11] ""                                                                                                                                                           
#> [12] ""                                                                                                                                                           
#> 
#> 
#> $Table$Row[[11]]
#> $Table$Row[[11]]$Cell
#>  [1] "1409578"                                                                                                                                                    
#>  [2] "381838043"                                                                                                                                                  
#>  [3] "121304016"                                                                                                                                                  
#>  [4] "Active"                                                                                                                                                     
#>  [5] ""                                                                                                                                                           
#>  [6] ""                                                                                                                                                           
#>  [7] "0.62"                                                                                                                                                       
#>  [8] "EC50"                                                                                                                                                       
#>  [9] "Determination of antiviral efficacy in high-content imaging assay in Vero E6 cells infected with SARS-CoV-2 (USA-WA1/2020 isolate) at MOI 0.75 after 24 hrs"
#> [10] "Confirmatory"                                                                                                                                               
#> [11] ""                                                                                                                                                           
#> [12] ""                                                                                                                                                           
#> 
#> 
#> $Table$Row[[12]]
#> $Table$Row[[12]]$Cell
#>  [1] "1409578"                                                                                                                                                    
#>  [2] "404718364"                                                                                                                                                  
#>  [3] "10173277"                                                                                                                                                   
#>  [4] "Active"                                                                                                                                                     
#>  [5] ""                                                                                                                                                           
#>  [6] ""                                                                                                                                                           
#>  [7] "0.023"                                                                                                                                                      
#>  [8] "EC50"                                                                                                                                                       
#>  [9] "Determination of antiviral efficacy in high-content imaging assay in Vero E6 cells infected with SARS-CoV-2 (USA-WA1/2020 isolate) at MOI 0.75 after 24 hrs"
#> [10] "Confirmatory"                                                                                                                                               
#> [11] ""                                                                                                                                                           
#> [12] ""                                                                                                                                                           
#> 
#> 
#> $Table$Row[[13]]
#> $Table$Row[[13]]$Cell
#>  [1] "1409578"                                                                                                                                                    
#>  [2] "405270384"                                                                                                                                                  
#>  [3] "73715817"                                                                                                                                                   
#>  [4] "Active"                                                                                                                                                     
#>  [5] ""                                                                                                                                                           
#>  [6] ""                                                                                                                                                           
#>  [7] "0.19"                                                                                                                                                       
#>  [8] "EC50"                                                                                                                                                       
#>  [9] "Determination of antiviral efficacy in high-content imaging assay in Vero E6 cells infected with SARS-CoV-2 (USA-WA1/2020 isolate) at MOI 0.75 after 24 hrs"
#> [10] "Confirmatory"                                                                                                                                               
#> [11] ""                                                                                                                                                           
#> [12] ""                                                                                                                                                           
#> 
#> 
#> $Table$Row[[14]]
#> $Table$Row[[14]]$Cell
#>  [1] "1409578"                                                                                                                                                    
#>  [2] "405270481"                                                                                                                                                  
#>  [3] "3025960"                                                                                                                                                    
#>  [4] "Active"                                                                                                                                                     
#>  [5] ""                                                                                                                                                           
#>  [6] ""                                                                                                                                                           
#>  [7] "1.2"                                                                                                                                                        
#>  [8] "EC50"                                                                                                                                                       
#>  [9] "Determination of antiviral efficacy in high-content imaging assay in Vero E6 cells infected with SARS-CoV-2 (USA-WA1/2020 isolate) at MOI 0.75 after 24 hrs"
#> [10] "Confirmatory"                                                                                                                                               
#> [11] ""                                                                                                                                                           
#> [12] ""                                                                                                                                                           
#> 
#> 
#> $Table$Row[[15]]
#> $Table$Row[[15]]$Cell
#>  [1] "1409578"                                                                                                                                                    
#>  [2] "405270549"                                                                                                                                                  
#>  [3] "11527774"                                                                                                                                                   
#>  [4] "Active"                                                                                                                                                     
#>  [5] ""                                                                                                                                                           
#>  [6] ""                                                                                                                                                           
#>  [7] "0.14"                                                                                                                                                       
#>  [8] "EC50"                                                                                                                                                       
#>  [9] "Determination of antiviral efficacy in high-content imaging assay in Vero E6 cells infected with SARS-CoV-2 (USA-WA1/2020 isolate) at MOI 0.75 after 24 hrs"
#> [10] "Confirmatory"                                                                                                                                               
#> [11] ""                                                                                                                                                           
#> [12] ""                                                                                                                                                           
#> 
#> 
#> $Table$Row[[16]]
#> $Table$Row[[16]]$Cell
#>  [1] "1409578"                                                                                                                                                    
#>  [2] "405270558"                                                                                                                                                  
#>  [3] "70945511"                                                                                                                                                   
#>  [4] "Active"                                                                                                                                                     
#>  [5] ""                                                                                                                                                           
#>  [6] ""                                                                                                                                                           
#>  [7] "0.3"                                                                                                                                                        
#>  [8] "EC50"                                                                                                                                                       
#>  [9] "Determination of antiviral efficacy in high-content imaging assay in Vero E6 cells infected with SARS-CoV-2 (USA-WA1/2020 isolate) at MOI 0.75 after 24 hrs"
#> [10] "Confirmatory"                                                                                                                                               
#> [11] ""                                                                                                                                                           
#> [12] ""                                                                                                                                                           
#> 
#> 
#> $Table$Row[[17]]
#> $Table$Row[[17]]$Cell
#>  [1] "1409578"                                                                                                                                                    
#>  [2] "405270636"                                                                                                                                                  
#>  [3] "21476448"                                                                                                                                                   
#>  [4] "Active"                                                                                                                                                     
#>  [5] ""                                                                                                                                                           
#>  [6] ""                                                                                                                                                           
#>  [7] "0.95"                                                                                                                                                       
#>  [8] "EC50"                                                                                                                                                       
#>  [9] "Determination of antiviral efficacy in high-content imaging assay in Vero E6 cells infected with SARS-CoV-2 (USA-WA1/2020 isolate) at MOI 0.75 after 24 hrs"
#> [10] "Confirmatory"                                                                                                                                               
#> [11] ""                                                                                                                                                           
#> [12] ""                                                                                                                                                           
#> 
#> 
#> $Table$Row[[18]]
#> $Table$Row[[18]]$Cell
#>  [1] "1409578"                                                                                                                                                    
#>  [2] "405270669"                                                                                                                                                  
#>  [3] "11582982"                                                                                                                                                   
#>  [4] "Active"                                                                                                                                                     
#>  [5] ""                                                                                                                                                           
#>  [6] ""                                                                                                                                                           
#>  [7] "0.5"                                                                                                                                                        
#>  [8] "EC50"                                                                                                                                                       
#>  [9] "Determination of antiviral efficacy in high-content imaging assay in Vero E6 cells infected with SARS-CoV-2 (USA-WA1/2020 isolate) at MOI 0.75 after 24 hrs"
#> [10] "Confirmatory"                                                                                                                                               
#> [11] ""                                                                                                                                                           
#> [12] ""

These methods offer a streamlined and efficient way to access and analyze taxonomy-related data in PubChem, supporting a wide range of research applications in biology, pharmacology, environmental science, and related fields.

3.8. Cell Lines

PubChem’s PUG REST service offers a valuable resource for accessing detailed information about various cell lines, crucial for research in cellular biology, pharmacology, and related fields. Here’s how to effectively use PUG REST for cell line-related queries:

1. Cell Line Input Methods:

By Cell Line Accession: Utilize Cellosaurus and ChEMBL cell line accessions for precise data retrieval. For example:

result <- get_pug_rest(identifier = "CHEMBL3308376,CVCL_0045", namespace = "cellacc", domain = "cell", operation = "summary", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Cell
#>   - Namespace: DomainSpecific
#>   - Operation: summary
#>   - Identifier: CHEMBL3308376,CVCL_0045
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $CellSummaries
#> $CellSummaries$CellSummary
#> $CellSummaries$CellSummary[[1]]
#> $CellSummaries$CellSummary[[1]]$CellAccession
#> [1] "CVCL_0030"
#> 
#> $CellSummaries$CellSummary[[1]]$Name
#> [1] "HeLa"
#> 
#> $CellSummaries$CellSummary[[1]]$Sex
#> [1] "Female"
#> 
#> $CellSummaries$CellSummary[[1]]$Category
#> [1] "Cancer cell line"
#> 
#> $CellSummaries$CellSummary[[1]]$SourceTissue
#> [1] "uterine cervix"
#> 
#> $CellSummaries$CellSummary[[1]]$SourceTaxonomyID
#> [1] 9606
#> 
#> $CellSummaries$CellSummary[[1]]$SourceOrganism
#> [1] "Homo sapiens (human)"
#> 
#> $CellSummaries$CellSummary[[1]]$Synonym
#> [1] "HELA"                  "Hela"                  "He La"                
#> [4] "He-La"                 "HeLa-CCL2"             "Henrietta Lacks cells"
#> [7] "Helacyton gartleri"   
#> 
#> 
#> $CellSummaries$CellSummary[[2]]
#> $CellSummaries$CellSummary[[2]]$CellAccession
#> [1] "CVCL_0045"
#> 
#> $CellSummaries$CellSummary[[2]]$Name
#> [1] "HEK293"
#> 
#> $CellSummaries$CellSummary[[2]]$Sex
#> [1] "Female"
#> 
#> $CellSummaries$CellSummary[[2]]$Category
#> [1] "Transformed cell line"
#> 
#> $CellSummaries$CellSummary[[2]]$SourceTissue
#> [1] "kidney"
#> 
#> $CellSummaries$CellSummary[[2]]$SourceTaxonomyID
#> [1] 9606
#> 
#> $CellSummaries$CellSummary[[2]]$SourceOrganism
#> [1] "Homo sapiens (human)"
#> 
#> $CellSummaries$CellSummary[[2]]$Synonym
#>  [1] "Hek293"                     "HEK-293"                   
#>  [3] "HEK/293"                    "HEK 293"                   
#>  [5] "HEK;293"                    "293"                       
#>  [7] "293 HEK"                    "293 Ad5"                   
#>  [9] "Graham 293"                 "Graham-293"                
#> [11] "Human Embryonic Kidney 293"

By Cell Line Synonym: Access data using cell line names or other synonyms. For instance, for the HeLa cell line:

result <- get_pug_rest(identifier = "HeLa", namespace = "synonym", domain = "cell", operation = "summary", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Cell
#>   - Namespace: DomainSpecific
#>   - Operation: summary
#>   - Identifier: HeLa
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $CellSummaries
#> $CellSummaries$CellSummary
#> $CellSummaries$CellSummary[[1]]
#> $CellSummaries$CellSummary[[1]]$CellAccession
#> [1] "CVCL_0030"
#> 
#> $CellSummaries$CellSummary[[1]]$Name
#> [1] "HeLa"
#> 
#> $CellSummaries$CellSummary[[1]]$Sex
#> [1] "Female"
#> 
#> $CellSummaries$CellSummary[[1]]$Category
#> [1] "Cancer cell line"
#> 
#> $CellSummaries$CellSummary[[1]]$SourceTissue
#> [1] "uterine cervix"
#> 
#> $CellSummaries$CellSummary[[1]]$SourceTaxonomyID
#> [1] 9606
#> 
#> $CellSummaries$CellSummary[[1]]$SourceOrganism
#> [1] "Homo sapiens (human)"
#> 
#> $CellSummaries$CellSummary[[1]]$Synonym
#> [1] "HELA"                  "Hela"                  "He La"                
#> [4] "He-La"                 "HeLa-CCL2"             "Henrietta Lacks cells"
#> [7] "Helacyton gartleri"

2. Available Cell Line Data:

Cell Line Summary: Provides a comprehensive overview including CellAccession, Name, Sex, Category, SourceTissue, SourceTaxonomyID, SourceOrganism, and Synonyms. For example:

result <- get_pug_rest(identifier = "CVCL_0030,CVCL_0045", namespace = "cellacc", domain = "cell", operation = "summary", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Cell
#>   - Namespace: DomainSpecific
#>   - Operation: summary
#>   - Identifier: CVCL_0030,CVCL_0045
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $CellSummaries
#> $CellSummaries$CellSummary
#> $CellSummaries$CellSummary[[1]]
#> $CellSummaries$CellSummary[[1]]$CellAccession
#> [1] "CVCL_0030"
#> 
#> $CellSummaries$CellSummary[[1]]$Name
#> [1] "HeLa"
#> 
#> $CellSummaries$CellSummary[[1]]$Sex
#> [1] "Female"
#> 
#> $CellSummaries$CellSummary[[1]]$Category
#> [1] "Cancer cell line"
#> 
#> $CellSummaries$CellSummary[[1]]$SourceTissue
#> [1] "uterine cervix"
#> 
#> $CellSummaries$CellSummary[[1]]$SourceTaxonomyID
#> [1] 9606
#> 
#> $CellSummaries$CellSummary[[1]]$SourceOrganism
#> [1] "Homo sapiens (human)"
#> 
#> $CellSummaries$CellSummary[[1]]$Synonym
#> [1] "HELA"                  "Hela"                  "He La"                
#> [4] "He-La"                 "HeLa-CCL2"             "Henrietta Lacks cells"
#> [7] "Helacyton gartleri"   
#> 
#> 
#> $CellSummaries$CellSummary[[2]]
#> $CellSummaries$CellSummary[[2]]$CellAccession
#> [1] "CVCL_0045"
#> 
#> $CellSummaries$CellSummary[[2]]$Name
#> [1] "HEK293"
#> 
#> $CellSummaries$CellSummary[[2]]$Sex
#> [1] "Female"
#> 
#> $CellSummaries$CellSummary[[2]]$Category
#> [1] "Transformed cell line"
#> 
#> $CellSummaries$CellSummary[[2]]$SourceTissue
#> [1] "kidney"
#> 
#> $CellSummaries$CellSummary[[2]]$SourceTaxonomyID
#> [1] 9606
#> 
#> $CellSummaries$CellSummary[[2]]$SourceOrganism
#> [1] "Homo sapiens (human)"
#> 
#> $CellSummaries$CellSummary[[2]]$Synonym
#>  [1] "Hek293"                     "HEK-293"                   
#>  [3] "HEK/293"                    "HEK 293"                   
#>  [5] "HEK;293"                    "293"                       
#>  [7] "293 HEK"                    "293 Ad5"                   
#>  [9] "Graham 293"                 "Graham-293"                
#> [11] "Human Embryonic Kidney 293"

Assays and Bioactivities from Cell Line: Retrieves a list of assays (AIDs) tested on a specific cell line. For example, for HeLa:

result <- get_pug_rest(identifier = "HeLa", namespace = "synonym", domain = "cell", operation = "aids", output = "TXT")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Cell
#>   - Namespace: DomainSpecific
#>   - Operation: aids
#>   - Identifier: HeLa
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#>            V1
#> 1        1259
#> 2        1302
#> 3        1374
#> 4        1665
#> 5        1898
#> 6        3506
#> 7        3507
#> 8        3517
#> 9        3518
#> 10       3523
#> 11       3793
#> 12       3798
#> 13       3811
#> 14       3840
#> 15       3852
#> 16       3853
#> 17       3861
#> 18       3865
#> 19       3866
#> 20       3867
#> 21       3868
#> 22       3897
#> 23       3898
#> 24       3899
#> 25       3901
#> 26       3909
#> 27       3934
#> 28       3939
#> 29       4235
#> 30       4236
#> 31       4263
#> 32       4264
#> 33       4265
#> 34       5668
#> 35       6205
#> 36       6208
#> 37       6510
#> 38       6533
#> 39       6534
#> 40       6535
#> 41       6536
#> 42       6537
#> 43       6542
#> 44       6544
#> 45       6547
#> 46       6550
#> 47       6551
#> 48       6552
#> 49       6553
#> 50       6558
#> 51      29738
#> 52      32842
#> 53      42620
#> 54      42621
#> 55      42622
#> 56      51103
#> 57      53964
#> 58      54327
#> 59      54482
#> 60      54483
#> 61      54487
#> 62      54504
#> 63      54505
#> 64      56801
#> 65      56802
#> 66      56804
#> 67      56809
#> 68      56871
#> 69      57063
#> 70      57136
#> 71      57384
#> 72      57385
#> 73      57387
#> 74      70186
#> 75      70354
#> 76      70505
#> 77      70661
#> 78      73604
#> 79      79740
#> 80      79741
#> 81      79743
#> 82      79744
#> 83      79746
#> 84      79747
#> 85      79748
#> 86      79749
#> 87      79750
#> 88      79752
#> 89      79753
#> 90      79754
#> 91      79755
#> 92      79756
#> 93      79757
#> 94      79759
#> 95      79760
#> 96      79761
#> 97      79885
#> 98      79886
#> 99      79887
#> 100     79888
#> 101     79889
#> 102     79890
#> 103     79891
#> 104     79892
#> 105     79893
#> 106     79894
#> 107     79895
#> 108     79896
#> 109     79897
#> 110     79898
#> 111     79899
#> 112     79900
#> 113     79901
#> 114     79902
#> 115     79903
#> 116     79904
#> 117     79905
#> 118     79906
#> 119     79907
#> 120     79908
#> 121     79909
#> 122     79910
#> 123     79911
#> 124     79912
#> 125     79913
#> 126     79914
#> 127     79915
#> 128     79916
#> 129     81365
#> 130     81366
#> 131     81367
#> 132     81368
#> 133     81369
#> 134     81370
#> 135     81375
#> 136     81376
#> 137     81377
#> 138     81887
#> 139     81888
#> 140     84636
#> 141     84637
#> 142     84638
#> 143     84639
#> 144     86317
#> 145     86318
#> 146     86319
#> 147     86320
#> 148     86321
#> 149     86322
#> 150     86323
#> 151     86324
#> 152     86325
#> 153     86326
#> 154     86327
#> 155     86328
#> 156     86329
#> 157     86330
#> 158     86331
#> 159     86332
#> 160     86333
#> 161     86334
#> 162     86335
#> 163     86336
#> 164     86337
#> 165     86338
#> 166     86339
#> 167     86340
#> 168     86341
#> 169     86342
#> 170     86343
#> 171     86344
#> 172     86345
#> 173     86346
#> 174     86347
#> 175     86348
#> 176     86349
#> 177     86350
#> 178     86351
#> 179     86352
#> 180     86353
#> 181     86354
#> 182     86355
#> 183     86356
#> 184     86357
#> 185     86481
#> 186     86482
#> 187     86483
#> 188     86484
#> 189     86485
#> 190     86486
#> 191     86487
#> 192     86488
#> 193     86489
#> 194     86490
#> 195     86491
#> 196     86492
#> 197     86493
#> 198     86494
#> 199     86495
#> 200     86496
#> 201     86497
#> 202     86498
#> 203     86499
#> 204     86500
#> 205     86501
#> 206     86502
#> 207     86503
#> 208     86504
#> 209     86505
#> 210     86506
#> 211     86507
#> 212     86508
#> 213     86509
#> 214     86510
#> 215     86511
#> 216     86512
#> 217     86513
#> 218     86514
#> 219     86515
#> 220     86516
#> 221     86517
#> 222     86518
#> 223     86519
#> 224     86520
#> 225     86521
#> 226     86522
#> 227     86523
#> 228     86524
#> 229     86525
#> 230     86648
#> 231     86649
#> 232     86650
#> 233     86651
#> 234     86652
#> 235     86653
#> 236     86654
#> 237     86655
#> 238     86656
#> 239     86657
#> 240     86658
#> 241     86659
#> 242     86660
#> 243     86661
#> 244     86662
#> 245     86663
#> 246     86664
#> 247     86665
#> 248     86666
#> 249     86667
#> 250     86668
#> 251     86669
#> 252     86670
#> 253     86671
#> 254     86672
#> 255     86673
#> 256     86674
#> 257     86675
#> 258     86676
#> 259     86677
#> 260     86678
#> 261     86679
#> 262     86680
#> 263     86681
#> 264     86682
#> 265     86683
#> 266     86684
#> 267     86685
#> 268     86686
#> 269     86687
#> 270     86688
#> 271     86689
#> 272     86799
#> 273     86800
#> 274     86801
#> 275     86802
#> 276     86803
#> 277     86804
#> 278     86805
#> 279     86806
#> 280     86807
#> 281     86808
#> 282     86809
#> 283     86810
#> 284     86811
#> 285     86812
#> 286     86813
#> 287     86814
#> 288     86815
#> 289     86816
#> 290     86817
#> 291     86818
#> 292     86819
#> 293     86820
#> 294     86821
#> 295     86822
#> 296     86823
#> 297     86824
#> 298     86825
#> 299     86826
#> 300     86827
#> 301     86828
#> 302     86829
#> 303     86830
#> 304     86831
#> 305     86832
#> 306     86833
#> 307     86834
#> 308     86835
#> 309     86836
#> 310     86837
#> 311     86838
#> 312     86839
#> 313     86840
#> 314     86841
#> 315     86842
#> 316     86843
#> 317     86844
#> 318     86969
#> 319     86970
#> 320     86971
#> 321     86972
#> 322     86973
#> 323     86974
#> 324     86975
#> 325     86976
#> 326     86977
#> 327     86978
#> 328     86979
#> 329     86980
#> 330     86981
#> 331     86982
#> 332     86983
#> 333     86984
#> 334     86985
#> 335     86986
#> 336     86987
#> 337     86988
#> 338     86989
#> 339     86990
#> 340     86991
#> 341     86992
#> 342     86993
#> 343     86994
#> 344     86995
#> 345     86996
#> 346     86997
#> 347     86998
#> 348     86999
#> 349     87000
#> 350     87001
#> 351     87002
#> 352     87003
#> 353     87004
#> 354     87005
#> 355     87006
#> 356     87007
#> 357     87008
#> 358     87009
#> 359     87010
#> 360     87011
#> 361     87125
#> 362     87126
#> 363     87127
#> 364     87128
#> 365     87129
#> 366     87130
#> 367     87131
#> 368     87132
#> 369     87133
#> 370     87134
#> 371     87135
#> 372     87136
#> 373     87137
#> 374     87138
#> 375     87139
#> 376     87140
#> 377     87141
#> 378     87142
#> 379     87143
#> 380     87144
#> 381     87145
#> 382     87146
#> 383     87147
#> 384     87148
#> 385     87149
#> 386     87150
#> 387     87151
#> 388     87152
#> 389     87153
#> 390     87154
#> 391     87155
#> 392     87156
#> 393     87157
#> 394     87158
#> 395     87159
#> 396     87160
#> 397     87161
#> 398     87162
#> 399     87163
#> 400     87164
#> 401     87165
#> 402     87166
#> 403     87281
#> 404     87282
#> 405     87283
#> 406     87284
#> 407     87285
#> 408     87286
#> 409     87287
#> 410     87288
#> 411     87289
#> 412     87290
#> 413     87291
#> 414     87292
#> 415     87293
#> 416     87294
#> 417     87295
#> 418     87296
#> 419     87297
#> 420     87298
#> 421     87299
#> 422     87300
#> 423     87301
#> 424     87303
#> 425     87304
#> 426     87305
#> 427     87306
#> 428     87307
#> 429     87308
#> 430     87309
#> 431     87310
#> 432     87311
#> 433     87312
#> 434     87313
#> 435     87314
#> 436     87315
#> 437     87316
#> 438     87317
#> 439     87318
#> 440     87434
#> 441     87435
#> 442     87436
#> 443     87437
#> 444     87438
#> 445     87439
#> 446     87440
#> 447     87441
#> 448     87442
#> 449     87443
#> 450     87444
#> 451     87445
#> 452     87446
#> 453     87447
#> 454     87448
#> 455     87449
#> 456     87450
#> 457     87451
#> 458     87452
#> 459     87453
#> 460     87454
#> 461     87455
#> 462     87456
#> 463     87457
#> 464     87458
#> 465     87459
#> 466     87460
#> 467     87461
#> 468     87462
#> 469     87463
#> 470     87464
#> 471     87465
#> 472     87466
#> 473     87467
#> 474     87468
#> 475     87469
#> 476     87470
#> 477     87471
#> 478     87472
#> 479     87473
#> 480     87474
#> 481     87475
#> 482     87565
#> 483     87566
#> 484     87567
#> 485     87568
#> 486     87569
#> 487     87570
#> 488     87571
#> 489     87572
#> 490     87573
#> 491     87574
#> 492     87575
#> 493     87576
#> 494     87577
#> 495     87578
#> 496     87579
#> 497     87580
#> 498     87581
#> 499     87582
#> 500     87583
#> 501     87584
#> 502     87585
#> 503     87586
#> 504     87587
#> 505     87588
#> 506     87589
#> 507     87590
#> 508     87591
#> 509     87592
#> 510     87593
#> 511     87594
#> 512     87595
#> 513     87596
#> 514     87597
#> 515     87598
#> 516     87599
#> 517     87600
#> 518     87602
#> 519     87603
#> 520     87604
#> 521     87605
#> 522     87606
#> 523     87607
#> 524     87608
#> 525     87609
#> 526     87610
#> 527     87611
#> 528     87612
#> 529     87613
#> 530     87614
#> 531     87615
#> 532     87636
#> 533     87717
#> 534     87718
#> 535     87719
#> 536     87720
#> 537     87721
#> 538     87722
#> 539     87723
#> 540     87724
#> 541     87725
#> 542     87726
#> 543     87727
#> 544     87728
#> 545     87729
#> 546     87730
#> 547     87731
#> 548     87732
#> 549     87733
#> 550     87734
#> 551     87735
#> 552     87736
#> 553     87737
#> 554     87738
#> 555     87739
#> 556     87740
#> 557     87741
#> 558     87742
#> 559     87743
#> 560     87744
#> 561     87745
#> 562     87746
#> 563     87747
#> 564     87748
#> 565     87749
#> 566     87750
#> 567     87751
#> 568     87752
#> 569     87753
#> 570     87754
#> 571     87755
#> 572     87756
#> 573     87757
#> 574     87758
#> 575     87759
#> 576     87760
#> 577     87761
#> 578     87762
#> 579     87763
#> 580     87769
#> 581     87770
#> 582     87771
#> 583     87772
#> 584     87773
#> 585     87774
#> 586     87775
#> 587     87776
#> 588     87777
#> 589     87778
#> 590     87779
#> 591     87780
#> 592     87781
#> 593     87782
#> 594     87783
#> 595     87784
#> 596     87785
#> 597     87786
#> 598     87787
#> 599     87788
#> 600     87789
#> 601     87790
#> 602     87791
#> 603     87792
#> 604     87793
#> 605     87794
#> 606     87795
#> 607     87796
#> 608     87797
#> 609     87798
#> 610     87884
#> 611     87885
#> 612     87886
#> 613     87887
#> 614     87888
#> 615     87889
#> 616     87890
#> 617     87891
#> 618     87892
#> 619     87893
#> 620     87894
#> 621     87895
#> 622     87896
#> 623     87897
#> 624     87898
#> 625     87899
#> 626     87900
#> 627     87901
#> 628     87902
#> 629     87903
#> 630     87904
#> 631     87905
#> 632     87906
#> 633     87907
#> 634     87908
#> 635     87909
#> 636     87910
#> 637     87911
#> 638     87912
#> 639     87913
#> 640     87914
#> 641     87915
#> 642     87916
#> 643     87917
#> 644     87918
#> 645     87919
#> 646     87920
#> 647     87921
#> 648     87922
#> 649     87923
#> 650     87924
#> 651     87925
#> 652     88036
#> 653     88037
#> 654     88038
#> 655     88039
#> 656     88040
#> 657     88041
#> 658     88042
#> 659     88043
#> 660     88044
#> 661     88045
#> 662     88046
#> 663     88047
#> 664     88048
#> 665     88049
#> 666     88050
#> 667     88051
#> 668     88052
#> 669     88053
#> 670     88054
#> 671     88055
#> 672     88056
#> 673     88057
#> 674     88058
#> 675     88059
#> 676     88060
#> 677     88061
#> 678     88062
#> 679     88063
#> 680     88064
#> 681     88065
#> 682     88066
#> 683     88067
#> 684     88068
#> 685     88069
#> 686     88070
#> 687     88071
#> 688     88072
#> 689     88073
#> 690     88074
#> 691     88075
#> 692     88180
#> 693     88181
#> 694     88182
#> 695     88183
#> 696     88184
#> 697     88185
#> 698     88186
#> 699     88187
#> 700     88188
#> 701     88189
#> 702     88190
#> 703     88191
#> 704     88192
#> 705     88193
#> 706     88194
#> 707     88195
#> 708     88196
#> 709     88197
#> 710     88198
#> 711     88199
#> 712     88200
#> 713     88201
#> 714     88202
#> 715     88203
#> 716     88204
#> 717     88205
#> 718     88206
#> 719     88207
#> 720     88208
#> 721     88209
#> 722     88210
#> 723     88211
#> 724     88212
#> 725     88213
#> 726     88214
#> 727     88215
#> 728     88216
#> 729     88217
#> 730     88218
#> 731     88219
#> 732     88220
#> 733     88221
#> 734     88222
#> 735     88223
#> 736     88224
#> 737     88256
#> 738     88295
#> 739     88302
#> 740     88342
#> 741     88343
#> 742     88344
#> 743     88345
#> 744     88347
#> 745     88348
#> 746     88349
#> 747     88350
#> 748     88351
#> 749     88352
#> 750     88353
#> 751     88354
#> 752     88355
#> 753     88356
#> 754     88357
#> 755     88358
#> 756     88359
#> 757     88360
#> 758     88361
#> 759     88362
#> 760     88363
#> 761     88364
#> 762     88365
#> 763     88366
#> 764     88367
#> 765     88368
#> 766     88369
#> 767     88370
#> 768     88371
#> 769     88372
#> 770     88373
#> 771     88374
#> 772     88375
#> 773     88376
#> 774     88377
#> 775     88378
#> 776     88379
#> 777     88380
#> 778     88381
#> 779     88382
#> 780     88383
#> 781     88384
#> 782     88385
#> 783     88386
#> 784     88387
#> 785     88502
#> 786     88503
#> 787     88504
#> 788     88505
#> 789     88506
#> 790     88507
#> 791     88508
#> 792     88509
#> 793     88510
#> 794     88511
#> 795     88512
#> 796     88513
#> 797     88514
#> 798     88515
#> 799     88516
#> 800     88517
#> 801     88518
#> 802     88519
#> 803     88520
#> 804     88521
#> 805     88522
#> 806     88523
#> 807     88524
#> 808     88525
#> 809     88526
#> 810     88527
#> 811     88528
#> 812     88529
#> 813     88530
#> 814     88531
#> 815     88532
#> 816     88533
#> 817     88534
#> 818     88535
#> 819     88536
#> 820     88537
#> 821     88538
#> 822     88539
#> 823     88540
#> 824     88541
#> 825     88542
#> 826     88543
#> 827     88544
#> 828     88545
#> 829     88546
#> 830     88666
#> 831     88667
#> 832     88668
#> 833     88669
#> 834     88670
#> 835     88671
#> 836     88672
#> 837     88673
#> 838     88674
#> 839     88675
#> 840     88676
#> 841     88677
#> 842     88678
#> 843     88679
#> 844     88680
#> 845     88681
#> 846     88682
#> 847     88683
#> 848     88684
#> 849     88685
#> 850     88686
#> 851     88687
#> 852     88688
#> 853     88689
#> 854     88690
#> 855     88691
#> 856     88692
#> 857     88693
#> 858     88694
#> 859     88695
#> 860     88696
#> 861     88697
#> 862     88698
#> 863     88699
#> 864     88700
#> 865     88701
#> 866     88702
#> 867     88703
#> 868     88704
#> 869     88705
#> 870     88706
#> 871     88707
#> 872     88708
#> 873     88709
#> 874     88710
#> 875     88711
#> 876     88712
#> 877     88713
#> 878     88955
#> 879     90356
#> 880     90528
#> 881     91701
#> 882     91702
#> 883     93660
#> 884    102398
#> 885    102399
#> 886    102400
#> 887    102401
#> 888    102402
#> 889    103160
#> 890    103161
#> 891    103162
#> 892    103163
#> 893    103164
#> 894    103165
#> 895    103166
#> 896    103167
#> 897    103168
#> 898    103169
#> 899    103170
#> 900    103171
#> 901    103172
#> 902    103173
#> 903    103174
#> 904    103175
#> 905    103176
#> 906    103177
#> 907    103178
#> 908    103179
#> 909    103311
#> 910    103312
#> 911    103313
#> 912    103314
#> 913    103315
#> 914    103316
#> 915    103318
#> 916    103319
#> 917    103320
#> 918    103321
#> 919    103322
#> 920    103323
#> 921    103324
#> 922    103325
#> 923    103326
#> 924    103327
#> 925    103328
#> 926    103329
#> 927    103330
#> 928    103331
#> 929    103332
#> 930    103333
#> 931    103334
#> 932    103335
#> 933    103336
#> 934    103337
#> 935    103338
#> 936    103339
#> 937    103340
#> 938    103341
#> 939    103342
#> 940    103343
#> 941    106501
#> 942    148873
#> 943    148874
#> 944    148875
#> 945    156711
#> 946    156712
#> 947    156715
#> 948    162232
#> 949    162250
#> 950    162252
#> 951    162253
#> 952    164825
#> 953    167231
#> 954    198215
#> 955    198728
#> 956    199699
#> 957    199700
#> 958    199701
#> 959    199702
#> 960    199703
#> 961    199704
#> 962    199705
#> 963    199706
#> 964    199707
#> 965    199708
#> 966    199709
#> 967    199710
#> 968    199899
#> 969    199900
#> 970    199901
#> 971    199902
#> 972    200014
#> 973    200130
#> 974    200922
#> 975    200923
#> 976    200924
#> 977    210711
#> 978    210714
#> 979    210720
#> 980    210721
#> 981    211288
#> 982    211289
#> 983    211290
#> 984    211291
#> 985    211292
#> 986    211293
#> 987    211500
#> 988    211653
#> 989    211658
#> 990    211659
#> 991    211660
#> 992    211661
#> 993    212296
#> 994    212327
#> 995    212762
#> 996    212764
#> 997    216384
#> 998    216393
#> 999    216407
#> 1000   216534
#> 1001   216537
#> 1002   216544
#> 1003   217366
#> 1004   217367
#> 1005   217372
#> 1006   217380
#> 1007   217381
#> 1008   217382
#> 1009   217521
#> 1010   217530
#> 1011   217531
#> 1012   217984
#> 1013   217990
#> 1014   218003
#> 1015   220034
#> 1016   220035
#> 1017   220036
#> 1018   221145
#> 1019   221146
#> 1020   221626
#> 1021   221627
#> 1022   221813
#> 1023   222132
#> 1024   225768
#> 1025   225769
#> 1026   227069
#> 1027   228058
#> 1028   228059
#> 1029   228429
#> 1030   228576
#> 1031   228577
#> 1032   228578
#> 1033   229227
#> 1034   229228
#> 1035   229229
#> 1036   229230
#> 1037   229234
#> 1038   239013
#> 1039   239088
#> 1040   239093
#> 1041   239094
#> 1042   239185
#> 1043   239276
#> 1044   239346
#> 1045   239580
#> 1046   239954
#> 1047   240505
#> 1048   241010
#> 1049   241331
#> 1050   241691
#> 1051   242043
#> 1052   242068
#> 1053   242342
#> 1054   242363
#> 1055   242368
#> 1056   242378
#> 1057   242599
#> 1058   242629
#> 1059   242687
#> 1060   242704
#> 1061   242722
#> 1062   242790
#> 1063   242793
#> 1064   242817
#> 1065   242818
#> 1066   242827
#> 1067   242832
#> 1068   243130
#> 1069   243132
#> 1070   243383
#> 1071   243441
#> 1072   243474
#> 1073   243825
#> 1074   243913
#> 1075   243951
#> 1076   244674
#> 1077   244676
#> 1078   244716
#> 1079   244717
#> 1080   244765
#> 1081   244821
#> 1082   244859
#> 1083   244865
#> 1084   245935
#> 1085   246030
#> 1086   246036
#> 1087   246254
#> 1088   246262
#> 1089   246385
#> 1090   246457
#> 1091   247123
#> 1092   247473
#> 1093   247474
#> 1094   247559
#> 1095   247578
#> 1096   247584
#> 1097   247605
#> 1098   247662
#> 1099   247689
#> 1100   247734
#> 1101   247753
#> 1102   247772
#> 1103   247797
#> 1104   247881
#> 1105   247882
#> 1106   247922
#> 1107   247933
#> 1108   247998
#> 1109   248093
#> 1110   248144
#> 1111   248148
#> 1112   248242
#> 1113   248243
#> 1114   248269
#> 1115   248326
#> 1116   248475
#> 1117   248527
#> 1118   248537
#> 1119   248676
#> 1120   248684
#> 1121   248786
#> 1122   248799
#> 1123   248841
#> 1124   248842
#> 1125   248843
#> 1126   248844
#> 1127   248845
#> 1128   248846
#> 1129   248878
#> 1130   248879
#> 1131   248880
#> 1132   248881
#> 1133   248882
#> 1134   248913
#> 1135   249084
#> 1136   249085
#> 1137   249178
#> 1138   249261
#> 1139   249265
#> 1140   249268
#> 1141   249452
#> 1142   251317
#> 1143   251319
#> 1144   251734
#> 1145   251738
#> 1146   251739
#> 1147   251740
#> 1148   251741
#> 1149   252139
#> 1150   252375
#> 1151   252386
#> 1152   252584
#> 1153   252626
#> 1154   252954
#> 1155   253291
#> 1156   253292
#> 1157   254401
#> 1158   254583
#> 1159   254607
#> 1160   254646
#> 1161   255345
#> 1162   255346
#> 1163   255347
#> 1164   255652
#> 1165   255749
#> 1166   255816
#> 1167   255866
#> 1168   255874
#> 1169   255896
#> 1170   256016
#> 1171   256284
#> 1172   256285
#> 1173   256287
#> 1174   256292
#> 1175   256297
#> 1176   256298
#> 1177   256333
#> 1178   256334
#> 1179   256746
#> 1180   257360
#> 1181   257364
#> 1182   257888
#> 1183   257899
#> 1184   257900
#> 1185   257901
#> 1186   257931
#> 1187   257932
#> 1188   258074
#> 1189   258765
#> 1190   258766
#> 1191   259358
#> 1192   259362
#> 1193   259366
#> 1194   259369
#> 1195   259514
#> 1196   259518
#> 1197   260365
#> 1198   260417
#> 1199   260418
#> 1200   260523
#> 1201   260524
#> 1202   260660
#> 1203   260969
#> 1204   261532
#> 1205   261725
#> 1206   261726
#> 1207   261727
#> 1208   262010
#> 1209   262126
#> 1210   262202
#> 1211   262687
#> 1212   262825
#> 1213   262844
#> 1214   262953
#> 1215   262954
#> 1216   262955
#> 1217   262956
#> 1218   262957
#> 1219   263796
#> 1220   263797
#> 1221   263798
#> 1222   263930
#> 1223   264027
#> 1224   264033
#> 1225   264053
#> 1226   264148
#> 1227   264209
#> 1228   264268
#> 1229   264269
#> 1230   264270
#> 1231   264271
#> 1232   264272
#> 1233   264273
#> 1234   264274
#> 1235   264275
#> 1236   264276
#> 1237   264277
#> 1238   264278
#> 1239   264279
#> 1240   264280
#> 1241   264281
#> 1242   264282
#> 1243   264283
#> 1244   264284
#> 1245   264285
#> 1246   264286
#> 1247   264287
#> 1248   264288
#> 1249   264289
#> 1250   264290
#> 1251   264291
#> 1252   264292
#> 1253   264293
#> 1254   264294
#> 1255   264295
#> 1256   264296
#> 1257   264297
#> 1258   264298
#> 1259   264299
#> 1260   264300
#> 1261   264301
#> 1262   264302
#> 1263   264303
#> 1264   264529
#> 1265   264530
#> 1266   264533
#> 1267   264534
#> 1268   264982
#> 1269   265379
#> 1270   265388
#> 1271   265389
#> 1272   265390
#> 1273   267601
#> 1274   267602
#> 1275   267710
#> 1276   268212
#> 1277   268535
#> 1278   268704
#> 1279   269034
#> 1280   269488
#> 1281   269635
#> 1282   269636
#> 1283   269637
#> 1284   269638
#> 1285   269639
#> 1286   269668
#> 1287   270162
#> 1288   270163
#> 1289   270213
#> 1290   270399
#> 1291   270445
#> 1292   270446
#> 1293   270657
#> 1294   270822
#> 1295   270900
#> 1296   271075
#> 1297   271182
#> 1298   271188
#> 1299   271189
#> 1300   271413
#> 1301   271414
#> 1302   271415
#> 1303   271416
#> 1304   272290
#> 1305   272308
#> 1306   272769
#> 1307   273211
#> 1308   273212
#> 1309   273213
#> 1310   273253
#> 1311   273255
#> 1312   274079
#> 1313   274081
#> 1314   274117
#> 1315   274148
#> 1316   274997
#> 1317   274998
#> 1318   275003
#> 1319   275007
#> 1320   275010
#> 1321   275013
#> 1322   275015
#> 1323   275017
#> 1324   275071
#> 1325   275072
#> 1326   275088
#> 1327   275867
#> 1328   275868
#> 1329   275869
#> 1330   275870
#> 1331   275925
#> 1332   276006
#> 1333   276697
#> 1334   276700
#> 1335   276701
#> 1336   276702
#> 1337   276855
#> 1338   276856
#> 1339   276950
#> 1340   276951
#> 1341   276952
#> 1342   276953
#> 1343   276954
#> 1344   276955
#> 1345   277280
#> 1346   277832
#> 1347   277976
#> 1348   277977
#> 1349   278417
#> 1350   278860
#> 1351   278861
#> 1352   278867
#> 1353   278869
#> 1354   279326
#> 1355   280071
#> 1356   280079
#> 1357   280193
#> 1358   280194
#> 1359   280196
#> 1360   280204
#> 1361   280246
#> 1362   281111
#> 1363   281112
#> 1364   281113
#> 1365   281114
#> 1366   281115
#> 1367   281240
#> 1368   281241
#> 1369   281242
#> 1370   281337
#> 1371   281338
#> 1372   281340
#> 1373   281341
#> 1374   282003
#> 1375   282769
#> 1376   283987
#> 1377   284030
#> 1378   284040
#> 1379   284041
#> 1380   284207
#> 1381   284208
#> 1382   284287
#> 1383   284289
#> 1384   284519
#> 1385   284540
#> 1386   286454
#> 1387   286623
#> 1388   287274
#> 1389   287837
#> 1390   288359
#> 1391   288360
#> 1392   288364
#> 1393   288365
#> 1394   288446
#> 1395   288671
#> 1396   288672
#> 1397   288673
#> 1398   288674
#> 1399   288675
#> 1400   288676
#> 1401   288677
#> 1402   288678
#> 1403   288679
#> 1404   288680
#> 1405   288681
#> 1406   288682
#> 1407   288738
#> 1408   288840
#> 1409   288846
#> 1410   288929
#> 1411   288930
#> 1412   288931
#> 1413   288941
#> 1414   288942
#> 1415   288943
#> 1416   289013
#> 1417   289060
#> 1418   289176
#> 1419   289177
#> 1420   289178
#> 1421   289179
#> 1422   289259
#> 1423   289264
#> 1424   289789
#> 1425   290469
#> 1426   290474
#> 1427   291037
#> 1428   291039
#> 1429   291076
#> 1430   291746
#> 1431   291829
#> 1432   292436
#> 1433   292437
#> 1434   292438
#> 1435   292439
#> 1436   292440
#> 1437   292441
#> 1438   292442
#> 1439   292443
#> 1440   292444
#> 1441   292445
#> 1442   292448
#> 1443   292454
#> 1444   292675
#> 1445   292676
#> 1446   292677
#> 1447   292678
#> 1448   292679
#> 1449   292937
#> 1450   293059
#> 1451   293249
#> 1452   294074
#> 1453   294244
#> 1454   294517
#> 1455   294531
#> 1456   294826
#> 1457   294827
#> 1458   294838
#> 1459   295408
#> 1460   295409
#> 1461   295410
#> 1462   295755
#> 1463   295757
#> 1464   296517
#> 1465   296522
#> 1466   296523
#> 1467   296940
#> 1468   297005
#> 1469   297237
#> 1470   297238
#> 1471   297239
#> 1472   297312
#> 1473   297317
#> 1474   297325
#> 1475   297470
#> 1476   297471
#> 1477   297472
#> 1478   297473
#> 1479   298655
#> 1480   298659
#> 1481   298661
#> 1482   298739
#> 1483   298796
#> 1484   299281
#> 1485   299422
#> 1486   299461
#> 1487   299462
#> 1488   299526
#> 1489   299527
#> 1490   299709
#> 1491   300008
#> 1492   300369
#> 1493   300456
#> 1494   300457
#> 1495   300458
#> 1496   300459
#> 1497   300460
#> 1498   300461
#> 1499   300489
#> 1500   300690
#> 1501   300691
#> 1502   300692
#> 1503   300701
#> 1504   300832
#> 1505   301139
#> 1506   301211
#> 1507   301366
#> 1508   301367
#> 1509   301525
#> 1510   302013
#> 1511   302385
#> 1512   302817
#> 1513   302855
#> 1514   302866
#> 1515   302871
#> 1516   302872
#> 1517   302873
#> 1518   302874
#> 1519   302875
#> 1520   302876
#> 1521   302877
#> 1522   302878
#> 1523   302879
#> 1524   302880
#> 1525   302881
#> 1526   302882
#> 1527   303094
#> 1528   303095
#> 1529   303096
#> 1530   303229
#> 1531   303230
#> 1532   303232
#> 1533   303237
#> 1534   304536
#> 1535   304537
#> 1536   304538
#> 1537   305458
#> 1538   305572
#> 1539   305809
#> 1540   305850
#> 1541   306006
#> 1542   306007
#> 1543   306008
#> 1544   306009
#> 1545   306014
#> 1546   306016
#> 1547   306017
#> 1548   306018
#> 1549   306019
#> 1550   306020
#> 1551   306021
#> 1552   306022
#> 1553   306023
#> 1554   306024
#> 1555   306025
#> 1556   306830
#> 1557   306831
#> 1558   307321
#> 1559   307424
#> 1560   307643
#> 1561   308244
#> 1562   308319
#> 1563   308522
#> 1564   309182
#> 1565   309183
#> 1566   309356
#> 1567   309377
#> 1568   309396
#> 1569   309397
#> 1570   309598
#> 1571   309637
#> 1572   309667
#> 1573   310065
#> 1574   310123
#> 1575   310124
#> 1576   310180
#> 1577   310228
#> 1578   310363
#> 1579   311261
#> 1580   311262
#> 1581   311331
#> 1582   311336
#> 1583   311521
#> 1584   311630
#> 1585   311766
#> 1586   311999
#> 1587   312073
#> 1588   312074
#> 1589   312195
#> 1590   312196
#> 1591   312197
#> 1592   312198
#> 1593   312199
#> 1594   312200
#> 1595   312201
#> 1596   312202
#> 1597   312203
#> 1598   312204
#> 1599   312205
#> 1600   312206
#> 1601   312207
#> 1602   312208
#> 1603   312209
#> 1604   312210
#> 1605   312211
#> 1606   312212
#> 1607   312213
#> 1608   312214
#> 1609   312215
#> 1610   312216
#> 1611   312217
#> 1612   312218
#> 1613   312370
#> 1614   312939
#> 1615   312946
#> 1616   313206
#> 1617   313207
#> 1618   313208
#> 1619   313664
#> 1620   314058
#> 1621   314063
#> 1622   315517
#> 1623   315518
#> 1624   315519
#> 1625   315520
#> 1626   315521
#> 1627   315546
#> 1628   315561
#> 1629   315569
#> 1630   316764
#> 1631   316850
#> 1632   316851
#> 1633   316852
#> 1634   316853
#> 1635   316854
#> 1636   316855
#> 1637   316858
#> 1638   316859
#> 1639   316875
#> 1640   316884
#> 1641   316928
#> 1642   316942
#> 1643   317174
#> 1644   317178
#> 1645   317478
#> 1646   317535
#> 1647   317536
#> 1648   317537
#> 1649   317538
#> 1650   317539
#> 1651   317540
#> 1652   317541
#> 1653   317542
#> 1654   317814
#> 1655   317815
#> 1656   317816
#> 1657   318363
#> 1658   318588
#> 1659   318597
#> 1660   318733
#> 1661   318736
#> 1662   319509
#> 1663   319510
#> 1664   319511
#> 1665   319519
#> 1666   319520
#> 1667   320267
#> 1668   320287
#> 1669   320288
#> 1670   320294
#> 1671   320371
#> 1672   320372
#> 1673   320373
#> 1674   320374
#> 1675   320375
#> 1676   320376
#> 1677   320445
#> 1678   320446
#> 1679   320447
#> 1680   320448
#> 1681   320449
#> 1682   320450
#> 1683   320451
#> 1684   320452
#> 1685   320453
#> 1686   320454
#> 1687   320455
#> 1688   320456
#> 1689   320457
#> 1690   320458
#> 1691   320459
#> 1692   320460
#> 1693   320461
#> 1694   320462
#> 1695   320463
#> 1696   320464
#> 1697   320465
#> 1698   320466
#> 1699   320467
#> 1700   320468
#> 1701   320469
#> 1702   320473
#> 1703   320475
#> 1704   320476
#> 1705   320477
#> 1706   320478
#> 1707   320479
#> 1708   320480
#> 1709   321366
#> 1710   321367
#> 1711   321368
#> 1712   321369
#> 1713   321370
#> 1714   321371
#> 1715   321372
#> 1716   321373
#> 1717   321374
#> 1718   321824
#> 1719   321838
#> 1720   322145
#> 1721   322405
#> 1722   322485
#> 1723   322913
#> 1724   322919
#> 1725   322920
#> 1726   322921
#> 1727   322922
#> 1728   322923
#> 1729   322924
#> 1730   322925
#> 1731   322926
#> 1732   322927
#> 1733   322928
#> 1734   322929
#> 1735   322930
#> 1736   323178
#> 1737   323179
#> 1738   323587
#> 1739   323589
#> 1740   323591
#> 1741   323593
#> 1742   323638
#> 1743   323641
#> 1744   323642
#> 1745   323646
#> 1746   323647
#> 1747   323648
#> 1748   323649
#> 1749   323650
#> 1750   323651
#> 1751   323652
#> 1752   323653
#> 1753   323654
#> 1754   323655
#> 1755   323656
#> 1756   323657
#> 1757   323658
#> 1758   323997
#> 1759   324001
#> 1760   324905
#> 1761   325553
#> 1762   325581
#> 1763   326173
#> 1764   326910
#> 1765   327127
#> 1766   327269
#> 1767   327271
#> 1768   327273
#> 1769   327329
#> 1770   327335
#> 1771   327367
#> 1772   327541
#> 1773   327542
#> 1774   327543
#> 1775   327652
#> 1776   327673
#> 1777   327963
#> 1778   327964
#> 1779   327970
#> 1780   328805
#> 1781   328885
#> 1782   329144
#> 1783   329145
#> 1784   329146
#> 1785   329148
#> 1786   329150
#> 1787   329152
#> 1788   329296
#> 1789   329355
#> 1790   329356
#> 1791   329357
#> 1792   329435
#> 1793   329436
#> 1794   329437
#> 1795   329438
#> 1796   329439
#> 1797   329440
#> 1798   329445
#> 1799   329726
#> 1800   329802
#> 1801   329957
#> 1802   329961
#> 1803   329962
#> 1804   330649
#> 1805   331133
#> 1806   331618
#> 1807   332247
#> 1808   332251
#> 1809   332392
#> 1810   332393
#> 1811   332394
#> 1812   332395
#> 1813   332519
#> 1814   332520
#> 1815   332521
#> 1816   332657
#> 1817   333345
#> 1818   333399
#> 1819   333433
#> 1820   333437
#> 1821   333502
#> 1822   333698
#> 1823   333743
#> 1824   333817
#> 1825   333818
#> 1826   334172
#> 1827   334176
#> 1828   334215
#> 1829   334216
#> 1830   334217
#> 1831   334218
#> 1832   334278
#> 1833   334763
#> 1834   334920
#> 1835   334930
#> 1836   334932
#> 1837   334982
#> 1838   334983
#> 1839   334984
#> 1840   335543
#> 1841   335640
#> 1842   335672
#> 1843   335955
#> 1844   335957
#> 1845   335964
#> 1846   335965
#> 1847   335966
#> 1848   335967
#> 1849   335968
#> 1850   337076
#> 1851   337102
#> 1852   338805
#> 1853   338960
#> 1854   338970
#> 1855   339796
#> 1856   339797
#> 1857   339800
#> 1858   339801
#> 1859   339802
#> 1860   339996
#> 1861   340023
#> 1862   340025
#> 1863   340026
#> 1864   340661
#> 1865   340844
#> 1866   340970
#> 1867   342768
#> 1868   342769
#> 1869   342770
#> 1870   343443
#> 1871   343663
#> 1872   343664
#> 1873   343689
#> 1874   343690
#> 1875   343691
#> 1876   343694
#> 1877   343695
#> 1878   343698
#> 1879   343699
#> 1880   343700
#> 1881   343701
#> 1882   343705
#> 1883   343706
#> 1884   344125
#> 1885   344230
#> 1886   344236
#> 1887   344463
#> 1888   344541
#> 1889   344664
#> 1890   344805
#> 1891   344806
#> 1892   344807
#> 1893   344808
#> 1894   344809
#> 1895   344810
#> 1896   344811
#> 1897   345361
#> 1898   345925
#> 1899   345926
#> 1900   345927
#> 1901   346017
#> 1902   346019
#> 1903   346248
#> 1904   346797
#> 1905   346800
#> 1906   346958
#> 1907   346959
#> 1908   346960
#> 1909   346961
#> 1910   346962
#> 1911   346963
#> 1912   346964
#> 1913   346965
#> 1914   346966
#> 1915   346967
#> 1916   346968
#> 1917   346969
#> 1918   347038
#> 1919   347039
#> 1920   347040
#> 1921   347041
#> 1922   347042
#> 1923   347043
#> 1924   347044
#> 1925   347045
#> 1926   347046
#> 1927   347047
#> 1928   347048
#> 1929   347049
#> 1930   347050
#> 1931   347051
#> 1932   347052
#> 1933   347053
#> 1934   347054
#> 1935   347055
#> 1936   347056
#> 1937   347057
#> 1938   347058
#> 1939   347059
#> 1940   347060
#> 1941   347061
#> 1942   347069
#> 1943   347070
#> 1944   347071
#> 1945   347072
#> 1946   347073
#> 1947   347074
#> 1948   347075
#> 1949   347076
#> 1950   347077
#> 1951   347078
#> 1952   347079
#> 1953   347080
#> 1954   347081
#> 1955   347082
#> 1956   347083
#> 1957   347084
#> 1958   347764
#> 1959   347766
#> 1960   347767
#> 1961   347768
#> 1962   347772
#> 1963   347773
#> 1964   347774
#> 1965   347775
#> 1966   347776
#> 1967   347777
#> 1968   347778
#> 1969   347779
#> 1970   347780
#> 1971   347781
#> 1972   347782
#> 1973   347783
#> 1974   347784
#> 1975   347785
#> 1976   347786
#> 1977   347966
#> 1978   348478
#> 1979   348479
#> 1980   348480
#> 1981   348481
#> 1982   348482
#> 1983   348483
#> 1984   348484
#> 1985   348485
#> 1986   348486
#> 1987   348487
#> 1988   348488
#> 1989   348793
#> 1990   349129
#> 1991   349132
#> 1992   349133
#> 1993   349332
#> 1994   349338
#> 1995   349464
#> 1996   349467
#> 1997   349468
#> 1998   349889
#> 1999   349890
#> 2000   349891
#> 2001   350222
#> 2002   350231
#> 2003   350232
#> 2004   350233
#> 2005   350234
#> 2006   350235
#> 2007   350236
#> 2008   350239
#> 2009   350240
#> 2010   350324
#> 2011   350578
#> 2012   350579
#> 2013   350581
#> 2014   350714
#> 2015   350715
#> 2016   350722
#> 2017   351110
#> 2018   351581
#> 2019   351838
#> 2020   351841
#> 2021   352122
#> 2022   352128
#> 2023   352129
#> 2024   352130
#> 2025   352131
#> 2026   352132
#> 2027   352133
#> 2028   352134
#> 2029   352135
#> 2030   352136
#> 2031   352137
#> 2032   352138
#> 2033   352139
#> 2034   352140
#> 2035   352141
#> 2036   352142
#> 2037   352143
#> 2038   352144
#> 2039   352145
#> 2040   352146
#> 2041   352308
#> 2042   352309
#> 2043   352310
#> 2044   352311
#> 2045   352312
#> 2046   352597
#> 2047   352598
#> 2048   352599
#> 2049   352600
#> 2050   352601
#> 2051   352602
#> 2052   352603
#> 2053   352604
#> 2054   352605
#> 2055   352606
#> 2056   352607
#> 2057   352608
#> 2058   352743
#> 2059   353082
#> 2060   353125
#> 2061   353126
#> 2062   353127
#> 2063   353128
#> 2064   353129
#> 2065   353130
#> 2066   353190
#> 2067   353304
#> 2068   353352
#> 2069   353365
#> 2070   353366
#> 2071   353591
#> 2072   353592
#> 2073   353595
#> 2074   353597
#> 2075   353962
#> 2076   353964
#> 2077   353965
#> 2078   353967
#> 2079   353968
#> 2080   353969
#> 2081   353970
#> 2082   353971
#> 2083   353972
#> 2084   353973
#> 2085   353974
#> 2086   353975
#> 2087   353976
#> 2088   353977
#> 2089   353978
#> 2090   353979
#> 2091   353980
#> 2092   353981
#> 2093   353982
#> 2094   353983
#> 2095   353984
#> 2096   353985
#> 2097   353986
#> 2098   353987
#> 2099   353988
#> 2100   353989
#> 2101   353990
#> 2102   353991
#> 2103   353992
#> 2104   353993
#> 2105   353994
#> 2106   353995
#> 2107   353996
#> 2108   353997
#> 2109   354195
#> 2110   354196
#> 2111   354197
#> 2112   354198
#> 2113   354199
#> 2114   354200
#> 2115   354201
#> 2116   354202
#> 2117   354203
#> 2118   354204
#> 2119   354205
#> 2120   354206
#> 2121   354207
#> 2122   354208
#> 2123   354209
#> 2124   354210
#> 2125   354211
#> 2126   354212
#> 2127   354213
#> 2128   354214
#> 2129   354215
#> 2130   354216
#> 2131   354217
#> 2132   354218
#> 2133   354219
#> 2134   354220
#> 2135   354221
#> 2136   354222
#> 2137   354223
#> 2138   354224
#> 2139   354225
#> 2140   354226
#> 2141   354227
#> 2142   354228
#> 2143   354229
#> 2144   354230
#> 2145   354231
#> 2146   354232
#> 2147   354233
#> 2148   354234
#> 2149   354235
#> 2150   355399
#> 2151   355412
#> 2152   355718
#> 2153   355864
#> 2154   356106
#> 2155   356107
#> 2156   356379
#> 2157   356397
#> 2158   356410
#> 2159   356549
#> 2160   356581
#> 2161   357047
#> 2162   357100
#> 2163   357101
#> 2164   357227
#> 2165   357264
#> 2166   357917
#> 2167   357918
#> 2168   357919
#> 2169   357920
#> 2170   358244
#> 2171   358470
#> 2172   358471
#> 2173   358472
#> 2174   358473
#> 2175   358663
#> 2176   358664
#> 2177   358667
#> 2178   358668
#> 2179   358913
#> 2180   358975
#> 2181   358976
#> 2182   359887
#> 2183   360015
#> 2184   360016
#> 2185   360215
#> 2186   360387
#> 2187   360620
#> 2188   360621
#> 2189   360622
#> 2190   360623
#> 2191   360624
#> 2192   360625
#> 2193   360626
#> 2194   361125
#> 2195   361236
#> 2196   361406
#> 2197   361454
#> 2198   361610
#> 2199   361660
#> 2200   361904
#> 2201   361905
#> 2202   361906
#> 2203   361907
#> 2204   361908
#> 2205   361909
#> 2206   361910
#> 2207   361911
#> 2208   361912
#> 2209   361913
#> 2210   361914
#> 2211   361915
#> 2212   361916
#> 2213   361917
#> 2214   361918
#> 2215   361919
#> 2216   361920
#> 2217   361921
#> 2218   361922
#> 2219   361923
#> 2220   361924
#> 2221   361925
#> 2222   361926
#> 2223   361927
#> 2224   361928
#> 2225   361983
#> 2226   362095
#> 2227   362096
#> 2228   362162
#> 2229   362174
#> 2230   362397
#> 2231   362398
#> 2232   362769
#> 2233   362780
#> 2234   363461
#> 2235   363462
#> 2236   363463
#> 2237   363464
#> 2238   363466
#> 2239   363592
#> 2240   363795
#> 2241   363796
#> 2242   363797
#> 2243   364280
#> 2244   364435
#> 2245   364460
#> 2246   364813
#> 2247   364865
#> 2248   365322
#> 2249   366749
#> 2250   366768
#> 2251   366769
#> 2252   367215
#> 2253   367606
#> 2254   367934
#> 2255   368013
#> 2256   368014
#> 2257   368015
#> 2258   368016
#> 2259   368017
#> 2260   368018
#> 2261   368019
#> 2262   368587
#> 2263   370457
#> 2264   370587
#> 2265   370588
#> 2266   370589
#> 2267   370611
#> 2268   370612
#> 2269   370615
#> 2270   370616
#> 2271   370647
#> 2272   370648
#> 2273   370649
#> 2274   370650
#> 2275   370651
#> 2276   370652
#> 2277   370653
#> 2278   370654
#> 2279   370655
#> 2280   370656
#> 2281   370657
#> 2282   370658
#> 2283   370659
#> 2284   370660
#> 2285   370661
#> 2286   370662
#> 2287   370663
#> 2288   370664
#> 2289   370665
#> 2290   370666
#> 2291   370667
#> 2292   370701
#> 2293   370702
#> 2294   370707
#> 2295   370708
#> 2296   370709
#> 2297   370710
#> 2298   370711
#> 2299   370712
#> 2300   370713
#> 2301   370714
#> 2302   370715
#> 2303   370722
#> 2304   370941
#> 2305   370942
#> 2306   370991
#> 2307   370992
#> 2308   371221
#> 2309   371512
#> 2310   373073
#> 2311   373083
#> 2312   373086
#> 2313   373131
#> 2314   373865
#> 2315   374095
#> 2316   374769
#> 2317   374770
#> 2318   374771
#> 2319   374812
#> 2320   375386
#> 2321   375864
#> 2322   375865
#> 2323   376340
#> 2324   376341
#> 2325   376360
#> 2326   376506
#> 2327   376542
#> 2328   377269
#> 2329   377285
#> 2330   377286
#> 2331   377287
#> 2332   377288
#> 2333   377289
#> 2334   377290
#> 2335   377291
#> 2336   377292
#> 2337   377293
#> 2338   377294
#> 2339   377295
#> 2340   377296
#> 2341   377297
#> 2342   377298
#> 2343   377299
#> 2344   377300
#> 2345   377301
#> 2346   377302
#> 2347   377303
#> 2348   377304
#> 2349   377305
#> 2350   377306
#> 2351   377307
#> 2352   377308
#> 2353   377309
#> 2354   377310
#> 2355   377311
#> 2356   377312
#> 2357   377313
#> 2358   377314
#> 2359   377315
#> 2360   377316
#> 2361   377317
#> 2362   377318
#> 2363   377319
#> 2364   377320
#> 2365   377321
#> 2366   377322
#> 2367   377323
#> 2368   377324
#> 2369   377325
#> 2370   377326
#> 2371   377327
#> 2372   377328
#> 2373   377329
#> 2374   377330
#> 2375   377331
#> 2376   377332
#> 2377   377333
#> 2378   377334
#> 2379   377335
#> 2380   377336
#> 2381   377337
#> 2382   377338
#> 2383   377339
#> 2384   377340
#> 2385   377341
#> 2386   377342
#> 2387   377343
#> 2388   377550
#> 2389   377606
#> 2390   377622
#> 2391   377623
#> 2392   377624
#> 2393   377625
#> 2394   377626
#> 2395   378027
#> 2396   378039
#> 2397   378139
#> 2398   378140
#> 2399   378141
#> 2400   378142
#> 2401   378143
#> 2402   378181
#> 2403   378481
#> 2404   379196
#> 2405   379284
#> 2406   379439
#> 2407   379685
#> 2408   379700
#> 2409   379701
#> 2410   379702
#> 2411   379703
#> 2412   379735
#> 2413   379736
#> 2414   379820
#> 2415   379821
#> 2416   379822
#> 2417   379823
#> 2418   379845
#> 2419   379896
#> 2420   380044
#> 2421   380051
#> 2422   380114
#> 2423   380115
#> 2424   380116
#> 2425   380117
#> 2426   380118
#> 2427   380127
#> 2428   380128
#> 2429   380362
#> 2430   380470
#> 2431   380471
#> 2432   380586
#> 2433   381150
#> 2434   381477
#> 2435   381494
#> 2436   381495
#> 2437   381496
#> 2438   381497
#> 2439   381673
#> 2440   381674
#> 2441   381677
#> 2442   381678
#> 2443   381679
#> 2444   381680
#> 2445   381681
#> 2446   381682
#> 2447   381683
#> 2448   381684
#> 2449   381685
#> 2450   381686
#> 2451   381687
#> 2452   381688
#> 2453   381689
#> 2454   381690
#> 2455   381691
#> 2456   381692
#> 2457   381693
#> 2458   381694
#> 2459   381695
#> 2460   381696
#> 2461   381717
#> 2462   381718
#> 2463   381720
#> 2464   381721
#> 2465   381722
#> 2466   381723
#> 2467   381724
#> 2468   381725
#> 2469   381726
#> 2470   381738
#> 2471   381739
#> 2472   381740
#> 2473   381741
#> 2474   381742
#> 2475   381743
#> 2476   381744
#> 2477   381745
#> 2478   381746
#> 2479   381747
#> 2480   381758
#> 2481   381759
#> 2482   381760
#> 2483   381761
#> 2484   381762
#> 2485   381763
#> 2486   381764
#> 2487   381765
#> 2488   381766
#> 2489   381767
#> 2490   381778
#> 2491   381779
#> 2492   381780
#> 2493   381781
#> 2494   381782
#> 2495   381783
#> 2496   381784
#> 2497   381785
#> 2498   381786
#> 2499   381787
#> 2500   381933
#> 2501   381936
#> 2502   381985
#> 2503   382092
#> 2504   382342
#> 2505   382679
#> 2506   382680
#> 2507   382681
#> 2508   382851
#> 2509   382918
#> 2510   383028
#> 2511   383188
#> 2512   383216
#> 2513   383438
#> 2514   383506
#> 2515   383507
#> 2516   383508
#> 2517   383509
#> 2518   383795
#> 2519   383913
#> 2520   383914
#> 2521   383915
#> 2522   383916
#> 2523   383918
#> 2524   383919
#> 2525   384919
#> 2526   385103
#> 2527   385160
#> 2528   385161
#> 2529   385290
#> 2530   385291
#> 2531   385302
#> 2532   385303
#> 2533   385306
#> 2534   385307
#> 2535   385318
#> 2536   385319
#> 2537   385575
#> 2538   385576
#> 2539   385577
#> 2540   385578
#> 2541   385579
#> 2542   385580
#> 2543   385581
#> 2544   385582
#> 2545   385583
#> 2546   385689
#> 2547   385690
#> 2548   385693
#> 2549   385694
#> 2550   386306
#> 2551   386307
#> 2552   386400
#> 2553   386692
#> 2554   387073
#> 2555   387074
#> 2556   387581
#> 2557   387596
#> 2558   387597
#> 2559   387602
#> 2560   387605
#> 2561   387694
#> 2562   387748
#> 2563   387751
#> 2564   387752
#> 2565   387753
#> 2566   387754
#> 2567   387755
#> 2568   387756
#> 2569   387757
#> 2570   387848
#> 2571   387966
#> 2572   388256
#> 2573   388756
#> 2574   390237
#> 2575   390285
#> 2576   390286
#> 2577   390287
#> 2578   390289
#> 2579   390290
#> 2580   390292
#> 2581   390533
#> 2582   390534
#> 2583   390535
#> 2584   390536
#> 2585   391725
#> 2586   391726
#> 2587   391730
#> 2588   391731
#> 2589   391754
#> 2590   391758
#> 2591   391759
#> 2592   391865
#> 2593   391871
#> 2594   391883
#> 2595   392065
#> 2596   392187
#> 2597   392188
#> 2598   392305
#> 2599   392334
#> 2600   392335
#> 2601   392340
#> 2602   392341
#> 2603   392419
#> 2604   392699
#> 2605   392759
#> 2606   392760
#> 2607   392832
#> 2608   392833
#> 2609   392836
#> 2610   392837
#> 2611   392842
#> 2612   392843
#> 2613   392844
#> 2614   392845
#> 2615   392956
#> 2616   393023
#> 2617   393024
#> 2618   393149
#> 2619   393327
#> 2620   393328
#> 2621   393329
#> 2622   393331
#> 2623   393332
#> 2624   393333
#> 2625   393334
#> 2626   393335
#> 2627   393336
#> 2628   393337
#> 2629   393338
#> 2630   393778
#> 2631   393883
#> 2632   393902
#> 2633   393903
#> 2634   393904
#> 2635   393969
#> 2636   393971
#> 2637   393972
#> 2638   394305
#> 2639   394406
#> 2640   394424
#> 2641   394428
#> 2642   394430
#> 2643   394431
#> 2644   394432
#> 2645   394433
#> 2646   394434
#> 2647   394435
#> 2648   394436
#> 2649   394437
#> 2650   394438
#> 2651   394439
#> 2652   394440
#> 2653   394441
#> 2654   394442
#> 2655   394769
#> 2656   394859
#> 2657   394861
#> 2658   394862
#> 2659   394863
#> 2660   394864
#> 2661   394865
#> 2662   394866
#> 2663   394867
#> 2664   394868
#> 2665   394869
#> 2666   394870
#> 2667   394871
#> 2668   394872
#> 2669   394873
#> 2670   395461
#> 2671   395608
#> 2672   395609
#> 2673   395610
#> 2674   396239
#> 2675   396244
#> 2676   396370
#> 2677   397046
#> 2678   397651
#> 2679   397652
#> 2680   397955
#> 2681   398539
#> 2682   398661
#> 2683   399049
#> 2684   399050
#> 2685   399176
#> 2686   399903
#> 2687   400016
#> 2688   400017
#> 2689   400018
#> 2690   400019
#> 2691   400020
#> 2692   400021
#> 2693   400065
#> 2694   400350
#> 2695   400946
#> 2696   401249
#> 2697   401378
#> 2698   401550
#> 2699   401564
#> 2700   401565
#> 2701   401566
#> 2702   401567
#> 2703   401568
#> 2704   401569
#> 2705   401593
#> 2706   401630
#> 2707   401844
#> 2708   401941
#> 2709   401978
#> 2710   402235
#> 2711   402266
#> 2712   402305
#> 2713   402342
#> 2714   402501
#> 2715   402636
#> 2716   402660
#> 2717   402698
#> 2718   402782
#> 2719   402784
#> 2720   402787
#> 2721   402790
#> 2722   403063
#> 2723   403327
#> 2724   403329
#> 2725   403330
#> 2726   403331
#> 2727   403686
#> 2728   403733
#> 2729   403734
#> 2730   404114
#> 2731   404183
#> 2732   404189
#> 2733   404583
#> 2734   405141
#> 2735   405551
#> 2736   405928
#> 2737   406460
#> 2738   406462
#> 2739   407951
#> 2740   407957
#> 2741   408258
#> 2742   408663
#> 2743   408914
#> 2744   409606
#> 2745   409608
#> 2746   409610
#> 2747   409612
#> 2748   409614
#> 2749   409615
#> 2750   409616
#> 2751   409672
#> 2752   409722
#> 2753   410367
#> 2754   410517
#> 2755   410518
#> 2756   410519
#> 2757   410521
#> 2758   410678
#> 2759   410679
#> 2760   410680
#> 2761   410681
#> 2762   410682
#> 2763   410683
#> 2764   410684
#> 2765   410685
#> 2766   410686
#> 2767   410687
#> 2768   410688
#> 2769   410689
#> 2770   410690
#> 2771   410917
#> 2772   411253
#> 2773   411254
#> 2774   411256
#> 2775   411432
#> 2776   411499
#> 2777   411589
#> 2778   411590
#> 2779   411591
#> 2780   411592
#> 2781   411593
#> 2782   411594
#> 2783   411595
#> 2784   411730
#> 2785   411744
#> 2786   411745
#> 2787   411746
#> 2788   411747
#> 2789   411748
#> 2790   411749
#> 2791   411750
#> 2792   411751
#> 2793   411752
#> 2794   411753
#> 2795   411754
#> 2796   411755
#> 2797   411757
#> 2798   411763
#> 2799   411764
#> 2800   411765
#> 2801   411766
#> 2802   411768
#> 2803   411770
#> 2804   411772
#> 2805   411774
#> 2806   411952
#> 2807   411954
#> 2808   411956
#> 2809   411958
#> 2810   411960
#> 2811   411962
#> 2812   414273
#> 2813   414719
#> 2814   414720
#> 2815   414780
#> 2816   414782
#> 2817   415546
#> 2818   415925
#> 2819   416202
#> 2820   416332
#> 2821   416431
#> 2822   416432
#> 2823   416462
#> 2824   416748
#> 2825   416749
#> 2826   416764
#> 2827   416766
#> 2828   416990
#> 2829   417010
#> 2830   417011
#> 2831   417012
#> 2832   417067
#> 2833   417068
#> 2834   417087
#> 2835   417451
#> 2836   417477
#> 2837   417481
#> 2838   417483
#> 2839   417484
#> 2840   417672
#> 2841   418902
#> 2842   418903
#> 2843   419184
#> 2844   419185
#> 2845   419186
#> 2846   419187
#> 2847   419188
#> 2848   419189
#> 2849   419190
#> 2850   419191
#> 2851   419192
#> 2852   419193
#> 2853   419312
#> 2854   419313
#> 2855   419314
#> 2856   419318
#> 2857   419319
#> 2858   419320
#> 2859   419324
#> 2860   419584
#> 2861   419597
#> 2862   419598
#> 2863   419599
#> 2864   419600
#> 2865   420326
#> 2866   420360
#> 2867   420361
#> 2868   420362
#> 2869   420363
#> 2870   420364
#> 2871   420502
#> 2872   420973
#> 2873   420976
#> 2874   420977
#> 2875   420978
#> 2876   421187
#> 2877   421210
#> 2878   421212
#> 2879   421213
#> 2880   421214
#> 2881   421216
#> 2882   421217
#> 2883   421218
#> 2884   421224
#> 2885   421522
#> 2886   421524
#> 2887   421549
#> 2888   421550
#> 2889   421685
#> 2890   421720
#> 2891   422054
#> 2892   422118
#> 2893   422226
#> 2894   422396
#> 2895   422519
#> 2896   423405
#> 2897   423411
#> 2898   423414
#> 2899   423415
#> 2900   423416
#> 2901   423636
#> 2902   423825
#> 2903   423827
#> 2904   423829
#> 2905   423831
#> 2906   423857
#> 2907   423858
#> 2908   423983
#> 2909   423984
#> 2910   423985
#> 2911   424740
#> 2912   424777
#> 2913   424778
#> 2914   424779
#> 2915   424823
#> 2916   424987
#> 2917   424988
#> 2918   424989
#> 2919   424990
#> 2920   424991
#> 2921   424992
#> 2922   424993
#> 2923   424994
#> 2924   424995
#> 2925   424996
#> 2926   424997
#> 2927   424998
#> 2928   425031
#> 2929   425037
#> 2930   425172
#> 2931   425173
#> 2932   425174
#> 2933   425175
#> 2934   425176
#> 2935   425177
#> 2936   425178
#> 2937   425179
#> 2938   425180
#> 2939   425181
#> 2940   425182
#> 2941   425183
#> 2942   425184
#> 2943   425185
#> 2944   425186
#> 2945   425187
#> 2946   425188
#> 2947   425638
#> 2948   425639
#> 2949   425640
#> 2950   426069
#> 2951   426106
#> 2952   426174
#> 2953   426175
#> 2954   426320
#> 2955   426413
#> 2956   426414
#> 2957   426415
#> 2958   426416
#> 2959   426417
#> 2960   426719
#> 2961   426819
#> 2962   426823
#> 2963   426824
#> 2964   426825
#> 2965   426828
#> 2966   426831
#> 2967   426911
#> 2968   426912
#> 2969   426954
#> 2970   427179
#> 2971   427182
#> 2972   427183
#> 2973   427184
#> 2974   427185
#> 2975   427186
#> 2976   427283
#> 2977   427441
#> 2978   427444
#> 2979   427748
#> 2980   427929
#> 2981   427967
#> 2982   427968
#> 2983   427969
#> 2984   427970
#> 2985   427971
#> 2986   427973
#> 2987   427974
#> 2988   427975
#> 2989   427976
#> 2990   427981
#> 2991   428031
#> 2992   428033
#> 2993   428034
#> 2994   428041
#> 2995   428043
#> 2996   428047
#> 2997   428567
#> 2998   429351
#> 2999   429377
#> 3000   430067
#> 3001   430068
#> 3002   430358
#> 3003   430377
#> 3004   430742
#> 3005   430823
#> 3006   430824
#> 3007   430825
#> 3008   430826
#> 3009   430827
#> 3010   430828
#> 3011   430829
#> 3012   430909
#> 3013   430910
#> 3014   430911
#> 3015   430912
#> 3016   430913
#> 3017   430914
#> 3018   430915
#> 3019   430921
#> 3020   430922
#> 3021   430923
#> 3022   430990
#> 3023   431815
#> 3024   432026
#> 3025   432066
#> 3026   432174
#> 3027   432175
#> 3028   432177
#> 3029   432178
#> 3030   432187
#> 3031   432360
#> 3032   432361
#> 3033   432362
#> 3034   432363
#> 3035   432364
#> 3036   432365
#> 3037   432366
#> 3038   432367
#> 3039   432368
#> 3040   432369
#> 3041   432370
#> 3042   432371
#> 3043   432373
#> 3044   432374
#> 3045   432375
#> 3046   432376
#> 3047   432377
#> 3048   432378
#> 3049   432379
#> 3050   432380
#> 3051   432381
#> 3052   432382
#> 3053   432383
#> 3054   432400
#> 3055   433286
#> 3056   433287
#> 3057   433288
#> 3058   433289
#> 3059   433290
#> 3060   433291
#> 3061   433292
#> 3062   433293
#> 3063   433721
#> 3064   433722
#> 3065   433723
#> 3066   434133
#> 3067   434306
#> 3068   434312
#> 3069   434313
#> 3070   434314
#> 3071   434328
#> 3072   434329
#> 3073   434709
#> 3074   434710
#> 3075   434711
#> 3076   434712
#> 3077   434713
#> 3078   434714
#> 3079   434865
#> 3080   435446
#> 3081   435943
#> 3082   436674
#> 3083   436724
#> 3084   436725
#> 3085   436726
#> 3086   436985
#> 3087   436988
#> 3088   437001
#> 3089   437154
#> 3090   437157
#> 3091   437160
#> 3092   437360
#> 3093   437361
#> 3094   437362
#> 3095   438045
#> 3096   438046
#> 3097   438047
#> 3098   438216
#> 3099   438218
#> 3100   438220
#> 3101   438783
#> 3102   439709
#> 3103   441607
#> 3104   441608
#> 3105   441616
#> 3106   441617
#> 3107   441811
#> 3108   441812
#> 3109   442504
#> 3110   442544
#> 3111   443312
#> 3112   443467
#> 3113   443590
#> 3114   443591
#> 3115   443718
#> 3116   443719
#> 3117   443720
#> 3118   443721
#> 3119   443722
#> 3120   443723
#> 3121   443930
#> 3122   443931
#> 3123   443933
#> 3124   443967
#> 3125   443968
#> 3126   443969
#> 3127   444158
#> 3128   444159
#> 3129   444160
#> 3130   444165
#> 3131   444166
#> 3132   444167
#> 3133   444290
#> 3134   444894
#> 3135   445049
#> 3136   445066
#> 3137   445067
#> 3138   445069
#> 3139   445502
#> 3140   445506
#> 3141   445651
#> 3142   445855
#> 3143   445922
#> 3144   446322
#> 3145   446323
#> 3146   446324
#> 3147   446329
#> 3148   447340
#> 3149   447578
#> 3150   447579
#> 3151   447580
#> 3152   447581
#> 3153   447582
#> 3154   447583
#> 3155   447584
#> 3156   447880
#> 3157   447991
#> 3158   447992
#> 3159   448004
#> 3160   448393
#> 3161   448796
#> 3162   449217
#> 3163   449218
#> 3164   449883
#> 3165   449889
#> 3166   449979
#> 3167   449980
#> 3168   449982
#> 3169   450286
#> 3170   450295
#> 3171   450296
#> 3172   450308
#> 3173   450313
#> 3174   450675
#> 3175   450981
#> 3176   450985
#> 3177   450986
#> 3178   450993
#> 3179   450995
#> 3180   450997
#> 3181   450999
#> 3182   451001
#> 3183   451003
#> 3184   451005
#> 3185   451007
#> 3186   451009
#> 3187   451011
#> 3188   452267
#> 3189   452318
#> 3190   452325
#> 3191   452326
#> 3192   452327
#> 3193   452328
#> 3194   452329
#> 3195   452330
#> 3196   452331
#> 3197   452332
#> 3198   452333
#> 3199   452334
#> 3200   452335
#> 3201   452336
#> 3202   452337
#> 3203   452338
#> 3204   452339
#> 3205   452340
#> 3206   452341
#> 3207   452342
#> 3208   452343
#> 3209   452344
#> 3210   452345
#> 3211   452346
#> 3212   452347
#> 3213   452348
#> 3214   452349
#> 3215   452350
#> 3216   452351
#> 3217   452352
#> 3218   452353
#> 3219   452354
#> 3220   452355
#> 3221   452356
#> 3222   452357
#> 3223   452358
#> 3224   452359
#> 3225   452360
#> 3226   452361
#> 3227   452362
#> 3228   452363
#> 3229   452364
#> 3230   452403
#> 3231   452459
#> 3232   452537
#> 3233   452538
#> 3234   452539
#> 3235   452540
#> 3236   452541
#> 3237   452542
#> 3238   452543
#> 3239   452660
#> 3240   452661
#> 3241   452684
#> 3242   452774
#> 3243   453067
#> 3244   453158
#> 3245   453932
#> 3246   453933
#> 3247   453934
#> 3248   453935
#> 3249   453936
#> 3250   454765
#> 3251   454766
#> 3252   454799
#> 3253   454804
#> 3254   454809
#> 3255   454810
#> 3256   454811
#> 3257   454812
#> 3258   454813
#> 3259   454814
#> 3260   454842
#> 3261   455099
#> 3262   455100
#> 3263   455101
#> 3264   455102
#> 3265   455103
#> 3266   455104
#> 3267   455105
#> 3268   455106
#> 3269   455107
#> 3270   455108
#> 3271   455109
#> 3272   455110
#> 3273   455111
#> 3274   455112
#> 3275   455113
#> 3276   455114
#> 3277   455115
#> 3278   455142
#> 3279   455465
#> 3280   455467
#> 3281   455481
#> 3282   455482
#> 3283   455483
#> 3284   455568
#> 3285   455680
#> 3286   455681
#> 3287   455682
#> 3288   455962
#> 3289   455967
#> 3290   455991
#> 3291   456175
#> 3292   456255
#> 3293   456268
#> 3294   456667
#> 3295   456668
#> 3296   456673
#> 3297   456674
#> 3298   456675
#> 3299   456676
#> 3300   456677
#> 3301   456678
#> 3302   456795
#> 3303   456976
#> 3304   457053
#> 3305   457325
#> 3306   457781
#> 3307   457782
#> 3308   457794
#> 3309   457795
#> 3310   457949
#> 3311   457950
#> 3312   457951
#> 3313   457952
#> 3314   457954
#> 3315   458395
#> 3316   458397
#> 3317   458398
#> 3318   458883
#> 3319   459054
#> 3320   459343
#> 3321   459344
#> 3322   459821
#> 3323   459834
#> 3324   459835
#> 3325   459916
#> 3326   460046
#> 3327   460538
#> 3328   460581
#> 3329   460583
#> 3330   460585
#> 3331   460587
#> 3332   461250
#> 3333   461545
#> 3334   461637
#> 3335   461848
#> 3336   461867
#> 3337   461868
#> 3338   461869
#> 3339   461870
#> 3340   461871
#> 3341   461872
#> 3342   461873
#> 3343   461874
#> 3344   461875
#> 3345   461876
#> 3346   461877
#> 3347   461878
#> 3348   462327
#> 3349   462598
#> 3350   462600
#> 3351   462602
#> 3352   462604
#> 3353   462633
#> 3354   462635
#> 3355   462643
#> 3356   462644
#> 3357   462645
#> 3358   462646
#> 3359   462647
#> 3360   462648
#> 3361   462649
#> 3362   462650
#> 3363   462651
#> 3364   462652
#> 3365   462653
#> 3366   462654
#> 3367   462655
#> 3368   462656
#> 3369   462657
#> 3370   462658
#> 3371   462659
#> 3372   462660
#> 3373   462736
#> 3374   462744
#> 3375   462745
#> 3376   462746
#> 3377   463864
#> 3378   463865
#> 3379   463866
#> 3380   463981
#> 3381   463983
#> 3382   463988
#> 3383   464126
#> 3384   464128
#> 3385   464172
#> 3386   464175
#> 3387   464176
#> 3388   464177
#> 3389   464524
#> 3390   464526
#> 3391   464527
#> 3392   464528
#> 3393   464529
#> 3394   464530
#> 3395   464534
#> 3396   464544
#> 3397   464545
#> 3398   464546
#> 3399   464547
#> 3400   464550
#> 3401   464551
#> 3402   464552
#> 3403   464553
#> 3404   464554
#> 3405   464555
#> 3406   464556
#> 3407   464557
#> 3408   464558
#> 3409   464559
#> 3410   464598
#> 3411   465029
#> 3412   465030
#> 3413   465063
#> 3414   465068
#> 3415   465069
#> 3416   465216
#> 3417   465218
#> 3418   465220
#> 3419   465222
#> 3420   465538
#> 3421   465540
#> 3422   465541
#> 3423   465713
#> 3424   465714
#> 3425   465715
#> 3426   465716
#> 3427   465717
#> 3428   465993
#> 3429   466579
#> 3430   466905
#> 3431   466906
#> 3432   466907
#> 3433   466914
#> 3434   466916
#> 3435   467758
#> 3436   467909
#> 3437   467933
#> 3438   468049
#> 3439   468116
#> 3440   468117
#> 3441   468120
#> 3442   468134
#> 3443   468135
#> 3444   468139
#> 3445   468140
#> 3446   468174
#> 3447   468210
#> 3448   468212
#> 3449   468240
#> 3450   468370
#> 3451   468371
#> 3452   468474
#> 3453   469174
#> 3454   469187
#> 3455   469269
#> 3456   469272
#> 3457   469451
#> 3458   469452
#> 3459   469457
#> 3460   469477
#> 3461   469478
#> 3462   469808
#> 3463   469910
#> 3464   470172
#> 3465   470245
#> 3466   470446
#> 3467   470459
#> 3468   470664
#> 3469   471079
#> 3470   471085
#> 3471   471379
#> 3472   471485
#> 3473   471493
#> 3474   471494
#> 3475   471495
#> 3476   471521
#> 3477   471526
#> 3478   471527
#> 3479   471528
#> 3480   471529
#> 3481   471600
#> 3482   471601
#> 3483   471781
#> 3484   471919
#> 3485   472107
#> 3486   472334
#> 3487   472336
#> 3488   473043
#> 3489   473062
#> 3490   473063
#> 3491   473064
#> 3492   473143
#> 3493   473144
#> 3494   473145
#> 3495   473146
#> 3496   473147
#> 3497   473148
#> 3498   473208
#> 3499   473218
#> 3500   473219
#> 3501   473222
#> 3502   473227
#> 3503   473228
#> 3504   473621
#> 3505   473628
#> 3506   473629
#> 3507   473630
#> 3508   473631
#> 3509   473632
#> 3510   473633
#> 3511   473634
#> 3512   473635
#> 3513   473961
#> 3514   474055
#> 3515   474598
#> 3516   474607
#> 3517   474608
#> 3518   474611
#> 3519   474624
#> 3520   474632
#> 3521   474633
#> 3522   474634
#> 3523   474635
#> 3524   474636
#> 3525   474637
#> 3526   474638
#> 3527   474639
#> 3528   474640
#> 3529   474641
#> 3530   474642
#> 3531   474643
#> 3532   474644
#> 3533   474645
#> 3534   474646
#> 3535   475271
#> 3536   475309
#> 3537   475315
#> 3538   475316
#> 3539   475493
#> 3540   475853
#> 3541   475854
#> 3542   475860
#> 3543   475874
#> 3544   475875
#> 3545   475985
#> 3546   476560
#> 3547   476714
#> 3548   476949
#> 3549   477399
#> 3550   477401
#> 3551   477515
#> 3552   477516
#> 3553   477517
#> 3554   477525
#> 3555   477828
#> 3556   477829
#> 3557   477841
#> 3558   477849
#> 3559   477927
#> 3560   477998
#> 3561   478136
#> 3562   478141
#> 3563   478150
#> 3564   478157
#> 3565   478158
#> 3566   478159
#> 3567   478160
#> 3568   478169
#> 3569   478170
#> 3570   478171
#> 3571   478172
#> 3572   478173
#> 3573   478309
#> 3574   478330
#> 3575   478331
#> 3576   478332
#> 3577   478367
#> 3578   478368
#> 3579   478513
#> 3580   478926
#> 3581   479041
#> 3582   479043
#> 3583   479046
#> 3584   479050
#> 3585   479074
#> 3586   479075
#> 3587   479353
#> 3588   479354
#> 3589   479355
#> 3590   479357
#> 3591   479358
#> 3592   479359
#> 3593   479360
#> 3594   479361
#> 3595   479365
#> 3596   479715
#> 3597   479787
#> 3598   479908
#> 3599   479909
#> 3600   479910
#> 3601   479911
#> 3602   479991
#> 3603   479993
#> 3604   480108
#> 3605   480960
#> 3606   481145
#> 3607   481147
#> 3608   481148
#> 3609   481149
#> 3610   481150
#> 3611   481151
#> 3612   481754
#> 3613   481755
#> 3614   481758
#> 3615   481759
#> 3616   481763
#> 3617   481764
#> 3618   481765
#> 3619   481766
#> 3620   481767
#> 3621   481768
#> 3622   481769
#> 3623   481770
#> 3624   481771
#> 3625   481772
#> 3626   481773
#> 3627   481774
#> 3628   481775
#> 3629   481776
#> 3630   481777
#> 3631   481783
#> 3632   481784
#> 3633   481785
#> 3634   481786
#> 3635   481787
#> 3636   481788
#> 3637   481789
#> 3638   481790
#> 3639   481791
#> 3640   481792
#> 3641   481793
#> 3642   481794
#> 3643   481796
#> 3644   481797
#> 3645   481857
#> 3646   482108
#> 3647   482324
#> 3648   482394
#> 3649   482707
#> 3650   482708
#> 3651   482710
#> 3652   482938
#> 3653   483173
#> 3654   483623
#> 3655   483670
#> 3656   483671
#> 3657   483776
#> 3658   483980
#> 3659   484874
#> 3660   484913
#> 3661   484914
#> 3662   484915
#> 3663   485531
#> 3664   485981
#> 3665   486191
#> 3666   486598
#> 3667   486643
#> 3668   486948
#> 3669   486957
#> 3670   487230
#> 3671   487711
#> 3672   487853
#> 3673   487854
#> 3674   487873
#> 3675   488523
#> 3676   488530
#> 3677   488584
#> 3678   489353
#> 3679   489428
#> 3680   489430
#> 3681   489465
#> 3682   489578
#> 3683   489617
#> 3684   489636
#> 3685   489643
#> 3686   489677
#> 3687   489678
#> 3688   489679
#> 3689   489680
#> 3690   490009
#> 3691   490017
#> 3692   490113
#> 3693   490118
#> 3694   490120
#> 3695   490453
#> 3696   490962
#> 3697   490963
#> 3698   490964
#> 3699   491359
#> 3700   491360
#> 3701   491361
#> 3702   491362
#> 3703   491599
#> 3704   491881
#> 3705   492147
#> 3706   492168
#> 3707   492261
#> 3708   493962
#> 3709   493963
#> 3710   493964
#> 3711   493973
#> 3712   494273
#> 3713   494278
#> 3714   494280
#> 3715   494425
#> 3716   494644
#> 3717   494645
#> 3718   497315
#> 3719   497323
#> 3720   497324
#> 3721   497330
#> 3722   497386
#> 3723   497387
#> 3724   497388
#> 3725   497389
#> 3726   497391
#> 3727   497402
#> 3728   497403
#> 3729   497404
#> 3730   497405
#> 3731   497406
#> 3732   497407
#> 3733   497408
#> 3734   497409
#> 3735   497410
#> 3736   497419
#> 3737   497601
#> 3738   497602
#> 3739   497603
#> 3740   497604
#> 3741   497605
#> 3742   497925
#> 3743   498062
#> 3744   499264
#> 3745   499265
#> 3746   499280
#> 3747   499799
#> 3748   499801
#> 3749   499803
#> 3750   499882
#> 3751   499989
#> 3752   500344
#> 3753   500359
#> 3754   500360
#> 3755   500361
#> 3756   500362
#> 3757   500363
#> 3758   500364
#> 3759   500367
#> 3760   500368
#> 3761   500369
#> 3762   500370
#> 3763   500371
#> 3764   500372
#> 3765   500373
#> 3766   500374
#> 3767   500375
#> 3768   500376
#> 3769   500377
#> 3770   500378
#> 3771   500379
#> 3772   500380
#> 3773   500381
#> 3774   500382
#> 3775   500383
#> 3776   500384
#> 3777   500385
#> 3778   500386
#> 3779   500387
#> 3780   500388
#> 3781   500389
#> 3782   500390
#> 3783   500391
#> 3784   500392
#> 3785   500393
#> 3786   500394
#> 3787   500395
#> 3788   500396
#> 3789   500397
#> 3790   500398
#> 3791   500399
#> 3792   500400
#> 3793   500401
#> 3794   500402
#> 3795   500403
#> 3796   500404
#> 3797   500405
#> 3798   500406
#> 3799   500407
#> 3800   500408
#> 3801   500409
#> 3802   500410
#> 3803   500411
#> 3804   500412
#> 3805   500413
#> 3806   500414
#> 3807   500415
#> 3808   500416
#> 3809   500417
#> 3810   500418
#> 3811   500419
#> 3812   500420
#> 3813   500421
#> 3814   500422
#> 3815   500423
#> 3816   500424
#> 3817   500425
#> 3818   500426
#> 3819   500427
#> 3820   500643
#> 3821   501211
#> 3822   501214
#> 3823   501215
#> 3824   501303
#> 3825   501432
#> 3826   501465
#> 3827   501467
#> 3828   501524
#> 3829   501531
#> 3830   501532
#> 3831   501533
#> 3832   501534
#> 3833   501535
#> 3834   501536
#> 3835   501537
#> 3836   501538
#> 3837   501539
#> 3838   501774
#> 3839   501895
#> 3840   501898
#> 3841   502012
#> 3842   502353
#> 3843   502354
#> 3844   502355
#> 3845   502363
#> 3846   502391
#> 3847   502392
#> 3848   502393
#> 3849   502394
#> 3850   502395
#> 3851   502461
#> 3852   502481
#> 3853   502485
#> 3854   502496
#> 3855   502497
#> 3856   502502
#> 3857   502767
#> 3858   503100
#> 3859   503101
#> 3860   503102
#> 3861   503103
#> 3862   503104
#> 3863   503105
#> 3864   503106
#> 3865   503107
#> 3866   503108
#> 3867   503115
#> 3868   503116
#> 3869   503117
#> 3870   503118
#> 3871   503119
#> 3872   503121
#> 3873   503122
#> 3874   503125
#> 3875   503126
#> 3876   503127
#> 3877   503128
#> 3878   503129
#> 3879   503130
#> 3880   503131
#> 3881   503132
#> 3882   503133
#> 3883   503136
#> 3884   503137
#> 3885   503138
#> 3886   503139
#> 3887   503140
#> 3888   503148
#> 3889   503149
#> 3890   503150
#> 3891   503153
#> 3892   503154
#> 3893   503155
#> 3894   503156
#> 3895   503168
#> 3896   503169
#> 3897   503170
#> 3898   503171
#> 3899   503172
#> 3900   503190
#> 3901   503191
#> 3902   503192
#> 3903   503195
#> 3904   503665
#> 3905   503797
#> 3906   503814
#> 3907   503961
#> 3908   503963
#> 3909   503964
#> 3910   503965
#> 3911   503979
#> 3912   503996
#> 3913   504013
#> 3914   504030
#> 3915   504287
#> 3916   504726
#> 3917   504942
#> 3918   504944
#> 3919   506526
#> 3920   506527
#> 3921   506528
#> 3922   506529
#> 3923   506546
#> 3924   506547
#> 3925   506766
#> 3926   506767
#> 3927   506768
#> 3928   506771
#> 3929   506772
#> 3930   506774
#> 3931   506775
#> 3932   506776
#> 3933   506777
#> 3934   506778
#> 3935   506779
#> 3936   506780
#> 3937   506781
#> 3938   506782
#> 3939   506783
#> 3940   506789
#> 3941   506841
#> 3942   507025
#> 3943   507026
#> 3944   507027
#> 3945   507101
#> 3946   507102
#> 3947   507103
#> 3948   507104
#> 3949   507105
#> 3950   507106
#> 3951   507107
#> 3952   507108
#> 3953   507109
#> 3954   507110
#> 3955   507111
#> 3956   507144
#> 3957   507145
#> 3958   507146
#> 3959   507213
#> 3960   507775
#> 3961   507776
#> 3962   507777
#> 3963   507778
#> 3964   508225
#> 3965   508229
#> 3966   508230
#> 3967   510330
#> 3968   510348
#> 3969   510349
#> 3970   510364
#> 3971   510380
#> 3972   510391
#> 3973   510402
#> 3974   510403
#> 3975   510560
#> 3976   510611
#> 3977   510613
#> 3978   510614
#> 3979   510628
#> 3980   510632
#> 3981   510639
#> 3982   510837
#> 3983   511062
#> 3984   511068
#> 3985   511069
#> 3986   511219
#> 3987   511226
#> 3988   511339
#> 3989   511340
#> 3990   511341
#> 3991   511342
#> 3992   511343
#> 3993   511344
#> 3994   511345
#> 3995   511349
#> 3996   511350
#> 3997   511351
#> 3998   511352
#> 3999   511353
#> 4000   511354
#> 4001   511355
#> 4002   511356
#> 4003   511357
#> 4004   511358
#> 4005   511359
#> 4006   511360
#> 4007   511501
#> 4008   511502
#> 4009   511507
#> 4010   511516
#> 4011   511517
#> 4012   511518
#> 4013   511519
#> 4014   511520
#> 4015   511521
#> 4016   511522
#> 4017   513181
#> 4018   513192
#> 4019   513248
#> 4020   513662
#> 4021   513663
#> 4022   513664
#> 4023   513897
#> 4024   514080
#> 4025   514370
#> 4026   514382
#> 4027   514389
#> 4028   514390
#> 4029   515289
#> 4030   515519
#> 4031   515521
#> 4032   515616
#> 4033   515845
#> 4034   516377
#> 4035   516378
#> 4036   516379
#> 4037   516380
#> 4038   516587
#> 4039   516806
#> 4040   516807
#> 4041   516810
#> 4042   516811
#> 4043   517676
#> 4044   519853
#> 4045   525198
#> 4046   526106
#> 4047   526351
#> 4048   526391
#> 4049   526392
#> 4050   526774
#> 4051   527073
#> 4052   527102
#> 4053   527317
#> 4054   527319
#> 4055   527348
#> 4056   527883
#> 4057   527957
#> 4058   527963
#> 4059   527964
#> 4060   527965
#> 4061   527966
#> 4062   527967
#> 4063   527968
#> 4064   527969
#> 4065   527970
#> 4066   527971
#> 4067   527972
#> 4068   527973
#> 4069   527974
#> 4070   527975
#> 4071   527976
#> 4072   536098
#> 4073   536103
#> 4074   536105
#> 4075   536106
#> 4076   536111
#> 4077   536113
#> 4078   536117
#> 4079   536120
#> 4080   536413
#> 4081   536414
#> 4082   536415
#> 4083   536766
#> 4084   537071
#> 4085   537072
#> 4086   537073
#> 4087   537074
#> 4088   537075
#> 4089   537076
#> 4090   537077
#> 4091   537078
#> 4092   537079
#> 4093   537080
#> 4094   537081
#> 4095   537176
#> 4096   537177
#> 4097   537180
#> 4098   537181
#> 4099   537488
#> 4100   537523
#> 4101   537731
#> 4102   537845
#> 4103   537850
#> 4104   537855
#> 4105   537860
#> 4106   537865
#> 4107   537870
#> 4108   537878
#> 4109   538235
#> 4110   538326
#> 4111   538328
#> 4112   538352
#> 4113   538376
#> 4114   538377
#> 4115   538496
#> 4116   539013
#> 4117   539073
#> 4118   539076
#> 4119   539077
#> 4120   539078
#> 4121   539079
#> 4122   539080
#> 4123   539081
#> 4124   539082
#> 4125   539083
#> 4126   539084
#> 4127   539085
#> 4128   539086
#> 4129   539087
#> 4130   539088
#> 4131   539089
#> 4132   539090
#> 4133   539091
#> 4134   539092
#> 4135   539093
#> 4136   539094
#> 4137   539095
#> 4138   539096
#> 4139   539097
#> 4140   539098
#> 4141   539099
#> 4142   539100
#> 4143   539101
#> 4144   539102
#> 4145   539103
#> 4146   539104
#> 4147   539105
#> 4148   539106
#> 4149   539107
#> 4150   539108
#> 4151   539109
#> 4152   539110
#> 4153   539111
#> 4154   539112
#> 4155   539113
#> 4156   539114
#> 4157   539115
#> 4158   539116
#> 4159   539141
#> 4160   539142
#> 4161   539539
#> 4162   539541
#> 4163   539542
#> 4164   539544
#> 4165   539929
#> 4166   539930
#> 4167   539931
#> 4168   539932
#> 4169   540153
#> 4170   540154
#> 4171   540155
#> 4172   540156
#> 4173   540157
#> 4174   540158
#> 4175   540159
#> 4176   540160
#> 4177   540161
#> 4178   540162
#> 4179   540163
#> 4180   540164
#> 4181   540165
#> 4182   540166
#> 4183   540167
#> 4184   540168
#> 4185   540169
#> 4186   540170
#> 4187   540171
#> 4188   540172
#> 4189   540259
#> 4190   541365
#> 4191   542453
#> 4192   542454
#> 4193   542455
#> 4194   542456
#> 4195   542457
#> 4196   542458
#> 4197   542459
#> 4198   542460
#> 4199   542461
#> 4200   542462
#> 4201   542463
#> 4202   542464
#> 4203   542465
#> 4204   542466
#> 4205   542467
#> 4206   542468
#> 4207   542469
#> 4208   542789
#> 4209   542790
#> 4210   542791
#> 4211   542792
#> 4212   542793
#> 4213   542794
#> 4214   543210
#> 4215   543873
#> 4216   543990
#> 4217   543997
#> 4218   543998
#> 4219   543999
#> 4220   544000
#> 4221   544001
#> 4222   544064
#> 4223   544065
#> 4224   544080
#> 4225   545230
#> 4226   545854
#> 4227   545890
#> 4228   546327
#> 4229   546545
#> 4230   546560
#> 4231   546568
#> 4232   546569
#> 4233   546570
#> 4234   547109
#> 4235   548273
#> 4236   548274
#> 4237   548429
#> 4238   548430
#> 4239   548431
#> 4240   548432
#> 4241   548433
#> 4242   548434
#> 4243   548435
#> 4244   548436
#> 4245   549083
#> 4246   549145
#> 4247   549153
#> 4248   549154
#> 4249   549155
#> 4250   549156
#> 4251   549157
#> 4252   549158
#> 4253   549159
#> 4254   549160
#> 4255   549161
#> 4256   549162
#> 4257   549163
#> 4258   549164
#> 4259   549165
#> 4260   549166
#> 4261   549167
#> 4262   549168
#> 4263   549169
#> 4264   549170
#> 4265   549171
#> 4266   549172
#> 4267   549173
#> 4268   549174
#> 4269   549175
#> 4270   549179
#> 4271   549180
#> 4272   549181
#> 4273   549183
#> 4274   549184
#> 4275   549185
#> 4276   549186
#> 4277   549187
#> 4278   549188
#> 4279   549189
#> 4280   549507
#> 4281   549982
#> 4282   550083
#> 4283   550405
#> 4284   550750
#> 4285   550751
#> 4286   550752
#> 4287   550898
#> 4288   551043
#> 4289   551146
#> 4290   551585
#> 4291   551587
#> 4292   551588
#> 4293   551590
#> 4294   551591
#> 4295   551592
#> 4296   551598
#> 4297   551695
#> 4298   552122
#> 4299   552160
#> 4300   552867
#> 4301   553904
#> 4302   555964
#> 4303   555965
#> 4304   555966
#> 4305   555967
#> 4306   555968
#> 4307   555969
#> 4308   556137
#> 4309   556139
#> 4310   556140
#> 4311   556141
#> 4312   556142
#> 4313   556143
#> 4314   556144
#> 4315   556145
#> 4316   556146
#> 4317   557764
#> 4318   560411
#> 4319   560624
#> 4320   562697
#> 4321   562701
#> 4322   562702
#> 4323   562703
#> 4324   562704
#> 4325   562870
#> 4326   563848
#> 4327   563850
#> 4328   564324
#> 4329   566360
#> 4330   566527
#> 4331   566528
#> 4332   566529
#> 4333   566538
#> 4334   566539
#> 4335   566543
#> 4336   566544
#> 4337   566546
#> 4338   566547
#> 4339   566548
#> 4340   566552
#> 4341   566553
#> 4342   566554
#> 4343   566600
#> 4344   566601
#> 4345   566603
#> 4346   566625
#> 4347   566626
#> 4348   566959
#> 4349   568231
#> 4350   568593
#> 4351   568644
#> 4352   568658
#> 4353   568685
#> 4354   568720
#> 4355   568854
#> 4356   568855
#> 4357   569093
#> 4358   569097
#> 4359   569098
#> 4360   569099
#> 4361   569100
#> 4362   569101
#> 4363   569102
#> 4364   569103
#> 4365   569104
#> 4366   569105
#> 4367   569106
#> 4368   569107
#> 4369   569108
#> 4370   569109
#> 4371   569110
#> 4372   569111
#> 4373   569112
#> 4374   569113
#> 4375   569114
#> 4376   569115
#> 4377   569116
#> 4378   569117
#> 4379   569118
#> 4380   569119
#> 4381   569120
#> 4382   569121
#> 4383   569122
#> 4384   569123
#> 4385   569125
#> 4386   569242
#> 4387   569251
#> 4388   569252
#> 4389   569253
#> 4390   569254
#> 4391   569447
#> 4392   569450
#> 4393   569451
#> 4394   569937
#> 4395   569938
#> 4396   570470
#> 4397   570471
#> 4398   570473
#> 4399   570474
#> 4400   570475
#> 4401   570476
#> 4402   570479
#> 4403   570550
#> 4404   570551
#> 4405   570552
#> 4406   570580
#> 4407   570581
#> 4408   571526
#> 4409   572308
#> 4410   572767
#> 4411   572774
#> 4412   572775
#> 4413   572776
#> 4414   572777
#> 4415   572778
#> 4416   572779
#> 4417   572780
#> 4418   572781
#> 4419   572782
#> 4420   572783
#> 4421   572784
#> 4422   572785
#> 4423   572950
#> 4424   572972
#> 4425   572973
#> 4426   572974
#> 4427   572975
#> 4428   572976
#> 4429   572977
#> 4430   572985
#> 4431   572990
#> 4432   575286
#> 4433   576615
#> 4434   576624
#> 4435   578591
#> 4436   578596
#> 4437   578598
#> 4438   578601
#> 4439   580227
#> 4440   580613
#> 4441   580615
#> 4442   580633
#> 4443   580769
#> 4444   580770
#> 4445   580926
#> 4446   580927
#> 4447   581111
#> 4448   581112
#> 4449   581139
#> 4450   581758
#> 4451   581759
#> 4452   581926
#> 4453   581927
#> 4454   581949
#> 4455   581952
#> 4456   582292
#> 4457   582293
#> 4458   583610
#> 4459   583611
#> 4460   586291
#> 4461   586292
#> 4462   586293
#> 4463   586294
#> 4464   586310
#> 4465   586583
#> 4466   587201
#> 4467   587679
#> 4468   587895
#> 4469   588062
#> 4470   588064
#> 4471   588065
#> 4472   588144
#> 4473   588145
#> 4474   589259
#> 4475   589353
#> 4476   589429
#> 4477   589430
#> 4478   589480
#> 4479   589484
#> 4480   589679
#> 4481   589827
#> 4482   589828
#> 4483   589829
#> 4484   589867
#> 4485   589875
#> 4486   589880
#> 4487   589881
#> 4488   589882
#> 4489   589883
#> 4490   589987
#> 4491   589988
#> 4492   589991
#> 4493   590124
#> 4494   590319
#> 4495   590342
#> 4496   590350
#> 4497   590357
#> 4498   590456
#> 4499   590466
#> 4500   590476
#> 4501   590564
#> 4502   590574
#> 4503   590692
#> 4504   590699
#> 4505   590701
#> 4506   590715
#> 4507   590718
#> 4508   591186
#> 4509   591326
#> 4510   591327
#> 4511   591328
#> 4512   591329
#> 4513   591330
#> 4514   592153
#> 4515   592175
#> 4516   592665
#> 4517   592719
#> 4518   593415
#> 4519   593654
#> 4520   594324
#> 4521   594493
#> 4522   594565
#> 4523   594696
#> 4524   594699
#> 4525   594703
#> 4526   594783
#> 4527   594784
#> 4528   594794
#> 4529   594949
#> 4530   594964
#> 4531   594971
#> 4532   595210
#> 4533   595221
#> 4534   595459
#> 4535   595496
#> 4536   595498
#> 4537   596546
#> 4538   596859
#> 4539   597082
#> 4540   597373
#> 4541   597377
#> 4542   597378
#> 4543   597635
#> 4544   597642
#> 4545   598117
#> 4546   598807
#> 4547   598872
#> 4548   599098
#> 4549   599099
#> 4550   599172
#> 4551   599230
#> 4552   599464
#> 4553   599465
#> 4554   599466
#> 4555   599467
#> 4556   599468
#> 4557   599469
#> 4558   599470
#> 4559   599471
#> 4560   599472
#> 4561   599473
#> 4562   599474
#> 4563   599475
#> 4564   599476
#> 4565   599529
#> 4566   599552
#> 4567   599562
#> 4568   599724
#> 4569   599884
#> 4570   599941
#> 4571   599942
#> 4572   599946
#> 4573   599949
#> 4574   599950
#> 4575   599951
#> 4576   599952
#> 4577   600177
#> 4578   600178
#> 4579   600179
#> 4580   600180
#> 4581   600219
#> 4582   600224
#> 4583   600226
#> 4584   600303
#> 4585   600306
#> 4586   600307
#> 4587   600521
#> 4588   600522
#> 4589   600523
#> 4590   600524
#> 4591   600525
#> 4592   600820
#> 4593   600929
#> 4594   601146
#> 4595   601422
#> 4596   602106
#> 4597   602112
#> 4598   602113
#> 4599   602114
#> 4600   602115
#> 4601   602116
#> 4602   602117
#> 4603   602698
#> 4604   602700
#> 4605   602730
#> 4606   602731
#> 4607   602732
#> 4608   602733
#> 4609   602734
#> 4610   602735
#> 4611   602736
#> 4612   602737
#> 4613   602738
#> 4614   602739
#> 4615   602740
#> 4616   602741
#> 4617   602742
#> 4618   602743
#> 4619   602744
#> 4620   602745
#> 4621   603218
#> 4622   603532
#> 4623   603542
#> 4624   603543
#> 4625   603544
#> 4626   603545
#> 4627   603652
#> 4628   603671
#> 4629   603679
#> 4630   604029
#> 4631   604052
#> 4632   604060
#> 4633   604061
#> 4634   604062
#> 4635   604063
#> 4636   604064
#> 4637   604146
#> 4638   604147
#> 4639   604148
#> 4640   604149
#> 4641   604178
#> 4642   604339
#> 4643   604705
#> 4644   604799
#> 4645   604853
#> 4646   605298
#> 4647   605336
#> 4648   605337
#> 4649   605338
#> 4650   605340
#> 4651   605366
#> 4652   605736
#> 4653   605915
#> 4654   606020
#> 4655   606031
#> 4656   606361
#> 4657   606505
#> 4658   606541
#> 4659   606736
#> 4660   606737
#> 4661   606739
#> 4662   606740
#> 4663   606745
#> 4664   606746
#> 4665   606789
#> 4666   606792
#> 4667   606794
#> 4668   606796
#> 4669   607282
#> 4670   607295
#> 4671   607296
#> 4672   607297
#> 4673   607298
#> 4674   607299
#> 4675   607300
#> 4676   607301
#> 4677   607302
#> 4678   607303
#> 4679   607330
#> 4680   607332
#> 4681   607334
#> 4682   607336
#> 4683   607338
#> 4684   607340
#> 4685   607341
#> 4686   607342
#> 4687   607343
#> 4688   607344
#> 4689   607345
#> 4690   607346
#> 4691   607347
#> 4692   607348
#> 4693   607349
#> 4694   607350
#> 4695   607381
#> 4696   607382
#> 4697   607383
#> 4698   607384
#> 4699   607385
#> 4700   607386
#> 4701   607387
#> 4702   607388
#> 4703   607389
#> 4704   607390
#> 4705   607391
#> 4706   607392
#> 4707   607393
#> 4708   607394
#> 4709   607395
#> 4710   607396
#> 4711   607430
#> 4712   607437
#> 4713   607438
#> 4714   607439
#> 4715   607440
#> 4716   607441
#> 4717   607442
#> 4718   607453
#> 4719   607454
#> 4720   607527
#> 4721   607530
#> 4722   607532
#> 4723   607533
#> 4724   607632
#> 4725   607633
#> 4726   607634
#> 4727   607635
#> 4728   607885
#> 4729   607886
#> 4730   607890
#> 4731   608012
#> 4732   608028
#> 4733   608029
#> 4734   608030
#> 4735   608031
#> 4736   608032
#> 4737   608033
#> 4738   608034
#> 4739   608035
#> 4740   608221
#> 4741   608228
#> 4742   608238
#> 4743   608241
#> 4744   608242
#> 4745   608243
#> 4746   608244
#> 4747   608245
#> 4748   608246
#> 4749   608247
#> 4750   608248
#> 4751   608249
#> 4752   608250
#> 4753   608251
#> 4754   608252
#> 4755   608314
#> 4756   608617
#> 4757   608625
#> 4758   608633
#> 4759   608634
#> 4760   608635
#> 4761   608691
#> 4762   608708
#> 4763   608709
#> 4764   608710
#> 4765   608711
#> 4766   608712
#> 4767   608713
#> 4768   608714
#> 4769   608715
#> 4770   608716
#> 4771   608717
#> 4772   608718
#> 4773   608719
#> 4774   608720
#> 4775   608721
#> 4776   608722
#> 4777   608723
#> 4778   608724
#> 4779   608725
#> 4780   608726
#> 4781   608727
#> 4782   608728
#> 4783   608729
#> 4784   608730
#> 4785   608776
#> 4786   608804
#> 4787   608805
#> 4788   608806
#> 4789   608807
#> 4790   608808
#> 4791   608809
#> 4792   608810
#> 4793   608811
#> 4794   608812
#> 4795   608813
#> 4796   608814
#> 4797   608815
#> 4798   608816
#> 4799   608817
#> 4800   608818
#> 4801   608819
#> 4802   608820
#> 4803   608821
#> 4804   608822
#> 4805   608823
#> 4806   608825
#> 4807   608826
#> 4808   608827
#> 4809   608828
#> 4810   608850
#> 4811   608921
#> 4812   609080
#> 4813   609592
#> 4814   609598
#> 4815   609605
#> 4816   609727
#> 4817   609860
#> 4818   610161
#> 4819   610163
#> 4820   610308
#> 4821   610792
#> 4822   610869
#> 4823   610870
#> 4824   610874
#> 4825   611472
#> 4826   611688
#> 4827   611691
#> 4828   611757
#> 4829   611758
#> 4830   611759
#> 4831   611771
#> 4832   611904
#> 4833   611968
#> 4834   612537
#> 4835   612538
#> 4836   612539
#> 4837   612681
#> 4838   613180
#> 4839   613185
#> 4840   613186
#> 4841   613199
#> 4842   613200
#> 4843   613201
#> 4844   613202
#> 4845   613203
#> 4846   613204
#> 4847   613205
#> 4848   613206
#> 4849   613207
#> 4850   613210
#> 4851   613211
#> 4852   613232
#> 4853   613233
#> 4854   613249
#> 4855   613259
#> 4856   614212
#> 4857   614213
#> 4858   614214
#> 4859   614218
#> 4860   614219
#> 4861   614220
#> 4862   614343
#> 4863   614344
#> 4864   614345
#> 4865   614349
#> 4866   614350
#> 4867   614568
#> 4868   614577
#> 4869   614584
#> 4870   614944
#> 4871   615048
#> 4872   615049
#> 4873   615261
#> 4874   615264
#> 4875   615266
#> 4876   615937
#> 4877   616230
#> 4878   616231
#> 4879   616232
#> 4880   616233
#> 4881   616234
#> 4882   616235
#> 4883   616236
#> 4884   616237
#> 4885   616238
#> 4886   616240
#> 4887   616578
#> 4888   616604
#> 4889   616815
#> 4890   617013
#> 4891   617014
#> 4892   617015
#> 4893   617079
#> 4894   617082
#> 4895   617099
#> 4896   617277
#> 4897   617316
#> 4898   617367
#> 4899   617370
#> 4900   617372
#> 4901   617374
#> 4902   617376
#> 4903   617378
#> 4904   617380
#> 4905   617383
#> 4906   617545
#> 4907   617546
#> 4908   617547
#> 4909   617548
#> 4910   617549
#> 4911   617550
#> 4912   617551
#> 4913   617552
#> 4914   617553
#> 4915   617554
#> 4916   617555
#> 4917   617633
#> 4918   617634
#> 4919   617635
#> 4920   617636
#> 4921   617637
#> 4922   617638
#> 4923   617639
#> 4924   617931
#> 4925   618435
#> 4926   618436
#> 4927   618444
#> 4928   618833
#> 4929   618836
#> 4930   618940
#> 4931   618949
#> 4932   618951
#> 4933   618954
#> 4934   619062
#> 4935   619065
#> 4936   619079
#> 4937   619081
#> 4938   619082
#> 4939   619083
#> 4940   619188
#> 4941   619194
#> 4942   620246
#> 4943   620716
#> 4944   620718
#> 4945   620719
#> 4946   620720
#> 4947   620721
#> 4948   620722
#> 4949   620723
#> 4950   620724
#> 4951   620775
#> 4952   620776
#> 4953   622250
#> 4954   622254
#> 4955   622359
#> 4956   622587
#> 4957   622588
#> 4958   622589
#> 4959   622880
#> 4960   623032
#> 4961   623527
#> 4962   623528
#> 4963   625221
#> 4964   625632
#> 4965   626065
#> 4966   626066
#> 4967   626067
#> 4968   626068
#> 4969   626147
#> 4970   626148
#> 4971   626149
#> 4972   626150
#> 4973   626151
#> 4974   626152
#> 4975   626153
#> 4976   626202
#> 4977   626203
#> 4978   626303
#> 4979   626311
#> 4980   626327
#> 4981   626364
#> 4982   626370
#> 4983   626375
#> 4984   626378
#> 4985   626379
#> 4986   626380
#> 4987   626381
#> 4988   626382
#> 4989   626383
#> 4990   626446
#> 4991   626449
#> 4992   626450
#> 4993   626451
#> 4994   626453
#> 4995   626456
#> 4996   626562
#> 4997   626563
#> 4998   626564
#> 4999   626565
#> 5000   626599
#> 5001   626808
#> 5002   626809
#> 5003   626812
#> 5004   626813
#> 5005   627321
#> 5006   627322
#> 5007   627323
#> 5008   627333
#> 5009   627543
#> 5010   628210
#> 5011   628211
#> 5012   628286
#> 5013   629472
#> 5014   629473
#> 5015   629598
#> 5016   629657
#> 5017   629658
#> 5018   629659
#> 5019   629660
#> 5020   629661
#> 5021   629662
#> 5022   629663
#> 5023   629664
#> 5024   629665
#> 5025   629666
#> 5026   629667
#> 5027   629668
#> 5028   629669
#> 5029   629670
#> 5030   629671
#> 5031   629672
#> 5032   629673
#> 5033   629674
#> 5034   629675
#> 5035   629676
#> 5036   629677
#> 5037   629678
#> 5038   629679
#> 5039   630394
#> 5040   631064
#> 5041   631065
#> 5042   631066
#> 5043   631067
#> 5044   631068
#> 5045   631069
#> 5046   631070
#> 5047   632460
#> 5048   632958
#> 5049   632959
#> 5050   632960
#> 5051   632961
#> 5052   632962
#> 5053   632963
#> 5054   633104
#> 5055   633360
#> 5056   633549
#> 5057   633790
#> 5058   633793
#> 5059   633826
#> 5060   634027
#> 5061   634247
#> 5062   634248
#> 5063   634249
#> 5064   634250
#> 5065   634251
#> 5066   634252
#> 5067   634253
#> 5068   634254
#> 5069   634256
#> 5070   634257
#> 5071   634258
#> 5072   634259
#> 5073   634260
#> 5074   634261
#> 5075   634262
#> 5076   634332
#> 5077   634333
#> 5078   634334
#> 5079   634335
#> 5080   634336
#> 5081   634337
#> 5082   634338
#> 5083   634339
#> 5084   634340
#> 5085   634341
#> 5086   634342
#> 5087   634760
#> 5088   634761
#> 5089   634800
#> 5090   634831
#> 5091   634840
#> 5092   634845
#> 5093   635152
#> 5094   635155
#> 5095   635405
#> 5096   635406
#> 5097   635407
#> 5098   635408
#> 5099   635410
#> 5100   635458
#> 5101   635969
#> 5102   635970
#> 5103   635971
#> 5104   636045
#> 5105   636743
#> 5106   636803
#> 5107   636820
#> 5108   636890
#> 5109   636893
#> 5110   636972
#> 5111   637107
#> 5112   637753
#> 5113   637754
#> 5114   637836
#> 5115   638252
#> 5116   638257
#> 5117   638259
#> 5118   638260
#> 5119   638261
#> 5120   638262
#> 5121   638263
#> 5122   638664
#> 5123   638665
#> 5124   638846
#> 5125   638847
#> 5126   638848
#> 5127   638849
#> 5128   638850
#> 5129   638851
#> 5130   638852
#> 5131   638853
#> 5132   638854
#> 5133   638907
#> 5134   638908
#> 5135   639125
#> 5136   639129
#> 5137   639130
#> 5138   639210
#> 5139   639802
#> 5140   639973
#> 5141   639976
#> 5142   640295
#> 5143   640296
#> 5144   640300
#> 5145   640301
#> 5146   640938
#> 5147   641317
#> 5148   642050
#> 5149   642054
#> 5150   642096
#> 5151   642097
#> 5152   642106
#> 5153   642107
#> 5154   642108
#> 5155   642109
#> 5156   642110
#> 5157   642111
#> 5158   642112
#> 5159   642113
#> 5160   642114
#> 5161   642194
#> 5162   642312
#> 5163   642325
#> 5164   642327
#> 5165   642380
#> 5166   642381
#> 5167   642384
#> 5168   642962
#> 5169   643008
#> 5170   643012
#> 5171   643013
#> 5172   643168
#> 5173   643173
#> 5174   643200
#> 5175   643526
#> 5176   643542
#> 5177   643543
#> 5178   643544
#> 5179   643545
#> 5180   643546
#> 5181   643547
#> 5182   643548
#> 5183   643549
#> 5184   643550
#> 5185   643611
#> 5186   643612
#> 5187   643613
#> 5188   643614
#> 5189   643615
#> 5190   643616
#> 5191   643617
#> 5192   643618
#> 5193   643619
#> 5194   643620
#> 5195   643621
#> 5196   643622
#> 5197   643623
#> 5198   643624
#> 5199   643625
#> 5200   643626
#> 5201   643627
#> 5202   643628
#> 5203   643632
#> 5204   644044
#> 5205   644047
#> 5206   644081
#> 5207   644094
#> 5208   644100
#> 5209   644110
#> 5210   644286
#> 5211   644289
#> 5212   644290
#> 5213   644291
#> 5214   644292
#> 5215   644293
#> 5216   644294
#> 5217   644295
#> 5218   644296
#> 5219   644360
#> 5220   644557
#> 5221   644567
#> 5222   644784
#> 5223   644977
#> 5224   644978
#> 5225   644979
#> 5226   646311
#> 5227   646312
#> 5228   646352
#> 5229   646353
#> 5230   646482
#> 5231   647318
#> 5232   647639
#> 5233   648106
#> 5234   648266
#> 5235   648287
#> 5236   648617
#> 5237   648753
#> 5238   649241
#> 5239   649277
#> 5240   649589
#> 5241   649590
#> 5242   649591
#> 5243   649592
#> 5244   649737
#> 5245   649738
#> 5246   649739
#> 5247   649740
#> 5248   649741
#> 5249   649742
#> 5250   649743
#> 5251   649744
#> 5252   649745
#> 5253   649764
#> 5254   649767
#> 5255   649768
#> 5256   649769
#> 5257   649770
#> 5258   649771
#> 5259   649772
#> 5260   649773
#> 5261   649774
#> 5262   649775
#> 5263   649776
#> 5264   649777
#> 5265   649929
#> 5266   649930
#> 5267   649931
#> 5268   649932
#> 5269   649933
#> 5270   649934
#> 5271   649935
#> 5272   649936
#> 5273   649937
#> 5274   649938
#> 5275   649939
#> 5276   649940
#> 5277   649941
#> 5278   649942
#> 5279   649943
#> 5280   649944
#> 5281   649945
#> 5282   649946
#> 5283   649947
#> 5284   649948
#> 5285   649949
#> 5286   649950
#> 5287   649951
#> 5288   649952
#> 5289   649953
#> 5290   649954
#> 5291   649955
#> 5292   649956
#> 5293   649957
#> 5294   649958
#> 5295   649959
#> 5296   649960
#> 5297   649961
#> 5298   649962
#> 5299   649963
#> 5300   649966
#> 5301   650775
#> 5302   651774
#> 5303   651864
#> 5304   652709
#> 5305   652710
#> 5306   652711
#> 5307   652712
#> 5308   652713
#> 5309   652714
#> 5310   652715
#> 5311   652716
#> 5312   652717
#> 5313   652718
#> 5314   652719
#> 5315   652720
#> 5316   652721
#> 5317   652722
#> 5318   652723
#> 5319   652724
#> 5320   652762
#> 5321   652763
#> 5322   652764
#> 5323   653006
#> 5324   653130
#> 5325   653131
#> 5326   653132
#> 5327   653269
#> 5328   653298
#> 5329   653473
#> 5330   653534
#> 5331   653535
#> 5332   653536
#> 5333   653673
#> 5334   653674
#> 5335   654374
#> 5336   654460
#> 5337   654470
#> 5338   654560
#> 5339   654658
#> 5340   654771
#> 5341   654772
#> 5342   654773
#> 5343   654774
#> 5344   654775
#> 5345   654898
#> 5346   655140
#> 5347   655141
#> 5348   655444
#> 5349   655445
#> 5350   655470
#> 5351   656192
#> 5352   656194
#> 5353   656243
#> 5354   656244
#> 5355   656245
#> 5356   656246
#> 5357   656247
#> 5358   656248
#> 5359   656249
#> 5360   656250
#> 5361   656627
#> 5362   656926
#> 5363   656936
#> 5364   657287
#> 5365   657288
#> 5366   657512
#> 5367   657618
#> 5368   657619
#> 5369   657620
#> 5370   657621
#> 5371   657622
#> 5372   657623
#> 5373   657624
#> 5374   657625
#> 5375   657626
#> 5376   657708
#> 5377   657709
#> 5378   657710
#> 5379   658742
#> 5380   658743
#> 5381   658744
#> 5382   658745
#> 5383   658754
#> 5384   658920
#> 5385   658921
#> 5386   658922
#> 5387   658923
#> 5388   659042
#> 5389   659043
#> 5390   659044
#> 5391   659045
#> 5392   659046
#> 5393   659047
#> 5394   659048
#> 5395   659049
#> 5396   659140
#> 5397   659151
#> 5398   659152
#> 5399   659153
#> 5400   659197
#> 5401   659199
#> 5402   659200
#> 5403   659201
#> 5404   659202
#> 5405   659216
#> 5406   659217
#> 5407   659218
#> 5408   659289
#> 5409   659293
#> 5410   659405
#> 5411   659492
#> 5412   659493
#> 5413   659494
#> 5414   659495
#> 5415   659628
#> 5416   659629
#> 5417   659630
#> 5418   659631
#> 5419   659632
#> 5420   660120
#> 5421   660814
#> 5422   660815
#> 5423   660816
#> 5424   660817
#> 5425   660818
#> 5426   660820
#> 5427   660822
#> 5428   660823
#> 5429   660825
#> 5430   660829
#> 5431   661616
#> 5432   661617
#> 5433   661618
#> 5434   661619
#> 5435   662342
#> 5436   663331
#> 5437   663481
#> 5438   663537
#> 5439   664315
#> 5440   664434
#> 5441   664435
#> 5442   664436
#> 5443   664466
#> 5444   664467
#> 5445   664468
#> 5446   664473
#> 5447   664474
#> 5448   664475
#> 5449   664476
#> 5450   664683
#> 5451   664861
#> 5452   665010
#> 5453   665100
#> 5454   665105
#> 5455   665109
#> 5456   665112
#> 5457   665113
#> 5458   665114
#> 5459   665115
#> 5460   665116
#> 5461   665117
#> 5462   665118
#> 5463   665119
#> 5464   665238
#> 5465   665239
#> 5466   665240
#> 5467   665241
#> 5468   665493
#> 5469   665578
#> 5470   665588
#> 5471   666611
#> 5472   666616
#> 5473   666617
#> 5474   666618
#> 5475   666623
#> 5476   666624
#> 5477   666625
#> 5478   666740
#> 5479   667183
#> 5480   667297
#> 5481   667382
#> 5482   667383
#> 5483   667386
#> 5484   667431
#> 5485   667538
#> 5486   667541
#> 5487   667626
#> 5488   667667
#> 5489   667668
#> 5490   668822
#> 5491   668823
#> 5492   668824
#> 5493   668825
#> 5494   669155
#> 5495   669491
#> 5496   669495
#> 5497   669508
#> 5498   669509
#> 5499   669514
#> 5500   669515
#> 5501   669516
#> 5502   669517
#> 5503   669538
#> 5504   669756
#> 5505   670436
#> 5506   670486
#> 5507   670505
#> 5508   670514
#> 5509   670601
#> 5510   670602
#> 5511   670604
#> 5512   670611
#> 5513   670612
#> 5514   670613
#> 5515   670614
#> 5516   670615
#> 5517   670616
#> 5518   670617
#> 5519   670618
#> 5520   670619
#> 5521   670620
#> 5522   670621
#> 5523   670622
#> 5524   670623
#> 5525   670624
#> 5526   670625
#> 5527   670626
#> 5528   670627
#> 5529   670628
#> 5530   670629
#> 5531   670630
#> 5532   670631
#> 5533   670632
#> 5534   670633
#> 5535   670634
#> 5536   670635
#> 5537   670636
#> 5538   670637
#> 5539   670719
#> 5540   670720
#> 5541   670882
#> 5542   670883
#> 5543   670884
#> 5544   670885
#> 5545   670886
#> 5546   670887
#> 5547   671202
#> 5548   671203
#> 5549   671204
#> 5550   671205
#> 5551   671206
#> 5552   671207
#> 5553   671208
#> 5554   671209
#> 5555   671210
#> 5556   671211
#> 5557   671212
#> 5558   671279
#> 5559   671280
#> 5560   671281
#> 5561   671282
#> 5562   671321
#> 5563   671546
#> 5564   671578
#> 5565   671579
#> 5566   671582
#> 5567   671888
#> 5568   672228
#> 5569   672480
#> 5570   672481
#> 5571   672482
#> 5572   672483
#> 5573   672484
#> 5574   672526
#> 5575   672553
#> 5576   672554
#> 5577   672555
#> 5578   672556
#> 5579   672557
#> 5580   672558
#> 5581   672559
#> 5582   672560
#> 5583   672561
#> 5584   672562
#> 5585   672563
#> 5586   672564
#> 5587   672565
#> 5588   672911
#> 5589   672917
#> 5590   672918
#> 5591   672957
#> 5592   673162
#> 5593   673255
#> 5594   673285
#> 5595   673337
#> 5596   673869
#> 5597   673870
#> 5598   673871
#> 5599   673872
#> 5600   673873
#> 5601   673874
#> 5602   673875
#> 5603   673876
#> 5604   674000
#> 5605   674208
#> 5606   674224
#> 5607   674225
#> 5608   674226
#> 5609   674230
#> 5610   674231
#> 5611   674232
#> 5612   674233
#> 5613   674234
#> 5614   674235
#> 5615   674236
#> 5616   674237
#> 5617   674238
#> 5618   674239
#> 5619   674240
#> 5620   674359
#> 5621   674698
#> 5622   674934
#> 5623   674944
#> 5624   675049
#> 5625   675177
#> 5626   675178
#> 5627   675179
#> 5628   675180
#> 5629   675182
#> 5630   675183
#> 5631   675184
#> 5632   675185
#> 5633   675186
#> 5634   675296
#> 5635   675297
#> 5636   675298
#> 5637   675299
#> 5638   675842
#> 5639   675843
#> 5640   675913
#> 5641   675914
#> 5642   675915
#> 5643   675916
#> 5644   675917
#> 5645   675918
#> 5646   675980
#> 5647   675983
#> 5648   675990
#> 5649   676528
#> 5650   676545
#> 5651   676661
#> 5652   676687
#> 5653   676994
#> 5654   676995
#> 5655   676996
#> 5656   676997
#> 5657   676998
#> 5658   677405
#> 5659   677472
#> 5660   677895
#> 5661   678084
#> 5662   678087
#> 5663   678563
#> 5664   678564
#> 5665   678822
#> 5666   678827
#> 5667   678856
#> 5668   678860
#> 5669   678865
#> 5670   678866
#> 5671   678867
#> 5672   678868
#> 5673   678869
#> 5674   678988
#> 5675   679000
#> 5676   679001
#> 5677   679011
#> 5678   679118
#> 5679   679151
#> 5680   679154
#> 5681   679191
#> 5682   679318
#> 5683   679321
#> 5684   679332
#> 5685   679336
#> 5686   679337
#> 5687   679385
#> 5688   679386
#> 5689   679394
#> 5690   679395
#> 5691   679396
#> 5692   679481
#> 5693   679527
#> 5694   679528
#> 5695   679529
#> 5696   679530
#> 5697   679531
#> 5698   679532
#> 5699   679533
#> 5700   679534
#> 5701   679552
#> 5702   679553
#> 5703   679554
#> 5704   679555
#> 5705   679556
#> 5706   679557
#> 5707   679558
#> 5708   679559
#> 5709   679560
#> 5710   679563
#> 5711   679648
#> 5712   679658
#> 5713   679659
#> 5714   679684
#> 5715   679685
#> 5716   679686
#> 5717   679834
#> 5718   679836
#> 5719   679885
#> 5720   679886
#> 5721   679943
#> 5722   679958
#> 5723   679961
#> 5724   679962
#> 5725   679963
#> 5726   679969
#> 5727   679975
#> 5728   679978
#> 5729   679979
#> 5730   679984
#> 5731   679985
#> 5732   679986
#> 5733   679987
#> 5734   679994
#> 5735   680017
#> 5736   680018
#> 5737   680038
#> 5738   680039
#> 5739   680040
#> 5740   680041
#> 5741   680042
#> 5742   680043
#> 5743   680045
#> 5744   680046
#> 5745   680219
#> 5746   680220
#> 5747   680221
#> 5748   680222
#> 5749   680223
#> 5750   680224
#> 5751   680225
#> 5752   680226
#> 5753   680227
#> 5754   680228
#> 5755   680229
#> 5756   680230
#> 5757   680231
#> 5758   680232
#> 5759   680242
#> 5760   680243
#> 5761   680244
#> 5762   680325
#> 5763   680362
#> 5764   680464
#> 5765   680465
#> 5766   680466
#> 5767   680467
#> 5768   680555
#> 5769   680558
#> 5770   680566
#> 5771   680567
#> 5772   680640
#> 5773   680641
#> 5774   680642
#> 5775   680643
#> 5776   680644
#> 5777   680654
#> 5778   680655
#> 5779   680656
#> 5780   680735
#> 5781   680736
#> 5782   680737
#> 5783   680738
#> 5784   680739
#> 5785   680740
#> 5786   680741
#> 5787   680742
#> 5788   680839
#> 5789   680840
#> 5790   680844
#> 5791   680845
#> 5792   680846
#> 5793   680847
#> 5794   680848
#> 5795   680850
#> 5796   680852
#> 5797   680853
#> 5798   680854
#> 5799   680855
#> 5800   680856
#> 5801   680857
#> 5802   680858
#> 5803   680859
#> 5804   680860
#> 5805   681068
#> 5806   681077
#> 5807   681078
#> 5808   681079
#> 5809   681080
#> 5810   681099
#> 5811   681100
#> 5812   681117
#> 5813   681146
#> 5814   681147
#> 5815   681351
#> 5816   681378
#> 5817   681523
#> 5818   681524
#> 5819   681527
#> 5820   681528
#> 5821   681529
#> 5822   681530
#> 5823   681531
#> 5824   681570
#> 5825   681576
#> 5826   681607
#> 5827   681715
#> 5828   681716
#> 5829   681717
#> 5830   681718
#> 5831   681719
#> 5832   681825
#> 5833   681826
#> 5834   681835
#> 5835   681840
#> 5836   681841
#> 5837   681937
#> 5838   681938
#> 5839   681941
#> 5840   681943
#> 5841   681944
#> 5842   681945
#> 5843   681946
#> 5844   682027
#> 5845   682038
#> 5846   682063
#> 5847   682084
#> 5848   682089
#> 5849   682106
#> 5850   682112
#> 5851   682149
#> 5852   682163
#> 5853   682205
#> 5854   682221
#> 5855   682222
#> 5856   682223
#> 5857   682224
#> 5858   682225
#> 5859   682226
#> 5860   682227
#> 5861   682228
#> 5862   682229
#> 5863   682230
#> 5864   682231
#> 5865   682234
#> 5866   682235
#> 5867   682236
#> 5868   682237
#> 5869   682238
#> 5870   682239
#> 5871   682240
#> 5872   682241
#> 5873   682242
#> 5874   682243
#> 5875   682253
#> 5876   682265
#> 5877   682266
#> 5878   682267
#> 5879   682268
#> 5880   682269
#> 5881   682270
#> 5882   682271
#> 5883   682272
#> 5884   682277
#> 5885   682278
#> 5886   682279
#> 5887   682280
#> 5888   682281
#> 5889   682282
#> 5890   682283
#> 5891   682284
#> 5892   682285
#> 5893   682286
#> 5894   682487
#> 5895   682996
#> 5896   683000
#> 5897   683001
#> 5898   683220
#> 5899   683227
#> 5900   683230
#> 5901   683245
#> 5902   683246
#> 5903   683247
#> 5904   683248
#> 5905   683249
#> 5906   683250
#> 5907   683252
#> 5908   683253
#> 5909   683254
#> 5910   683255
#> 5911   683278
#> 5912   683495
#> 5913   683840
#> 5914   684449
#> 5915   685315
#> 5916   685498
#> 5917   685499
#> 5918   686928
#> 5919   687004
#> 5920   687172
#> 5921   687173
#> 5922   687339
#> 5923   687345
#> 5924   687674
#> 5925   688349
#> 5926   688888
#> 5927   689038
#> 5928   689039
#> 5929   689263
#> 5930   689621
#> 5931   689627
#> 5932   689923
#> 5933   689924
#> 5934   689925
#> 5935   689934
#> 5936   689950
#> 5937   690828
#> 5938   691424
#> 5939   691723
#> 5940   691985
#> 5941   693290
#> 5942   693370
#> 5943   693558
#> 5944   693559
#> 5945   693568
#> 5946   693569
#> 5947   693570
#> 5948   693603
#> 5949   693604
#> 5950   693715
#> 5951   693716
#> 5952   693999
#> 5953   694006
#> 5954   694829
#> 5955   694966
#> 5956   694968
#> 5957   695418
#> 5958   695448
#> 5959   695537
#> 5960   695548
#> 5961   695572
#> 5962   695819
#> 5963   695820
#> 5964   695821
#> 5965   695822
#> 5966   695823
#> 5967   695824
#> 5968   695825
#> 5969   695826
#> 5970   695827
#> 5971   695844
#> 5972   695863
#> 5973   695864
#> 5974   695923
#> 5975   695930
#> 5976   695945
#> 5977   695954
#> 5978   696200
#> 5979   696374
#> 5980   696913
#> 5981   696997
#> 5982   697008
#> 5983   697021
#> 5984   697627
#> 5985   697786
#> 5986   697788
#> 5987   697789
#> 5988   698262
#> 5989   698318
#> 5990   699060
#> 5991   699074
#> 5992   699075
#> 5993   699377
#> 5994   700328
#> 5995   700329
#> 5996   700442
#> 5997   700508
#> 5998   700510
#> 5999   700670
#> 6000   700741
#> 6001   700743
#> 6002   700745
#> 6003   700799
#> 6004   701430
#> 6005   701631
#> 6006   701857
#> 6007   701867
#> 6008   702129
#> 6009   702132
#> 6010   702636
#> 6011   702757
#> 6012   702758
#> 6013   702759
#> 6014   702919
#> 6015   702925
#> 6016   704023
#> 6017   704060
#> 6018   704061
#> 6019   704062
#> 6020   704063
#> 6021   704064
#> 6022   704065
#> 6023   704066
#> 6024   704069
#> 6025   704074
#> 6026   704076
#> 6027   704077
#> 6028   704175
#> 6029   704178
#> 6030   704181
#> 6031   704517
#> 6032   704521
#> 6033   704523
#> 6034   704524
#> 6035   705107
#> 6036   705124
#> 6037   705139
#> 6038   705154
#> 6039   705155
#> 6040   705164
#> 6041   705266
#> 6042   705444
#> 6043   705450
#> 6044   705452
#> 6045   706277
#> 6046   706411
#> 6047   706657
#> 6048   706658
#> 6049   707354
#> 6050   707523
#> 6051   707524
#> 6052   707525
#> 6053   707526
#> 6054   707527
#> 6055   707528
#> 6056   707529
#> 6057   707530
#> 6058   707531
#> 6059   707532
#> 6060   707533
#> 6061   707534
#> 6062   707535
#> 6063   707536
#> 6064   707537
#> 6065   707538
#> 6066   707539
#> 6067   707540
#> 6068   707541
#> 6069   707542
#> 6070   707543
#> 6071   708187
#> 6072   708770
#> 6073   709728
#> 6074   709729
#> 6075   709730
#> 6076   709736
#> 6077   710329
#> 6078   710848
#> 6079   711141
#> 6080   711142
#> 6081   711144
#> 6082   711166
#> 6083   711167
#> 6084   711168
#> 6085   711441
#> 6086   714115
#> 6087   714116
#> 6088   716417
#> 6089   717119
#> 6090   717120
#> 6091   717121
#> 6092   717122
#> 6093   717123
#> 6094   717124
#> 6095   717125
#> 6096   717126
#> 6097   717127
#> 6098   717128
#> 6099   717129
#> 6100   717130
#> 6101   717131
#> 6102   717132
#> 6103   717133
#> 6104   717134
#> 6105   717135
#> 6106   717137
#> 6107   717141
#> 6108   717142
#> 6109   717143
#> 6110   717155
#> 6111   717164
#> 6112   717312
#> 6113   717313
#> 6114   717546
#> 6115   717551
#> 6116   717761
#> 6117   717763
#> 6118   717764
#> 6119   717765
#> 6120   717766
#> 6121   717767
#> 6122   717768
#> 6123   717769
#> 6124   717770
#> 6125   717771
#> 6126   717807
#> 6127   717808
#> 6128   717809
#> 6129   717810
#> 6130   717811
#> 6131   717812
#> 6132   717813
#> 6133   717814
#> 6134   717815
#> 6135   717816
#> 6136   717817
#> 6137   717818
#> 6138   717819
#> 6139   717820
#> 6140   717821
#> 6141   717827
#> 6142   718282
#> 6143   718524
#> 6144   718525
#> 6145   718541
#> 6146   719100
#> 6147   719101
#> 6148   719102
#> 6149   719344
#> 6150   719601
#> 6151   720005
#> 6152   720009
#> 6153   721049
#> 6154   721281
#> 6155   721442
#> 6156   721569
#> 6157   721615
#> 6158   721616
#> 6159   721617
#> 6160   721618
#> 6161   721619
#> 6162   721620
#> 6163   721621
#> 6164   721626
#> 6165   721704
#> 6166   721705
#> 6167   721706
#> 6168   721707
#> 6169   721708
#> 6170   721839
#> 6171   721840
#> 6172   721841
#> 6173   721860
#> 6174   721861
#> 6175   721862
#> 6176   721863
#> 6177   721864
#> 6178   721865
#> 6179   721866
#> 6180   721867
#> 6181   721868
#> 6182   721869
#> 6183   721870
#> 6184   721871
#> 6185   721872
#> 6186   721874
#> 6187   721883
#> 6188   722105
#> 6189   723080
#> 6190   723241
#> 6191   723243
#> 6192   723248
#> 6193   723346
#> 6194   723482
#> 6195   723483
#> 6196   723770
#> 6197   723772
#> 6198   723784
#> 6199   723785
#> 6200   723786
#> 6201   724002
#> 6202   724344
#> 6203   724709
#> 6204   724743
#> 6205   724744
#> 6206   724955
#> 6207   725039
#> 6208   725040
#> 6209   725110
#> 6210   725111
#> 6211   725114
#> 6212   725115
#> 6213   725382
#> 6214   725387
#> 6215   725388
#> 6216   725927
#> 6217   725936
#> 6218   726038
#> 6219   726039
#> 6220   726040
#> 6221   726041
#> 6222   726042
#> 6223   726043
#> 6224   726044
#> 6225   726045
#> 6226   726047
#> 6227   726050
#> 6228   726052
#> 6229   726486
#> 6230   726487
#> 6231   726488
#> 6232   726489
#> 6233   726774
#> 6234   726775
#> 6235   726780
#> 6236   726782
#> 6237   727102
#> 6238   727103
#> 6239   727104
#> 6240   727106
#> 6241   727107
#> 6242   727108
#> 6243   727113
#> 6244   727115
#> 6245   727116
#> 6246   727117
#> 6247   727154
#> 6248   727486
#> 6249   727487
#> 6250   727488
#> 6251   727489
#> 6252   727490
#> 6253   727491
#> 6254   727492
#> 6255   727493
#> 6256   727494
#> 6257   727495
#> 6258   727496
#> 6259   727497
#> 6260   727498
#> 6261   727499
#> 6262   727500
#> 6263   727501
#> 6264   727729
#> 6265   727730
#> 6266   727766
#> 6267   728173
#> 6268   728174
#> 6269   728175
#> 6270   728176
#> 6271   728177
#> 6272   728179
#> 6273   728180
#> 6274   728261
#> 6275   728262
#> 6276   728266
#> 6277   728270
#> 6278   728271
#> 6279   728272
#> 6280   728273
#> 6281   728274
#> 6282   728275
#> 6283   728379
#> 6284   728856
#> 6285   728861
#> 6286   728862
#> 6287   728863
#> 6288   728864
#> 6289   728953
#> 6290   728954
#> 6291   728955
#> 6292   728956
#> 6293   728957
#> 6294   729242
#> 6295   729243
#> 6296   729799
#> 6297   729803
#> 6298   729805
#> 6299   729807
#> 6300   729809
#> 6301   729812
#> 6302   729816
#> 6303   729819
#> 6304   730214
#> 6305   730252
#> 6306   730641
#> 6307   730642
#> 6308   730643
#> 6309   730644
#> 6310   731061
#> 6311   731118
#> 6312   731327
#> 6313   731492
#> 6314   732003
#> 6315   732057
#> 6316   732147
#> 6317   732148
#> 6318   732149
#> 6319   732150
#> 6320   732567
#> 6321   732805
#> 6322   732878
#> 6323   733137
#> 6324   733588
#> 6325   733675
#> 6326   734069
#> 6327   734085
#> 6328   734092
#> 6329   734093
#> 6330   734094
#> 6331   734142
#> 6332   734229
#> 6333   735327
#> 6334   735328
#> 6335   735516
#> 6336   735846
#> 6337   736018
#> 6338   736173
#> 6339   736174
#> 6340   736178
#> 6341   736179
#> 6342   736180
#> 6343   736181
#> 6344   736182
#> 6345   736183
#> 6346   736184
#> 6347   736185
#> 6348   736186
#> 6349   736187
#> 6350   736188
#> 6351   736189
#> 6352   736190
#> 6353   736191
#> 6354   736192
#> 6355   736193
#> 6356   736315
#> 6357   736325
#> 6358   736521
#> 6359   736522
#> 6360   736528
#> 6361   736542
#> 6362   736543
#> 6363   736619
#> 6364   736620
#> 6365   736621
#> 6366   736622
#> 6367   736623
#> 6368   736624
#> 6369   736625
#> 6370   736626
#> 6371   736627
#> 6372   736628
#> 6373   736629
#> 6374   736630
#> 6375   736631
#> 6376   736632
#> 6377   736633
#> 6378   736634
#> 6379   736635
#> 6380   736636
#> 6381   736637
#> 6382   736638
#> 6383   736639
#> 6384   736640
#> 6385   736641
#> 6386   736642
#> 6387   736643
#> 6388   736644
#> 6389   736660
#> 6390   736665
#> 6391   736667
#> 6392   736668
#> 6393   736695
#> 6394   736696
#> 6395   736697
#> 6396   736698
#> 6397   736904
#> 6398   736905
#> 6399   737008
#> 6400   737069
#> 6401   737076
#> 6402   737077
#> 6403   737079
#> 6404   737080
#> 6405   737081
#> 6406   737082
#> 6407   737083
#> 6408   737084
#> 6409   737085
#> 6410   737086
#> 6411   737087
#> 6412   737088
#> 6413   737089
#> 6414   737090
#> 6415   737091
#> 6416   737092
#> 6417   737093
#> 6418   737094
#> 6419   737115
#> 6420   738076
#> 6421   738173
#> 6422   738174
#> 6423   738175
#> 6424   738176
#> 6425   738177
#> 6426   738178
#> 6427   738179
#> 6428   738180
#> 6429   738181
#> 6430   738182
#> 6431   738183
#> 6432   738184
#> 6433   738185
#> 6434   738186
#> 6435   738187
#> 6436   738188
#> 6437   738189
#> 6438   738190
#> 6439   738191
#> 6440   738192
#> 6441   738193
#> 6442   738194
#> 6443   738195
#> 6444   738196
#> 6445   738197
#> 6446   738198
#> 6447   738199
#> 6448   738202
#> 6449   738208
#> 6450   738664
#> 6451   738721
#> 6452   738979
#> 6453   739314
#> 6454   739320
#> 6455   739322
#> 6456   739855
#> 6457   739856
#> 6458   739858
#> 6459   739859
#> 6460   740169
#> 6461   740635
#> 6462   741467
#> 6463   743611
#> 6464   743725
#> 6465   744002
#> 6466   744261
#> 6467   744262
#> 6468   744270
#> 6469   744378
#> 6470   744392
#> 6471   744473
#> 6472   744474
#> 6473   744475
#> 6474   744476
#> 6475   744477
#> 6476   744478
#> 6477   744479
#> 6478   744480
#> 6479   744481
#> 6480   744482
#> 6481   744483
#> 6482   744484
#> 6483   744485
#> 6484   744486
#> 6485   744487
#> 6486   744488
#> 6487   744489
#> 6488   744490
#> 6489   744491
#> 6490   744492
#> 6491   744493
#> 6492   744494
#> 6493   744495
#> 6494   744496
#> 6495   744497
#> 6496   744498
#> 6497   744499
#> 6498   744500
#> 6499   744501
#> 6500   744502
#> 6501   744503
#> 6502   744504
#> 6503   744505
#> 6504   744506
#> 6505   744507
#> 6506   744508
#> 6507   744509
#> 6508   744510
#> 6509   744511
#> 6510   744512
#> 6511   744513
#> 6512   744514
#> 6513   744515
#> 6514   744516
#> 6515   744517
#> 6516   744518
#> 6517   744519
#> 6518   744520
#> 6519   744521
#> 6520   744522
#> 6521   744523
#> 6522   744524
#> 6523   744525
#> 6524   744526
#> 6525   744527
#> 6526   744528
#> 6527   744529
#> 6528   744530
#> 6529   744531
#> 6530   744532
#> 6531   744533
#> 6532   744534
#> 6533   744535
#> 6534   744536
#> 6535   744564
#> 6536   744567
#> 6537   744654
#> 6538   744655
#> 6539   744656
#> 6540   744657
#> 6541   744658
#> 6542   744659
#> 6543   744660
#> 6544   744661
#> 6545   744662
#> 6546   744663
#> 6547   744664
#> 6548   744665
#> 6549   744666
#> 6550   744667
#> 6551   744668
#> 6552   744669
#> 6553   744702
#> 6554   744704
#> 6555   744705
#> 6556   744706
#> 6557   744707
#> 6558   744708
#> 6559   744709
#> 6560   744710
#> 6561   744711
#> 6562   744852
#> 6563   745136
#> 6564   745139
#> 6565   745187
#> 6566   745189
#> 6567   745193
#> 6568   745194
#> 6569   745195
#> 6570   745196
#> 6571   745197
#> 6572   745198
#> 6573   745200
#> 6574   745224
#> 6575   745314
#> 6576   745703
#> 6577   745704
#> 6578   745705
#> 6579   745706
#> 6580   745718
#> 6581   745722
#> 6582   746530
#> 6583   746702
#> 6584   746703
#> 6585   746897
#> 6586   747265
#> 6587   747266
#> 6588   747377
#> 6589   747384
#> 6590   747385
#> 6591   747386
#> 6592   747387
#> 6593   747388
#> 6594   747389
#> 6595   747390
#> 6596   747391
#> 6597   747392
#> 6598   747393
#> 6599   747394
#> 6600   747395
#> 6601   747396
#> 6602   747397
#> 6603   747398
#> 6604   747399
#> 6605   747448
#> 6606   747877
#> 6607   747994
#> 6608   747996
#> 6609   747997
#> 6610   747998
#> 6611   748098
#> 6612   748099
#> 6613   748100
#> 6614   748101
#> 6615   748298
#> 6616   748299
#> 6617   748993
#> 6618   749207
#> 6619   749211
#> 6620   749216
#> 6621   749217
#> 6622   749219
#> 6623   749222
#> 6624   749699
#> 6625   749700
#> 6626   749701
#> 6627   749702
#> 6628   749703
#> 6629   749704
#> 6630   749705
#> 6631   749911
#> 6632   750108
#> 6633   750109
#> 6634   750110
#> 6635   750292
#> 6636   750452
#> 6637   750531
#> 6638   750532
#> 6639   750798
#> 6640   750835
#> 6641   751422
#> 6642   751423
#> 6643   751424
#> 6644   751425
#> 6645   751426
#> 6646   751427
#> 6647   751428
#> 6648   751429
#> 6649   751430
#> 6650   751431
#> 6651   751432
#> 6652   751433
#> 6653   751434
#> 6654   751435
#> 6655   751436
#> 6656   751437
#> 6657   751438
#> 6658   751439
#> 6659   751440
#> 6660   751441
#> 6661   751443
#> 6662   751449
#> 6663   751450
#> 6664   751451
#> 6665   751453
#> 6666   751460
#> 6667   751461
#> 6668   751462
#> 6669   751463
#> 6670   751464
#> 6671   751465
#> 6672   751466
#> 6673   751467
#> 6674   751508
#> 6675   751509
#> 6676   751510
#> 6677   753095
#> 6678   753096
#> 6679   753097
#> 6680   753098
#> 6681   753099
#> 6682   753100
#> 6683   753101
#> 6684   753102
#> 6685   753103
#> 6686   753104
#> 6687   753105
#> 6688   753106
#> 6689   753112
#> 6690   753167
#> 6691   753252
#> 6692   753253
#> 6693   753254
#> 6694   753255
#> 6695   753256
#> 6696   753257
#> 6697   753258
#> 6698   753259
#> 6699   753260
#> 6700   753277
#> 6701   753402
#> 6702   753405
#> 6703   753406
#> 6704   753407
#> 6705   753408
#> 6706   753409
#> 6707   753443
#> 6708   753444
#> 6709   753445
#> 6710   753508
#> 6711   753779
#> 6712   753784
#> 6713   754086
#> 6714   754172
#> 6715   754523
#> 6716   755037
#> 6717   755040
#> 6718   755553
#> 6719   755627
#> 6720   756454
#> 6721   756964
#> 6722   756965
#> 6723   756966
#> 6724   756967
#> 6725   757498
#> 6726   757651
#> 6727   757657
#> 6728   757662
#> 6729   757663
#> 6730   758063
#> 6731   758720
#> 6732   758821
#> 6733   758922
#> 6734   759280
#> 6735   759312
#> 6736   759547
#> 6737   759548
#> 6738   759795
#> 6739   759829
#> 6740   759977
#> 6741   760207
#> 6742   760208
#> 6743   760279
#> 6744   760297
#> 6745   760298
#> 6746   760299
#> 6747   760300
#> 6748   760301
#> 6749   760302
#> 6750   760303
#> 6751   760304
#> 6752   760305
#> 6753   760306
#> 6754   761201
#> 6755   761487
#> 6756   761584
#> 6757   761585
#> 6758   761606
#> 6759   761820
#> 6760   761821
#> 6761   761822
#> 6762   761823
#> 6763   761824
#> 6764   761825
#> 6765   761826
#> 6766   761827
#> 6767   762125
#> 6768   762126
#> 6769   762174
#> 6770   762175
#> 6771   762184
#> 6772   762457
#> 6773   762458
#> 6774   762801
#> 6775   762802
#> 6776   762803
#> 6777   762804
#> 6778   762805
#> 6779   762806
#> 6780   762817
#> 6781   762818
#> 6782   762819
#> 6783   762820
#> 6784   762821
#> 6785   763597
#> 6786   763709
#> 6787   763710
#> 6788   764124
#> 6789   764204
#> 6790   764219
#> 6791   764957
#> 6792   765131
#> 6793   765133
#> 6794   765134
#> 6795   766555
#> 6796   766662
#> 6797   766692
#> 6798   766693
#> 6799   766695
#> 6800   766708
#> 6801   766774
#> 6802   766778
#> 6803   767029
#> 6804   767036
#> 6805   767047
#> 6806   767051
#> 6807   767052
#> 6808   767053
#> 6809   767197
#> 6810   767214
#> 6811   767255
#> 6812   767267
#> 6813   767269
#> 6814   767270
#> 6815   767271
#> 6816   767275
#> 6817   767276
#> 6818   767278
#> 6819   767340
#> 6820   768048
#> 6821   768059
#> 6822   768195
#> 6823   768197
#> 6824   768198
#> 6825   768199
#> 6826   768349
#> 6827   768387
#> 6828   768754
#> 6829   768765
#> 6830   768769
#> 6831   768777
#> 6832   768778
#> 6833   768879
#> 6834   769115
#> 6835   769616
#> 6836   769676
#> 6837   769677
#> 6838   769678
#> 6839   769679
#> 6840   769680
#> 6841   769681
#> 6842   769682
#> 6843   769683
#> 6844   769684
#> 6845   769685
#> 6846   769686
#> 6847   769687
#> 6848   769688
#> 6849   769689
#> 6850   769690
#> 6851   769691
#> 6852   769692
#> 6853   769693
#> 6854   769694
#> 6855   769695
#> 6856   769696
#> 6857   769697
#> 6858   769698
#> 6859   769699
#> 6860   769700
#> 6861   769701
#> 6862   769702
#> 6863   769704
#> 6864   769718
#> 6865   769827
#> 6866   769828
#> 6867   769829
#> 6868   770011
#> 6869   770012
#> 6870   770282
#> 6871   770284
#> 6872   770290
#> 6873   770291
#> 6874   770323
#> 6875   770327
#> 6876   770392
#> 6877   770442
#> 6878   770443
#> 6879   770446
#> 6880   770448
#> 6881   770450
#> 6882   770477
#> 6883   770634
#> 6884   771147
#> 6885   771260
#> 6886   771400
#> 6887   771498
#> 6888   771500
#> 6889   771501
#> 6890   771526
#> 6891   771527
#> 6892   771839
#> 6893   771868
#> 6894   771925
#> 6895   772592
#> 6896   772593
#> 6897   772639
#> 6898   772649
#> 6899   772650
#> 6900   772651
#> 6901   772652
#> 6902   772655
#> 6903   772914
#> 6904   772938
#> 6905   773060
#> 6906   773702
#> 6907   773785
#> 6908   773786
#> 6909   774522
#> 6910   774528
#> 6911   775007
#> 6912   775008
#> 6913   775009
#> 6914   775010
#> 6915   775011
#> 6916   775012
#> 6917   775013
#> 6918   775014
#> 6919   775015
#> 6920   775017
#> 6921   775572
#> 6922   775573
#> 6923   775574
#> 6924   775575
#> 6925   775578
#> 6926   775581
#> 6927   775590
#> 6928   775721
#> 6929   775738
#> 6930   775986
#> 6931   776550
#> 6932   776559
#> 6933   776711
#> 6934   776753
#> 6935   778691
#> 6936   778696
#> 6937   778699
#> 6938   778701
#> 6939   778702
#> 6940   778703
#> 6941   779080
#> 6942   779086
#> 6943   779267
#> 6944   779268
#> 6945   779270
#> 6946   779272
#> 6947   779280
#> 6948   779374
#> 6949   779718
#> 6950   780270
#> 6951   780573
#> 6952   780575
#> 6953   780591
#> 6954   780592
#> 6955   780593
#> 6956   780594
#> 6957   780595
#> 6958   780596
#> 6959   780597
#> 6960   780598
#> 6961   780599
#> 6962   780600
#> 6963   780601
#> 6964   780602
#> 6965   780603
#> 6966   780604
#> 6967   780605
#> 6968   780606
#> 6969   780607
#> 6970   780608
#> 6971   780609
#> 6972   780610
#> 6973   780611
#> 6974   780612
#> 6975   780616
#> 6976   780617
#> 6977   780736
#> 6978   780990
#> 6979   781051
#> 6980   781052
#> 6981   781079
#> 6982   781080
#> 6983  1053395
#> 6984  1053396
#> 6985  1053399
#> 6986  1053406
#> 6987  1053407
#> 6988  1053409
#> 6989  1054550
#> 6990  1054719
#> 6991  1055314
#> 6992  1055315
#> 6993  1055316
#> 6994  1055317
#> 6995  1055318
#> 6996  1055319
#> 6997  1055320
#> 6998  1055321
#> 6999  1055515
#> 7000  1055516
#> 7001  1055621
#> 7002  1055638
#> 7003  1055639
#> 7004  1055640
#> 7005  1055643
#> 7006  1055660
#> 7007  1055762
#> 7008  1055777
#> 7009  1055778
#> 7010  1055790
#> 7011  1055791
#> 7012  1055792
#> 7013  1055806
#> 7014  1055822
#> 7015  1055877
#> 7016  1055879
#> 7017  1055881
#> 7018  1055924
#> 7019  1056038
#> 7020  1056201
#> 7021  1056202
#> 7022  1056205
#> 7023  1056206
#> 7024  1056418
#> 7025  1056496
#> 7026  1056895
#> 7027  1056896
#> 7028  1056897
#> 7029  1056899
#> 7030  1056902
#> 7031  1056905
#> 7032  1056908
#> 7033  1056911
#> 7034  1056914
#> 7035  1056919
#> 7036  1056920
#> 7037  1056921
#> 7038  1057143
#> 7039  1057144
#> 7040  1057145
#> 7041  1057146
#> 7042  1057147
#> 7043  1057148
#> 7044  1057149
#> 7045  1057150
#> 7046  1057151
#> 7047  1057152
#> 7048  1057153
#> 7049  1057154
#> 7050  1057155
#> 7051  1057156
#> 7052  1057157
#> 7053  1057158
#> 7054  1057159
#> 7055  1057160
#> 7056  1057161
#> 7057  1057162
#> 7058  1057163
#> 7059  1057164
#> 7060  1057165
#> 7061  1057166
#> 7062  1057167
#> 7063  1057168
#> 7064  1057171
#> 7065  1057173
#> 7066  1057174
#> 7067  1057274
#> 7068  1057882
#> 7069  1057883
#> 7070  1057884
#> 7071  1057885
#> 7072  1057886
#> 7073  1057890
#> 7074  1057891
#> 7075  1057954
#> 7076  1058533
#> 7077  1059948
#> 7078  1059949
#> 7079  1059960
#> 7080  1059961
#> 7081  1059962
#> 7082  1059963
#> 7083  1059964
#> 7084  1059965
#> 7085  1059966
#> 7086  1059967
#> 7087  1059968
#> 7088  1059969
#> 7089  1059970
#> 7090  1059971
#> 7091  1059972
#> 7092  1059973
#> 7093  1059974
#> 7094  1059975
#> 7095  1059976
#> 7096  1059977
#> 7097  1059979
#> 7098  1059982
#> 7099  1059986
#> 7100  1059990
#> 7101  1060476
#> 7102  1060754
#> 7103  1060784
#> 7104  1060785
#> 7105  1060990
#> 7106  1060992
#> 7107  1060993
#> 7108  1061108
#> 7109  1061219
#> 7110  1061220
#> 7111  1061221
#> 7112  1061222
#> 7113  1061223
#> 7114  1061224
#> 7115  1061237
#> 7116  1061238
#> 7117  1061744
#> 7118  1061746
#> 7119  1061747
#> 7120  1061748
#> 7121  1061749
#> 7122  1061750
#> 7123  1061759
#> 7124  1061760
#> 7125  1061761
#> 7126  1061762
#> 7127  1061766
#> 7128  1061800
#> 7129  1061801
#> 7130  1061917
#> 7131  1062266
#> 7132  1062365
#> 7133  1062366
#> 7134  1062367
#> 7135  1062368
#> 7136  1062369
#> 7137  1062370
#> 7138  1062371
#> 7139  1062372
#> 7140  1062410
#> 7141  1062984
#> 7142  1063168
#> 7143  1063349
#> 7144  1063355
#> 7145  1063398
#> 7146  1063399
#> 7147  1063400
#> 7148  1063401
#> 7149  1063402
#> 7150  1063403
#> 7151  1063404
#> 7152  1063405
#> 7153  1063406
#> 7154  1063407
#> 7155  1063408
#> 7156  1063409
#> 7157  1063419
#> 7158  1063420
#> 7159  1063421
#> 7160  1063423
#> 7161  1063424
#> 7162  1063425
#> 7163  1063550
#> 7164  1063551
#> 7165  1063552
#> 7166  1063553
#> 7167  1063556
#> 7168  1063557
#> 7169  1063568
#> 7170  1063569
#> 7171  1063570
#> 7172  1063571
#> 7173  1063572
#> 7174  1063573
#> 7175  1063574
#> 7176  1063575
#> 7177  1063576
#> 7178  1063577
#> 7179  1063578
#> 7180  1063579
#> 7181  1063580
#> 7182  1063581
#> 7183  1063582
#> 7184  1063583
#> 7185  1063584
#> 7186  1063585
#> 7187  1063586
#> 7188  1063587
#> 7189  1063588
#> 7190  1063589
#> 7191  1063590
#> 7192  1063591
#> 7193  1063592
#> 7194  1063593
#> 7195  1063999
#> 7196  1064002
#> 7197  1064218
#> 7198  1064274
#> 7199  1064454
#> 7200  1064578
#> 7201  1064587
#> 7202  1064588
#> 7203  1064614
#> 7204  1064784
#> 7205  1065175
#> 7206  1065177
#> 7207  1065397
#> 7208  1065590
#> 7209  1065641
#> 7210  1065642
#> 7211  1065643
#> 7212  1066136
#> 7213  1066147
#> 7214  1066151
#> 7215  1066175
#> 7216  1066176
#> 7217  1066177
#> 7218  1066178
#> 7219  1066255
#> 7220  1066461
#> 7221  1066462
#> 7222  1066466
#> 7223  1066467
#> 7224  1066469
#> 7225  1066470
#> 7226  1066471
#> 7227  1066472
#> 7228  1066719
#> 7229  1067064
#> 7230  1067094
#> 7231  1067105
#> 7232  1067106
#> 7233  1067157
#> 7234  1067266
#> 7235  1067270
#> 7236  1067273
#> 7237  1067347
#> 7238  1067842
#> 7239  1067843
#> 7240  1067845
#> 7241  1067861
#> 7242  1067863
#> 7243  1068554
#> 7244  1068555
#> 7245  1068556
#> 7246  1068557
#> 7247  1068558
#> 7248  1068559
#> 7249  1068561
#> 7250  1068924
#> 7251  1068959
#> 7252  1069177
#> 7253  1069247
#> 7254  1069333
#> 7255  1070505
#> 7256  1070519
#> 7257  1070520
#> 7258  1070873
#> 7259  1070874
#> 7260  1070875
#> 7261  1070876
#> 7262  1070877
#> 7263  1073047
#> 7264  1073636
#> 7265  1073648
#> 7266  1073649
#> 7267  1073655
#> 7268  1073744
#> 7269  1074505
#> 7270  1074506
#> 7271  1074507
#> 7272  1074508
#> 7273  1074511
#> 7274  1075844
#> 7275  1075968
#> 7276  1076003
#> 7277  1076052
#> 7278  1076053
#> 7279  1076057
#> 7280  1076242
#> 7281  1076279
#> 7282  1076280
#> 7283  1076281
#> 7284  1076701
#> 7285  1076702
#> 7286  1076703
#> 7287  1076704
#> 7288  1076705
#> 7289  1076706
#> 7290  1076707
#> 7291  1076708
#> 7292  1076709
#> 7293  1076710
#> 7294  1076711
#> 7295  1076712
#> 7296  1076713
#> 7297  1076714
#> 7298  1076715
#> 7299  1076717
#> 7300  1076838
#> 7301  1077224
#> 7302  1077225
#> 7303  1077226
#> 7304  1077228
#> 7305  1077369
#> 7306  1077393
#> 7307  1077395
#> 7308  1077648
#> 7309  1077681
#> 7310  1077718
#> 7311  1077725
#> 7312  1077977
#> 7313  1078083
#> 7314  1078085
#> 7315  1078086
#> 7316  1078089
#> 7317  1078090
#> 7318  1078091
#> 7319  1078092
#> 7320  1078093
#> 7321  1078171
#> 7322  1078172
#> 7323  1078173
#> 7324  1078178
#> 7325  1078184
#> 7326  1078219
#> 7327  1079548
#> 7328  1079550
#> 7329  1079553
#> 7330  1079634
#> 7331  1079702
#> 7332  1079703
#> 7333  1083332
#> 7334  1083333
#> 7335  1083341
#> 7336  1083342
#> 7337  1083343
#> 7338  1083477
#> 7339  1083520
#> 7340  1084288
#> 7341  1085011
#> 7342  1085012
#> 7343  1085013
#> 7344  1085014
#> 7345  1085808
#> 7346  1085812
#> 7347  1085819
#> 7348  1085823
#> 7349  1085827
#> 7350  1086067
#> 7351  1086305
#> 7352  1086326
#> 7353  1086327
#> 7354  1086328
#> 7355  1086329
#> 7356  1086330
#> 7357  1086608
#> 7358  1086682
#> 7359  1086908
#> 7360  1086982
#> 7361  1093429
#> 7362  1094252
#> 7363  1094871
#> 7364  1095317
#> 7365  1095318
#> 7366  1095319
#> 7367  1095320
#> 7368  1095575
#> 7369  1095576
#> 7370  1095577
#> 7371  1095593
#> 7372  1095648
#> 7373  1095854
#> 7374  1095924
#> 7375  1095934
#> 7376  1095935
#> 7377  1096447
#> 7378  1096483
#> 7379  1096525
#> 7380  1096528
#> 7381  1096531
#> 7382  1096534
#> 7383  1096536
#> 7384  1096542
#> 7385  1096653
#> 7386  1096665
#> 7387  1096775
#> 7388  1096844
#> 7389  1096845
#> 7390  1096846
#> 7391  1096847
#> 7392  1096913
#> 7393  1096914
#> 7394  1096915
#> 7395  1096916
#> 7396  1097206
#> 7397  1097209
#> 7398  1097212
#> 7399  1097217
#> 7400  1097218
#> 7401  1106042
#> 7402  1106086
#> 7403  1106262
#> 7404  1106269
#> 7405  1106270
#> 7406  1106451
#> 7407  1106452
#> 7408  1106453
#> 7409  1106454
#> 7410  1106455
#> 7411  1106456
#> 7412  1106457
#> 7413  1106458
#> 7414  1106459
#> 7415  1106460
#> 7416  1106461
#> 7417  1106462
#> 7418  1106463
#> 7419  1106464
#> 7420  1106465
#> 7421  1106547
#> 7422  1106648
#> 7423  1106649
#> 7424  1106661
#> 7425  1107044
#> 7426  1107045
#> 7427  1107046
#> 7428  1107047
#> 7429  1107048
#> 7430  1107283
#> 7431  1107295
#> 7432  1107296
#> 7433  1113462
#> 7434  1113463
#> 7435  1113464
#> 7436  1113465
#> 7437  1113477
#> 7438  1113485
#> 7439  1114106
#> 7440  1114146
#> 7441  1114147
#> 7442  1114148
#> 7443  1114149
#> 7444  1114150
#> 7445  1114151
#> 7446  1114640
#> 7447  1114641
#> 7448  1114642
#> 7449  1114643
#> 7450  1114644
#> 7451  1114645
#> 7452  1114662
#> 7453  1114665
#> 7454  1114806
#> 7455  1114813
#> 7456  1114836
#> 7457  1115490
#> 7458  1115518
#> 7459  1115786
#> 7460  1115788
#> 7461  1115793
#> 7462  1116232
#> 7463  1116233
#> 7464  1116234
#> 7465  1116235
#> 7466  1116236
#> 7467  1116237
#> 7468  1116238
#> 7469  1116239
#> 7470  1116240
#> 7471  1116241
#> 7472  1116242
#> 7473  1116243
#> 7474  1116244
#> 7475  1116245
#> 7476  1116246
#> 7477  1116247
#> 7478  1116248
#> 7479  1116249
#> 7480  1116250
#> 7481  1116251
#> 7482  1116252
#> 7483  1116253
#> 7484  1116346
#> 7485  1116449
#> 7486  1116669
#> 7487  1116670
#> 7488  1116671
#> 7489  1116672
#> 7490  1116673
#> 7491  1116674
#> 7492  1116675
#> 7493  1116678
#> 7494  1116680
#> 7495  1116773
#> 7496  1116786
#> 7497  1116902
#> 7498  1116904
#> 7499  1116906
#> 7500  1116908
#> 7501  1116910
#> 7502  1116912
#> 7503  1116914
#> 7504  1116916
#> 7505  1116919
#> 7506  1117061
#> 7507  1117347
#> 7508  1117348
#> 7509  1117349
#> 7510  1117350
#> 7511  1117351
#> 7512  1117489
#> 7513  1117490
#> 7514  1117505
#> 7515  1117512
#> 7516  1117513
#> 7517  1117514
#> 7518  1117515
#> 7519  1117516
#> 7520  1117517
#> 7521  1117520
#> 7522  1117521
#> 7523  1117522
#> 7524  1117523
#> 7525  1117722
#> 7526  1117730
#> 7527  1117732
#> 7528  1117734
#> 7529  1117735
#> 7530  1117737
#> 7531  1117738
#> 7532  1117739
#> 7533  1117740
#> 7534  1117741
#> 7535  1117742
#> 7536  1117743
#> 7537  1117747
#> 7538  1117979
#> 7539  1117984
#> 7540  1117985
#> 7541  1117986
#> 7542  1118243
#> 7543  1118312
#> 7544  1118437
#> 7545  1118438
#> 7546  1118439
#> 7547  1118440
#> 7548  1118441
#> 7549  1118442
#> 7550  1118443
#> 7551  1118444
#> 7552  1118640
#> 7553  1118641
#> 7554  1118642
#> 7555  1118654
#> 7556  1119159
#> 7557  1119160
#> 7558  1119180
#> 7559  1119254
#> 7560  1119255
#> 7561  1119712
#> 7562  1119713
#> 7563  1119718
#> 7564  1119719
#> 7565  1119722
#> 7566  1119732
#> 7567  1120305
#> 7568  1120487
#> 7569  1120489
#> 7570  1120490
#> 7571  1120491
#> 7572  1120492
#> 7573  1120493
#> 7574  1120536
#> 7575  1121254
#> 7576  1121255
#> 7577  1121256
#> 7578  1121258
#> 7579  1121328
#> 7580  1121447
#> 7581  1121568
#> 7582  1121569
#> 7583  1121570
#> 7584  1121571
#> 7585  1121572
#> 7586  1121573
#> 7587  1121574
#> 7588  1121575
#> 7589  1121576
#> 7590  1121578
#> 7591  1121600
#> 7592  1121601
#> 7593  1121633
#> 7594  1122056
#> 7595  1122388
#> 7596  1122419
#> 7597  1122420
#> 7598  1122421
#> 7599  1122422
#> 7600  1122425
#> 7601  1122426
#> 7602  1122430
#> 7603  1123971
#> 7604  1124393
#> 7605  1124440
#> 7606  1124908
#> 7607  1124911
#> 7608  1124959
#> 7609  1124960
#> 7610  1124968
#> 7611  1124999
#> 7612  1125058
#> 7613  1125064
#> 7614  1125065
#> 7615  1125072
#> 7616  1125073
#> 7617  1125074
#> 7618  1125076
#> 7619  1125077
#> 7620  1125078
#> 7621  1125079
#> 7622  1125080
#> 7623  1125081
#> 7624  1125082
#> 7625  1125083
#> 7626  1125084
#> 7627  1125085
#> 7628  1125086
#> 7629  1125087
#> 7630  1125088
#> 7631  1125089
#> 7632  1125090
#> 7633  1125091
#> 7634  1125092
#> 7635  1125093
#> 7636  1125146
#> 7637  1125363
#> 7638  1125614
#> 7639  1125615
#> 7640  1126003
#> 7641  1126004
#> 7642  1126006
#> 7643  1126007
#> 7644  1126008
#> 7645  1126541
#> 7646  1126728
#> 7647  1126729
#> 7648  1126730
#> 7649  1126841
#> 7650  1126843
#> 7651  1127159
#> 7652  1127160
#> 7653  1127198
#> 7654  1127318
#> 7655  1127346
#> 7656  1128858
#> 7657  1128863
#> 7658  1129352
#> 7659  1129486
#> 7660  1129487
#> 7661  1129488
#> 7662  1129489
#> 7663  1129732
#> 7664  1129733
#> 7665  1129734
#> 7666  1129735
#> 7667  1129736
#> 7668  1129737
#> 7669  1129738
#> 7670  1129739
#> 7671  1129740
#> 7672  1129741
#> 7673  1129838
#> 7674  1131477
#> 7675  1131478
#> 7676  1132058
#> 7677  1132059
#> 7678  1132062
#> 7679  1132063
#> 7680  1132066
#> 7681  1132829
#> 7682  1134936
#> 7683  1135869
#> 7684  1135870
#> 7685  1135895
#> 7686  1135897
#> 7687  1135899
#> 7688  1136148
#> 7689  1136870
#> 7690  1136871
#> 7691  1136872
#> 7692  1136873
#> 7693  1136874
#> 7694  1136875
#> 7695  1136876
#> 7696  1137734
#> 7697  1138210
#> 7698  1138296
#> 7699  1138304
#> 7700  1138964
#> 7701  1138965
#> 7702  1138966
#> 7703  1138967
#> 7704  1138972
#> 7705  1138973
#> 7706  1139435
#> 7707  1139706
#> 7708  1139707
#> 7709  1139711
#> 7710  1139712
#> 7711  1139713
#> 7712  1139969
#> 7713  1139970
#> 7714  1139975
#> 7715  1139976
#> 7716  1140083
#> 7717  1140084
#> 7718  1140085
#> 7719  1140087
#> 7720  1140088
#> 7721  1140301
#> 7722  1140571
#> 7723  1140574
#> 7724  1140576
#> 7725  1140617
#> 7726  1140624
#> 7727  1140625
#> 7728  1140626
#> 7729  1140627
#> 7730  1140628
#> 7731  1140629
#> 7732  1140632
#> 7733  1140633
#> 7734  1140634
#> 7735  1140635
#> 7736  1141761
#> 7737  1141832
#> 7738  1141944
#> 7739  1141999
#> 7740  1142000
#> 7741  1142034
#> 7742  1142063
#> 7743  1142064
#> 7744  1142065
#> 7745  1142066
#> 7746  1142067
#> 7747  1142070
#> 7748  1142135
#> 7749  1142274
#> 7750  1142278
#> 7751  1142285
#> 7752  1142286
#> 7753  1142287
#> 7754  1142288
#> 7755  1142289
#> 7756  1142290
#> 7757  1142291
#> 7758  1142292
#> 7759  1142293
#> 7760  1142294
#> 7761  1142295
#> 7762  1142296
#> 7763  1142297
#> 7764  1142298
#> 7765  1142775
#> 7766  1142777
#> 7767  1142778
#> 7768  1142779
#> 7769  1142780
#> 7770  1142781
#> 7771  1142782
#> 7772  1142783
#> 7773  1142784
#> 7774  1142785
#> 7775  1142786
#> 7776  1142787
#> 7777  1142788
#> 7778  1142789
#> 7779  1142790
#> 7780  1142791
#> 7781  1142792
#> 7782  1142793
#> 7783  1142867
#> 7784  1143493
#> 7785  1143532
#> 7786  1143574
#> 7787  1143764
#> 7788  1144812
#> 7789  1145593
#> 7790  1145781
#> 7791  1145802
#> 7792  1145826
#> 7793  1151099
#> 7794  1151255
#> 7795  1151256
#> 7796  1151257
#> 7797  1151258
#> 7798  1151259
#> 7799  1151260
#> 7800  1151261
#> 7801  1151262
#> 7802  1151263
#> 7803  1151264
#> 7804  1151265
#> 7805  1151266
#> 7806  1151267
#> 7807  1151268
#> 7808  1151269
#> 7809  1151270
#> 7810  1151271
#> 7811  1151325
#> 7812  1153038
#> 7813  1153039
#> 7814  1153049
#> 7815  1153052
#> 7816  1153053
#> 7817  1153054
#> 7818  1153055
#> 7819  1153056
#> 7820  1153064
#> 7821  1153205
#> 7822  1153274
#> 7823  1153275
#> 7824  1153284
#> 7825  1153285
#> 7826  1153286
#> 7827  1153287
#> 7828  1153288
#> 7829  1153289
#> 7830  1153290
#> 7831  1153291
#> 7832  1153404
#> 7833  1153570
#> 7834  1153575
#> 7835  1153707
#> 7836  1153716
#> 7837  1153854
#> 7838  1154180
#> 7839  1154196
#> 7840  1154197
#> 7841  1154198
#> 7842  1154199
#> 7843  1154200
#> 7844  1154201
#> 7845  1154202
#> 7846  1154203
#> 7847  1154204
#> 7848  1154205
#> 7849  1154206
#> 7850  1154207
#> 7851  1154208
#> 7852  1154209
#> 7853  1154210
#> 7854  1154211
#> 7855  1154212
#> 7856  1154213
#> 7857  1154214
#> 7858  1154215
#> 7859  1154216
#> 7860  1154217
#> 7861  1154218
#> 7862  1154219
#> 7863  1154220
#> 7864  1154221
#> 7865  1154222
#> 7866  1154297
#> 7867  1154308
#> 7868  1154309
#> 7869  1154310
#> 7870  1154311
#> 7871  1154315
#> 7872  1154322
#> 7873  1154440
#> 7874  1154620
#> 7875  1154657
#> 7876  1154743
#> 7877  1154744
#> 7878  1154929
#> 7879  1154930
#> 7880  1154931
#> 7881  1154932
#> 7882  1154933
#> 7883  1154934
#> 7884  1154935
#> 7885  1154936
#> 7886  1154937
#> 7887  1154938
#> 7888  1154939
#> 7889  1154940
#> 7890  1154941
#> 7891  1154942
#> 7892  1154943
#> 7893  1155289
#> 7894  1155290
#> 7895  1155291
#> 7896  1155292
#> 7897  1155293
#> 7898  1155294
#> 7899  1155295
#> 7900  1155296
#> 7901  1155297
#> 7902  1155298
#> 7903  1155299
#> 7904  1155300
#> 7905  1155301
#> 7906  1155302
#> 7907  1155303
#> 7908  1155304
#> 7909  1155305
#> 7910  1155306
#> 7911  1155391
#> 7912  1155794
#> 7913  1156031
#> 7914  1156332
#> 7915  1156338
#> 7916  1156339
#> 7917  1156340
#> 7918  1156518
#> 7919  1156616
#> 7920  1156701
#> 7921  1158017
#> 7922  1158202
#> 7923  1158206
#> 7924  1158430
#> 7925  1158431
#> 7926  1158432
#> 7927  1158443
#> 7928  1158444
#> 7929  1158445
#> 7930  1158446
#> 7931  1158447
#> 7932  1158607
#> 7933  1158651
#> 7934  1158930
#> 7935  1159130
#> 7936  1159136
#> 7937  1159142
#> 7938  1159148
#> 7939  1159154
#> 7940  1159183
#> 7941  1159964
#> 7942  1159995
#> 7943  1160590
#> 7944  1160591
#> 7945  1160592
#> 7946  1160633
#> 7947  1160672
#> 7948  1160694
#> 7949  1160696
#> 7950  1160697
#> 7951  1160698
#> 7952  1160699
#> 7953  1160700
#> 7954  1160701
#> 7955  1160702
#> 7956  1160703
#> 7957  1160704
#> 7958  1160705
#> 7959  1160981
#> 7960  1161251
#> 7961  1161324
#> 7962  1161382
#> 7963  1161633
#> 7964  1161663
#> 7965  1161682
#> 7966  1161686
#> 7967  1161687
#> 7968  1161688
#> 7969  1161689
#> 7970  1161690
#> 7971  1161691
#> 7972  1161692
#> 7973  1162086
#> 7974  1162088
#> 7975  1162244
#> 7976  1162267
#> 7977  1162814
#> 7978  1162943
#> 7979  1162965
#> 7980  1162974
#> 7981  1162985
#> 7982  1162993
#> 7983  1163064
#> 7984  1163375
#> 7985  1163946
#> 7986  1163947
#> 7987  1163948
#> 7988  1164035
#> 7989  1164581
#> 7990  1164586
#> 7991  1164903
#> 7992  1164904
#> 7993  1165125
#> 7994  1165190
#> 7995  1165199
#> 7996  1165227
#> 7997  1165543
#> 7998  1165763
#> 7999  1166181
#> 8000  1166182
#> 8001  1166183
#> 8002  1166184
#> 8003  1166185
#> 8004  1166226
#> 8005  1166341
#> 8006  1166469
#> 8007  1166474
#> 8008  1166475
#> 8009  1166619
#> 8010  1166641
#> 8011  1167283
#> 8012  1167414
#> 8013  1167523
#> 8014  1167524
#> 8015  1167525
#> 8016  1167526
#> 8017  1167527
#> 8018  1167528
#> 8019  1167529
#> 8020  1167530
#> 8021  1167531
#> 8022  1167532
#> 8023  1167533
#> 8024  1167534
#> 8025  1167535
#> 8026  1167536
#> 8027  1167537
#> 8028  1167538
#> 8029  1167539
#> 8030  1168410
#> 8031  1168411
#> 8032  1168412
#> 8033  1168413
#> 8034  1168414
#> 8035  1168415
#> 8036  1168416
#> 8037  1168488
#> 8038  1168741
#> 8039  1168913
#> 8040  1168948
#> 8041  1168950
#> 8042  1168956
#> 8043  1168957
#> 8044  1168958
#> 8045  1169197
#> 8046  1170032
#> 8047  1170503
#> 8048  1170649
#> 8049  1170707
#> 8050  1170708
#> 8051  1170712
#> 8052  1170718
#> 8053  1170724
#> 8054  1170725
#> 8055  1171075
#> 8056  1171232
#> 8057  1171739
#> 8058  1172005
#> 8059  1172006
#> 8060  1172111
#> 8061  1172484
#> 8062  1172548
#> 8063  1172945
#> 8064  1172996
#> 8065  1173027
#> 8066  1173031
#> 8067  1173032
#> 8068  1173033
#> 8069  1173034
#> 8070  1173035
#> 8071  1173036
#> 8072  1173037
#> 8073  1173038
#> 8074  1173039
#> 8075  1173040
#> 8076  1173041
#> 8077  1173042
#> 8078  1173390
#> 8079  1173496
#> 8080  1173497
#> 8081  1173498
#> 8082  1173613
#> 8083  1173614
#> 8084  1173615
#> 8085  1173616
#> 8086  1173703
#> 8087  1173704
#> 8088  1173822
#> 8089  1173824
#> 8090  1173849
#> 8091  1173850
#> 8092  1173852
#> 8093  1173853
#> 8094  1174028
#> 8095  1174035
#> 8096  1174039
#> 8097  1174044
#> 8098  1174092
#> 8099  1174093
#> 8100  1174232
#> 8101  1174243
#> 8102  1174328
#> 8103  1174348
#> 8104  1174352
#> 8105  1174358
#> 8106  1174359
#> 8107  1174362
#> 8108  1174365
#> 8109  1174408
#> 8110  1174412
#> 8111  1174413
#> 8112  1174414
#> 8113  1174415
#> 8114  1174416
#> 8115  1174417
#> 8116  1174418
#> 8117  1174419
#> 8118  1174420
#> 8119  1174421
#> 8120  1174422
#> 8121  1174423
#> 8122  1174424
#> 8123  1174425
#> 8124  1174426
#> 8125  1174427
#> 8126  1174428
#> 8127  1174429
#> 8128  1174430
#> 8129  1174431
#> 8130  1174432
#> 8131  1174433
#> 8132  1174434
#> 8133  1174435
#> 8134  1174436
#> 8135  1174437
#> 8136  1174438
#> 8137  1174439
#> 8138  1174440
#> 8139  1174441
#> 8140  1174442
#> 8141  1174443
#> 8142  1174447
#> 8143  1174448
#> 8144  1174449
#> 8145  1174450
#> 8146  1174451
#> 8147  1174452
#> 8148  1174453
#> 8149  1174454
#> 8150  1174455
#> 8151  1174457
#> 8152  1174459
#> 8153  1174680
#> 8154  1174856
#> 8155  1174881
#> 8156  1174888
#> 8157  1174889
#> 8158  1174890
#> 8159  1174891
#> 8160  1174892
#> 8161  1175223
#> 8162  1175263
#> 8163  1175264
#> 8164  1175265
#> 8165  1175266
#> 8166  1175267
#> 8167  1175268
#> 8168  1175269
#> 8169  1175270
#> 8170  1175271
#> 8171  1175272
#> 8172  1175302
#> 8173  1175308
#> 8174  1175309
#> 8175  1175310
#> 8176  1175311
#> 8177  1175516
#> 8178  1175674
#> 8179  1175683
#> 8180  1175734
#> 8181  1175817
#> 8182  1176274
#> 8183  1176707
#> 8184  1176851
#> 8185  1177039
#> 8186  1177406
#> 8187  1177553
#> 8188  1177583
#> 8189  1177679
#> 8190  1177682
#> 8191  1177686
#> 8192  1177689
#> 8193  1177692
#> 8194  1177695
#> 8195  1177704
#> 8196  1177705
#> 8197  1177706
#> 8198  1177707
#> 8199  1177711
#> 8200  1177713
#> 8201  1177715
#> 8202  1177761
#> 8203  1177762
#> 8204  1177763
#> 8205  1177764
#> 8206  1177765
#> 8207  1177766
#> 8208  1177771
#> 8209  1177772
#> 8210  1177773
#> 8211  1177774
#> 8212  1177775
#> 8213  1177776
#> 8214  1177777
#> 8215  1177778
#> 8216  1177795
#> 8217  1177796
#> 8218  1178004
#> 8219  1178045
#> 8220  1178049
#> 8221  1178062
#> 8222  1178133
#> 8223  1178335
#> 8224  1178336
#> 8225  1178407
#> 8226  1179244
#> 8227  1179245
#> 8228  1179246
#> 8229  1179247
#> 8230  1179248
#> 8231  1179253
#> 8232  1179387
#> 8233  1179390
#> 8234  1179397
#> 8235  1179567
#> 8236  1179980
#> 8237  1180155
#> 8238  1180307
#> 8239  1180327
#> 8240  1180383
#> 8241  1180385
#> 8242  1180386
#> 8243  1180387
#> 8244  1180388
#> 8245  1180389
#> 8246  1180503
#> 8247  1180504
#> 8248  1180505
#> 8249  1180516
#> 8250  1180517
#> 8251  1180518
#> 8252  1180519
#> 8253  1181211
#> 8254  1181406
#> 8255  1181408
#> 8256  1181410
#> 8257  1181690
#> 8258  1181691
#> 8259  1181745
#> 8260  1181760
#> 8261  1181783
#> 8262  1181787
#> 8263  1181986
#> 8264  1181987
#> 8265  1181988
#> 8266  1181989
#> 8267  1181990
#> 8268  1181991
#> 8269  1181992
#> 8270  1181993
#> 8271  1181994
#> 8272  1181995
#> 8273  1182325
#> 8274  1182419
#> 8275  1183479
#> 8276  1183657
#> 8277  1183669
#> 8278  1183670
#> 8279  1183673
#> 8280  1183674
#> 8281  1183677
#> 8282  1183678
#> 8283  1183679
#> 8284  1183680
#> 8285  1183681
#> 8286  1183682
#> 8287  1183683
#> 8288  1183684
#> 8289  1183685
#> 8290  1183688
#> 8291  1183689
#> 8292  1183690
#> 8293  1183691
#> 8294  1183692
#> 8295  1183710
#> 8296  1183719
#> 8297  1183720
#> 8298  1183721
#> 8299  1183722
#> 8300  1183723
#> 8301  1183724
#> 8302  1183725
#> 8303  1183726
#> 8304  1183727
#> 8305  1183728
#> 8306  1183729
#> 8307  1183730
#> 8308  1183731
#> 8309  1183862
#> 8310  1183864
#> 8311  1183865
#> 8312  1183866
#> 8313  1183867
#> 8314  1183868
#> 8315  1183869
#> 8316  1183870
#> 8317  1183871
#> 8318  1183876
#> 8319  1183887
#> 8320  1183892
#> 8321  1183894
#> 8322  1183896
#> 8323  1183898
#> 8324  1183900
#> 8325  1183902
#> 8326  1183904
#> 8327  1183906
#> 8328  1184080
#> 8329  1184086
#> 8330  1184087
#> 8331  1184379
#> 8332  1184380
#> 8333  1184650
#> 8334  1184651
#> 8335  1184652
#> 8336  1184699
#> 8337  1185180
#> 8338  1185196
#> 8339  1185197
#> 8340  1185198
#> 8341  1185199
#> 8342  1185200
#> 8343  1185202
#> 8344  1185203
#> 8345  1185208
#> 8346  1185209
#> 8347  1185210
#> 8348  1185211
#> 8349  1185212
#> 8350  1185213
#> 8351  1185214
#> 8352  1185215
#> 8353  1185216
#> 8354  1185217
#> 8355  1185218
#> 8356  1185219
#> 8357  1185220
#> 8358  1185221
#> 8359  1185222
#> 8360  1185223
#> 8361  1185224
#> 8362  1185225
#> 8363  1185226
#> 8364  1185227
#> 8365  1185228
#> 8366  1185229
#> 8367  1185230
#> 8368  1185231
#> 8369  1185233
#> 8370  1185253
#> 8371  1185255
#> 8372  1185391
#> 8373  1185634
#> 8374  1185635
#> 8375  1185639
#> 8376  1185642
#> 8377  1185643
#> 8378  1185645
#> 8379  1185646
#> 8380  1185647
#> 8381  1185649
#> 8382  1185725
#> 8383  1185744
#> 8384  1185770
#> 8385  1185874
#> 8386  1185875
#> 8387  1185876
#> 8388  1185877
#> 8389  1186218
#> 8390  1186251
#> 8391  1186255
#> 8392  1186447
#> 8393  1186701
#> 8394  1187062
#> 8395  1187160
#> 8396  1187258
#> 8397  1187288
#> 8398  1187627
#> 8399  1187628
#> 8400  1187995
#> 8401  1188004
#> 8402  1188222
#> 8403  1188224
#> 8404  1188225
#> 8405  1188226
#> 8406  1188360
#> 8407  1188622
#> 8408  1188899
#> 8409  1188900
#> 8410  1188901
#> 8411  1188904
#> 8412  1188905
#> 8413  1189503
#> 8414  1189580
#> 8415  1189830
#> 8416  1189831
#> 8417  1189832
#> 8418  1189833
#> 8419  1189834
#> 8420  1189835
#> 8421  1190070
#> 8422  1190324
#> 8423  1190329
#> 8424  1190330
#> 8425  1190331
#> 8426  1190388
#> 8427  1190569
#> 8428  1190570
#> 8429  1190571
#> 8430  1190572
#> 8431  1190619
#> 8432  1191020
#> 8433  1191357
#> 8434  1191361
#> 8435  1191362
#> 8436  1191363
#> 8437  1191364
#> 8438  1191365
#> 8439  1191366
#> 8440  1191367
#> 8441  1191368
#> 8442  1191479
#> 8443  1191577
#> 8444  1191582
#> 8445  1191583
#> 8446  1191584
#> 8447  1191758
#> 8448  1191761
#> 8449  1191762
#> 8450  1191763
#> 8451  1191766
#> 8452  1191973
#> 8453  1191974
#> 8454  1192347
#> 8455  1192348
#> 8456  1192349
#> 8457  1192780
#> 8458  1193483
#> 8459  1193579
#> 8460  1193580
#> 8461  1193581
#> 8462  1193584
#> 8463  1193585
#> 8464  1193586
#> 8465  1193587
#> 8466  1193588
#> 8467  1193589
#> 8468  1193590
#> 8469  1193591
#> 8470  1193592
#> 8471  1193593
#> 8472  1193594
#> 8473  1193595
#> 8474  1193596
#> 8475  1193597
#> 8476  1193598
#> 8477  1193599
#> 8478  1193600
#> 8479  1193601
#> 8480  1193602
#> 8481  1193603
#> 8482  1193604
#> 8483  1193605
#> 8484  1193610
#> 8485  1193611
#> 8486  1193877
#> 8487  1194053
#> 8488  1194235
#> 8489  1194236
#> 8490  1194237
#> 8491  1194238
#> 8492  1194548
#> 8493  1194579
#> 8494  1194693
#> 8495  1194980
#> 8496  1195064
#> 8497  1195291
#> 8498  1195292
#> 8499  1195293
#> 8500  1196125
#> 8501  1196126
#> 8502  1196127
#> 8503  1196128
#> 8504  1196129
#> 8505  1196130
#> 8506  1196131
#> 8507  1196132
#> 8508  1196133
#> 8509  1196134
#> 8510  1196135
#> 8511  1196136
#> 8512  1196137
#> 8513  1196138
#> 8514  1196139
#> 8515  1196140
#> 8516  1196141
#> 8517  1196142
#> 8518  1196143
#> 8519  1196144
#> 8520  1196145
#> 8521  1196146
#> 8522  1196147
#> 8523  1196148
#> 8524  1196149
#> 8525  1196150
#> 8526  1196151
#> 8527  1196152
#> 8528  1196220
#> 8529  1196221
#> 8530  1196811
#> 8531  1196812
#> 8532  1197174
#> 8533  1197332
#> 8534  1197336
#> 8535  1197337
#> 8536  1197338
#> 8537  1197339
#> 8538  1197372
#> 8539  1197580
#> 8540  1197616
#> 8541  1197838
#> 8542  1197866
#> 8543  1197867
#> 8544  1198076
#> 8545  1198102
#> 8546  1198352
#> 8547  1198356
#> 8548  1198369
#> 8549  1198377
#> 8550  1198471
#> 8551  1198933
#> 8552  1198934
#> 8553  1198938
#> 8554  1198939
#> 8555  1198997
#> 8556  1199173
#> 8557  1199266
#> 8558  1199596
#> 8559  1199602
#> 8560  1199604
#> 8561  1199611
#> 8562  1199612
#> 8563  1199613
#> 8564  1199614
#> 8565  1199615
#> 8566  1199616
#> 8567  1199617
#> 8568  1199618
#> 8569  1199619
#> 8570  1199620
#> 8571  1199621
#> 8572  1199622
#> 8573  1199623
#> 8574  1199624
#> 8575  1200154
#> 8576  1200155
#> 8577  1200309
#> 8578  1200491
#> 8579  1200781
#> 8580  1200977
#> 8581  1200978
#> 8582  1200979
#> 8583  1201099
#> 8584  1201102
#> 8585  1201124
#> 8586  1201128
#> 8587  1201130
#> 8588  1201131
#> 8589  1201132
#> 8590  1201133
#> 8591  1201134
#> 8592  1201135
#> 8593  1201136
#> 8594  1201137
#> 8595  1201138
#> 8596  1201139
#> 8597  1201140
#> 8598  1201141
#> 8599  1201142
#> 8600  1201143
#> 8601  1201144
#> 8602  1201145
#> 8603  1201146
#> 8604  1201147
#> 8605  1201486
#> 8606  1201488
#> 8607  1201775
#> 8608  1201777
#> 8609  1201778
#> 8610  1201779
#> 8611  1201780
#> 8612  1201781
#> 8613  1201782
#> 8614  1201783
#> 8615  1201784
#> 8616  1201785
#> 8617  1201786
#> 8618  1201787
#> 8619  1201788
#> 8620  1201789
#> 8621  1201790
#> 8622  1201791
#> 8623  1201792
#> 8624  1201793
#> 8625  1201794
#> 8626  1201809
#> 8627  1201810
#> 8628  1202447
#> 8629  1202459
#> 8630  1202462
#> 8631  1202463
#> 8632  1202593
#> 8633  1202594
#> 8634  1202760
#> 8635  1202850
#> 8636  1203635
#> 8637  1203683
#> 8638  1204007
#> 8639  1204112
#> 8640  1204113
#> 8641  1204114
#> 8642  1204115
#> 8643  1204116
#> 8644  1204118
#> 8645  1204122
#> 8646  1204143
#> 8647  1204783
#> 8648  1204789
#> 8649  1204876
#> 8650  1205076
#> 8651  1205244
#> 8652  1205267
#> 8653  1205268
#> 8654  1205270
#> 8655  1205274
#> 8656  1205275
#> 8657  1205302
#> 8658  1205507
#> 8659  1205520
#> 8660  1205522
#> 8661  1205523
#> 8662  1205524
#> 8663  1205525
#> 8664  1205526
#> 8665  1205527
#> 8666  1205528
#> 8667  1205529
#> 8668  1205530
#> 8669  1205531
#> 8670  1205532
#> 8671  1205533
#> 8672  1205534
#> 8673  1205535
#> 8674  1205536
#> 8675  1205537
#> 8676  1205538
#> 8677  1205539
#> 8678  1205540
#> 8679  1205541
#> 8680  1205625
#> 8681  1205812
#> 8682  1205987
#> 8683  1205989
#> 8684  1205992
#> 8685  1205993
#> 8686  1205994
#> 8687  1205995
#> 8688  1205996
#> 8689  1205997
#> 8690  1205998
#> 8691  1205999
#> 8692  1206000
#> 8693  1206001
#> 8694  1206002
#> 8695  1206003
#> 8696  1206004
#> 8697  1206005
#> 8698  1206008
#> 8699  1206009
#> 8700  1206010
#> 8701  1206011
#> 8702  1206012
#> 8703  1206013
#> 8704  1206270
#> 8705  1206542
#> 8706  1206546
#> 8707  1206736
#> 8708  1206739
#> 8709  1206848
#> 8710  1206852
#> 8711  1207077
#> 8712  1207118
#> 8713  1210090
#> 8714  1210091
#> 8715  1210092
#> 8716  1210093
#> 8717  1210094
#> 8718  1210095
#> 8719  1210096
#> 8720  1210097
#> 8721  1210098
#> 8722  1210099
#> 8723  1210100
#> 8724  1210101
#> 8725  1210102
#> 8726  1210103
#> 8727  1220208
#> 8728  1220348
#> 8729  1222593
#> 8730  1222599
#> 8731  1223765
#> 8732  1224561
#> 8733  1224566
#> 8734  1225506
#> 8735  1225970
#> 8736  1226601
#> 8737  1226621
#> 8738  1226622
#> 8739  1226623
#> 8740  1226624
#> 8741  1226625
#> 8742  1226626
#> 8743  1226627
#> 8744  1226628
#> 8745  1226629
#> 8746  1226630
#> 8747  1226631
#> 8748  1226836
#> 8749  1226837
#> 8750  1226842
#> 8751  1226843
#> 8752  1226848
#> 8753  1226849
#> 8754  1227342
#> 8755  1227343
#> 8756  1227361
#> 8757  1227885
#> 8758  1227890
#> 8759  1227892
#> 8760  1227903
#> 8761  1227904
#> 8762  1227907
#> 8763  1227908
#> 8764  1227911
#> 8765  1227912
#> 8766  1227915
#> 8767  1227916
#> 8768  1227919
#> 8769  1227921
#> 8770  1227923
#> 8771  1227925
#> 8772  1227927
#> 8773  1227998
#> 8774  1228040
#> 8775  1228042
#> 8776  1228044
#> 8777  1228395
#> 8778  1228397
#> 8779  1228630
#> 8780  1228674
#> 8781  1228715
#> 8782  1228719
#> 8783  1228826
#> 8784  1228829
#> 8785  1229553
#> 8786  1229554
#> 8787  1229734
#> 8788  1229764
#> 8789  1230109
#> 8790  1230110
#> 8791  1230122
#> 8792  1230126
#> 8793  1231287
#> 8794  1231350
#> 8795  1231682
#> 8796  1232292
#> 8797  1232938
#> 8798  1232939
#> 8799  1232940
#> 8800  1232941
#> 8801  1232942
#> 8802  1232943
#> 8803  1232944
#> 8804  1232945
#> 8805  1233071
#> 8806  1233077
#> 8807  1233369
#> 8808  1233443
#> 8809  1233502
#> 8810  1234344
#> 8811  1234345
#> 8812  1234346
#> 8813  1234347
#> 8814  1234348
#> 8815  1234349
#> 8816  1234350
#> 8817  1234804
#> 8818  1234842
#> 8819  1234871
#> 8820  1234887
#> 8821  1234899
#> 8822  1235090
#> 8823  1235093
#> 8824  1235099
#> 8825  1235100
#> 8826  1235101
#> 8827  1235102
#> 8828  1235108
#> 8829  1235113
#> 8830  1235221
#> 8831  1235222
#> 8832  1235256
#> 8833  1235827
#> 8834  1235831
#> 8835  1235842
#> 8836  1236176
#> 8837  1236350
#> 8838  1236351
#> 8839  1236352
#> 8840  1236354
#> 8841  1236356
#> 8842  1236357
#> 8843  1236361
#> 8844  1236362
#> 8845  1236363
#> 8846  1236364
#> 8847  1236365
#> 8848  1236366
#> 8849  1236367
#> 8850  1236368
#> 8851  1236369
#> 8852  1236370
#> 8853  1236371
#> 8854  1236372
#> 8855  1236373
#> 8856  1236374
#> 8857  1236375
#> 8858  1236376
#> 8859  1236377
#> 8860  1236522
#> 8861  1236523
#> 8862  1236524
#> 8863  1236525
#> 8864  1236527
#> 8865  1236528
#> 8866  1236529
#> 8867  1236530
#> 8868  1236531
#> 8869  1236532
#> 8870  1236533
#> 8871  1236562
#> 8872  1236563
#> 8873  1236564
#> 8874  1236565
#> 8875  1236568
#> 8876  1236707
#> 8877  1236714
#> 8878  1236738
#> 8879  1236739
#> 8880  1236740
#> 8881  1236753
#> 8882  1236754
#> 8883  1236755
#> 8884  1236765
#> 8885  1236766
#> 8886  1236767
#> 8887  1236774
#> 8888  1236775
#> 8889  1236880
#> 8890  1236897
#> 8891  1237468
#> 8892  1237472
#> 8893  1237721
#> 8894  1237722
#> 8895  1237727
#> 8896  1237728
#> 8897  1237729
#> 8898  1237730
#> 8899  1237731
#> 8900  1237732
#> 8901  1237733
#> 8902  1237753
#> 8903  1237754
#> 8904  1237755
#> 8905  1237756
#> 8906  1237757
#> 8907  1237758
#> 8908  1237759
#> 8909  1237760
#> 8910  1237761
#> 8911  1237762
#> 8912  1237763
#> 8913  1237764
#> 8914  1237765
#> 8915  1237766
#> 8916  1237767
#> 8917  1237768
#> 8918  1238085
#> 8919  1238086
#> 8920  1238089
#> 8921  1238160
#> 8922  1238161
#> 8923  1238353
#> 8924  1238498
#> 8925  1238925
#> 8926  1238946
#> 8927  1238947
#> 8928  1239031
#> 8929  1239037
#> 8930  1239038
#> 8931  1239039
#> 8932  1239295
#> 8933  1239591
#> 8934  1239852
#> 8935  1240075
#> 8936  1240087
#> 8937  1240088
#> 8938  1240155
#> 8939  1240191
#> 8940  1240192
#> 8941  1240193
#> 8942  1240194
#> 8943  1240195
#> 8944  1240196
#> 8945  1240197
#> 8946  1240198
#> 8947  1240199
#> 8948  1240200
#> 8949  1240201
#> 8950  1240202
#> 8951  1240203
#> 8952  1240204
#> 8953  1240205
#> 8954  1240206
#> 8955  1240207
#> 8956  1240208
#> 8957  1240272
#> 8958  1240548
#> 8959  1240612
#> 8960  1241050
#> 8961  1241074
#> 8962  1241183
#> 8963  1241333
#> 8964  1241935
#> 8965  1242057
#> 8966  1242167
#> 8967  1242168
#> 8968  1242172
#> 8969  1242181
#> 8970  1242182
#> 8971  1242783
#> 8972  1242785
#> 8973  1243496
#> 8974  1243515
#> 8975  1244026
#> 8976  1244032
#> 8977  1244033
#> 8978  1244056
#> 8979  1244065
#> 8980  1244080
#> 8981  1244243
#> 8982  1244244
#> 8983  1244245
#> 8984  1244247
#> 8985  1244348
#> 8986  1244542
#> 8987  1244623
#> 8988  1244760
#> 8989  1245175
#> 8990  1245176
#> 8991  1245507
#> 8992  1245508
#> 8993  1245509
#> 8994  1245510
#> 8995  1245511
#> 8996  1245512
#> 8997  1245513
#> 8998  1245514
#> 8999  1245515
#> 9000  1245516
#> 9001  1245517
#> 9002  1245518
#> 9003  1245527
#> 9004  1245528
#> 9005  1245531
#> 9006  1245532
#> 9007  1245535
#> 9008  1245536
#> 9009  1245537
#> 9010  1245538
#> 9011  1245539
#> 9012  1245540
#> 9013  1245541
#> 9014  1245542
#> 9015  1245543
#> 9016  1245544
#> 9017  1245545
#> 9018  1245546
#> 9019  1245547
#> 9020  1245548
#> 9021  1245549
#> 9022  1245550
#> 9023  1245551
#> 9024  1245680
#> 9025  1245681
#> 9026  1245689
#> 9027  1245746
#> 9028  1246953
#> 9029  1246957
#> 9030  1247182
#> 9031  1247187
#> 9032  1247190
#> 9033  1247278
#> 9034  1247849
#> 9035  1247850
#> 9036  1247851
#> 9037  1247852
#> 9038  1247853
#> 9039  1247854
#> 9040  1247855
#> 9041  1247856
#> 9042  1247857
#> 9043  1247858
#> 9044  1247859
#> 9045  1247860
#> 9046  1247879
#> 9047  1248171
#> 9048  1248355
#> 9049  1248356
#> 9050  1248445
#> 9051  1248479
#> 9052  1248480
#> 9053  1248487
#> 9054  1248498
#> 9055  1248499
#> 9056  1249171
#> 9057  1249220
#> 9058  1249630
#> 9059  1249634
#> 9060  1249635
#> 9061  1249636
#> 9062  1249637
#> 9063  1250362
#> 9064  1250462
#> 9065  1250717
#> 9066  1250724
#> 9067  1250814
#> 9068  1250817
#> 9069  1250820
#> 9070  1250823
#> 9071  1250826
#> 9072  1250829
#> 9073  1251003
#> 9074  1251056
#> 9075  1251857
#> 9076  1251860
#> 9077  1251861
#> 9078  1251864
#> 9079  1251865
#> 9080  1251866
#> 9081  1251867
#> 9082  1251868
#> 9083  1251869
#> 9084  1251933
#> 9085  1251952
#> 9086  1252388
#> 9087  1252410
#> 9088  1252468
#> 9089  1252547
#> 9090  1252726
#> 9091  1252729
#> 9092  1252730
#> 9093  1252740
#> 9094  1252743
#> 9095  1252744
#> 9096  1252745
#> 9097  1252746
#> 9098  1253103
#> 9099  1253147
#> 9100  1253148
#> 9101  1253149
#> 9102  1253150
#> 9103  1253151
#> 9104  1253152
#> 9105  1253153
#> 9106  1253864
#> 9107  1253987
#> 9108  1253993
#> 9109  1253994
#> 9110  1253995
#> 9111  1253996
#> 9112  1253997
#> 9113  1253998
#> 9114  1253999
#> 9115  1254000
#> 9116  1254001
#> 9117  1254002
#> 9118  1254003
#> 9119  1254004
#> 9120  1254263
#> 9121  1254406
#> 9122  1254638
#> 9123  1254677
#> 9124  1254681
#> 9125  1254686
#> 9126  1254817
#> 9127  1255082
#> 9128  1255282
#> 9129  1255283
#> 9130  1255299
#> 9131  1255300
#> 9132  1255301
#> 9133  1255360
#> 9134  1255388
#> 9135  1256443
#> 9136  1256522
#> 9137  1256785
#> 9138  1257013
#> 9139  1257017
#> 9140  1259755
#> 9141  1259927
#> 9142  1259935
#> 9143  1259940
#> 9144  1259945
#> 9145  1260303
#> 9146  1260438
#> 9147  1260439
#> 9148  1260440
#> 9149  1260495
#> 9150  1260538
#> 9151  1260595
#> 9152  1261187
#> 9153  1261188
#> 9154  1261189
#> 9155  1261462
#> 9156  1261463
#> 9157  1261470
#> 9158  1261471
#> 9159  1261472
#> 9160  1261641
#> 9161  1261642
#> 9162  1263005
#> 9163  1263291
#> 9164  1263292
#> 9165  1263338
#> 9166  1263415
#> 9167  1263682
#> 9168  1263684
#> 9169  1263689
#> 9170  1263795
#> 9171  1263796
#> 9172  1263797
#> 9173  1263803
#> 9174  1263804
#> 9175  1263805
#> 9176  1263806
#> 9177  1263807
#> 9178  1263808
#> 9179  1263809
#> 9180  1263810
#> 9181  1263811
#> 9182  1263812
#> 9183  1263813
#> 9184  1263814
#> 9185  1263815
#> 9186  1263816
#> 9187  1263817
#> 9188  1263818
#> 9189  1263819
#> 9190  1263820
#> 9191  1264046
#> 9192  1264049
#> 9193  1264050
#> 9194  1264051
#> 9195  1264052
#> 9196  1264053
#> 9197  1264054
#> 9198  1264055
#> 9199  1264056
#> 9200  1264059
#> 9201  1264917
#> 9202  1265154
#> 9203  1265161
#> 9204  1265185
#> 9205  1265192
#> 9206  1265207
#> 9207  1265280
#> 9208  1265359
#> 9209  1265775
#> 9210  1265979
#> 9211  1265985
#> 9212  1265986
#> 9213  1265987
#> 9214  1265988
#> 9215  1265989
#> 9216  1265990
#> 9217  1265991
#> 9218  1265992
#> 9219  1265993
#> 9220  1265994
#> 9221  1265995
#> 9222  1265996
#> 9223  1265997
#> 9224  1265998
#> 9225  1265999
#> 9226  1266000
#> 9227  1266049
#> 9228  1266051
#> 9229  1266052
#> 9230  1266053
#> 9231  1266054
#> 9232  1266055
#> 9233  1266056
#> 9234  1266057
#> 9235  1266058
#> 9236  1266085
#> 9237  1266099
#> 9238  1266100
#> 9239  1266255
#> 9240  1266256
#> 9241  1266259
#> 9242  1266260
#> 9243  1266261
#> 9244  1266262
#> 9245  1266263
#> 9246  1266339
#> 9247  1266375
#> 9248  1266392
#> 9249  1266399
#> 9250  1266808
#> 9251  1266817
#> 9252  1266818
#> 9253  1266819
#> 9254  1266820
#> 9255  1267275
#> 9256  1267440
#> 9257  1267441
#> 9258  1267442
#> 9259  1267532
#> 9260  1267693
#> 9261  1268048
#> 9262  1268281
#> 9263  1268285
#> 9264  1268286
#> 9265  1268287
#> 9266  1268288
#> 9267  1268289
#> 9268  1268290
#> 9269  1268291
#> 9270  1268292
#> 9271  1268293
#> 9272  1268294
#> 9273  1268295
#> 9274  1268296
#> 9275  1268297
#> 9276  1268298
#> 9277  1268299
#> 9278  1268300
#> 9279  1268301
#> 9280  1269264
#> 9281  1269416
#> 9282  1269417
#> 9283  1269418
#> 9284  1269419
#> 9285  1269420
#> 9286  1269421
#> 9287  1269422
#> 9288  1269423
#> 9289  1269427
#> 9290  1269428
#> 9291  1269637
#> 9292  1270277
#> 9293  1270280
#> 9294  1270281
#> 9295  1270282
#> 9296  1270284
#> 9297  1270285
#> 9298  1270286
#> 9299  1270287
#> 9300  1270579
#> 9301  1270580
#> 9302  1270581
#> 9303  1270591
#> 9304  1270592
#> 9305  1270593
#> 9306  1270594
#> 9307  1270595
#> 9308  1270596
#> 9309  1270597
#> 9310  1270598
#> 9311  1270599
#> 9312  1270600
#> 9313  1270601
#> 9314  1270602
#> 9315  1270603
#> 9316  1270604
#> 9317  1270605
#> 9318  1270606
#> 9319  1270607
#> 9320  1270608
#> 9321  1270609
#> 9322  1270610
#> 9323  1270611
#> 9324  1270612
#> 9325  1270850
#> 9326  1271582
#> 9327  1271847
#> 9328  1272010
#> 9329  1272011
#> 9330  1272242
#> 9331  1272820
#> 9332  1272952
#> 9333  1272953
#> 9334  1273071
#> 9335  1273502
#> 9336  1273779
#> 9337  1273838
#> 9338  1273853
#> 9339  1273866
#> 9340  1273885
#> 9341  1273886
#> 9342  1273996
#> 9343  1273997
#> 9344  1274500
#> 9345  1274550
#> 9346  1274551
#> 9347  1274554
#> 9348  1274567
#> 9349  1274892
#> 9350  1274894
#> 9351  1274896
#> 9352  1275021
#> 9353  1275247
#> 9354  1275496
#> 9355  1275632
#> 9356  1276172
#> 9357  1276240
#> 9358  1276337
#> 9359  1276338
#> 9360  1276339
#> 9361  1276340
#> 9362  1276341
#> 9363  1276342
#> 9364  1276343
#> 9365  1276344
#> 9366  1276347
#> 9367  1276370
#> 9368  1276371
#> 9369  1276372
#> 9370  1276374
#> 9371  1276376
#> 9372  1276377
#> 9373  1276458
#> 9374  1276751
#> 9375  1276965
#> 9376  1276966
#> 9377  1276968
#> 9378  1276969
#> 9379  1277150
#> 9380  1277317
#> 9381  1277318
#> 9382  1277319
#> 9383  1277320
#> 9384  1277321
#> 9385  1277760
#> 9386  1277762
#> 9387  1277765
#> 9388  1277766
#> 9389  1277767
#> 9390  1277771
#> 9391  1277772
#> 9392  1277773
#> 9393  1277776
#> 9394  1277777
#> 9395  1277798
#> 9396  1277801
#> 9397  1277803
#> 9398  1278210
#> 9399  1278365
#> 9400  1278366
#> 9401  1278370
#> 9402  1278375
#> 9403  1279005
#> 9404  1279099
#> 9405  1279124
#> 9406  1279712
#> 9407  1280151
#> 9408  1280266
#> 9409  1280267
#> 9410  1280268
#> 9411  1280269
#> 9412  1280270
#> 9413  1280271
#> 9414  1280272
#> 9415  1280273
#> 9416  1280274
#> 9417  1280359
#> 9418  1280422
#> 9419  1280423
#> 9420  1280424
#> 9421  1281441
#> 9422  1281444
#> 9423  1281447
#> 9424  1281452
#> 9425  1281453
#> 9426  1281454
#> 9427  1281455
#> 9428  1281461
#> 9429  1281464
#> 9430  1281467
#> 9431  1281470
#> 9432  1281473
#> 9433  1281479
#> 9434  1281480
#> 9435  1281481
#> 9436  1281486
#> 9437  1281489
#> 9438  1281492
#> 9439  1281495
#> 9440  1281498
#> 9441  1281501
#> 9442  1281503
#> 9443  1281506
#> 9444  1281508
#> 9445  1281510
#> 9446  1281512
#> 9447  1281518
#> 9448  1281520
#> 9449  1281522
#> 9450  1281652
#> 9451  1281814
#> 9452  1281819
#> 9453  1281821
#> 9454  1281822
#> 9455  1282090
#> 9456  1282156
#> 9457  1282159
#> 9458  1282211
#> 9459  1282212
#> 9460  1282227
#> 9461  1282234
#> 9462  1282235
#> 9463  1282237
#> 9464  1282329
#> 9465  1282339
#> 9466  1282345
#> 9467  1282346
#> 9468  1282347
#> 9469  1282348
#> 9470  1282349
#> 9471  1282350
#> 9472  1282351
#> 9473  1282352
#> 9474  1282353
#> 9475  1282354
#> 9476  1282355
#> 9477  1282356
#> 9478  1282357
#> 9479  1282358
#> 9480  1282359
#> 9481  1282471
#> 9482  1282475
#> 9483  1282563
#> 9484  1282564
#> 9485  1282566
#> 9486  1282567
#> 9487  1283860
#> 9488  1283925
#> 9489  1283926
#> 9490  1283938
#> 9491  1283939
#> 9492  1283940
#> 9493  1283941
#> 9494  1283942
#> 9495  1283943
#> 9496  1283944
#> 9497  1283952
#> 9498  1283953
#> 9499  1284014
#> 9500  1284126
#> 9501  1285133
#> 9502  1285262
#> 9503  1285285
#> 9504  1285910
#> 9505  1285913
#> 9506  1285914
#> 9507  1285915
#> 9508  1285916
#> 9509  1285917
#> 9510  1285918
#> 9511  1285919
#> 9512  1285920
#> 9513  1286126
#> 9514  1286131
#> 9515  1286914
#> 9516  1286946
#> 9517  1287244
#> 9518  1287250
#> 9519  1287386
#> 9520  1287504
#> 9521  1287507
#> 9522  1287508
#> 9523  1287881
#> 9524  1287953
#> 9525  1287956
#> 9526  1287981
#> 9527  1288094
#> 9528  1288191
#> 9529  1288195
#> 9530  1288233
#> 9531  1288234
#> 9532  1289293
#> 9533  1289354
#> 9534  1289360
#> 9535  1289382
#> 9536  1289966
#> 9537  1289967
#> 9538  1289970
#> 9539  1289971
#> 9540  1290881
#> 9541  1290902
#> 9542  1290928
#> 9543  1290969
#> 9544  1291292
#> 9545  1291383
#> 9546  1291387
#> 9547  1291391
#> 9548  1291392
#> 9549  1291393
#> 9550  1291394
#> 9551  1291395
#> 9552  1291396
#> 9553  1291397
#> 9554  1291398
#> 9555  1291399
#> 9556  1291400
#> 9557  1291401
#> 9558  1291402
#> 9559  1291403
#> 9560  1291404
#> 9561  1291405
#> 9562  1291406
#> 9563  1291407
#> 9564  1291408
#> 9565  1291409
#> 9566  1291410
#> 9567  1291411
#> 9568  1291412
#> 9569  1291413
#> 9570  1291414
#> 9571  1291415
#> 9572  1291416
#> 9573  1291417
#> 9574  1291418
#> 9575  1291419
#> 9576  1291420
#> 9577  1291421
#> 9578  1291422
#> 9579  1291423
#> 9580  1291424
#> 9581  1291425
#> 9582  1291454
#> 9583  1292139
#> 9584  1292257
#> 9585  1292262
#> 9586  1292269
#> 9587  1293489
#> 9588  1293490
#> 9589  1293491
#> 9590  1293492
#> 9591  1293493
#> 9592  1293500
#> 9593  1293501
#> 9594  1293502
#> 9595  1293503
#> 9596  1293504
#> 9597  1293505
#> 9598  1293506
#> 9599  1293507
#> 9600  1293508
#> 9601  1293518
#> 9602  1293519
#> 9603  1293520
#> 9604  1293555
#> 9605  1293729
#> 9606  1293732
#> 9607  1293736
#> 9608  1293743
#> 9609  1293875
#> 9610  1293902
#> 9611  1293906
#> 9612  1293907
#> 9613  1294592
#> 9614  1294871
#> 9615  1294935
#> 9616  1294936
#> 9617  1294937
#> 9618  1294938
#> 9619  1294939
#> 9620  1294943
#> 9621  1294960
#> 9622  1294961
#> 9623  1294962
#> 9624  1294972
#> 9625  1294993
#> 9626  1295333
#> 9627  1295450
#> 9628  1295480
#> 9629  1295482
#> 9630  1295485
#> 9631  1295594
#> 9632  1295730
#> 9633  1295985
#> 9634  1295986
#> 9635  1296397
#> 9636  1296398
#> 9637  1296403
#> 9638  1296404
#> 9639  1296731
#> 9640  1297393
#> 9641  1297395
#> 9642  1297978
#> 9643  1297984
#> 9644  1298602
#> 9645  1298813
#> 9646  1298841
#> 9647  1298858
#> 9648  1298859
#> 9649  1298860
#> 9650  1299475
#> 9651  1299476
#> 9652  1299490
#> 9653  1299491
#> 9654  1299492
#> 9655  1299493
#> 9656  1299494
#> 9657  1299495
#> 9658  1299496
#> 9659  1299497
#> 9660  1299498
#> 9661  1299499
#> 9662  1299500
#> 9663  1299501
#> 9664  1299502
#> 9665  1299503
#> 9666  1299504
#> 9667  1299920
#> 9668  1299921
#> 9669  1299922
#> 9670  1299923
#> 9671  1299924
#> 9672  1299925
#> 9673  1299926
#> 9674  1299927
#> 9675  1299928
#> 9676  1300618
#> 9677  1300660
#> 9678  1300664
#> 9679  1300669
#> 9680  1300674
#> 9681  1300820
#> 9682  1301248
#> 9683  1301417
#> 9684  1303538
#> 9685  1304053
#> 9686  1304055
#> 9687  1304061
#> 9688  1304070
#> 9689  1304182
#> 9690  1304220
#> 9691  1304225
#> 9692  1304342
#> 9693  1304345
#> 9694  1304391
#> 9695  1304427
#> 9696  1304428
#> 9697  1304431
#> 9698  1304432
#> 9699  1304535
#> 9700  1304536
#> 9701  1304537
#> 9702  1304582
#> 9703  1304839
#> 9704  1304840
#> 9705  1304841
#> 9706  1305660
#> 9707  1306333
#> 9708  1306358
#> 9709  1306364
#> 9710  1306910
#> 9711  1307274
#> 9712  1307458
#> 9713  1307474
#> 9714  1307488
#> 9715  1307489
#> 9716  1307496
#> 9717  1307497
#> 9718  1308542
#> 9719  1309495
#> 9720  1309496
#> 9721  1309497
#> 9722  1309806
#> 9723  1309818
#> 9724  1309834
#> 9725  1309837
#> 9726  1309840
#> 9727  1309894
#> 9728  1310511
#> 9729  1310512
#> 9730  1310517
#> 9731  1310518
#> 9732  1310519
#> 9733  1310520
#> 9734  1310521
#> 9735  1310524
#> 9736  1310525
#> 9737  1311194
#> 9738  1311196
#> 9739  1311197
#> 9740  1311198
#> 9741  1311199
#> 9742  1311200
#> 9743  1311201
#> 9744  1311202
#> 9745  1311203
#> 9746  1311204
#> 9747  1311205
#> 9748  1311270
#> 9749  1311278
#> 9750  1311285
#> 9751  1311295
#> 9752  1311296
#> 9753  1311298
#> 9754  1311310
#> 9755  1311344
#> 9756  1311603
#> 9757  1311604
#> 9758  1311610
#> 9759  1311612
#> 9760  1311613
#> 9761  1311614
#> 9762  1311615
#> 9763  1311616
#> 9764  1311617
#> 9765  1311618
#> 9766  1311619
#> 9767  1311620
#> 9768  1311621
#> 9769  1311622
#> 9770  1311623
#> 9771  1311624
#> 9772  1311625
#> 9773  1311626
#> 9774  1311627
#> 9775  1311628
#> 9776  1311629
#> 9777  1311630
#> 9778  1311631
#> 9779  1311632
#> 9780  1311633
#> 9781  1311634
#> 9782  1311635
#> 9783  1311636
#> 9784  1311637
#> 9785  1311638
#> 9786  1311639
#> 9787  1311640
#> 9788  1311641
#> 9789  1311642
#> 9790  1311643
#> 9791  1311644
#> 9792  1311645
#> 9793  1311646
#> 9794  1311647
#> 9795  1311648
#> 9796  1311649
#> 9797  1311650
#> 9798  1311651
#> 9799  1311652
#> 9800  1311709
#> 9801  1311797
#> 9802  1311798
#> 9803  1311801
#> 9804  1311802
#> 9805  1312042
#> 9806  1312340
#> 9807  1312341
#> 9808  1312342
#> 9809  1312343
#> 9810  1312344
#> 9811  1312345
#> 9812  1312404
#> 9813  1312408
#> 9814  1312623
#> 9815  1312626
#> 9816  1312642
#> 9817  1312645
#> 9818  1312649
#> 9819  1312658
#> 9820  1312665
#> 9821  1312867
#> 9822  1312969
#> 9823  1312970
#> 9824  1312971
#> 9825  1312972
#> 9826  1312973
#> 9827  1312974
#> 9828  1312975
#> 9829  1312976
#> 9830  1312977
#> 9831  1312978
#> 9832  1312979
#> 9833  1312980
#> 9834  1312981
#> 9835  1312982
#> 9836  1312983
#> 9837  1312984
#> 9838  1312985
#> 9839  1312986
#> 9840  1312987
#> 9841  1312988
#> 9842  1312989
#> 9843  1312990
#> 9844  1312991
#> 9845  1312992
#> 9846  1312993
#> 9847  1312999
#> 9848  1313006
#> 9849  1313009
#> 9850  1313012
#> 9851  1313014
#> 9852  1313015
#> 9853  1314070
#> 9854  1315445
#> 9855  1315645
#> 9856  1315649
#> 9857  1315679
#> 9858  1315689
#> 9859  1315692
#> 9860  1315694
#> 9861  1316189
#> 9862  1316903
#> 9863  1316909
#> 9864  1316910
#> 9865  1316911
#> 9866  1317335
#> 9867  1317377
#> 9868  1317664
#> 9869  1317665
#> 9870  1317830
#> 9871  1318682
#> 9872  1318838
#> 9873  1318859
#> 9874  1318863
#> 9875  1319401
#> 9876  1320554
#> 9877  1320555
#> 9878  1320556
#> 9879  1320951
#> 9880  1320983
#> 9881  1321024
#> 9882  1321516
#> 9883  1321619
#> 9884  1322187
#> 9885  1322192
#> 9886  1322193
#> 9887  1322665
#> 9888  1322669
#> 9889  1322672
#> 9890  1322673
#> 9891  1322674
#> 9892  1322675
#> 9893  1322679
#> 9894  1322680
#> 9895  1322681
#> 9896  1322682
#> 9897  1323194
#> 9898  1323224
#> 9899  1323226
#> 9900  1323272
#> 9901  1323394
#> 9902  1323437
#> 9903  1324282
#> 9904  1324283
#> 9905  1324290
#> 9906  1324332
#> 9907  1324367
#> 9908  1324383
#> 9909  1324673
#> 9910  1324674
#> 9911  1324677
#> 9912  1324691
#> 9913  1324692
#> 9914  1324693
#> 9915  1324694
#> 9916  1324839
#> 9917  1325174
#> 9918  1325185
#> 9919  1325324
#> 9920  1325327
#> 9921  1326446
#> 9922  1326613
#> 9923  1326628
#> 9924  1326761
#> 9925  1326771
#> 9926  1326772
#> 9927  1326773
#> 9928  1326776
#> 9929  1326777
#> 9930  1326778
#> 9931  1326779
#> 9932  1326780
#> 9933  1326781
#> 9934  1326782
#> 9935  1326783
#> 9936  1326784
#> 9937  1326785
#> 9938  1326786
#> 9939  1326787
#> 9940  1326788
#> 9941  1326789
#> 9942  1326790
#> 9943  1326791
#> 9944  1326792
#> 9945  1326793
#> 9946  1326794
#> 9947  1326795
#> 9948  1326797
#> 9949  1326808
#> 9950  1326916
#> 9951  1326923
#> 9952  1327256
#> 9953  1327611
#> 9954  1327943
#> 9955  1327944
#> 9956  1327945
#> 9957  1327951
#> 9958  1327986
#> 9959  1328113
#> 9960  1328345
#> 9961  1328352
#> 9962  1328758
#> 9963  1328759
#> 9964  1328894
#> 9965  1328896
#> 9966  1329678
#> 9967  1329761
#> 9968  1329765
#> 9969  1329766
#> 9970  1329767
#> 9971  1329768
#> 9972  1329769
#> 9973  1329770
#> 9974  1329771
#> 9975  1329772
#> 9976  1329773
#> 9977  1330207
#> 9978  1330282
#> 9979  1330679
#> 9980  1330717
#> 9981  1330743
#> 9982  1330942
#> 9983  1331138
#> 9984  1331139
#> 9985  1331140
#> 9986  1331141
#> 9987  1331146
#> 9988  1331147
#> 9989  1331195
#> 9990  1331196
#> 9991  1331683
#> 9992  1331866
#> 9993  1331921
#> 9994  1332066
#> 9995  1332137
#> 9996  1332221
#> 9997  1332222
#> 9998  1332272
#> 9999  1332469
#> 10000 1332474
#> 10001 1332889
#> 10002 1332890
#> 10003 1332891
#> 10004 1333345
#> 10005 1333369
#> 10006 1333401
#> 10007 1333403
#> 10008 1333404
#> 10009 1333405
#> 10010 1333406
#> 10011 1333407
#> 10012 1333408
#> 10013 1333409
#> 10014 1333410
#> 10015 1333411
#> 10016 1333412
#> 10017 1333413
#> 10018 1333414
#> 10019 1333415
#> 10020 1333416
#> 10021 1333417
#> 10022 1333418
#> 10023 1333419
#> 10024 1333783
#> 10025 1333789
#> 10026 1333796
#> 10027 1333797
#> 10028 1333798
#> 10029 1333799
#> 10030 1333800
#> 10031 1333801
#> 10032 1333802
#> 10033 1333803
#> 10034 1333804
#> 10035 1333805
#> 10036 1333875
#> 10037 1334988
#> 10038 1335229
#> 10039 1335252
#> 10040 1335253
#> 10041 1335339
#> 10042 1335572
#> 10043 1335671
#> 10044 1335715
#> 10045 1335740
#> 10046 1335741
#> 10047 1335742
#> 10048 1336104
#> 10049 1336107
#> 10050 1336614
#> 10051 1336625
#> 10052 1336748
#> 10053 1336929
#> 10054 1336946
#> 10055 1337043
#> 10056 1337044
#> 10057 1337331
#> 10058 1337335
#> 10059 1337476
#> 10060 1337672
#> 10061 1337694
#> 10062 1337704
#> 10063 1337860
#> 10064 1337861
#> 10065 1337872
#> 10066 1337873
#> 10067 1337875
#> 10068 1337884
#> 10069 1337885
#> 10070 1337886
#> 10071 1337887
#> 10072 1338079
#> 10073 1338408
#> 10074 1338410
#> 10075 1338420
#> 10076 1338424
#> 10077 1338425
#> 10078 1338426
#> 10079 1338429
#> 10080 1338430
#> 10081 1338431
#> 10082 1338432
#> 10083 1338433
#> 10084 1338434
#> 10085 1338435
#> 10086 1338436
#> 10087 1338437
#> 10088 1338438
#> 10089 1338439
#> 10090 1338505
#> 10091 1338506
#> 10092 1338512
#> 10093 1338515
#> 10094 1338516
#> 10095 1338517
#> 10096 1338518
#> 10097 1338536
#> 10098 1339746
#> 10099 1339748
#> 10100 1339749
#> 10101 1339750
#> 10102 1339751
#> 10103 1339796
#> 10104 1340386
#> 10105 1340484
#> 10106 1340485
#> 10107 1340486
#> 10108 1340600
#> 10109 1340607
#> 10110 1340608
#> 10111 1340609
#> 10112 1340797
#> 10113 1340798
#> 10114 1340799
#> 10115 1340800
#> 10116 1340801
#> 10117 1340803
#> 10118 1341033
#> 10119 1341034
#> 10120 1341035
#> 10121 1341222
#> 10122 1341223
#> 10123 1341224
#> 10124 1341225
#> 10125 1341226
#> 10126 1341227
#> 10127 1341854
#> 10128 1341855
#> 10129 1341856
#> 10130 1342578
#> 10131 1347605
#> 10132 1347686
#> 10133 1347691
#> 10134 1347717
#> 10135 1347948
#> 10136 1347989
#> 10137 1348020
#> 10138 1348283
#> 10139 1348296
#> 10140 1348297
#> 10141 1348298
#> 10142 1348299
#> 10143 1348300
#> 10144 1348302
#> 10145 1348304
#> 10146 1348305
#> 10147 1348306
#> 10148 1348307
#> 10149 1348308
#> 10150 1348309
#> 10151 1348678
#> 10152 1348796
#> 10153 1348858
#> 10154 1349059
#> 10155 1349060
#> 10156 1349922
#> 10157 1351371
#> 10158 1351509
#> 10159 1351553
#> 10160 1351590
#> 10161 1351597
#> 10162 1351601
#> 10163 1351625
#> 10164 1351630
#> 10165 1351636
#> 10166 1351642
#> 10167 1351648
#> 10168 1351722
#> 10169 1352042
#> 10170 1352048
#> 10171 1352049
#> 10172 1352050
#> 10173 1352051
#> 10174 1352052
#> 10175 1352053
#> 10176 1352054
#> 10177 1352055
#> 10178 1352056
#> 10179 1352057
#> 10180 1352058
#> 10181 1352102
#> 10182 1352354
#> 10183 1352791
#> 10184 1352854
#> 10185 1353321
#> 10186 1353602
#> 10187 1353607
#> 10188 1353631
#> 10189 1353903
#> 10190 1353904
#> 10191 1353907
#> 10192 1353908
#> 10193 1353914
#> 10194 1353915
#> 10195 1353916
#> 10196 1353917
#> 10197 1353918
#> 10198 1353919
#> 10199 1353920
#> 10200 1353922
#> 10201 1353923
#> 10202 1353926
#> 10203 1353932
#> 10204 1353933
#> 10205 1353934
#> 10206 1353935
#> 10207 1353936
#> 10208 1353937
#> 10209 1353938
#> 10210 1353939
#> 10211 1353940
#> 10212 1353941
#> 10213 1353942
#> 10214 1353943
#> 10215 1353944
#> 10216 1353945
#> 10217 1353946
#> 10218 1353947
#> 10219 1353948
#> 10220 1353949
#> 10221 1353950
#> 10222 1354765
#> 10223 1354808
#> 10224 1355086
#> 10225 1355122
#> 10226 1355749
#> 10227 1355753
#> 10228 1356527
#> 10229 1357153
#> 10230 1357525
#> 10231 1358237
#> 10232 1358238
#> 10233 1359153
#> 10234 1359157
#> 10235 1359162
#> 10236 1359163
#> 10237 1359166
#> 10238 1359167
#> 10239 1359168
#> 10240 1359169
#> 10241 1359170
#> 10242 1359458
#> 10243 1359775
#> 10244 1360199
#> 10245 1360407
#> 10246 1360488
#> 10247 1360491
#> 10248 1360492
#> 10249 1360493
#> 10250 1360494
#> 10251 1360519
#> 10252 1360520
#> 10253 1360701
#> 10254 1360878
#> 10255 1360894
#> 10256 1361024
#> 10257 1361032
#> 10258 1361034
#> 10259 1361052
#> 10260 1362219
#> 10261 1362220
#> 10262 1362221
#> 10263 1362222
#> 10264 1362223
#> 10265 1362224
#> 10266 1362225
#> 10267 1362226
#> 10268 1362227
#> 10269 1362236
#> 10270 1362238
#> 10271 1362239
#> 10272 1362240
#> 10273 1362595
#> 10274 1362924
#> 10275 1363195
#> 10276 1364316
#> 10277 1364641
#> 10278 1364647
#> 10279 1364648
#> 10280 1364649
#> 10281 1364866
#> 10282 1364867
#> 10283 1364868
#> 10284 1364869
#> 10285 1364870
#> 10286 1364871
#> 10287 1364872
#> 10288 1364873
#> 10289 1364874
#> 10290 1364875
#> 10291 1364876
#> 10292 1364877
#> 10293 1364878
#> 10294 1364879
#> 10295 1364880
#> 10296 1364881
#> 10297 1364882
#> 10298 1364883
#> 10299 1364884
#> 10300 1364885
#> 10301 1364886
#> 10302 1364887
#> 10303 1364888
#> 10304 1364889
#> 10305 1364890
#> 10306 1364891
#> 10307 1364892
#> 10308 1364893
#> 10309 1364894
#> 10310 1364895
#> 10311 1364896
#> 10312 1364897
#> 10313 1364898
#> 10314 1364899
#> 10315 1365175
#> 10316 1365617
#> 10317 1366709
#> 10318 1366860
#> 10319 1367200
#> 10320 1367219
#> 10321 1367220
#> 10322 1367600
#> 10323 1367971
#> 10324 1367972
#> 10325 1367983
#> 10326 1367984
#> 10327 1367985
#> 10328 1367986
#> 10329 1367987
#> 10330 1367988
#> 10331 1367989
#> 10332 1367990
#> 10333 1367991
#> 10334 1367992
#> 10335 1367993
#> 10336 1367994
#> 10337 1367995
#> 10338 1367996
#> 10339 1367997
#> 10340 1367998
#> 10341 1368004
#> 10342 1368005
#> 10343 1368088
#> 10344 1368237
#> 10345 1368238
#> 10346 1368239
#> 10347 1368240
#> 10348 1368241
#> 10349 1368242
#> 10350 1368243
#> 10351 1368244
#> 10352 1368245
#> 10353 1368246
#> 10354 1368247
#> 10355 1368248
#> 10356 1368259
#> 10357 1368262
#> 10358 1368263
#> 10359 1368264
#> 10360 1368265
#> 10361 1368910
#> 10362 1369036
#> 10363 1369037
#> 10364 1369038
#> 10365 1369039
#> 10366 1369048
#> 10367 1369290
#> 10368 1370138
#> 10369 1370140
#> 10370 1370142
#> 10371 1370144
#> 10372 1370146
#> 10373 1370150
#> 10374 1370151
#> 10375 1370152
#> 10376 1370154
#> 10377 1370156
#> 10378 1370158
#> 10379 1370160
#> 10380 1370162
#> 10381 1370164
#> 10382 1370165
#> 10383 1370174
#> 10384 1370443
#> 10385 1370608
#> 10386 1370809
#> 10387 1370848
#> 10388 1371027
#> 10389 1371331
#> 10390 1371473
#> 10391 1372078
#> 10392 1372079
#> 10393 1372081
#> 10394 1372082
#> 10395 1372138
#> 10396 1372139
#> 10397 1372733
#> 10398 1372736
#> 10399 1372742
#> 10400 1373379
#> 10401 1373393
#> 10402 1373394
#> 10403 1373395
#> 10404 1373396
#> 10405 1373397
#> 10406 1373398
#> 10407 1373399
#> 10408 1373400
#> 10409 1373401
#> 10410 1373402
#> 10411 1374019
#> 10412 1374020
#> 10413 1374097
#> 10414 1374232
#> 10415 1374370
#> 10416 1374856
#> 10417 1374948
#> 10418 1375725
#> 10419 1376923
#> 10420 1376932
#> 10421 1376989
#> 10422 1377013
#> 10423 1377079
#> 10424 1377086
#> 10425 1377167
#> 10426 1377480
#> 10427 1377489
#> 10428 1377490
#> 10429 1377508
#> 10430 1378248
#> 10431 1378386
#> 10432 1378391
#> 10433 1378396
#> 10434 1378403
#> 10435 1378409
#> 10436 1378623
#> 10437 1378627
#> 10438 1378645
#> 10439 1379253
#> 10440 1379254
#> 10441 1379255
#> 10442 1379256
#> 10443 1379257
#> 10444 1379650
#> 10445 1379651
#> 10446 1379661
#> 10447 1379663
#> 10448 1379664
#> 10449 1379665
#> 10450 1379666
#> 10451 1379667
#> 10452 1379668
#> 10453 1379669
#> 10454 1379670
#> 10455 1379671
#> 10456 1379672
#> 10457 1379673
#> 10458 1379674
#> 10459 1379675
#> 10460 1379676
#> 10461 1379677
#> 10462 1379678
#> 10463 1379679
#> 10464 1379680
#> 10465 1379681
#> 10466 1379682
#> 10467 1379683
#> 10468 1379684
#> 10469 1379685
#> 10470 1379686
#> 10471 1379687
#> 10472 1379688
#> 10473 1379689
#> 10474 1379690
#> 10475 1379691
#> 10476 1379692
#> 10477 1379693
#> 10478 1379817
#> 10479 1379947
#> 10480 1379948
#> 10481 1379969
#> 10482 1379995
#> 10483 1380399
#> 10484 1380404
#> 10485 1380405
#> 10486 1380406
#> 10487 1380407
#> 10488 1380408
#> 10489 1380409
#> 10490 1380410
#> 10491 1380411
#> 10492 1380412
#> 10493 1380413
#> 10494 1380414
#> 10495 1380415
#> 10496 1380416
#> 10497 1380417
#> 10498 1380418
#> 10499 1380419
#> 10500 1380420
#> 10501 1380421
#> 10502 1380422
#> 10503 1380423
#> 10504 1380424
#> 10505 1380425
#> 10506 1380426
#> 10507 1380427
#> 10508 1380428
#> 10509 1380429
#> 10510 1380430
#> 10511 1380431
#> 10512 1380432
#> 10513 1380433
#> 10514 1380434
#> 10515 1380435
#> 10516 1380436
#> 10517 1380437
#> 10518 1380438
#> 10519 1380439
#> 10520 1380440
#> 10521 1380441
#> 10522 1380442
#> 10523 1380443
#> 10524 1380444
#> 10525 1380445
#> 10526 1380446
#> 10527 1380447
#> 10528 1380943
#> 10529 1380997
#> 10530 1381047
#> 10531 1381048
#> 10532 1381049
#> 10533 1381077
#> 10534 1381079
#> 10535 1381080
#> 10536 1381081
#> 10537 1381082
#> 10538 1381083
#> 10539 1381084
#> 10540 1381085
#> 10541 1381086
#> 10542 1381087
#> 10543 1381563
#> 10544 1381567
#> 10545 1381570
#> 10546 1381572
#> 10547 1381573
#> 10548 1381574
#> 10549 1381575
#> 10550 1381576
#> 10551 1381577
#> 10552 1381578
#> 10553 1381579
#> 10554 1381580
#> 10555 1381581
#> 10556 1381582
#> 10557 1381583
#> 10558 1381973
#> 10559 1382316
#> 10560 1382444
#> 10561 1382446
#> 10562 1382639
#> 10563 1382776
#> 10564 1382780
#> 10565 1382783
#> 10566 1383307
#> 10567 1383993
#> 10568 1384133
#> 10569 1384259
#> 10570 1384646
#> 10571 1384652
#> 10572 1385098
#> 10573 1385099
#> 10574 1385454
#> 10575 1385700
#> 10576 1386263
#> 10577 1386264
#> 10578 1386265
#> 10579 1386266
#> 10580 1386517
#> 10581 1386519
#> 10582 1386590
#> 10583 1387100
#> 10584 1387378
#> 10585 1387381
#> 10586 1388158
#> 10587 1388168
#> 10588 1388178
#> 10589 1388321
#> 10590 1388322
#> 10591 1388523
#> 10592 1388624
#> 10593 1388625
#> 10594 1388626
#> 10595 1388627
#> 10596 1388628
#> 10597 1388631
#> 10598 1388632
#> 10599 1388633
#> 10600 1388634
#> 10601 1388635
#> 10602 1388637
#> 10603 1388638
#> 10604 1388640
#> 10605 1388641
#> 10606 1388900
#> 10607 1389352
#> 10608 1389357
#> 10609 1390003
#> 10610 1390004
#> 10611 1390025
#> 10612 1390092
#> 10613 1390170
#> 10614 1390171
#> 10615 1390172
#> 10616 1390181
#> 10617 1390184
#> 10618 1390185
#> 10619 1390186
#> 10620 1390189
#> 10621 1390190
#> 10622 1390191
#> 10623 1390195
#> 10624 1390197
#> 10625 1390219
#> 10626 1390384
#> 10627 1391248
#> 10628 1391396
#> 10629 1391397
#> 10630 1391668
#> 10631 1392068
#> 10632 1392077
#> 10633 1392078
#> 10634 1392309
#> 10635 1392487
#> 10636 1392517
#> 10637 1392528
#> 10638 1392529
#> 10639 1392530
#> 10640 1392531
#> 10641 1392532
#> 10642 1392533
#> 10643 1392534
#> 10644 1392535
#> 10645 1392536
#> 10646 1392537
#> 10647 1392538
#> 10648 1392539
#> 10649 1392540
#> 10650 1392541
#> 10651 1392558
#> 10652 1393882
#> 10653 1393885
#> 10654 1393888
#> 10655 1393889
#> 10656 1393890
#> 10657 1393897
#> 10658 1393898
#> 10659 1393903
#> 10660 1393906
#> 10661 1394672
#> 10662 1394768
#> 10663 1395051
#> 10664 1395532
#> 10665 1395977
#> 10666 1397252
#> 10667 1397261
#> 10668 1397548
#> 10669 1398042
#> 10670 1398044
#> 10671 1398045
#> 10672 1398046
#> 10673 1398047
#> 10674 1398048
#> 10675 1398049
#> 10676 1398050
#> 10677 1398051
#> 10678 1398052
#> 10679 1398053
#> 10680 1398054
#> 10681 1398055
#> 10682 1398056
#> 10683 1398057
#> 10684 1398058
#> 10685 1398059
#> 10686 1398060
#> 10687 1398061
#> 10688 1398062
#> 10689 1398063
#> 10690 1398064
#> 10691 1398065
#> 10692 1398066
#> 10693 1398067
#> 10694 1398068
#> 10695 1398069
#> 10696 1398070
#> 10697 1398071
#> 10698 1398072
#> 10699 1398073
#> 10700 1398074
#> 10701 1398075
#> 10702 1398076
#> 10703 1398077
#> 10704 1398078
#> 10705 1398079
#> 10706 1398080
#> 10707 1398081
#> 10708 1398082
#> 10709 1398083
#> 10710 1398084
#> 10711 1398085
#> 10712 1398086
#> 10713 1398087
#> 10714 1398088
#> 10715 1398089
#> 10716 1398090
#> 10717 1398091
#> 10718 1398092
#> 10719 1398093
#> 10720 1398094
#> 10721 1398506
#> 10722 1398507
#> 10723 1398508
#> 10724 1398515
#> 10725 1398516
#> 10726 1398547
#> 10727 1399019
#> 10728 1399069
#> 10729 1399070
#> 10730 1399120
#> 10731 1399124
#> 10732 1399125
#> 10733 1399126
#> 10734 1399127
#> 10735 1399131
#> 10736 1399303
#> 10737 1399307
#> 10738 1399377
#> 10739 1400211
#> 10740 1401533
#> 10741 1401723
#> 10742 1401729
#> 10743 1401730
#> 10744 1401731
#> 10745 1401732
#> 10746 1401733
#> 10747 1401734
#> 10748 1401735
#> 10749 1401736
#> 10750 1401737
#> 10751 1401738
#> 10752 1401739
#> 10753 1401740
#> 10754 1401741
#> 10755 1401742
#> 10756 1401743
#> 10757 1401744
#> 10758 1401745
#> 10759 1401746
#> 10760 1401747
#> 10761 1401748
#> 10762 1401749
#> 10763 1401750
#> 10764 1401751
#> 10765 1401752
#> 10766 1401753
#> 10767 1401754
#> 10768 1401755
#> 10769 1401756
#> 10770 1401757
#> 10771 1401758
#> 10772 1401761
#> 10773 1401762
#> 10774 1401763
#> 10775 1401832
#> 10776 1401893
#> 10777 1401894
#> 10778 1401897
#> 10779 1402066
#> 10780 1402071
#> 10781 1402072
#> 10782 1402073
#> 10783 1402074
#> 10784 1402075
#> 10785 1402076
#> 10786 1402077
#> 10787 1402078
#> 10788 1402079
#> 10789 1402080
#> 10790 1402081
#> 10791 1402082
#> 10792 1402083
#> 10793 1402685
#> 10794 1402689
#> 10795 1402692
#> 10796 1402693
#> 10797 1402694
#> 10798 1402695
#> 10799 1402696
#> 10800 1402697
#> 10801 1402706
#> 10802 1402710
#> 10803 1402711
#> 10804 1402712
#> 10805 1402713
#> 10806 1402714
#> 10807 1402715
#> 10808 1402716
#> 10809 1402717
#> 10810 1402718
#> 10811 1402719
#> 10812 1402720
#> 10813 1402721
#> 10814 1402722
#> 10815 1402723
#> 10816 1402724
#> 10817 1402725
#> 10818 1402726
#> 10819 1402727
#> 10820 1402728
#> 10821 1402738
#> 10822 1402739
#> 10823 1402740
#> 10824 1402741
#> 10825 1402742
#> 10826 1402743
#> 10827 1402744
#> 10828 1402745
#> 10829 1402746
#> 10830 1402747
#> 10831 1402748
#> 10832 1402749
#> 10833 1402750
#> 10834 1402751
#> 10835 1402752
#> 10836 1402753
#> 10837 1402754
#> 10838 1402755
#> 10839 1402756
#> 10840 1402757
#> 10841 1402758
#> 10842 1402759
#> 10843 1402760
#> 10844 1402761
#> 10845 1402762
#> 10846 1402763
#> 10847 1402764
#> 10848 1402765
#> 10849 1402766
#> 10850 1402767
#> 10851 1402768
#> 10852 1402769
#> 10853 1402770
#> 10854 1402771
#> 10855 1402772
#> 10856 1402773
#> 10857 1402774
#> 10858 1402775
#> 10859 1402776
#> 10860 1402779
#> 10861 1402780
#> 10862 1402781
#> 10863 1402782
#> 10864 1402783
#> 10865 1402784
#> 10866 1402785
#> 10867 1402786
#> 10868 1402796
#> 10869 1402797
#> 10870 1402821
#> 10871 1403375
#> 10872 1403414
#> 10873 1403522
#> 10874 1403593
#> 10875 1403603
#> 10876 1403604
#> 10877 1403605
#> 10878 1403606
#> 10879 1403608
#> 10880 1403609
#> 10881 1403610
#> 10882 1403611
#> 10883 1403612
#> 10884 1403613
#> 10885 1403614
#> 10886 1403615
#> 10887 1403616
#> 10888 1403617
#> 10889 1403618
#> 10890 1403619
#> 10891 1403620
#> 10892 1403621
#> 10893 1403622
#> 10894 1403623
#> 10895 1403720
#> 10896 1404169
#> 10897 1404298
#> 10898 1404315
#> 10899 1404316
#> 10900 1404317
#> 10901 1404318
#> 10902 1404319
#> 10903 1404320
#> 10904 1404321
#> 10905 1404322
#> 10906 1404323
#> 10907 1404324
#> 10908 1404325
#> 10909 1404326
#> 10910 1404333
#> 10911 1404334
#> 10912 1404335
#> 10913 1404336
#> 10914 1404337
#> 10915 1404338
#> 10916 1404353
#> 10917 1404433
#> 10918 1404445
#> 10919 1404461
#> 10920 1405369
#> 10921 1405430
#> 10922 1405707
#> 10923 1405708
#> 10924 1405709
#> 10925 1405710
#> 10926 1405711
#> 10927 1405713
#> 10928 1405714
#> 10929 1405715
#> 10930 1405716
#> 10931 1405717
#> 10932 1405752
#> 10933 1405765
#> 10934 1405794
#> 10935 1405797
#> 10936 1405798
#> 10937 1405799
#> 10938 1405800
#> 10939 1405801
#> 10940 1405802
#> 10941 1405803
#> 10942 1405804
#> 10943 1406014
#> 10944 1406347
#> 10945 1406350
#> 10946 1406352
#> 10947 1406353
#> 10948 1406354
#> 10949 1406355
#> 10950 1406356
#> 10951 1406357
#> 10952 1406358
#> 10953 1406359
#> 10954 1406360
#> 10955 1406361
#> 10956 1406362
#> 10957 1406363
#> 10958 1406364
#> 10959 1406365
#> 10960 1406366
#> 10961 1406382
#> 10962 1406384
#> 10963 1406385
#> 10964 1406386
#> 10965 1406387
#> 10966 1406388
#> 10967 1406389
#> 10968 1406390
#> 10969 1406391
#> 10970 1406392
#> 10971 1406393
#> 10972 1406394
#> 10973 1406395
#> 10974 1406396
#> 10975 1406397
#> 10976 1406398
#> 10977 1406399
#> 10978 1406400
#> 10979 1406401
#> 10980 1406402
#> 10981 1406403
#> 10982 1406424
#> 10983 1406425
#> 10984 1406426
#> 10985 1406427
#> 10986 1406439
#> 10987 1406440
#> 10988 1406448
#> 10989 1406449
#> 10990 1406450
#> 10991 1406451
#> 10992 1406452
#> 10993 1406453
#> 10994 1406756
#> 10995 1407255
#> 10996 1407710
#> 10997 1407799
#> 10998 1407806
#> 10999 1407984
#> 11000 1408114
#> 11001 1408253
#> 11002 1408719
#> 11003 1408884
#> 11004 1408885
#> 11005 1408886
#> 11006 1409116
#> 11007 1409117
#> 11008 1410218
#> 11009 1410219
#> 11010 1410220
#> 11011 1410221
#> 11012 1410222
#> 11013 1410223
#> 11014 1410224
#> 11015 1410339
#> 11016 1410420
#> 11017 1410421
#> 11018 1410422
#> 11019 1410910
#> 11020 1410911
#> 11021 1411801
#> 11022 1411921
#> 11023 1412411
#> 11024 1412412
#> 11025 1412413
#> 11026 1412784
#> 11027 1412954
#> 11028 1412961
#> 11029 1412980
#> 11030 1413230
#> 11031 1413820
#> 11032 1413965
#> 11033 1413966
#> 11034 1413967
#> 11035 1413971
#> 11036 1413972
#> 11037 1413973
#> 11038 1413974
#> 11039 1413975
#> 11040 1413976
#> 11041 1413977
#> 11042 1413978
#> 11043 1413979
#> 11044 1413980
#> 11045 1413981
#> 11046 1413982
#> 11047 1413984
#> 11048 1413985
#> 11049 1413986
#> 11050 1413987
#> 11051 1414210
#> 11052 1414639
#> 11053 1414891
#> 11054 1414901
#> 11055 1414902
#> 11056 1414903
#> 11057 1414911
#> 11058 1414919
#> 11059 1414920
#> 11060 1414921
#> 11061 1414922
#> 11062 1414925
#> 11063 1414940
#> 11064 1414941
#> 11065 1414942
#> 11066 1414943
#> 11067 1414944
#> 11068 1414945
#> 11069 1414949
#> 11070 1414950
#> 11071 1414951
#> 11072 1415413
#> 11073 1415416
#> 11074 1415417
#> 11075 1415418
#> 11076 1415422
#> 11077 1415423
#> 11078 1415424
#> 11079 1415425
#> 11080 1415426
#> 11081 1415850
#> 11082 1415899
#> 11083 1415903
#> 11084 1416464
#> 11085 1416608
#> 11086 1416609
#> 11087 1416610
#> 11088 1416611
#> 11089 1416612
#> 11090 1416615
#> 11091 1416616
#> 11092 1416617
#> 11093 1417204
#> 11094 1417227
#> 11095 1417228
#> 11096 1417229
#> 11097 1417232
#> 11098 1418228
#> 11099 1418252
#> 11100 1418543
#> 11101 1418549
#> 11102 1418901
#> 11103 1419064
#> 11104 1419065
#> 11105 1419067
#> 11106 1419072
#> 11107 1419073
#> 11108 1419723
#> 11109 1419744
#> 11110 1420819
#> 11111 1420984
#> 11112 1420995
#> 11113 1420997
#> 11114 1420998
#> 11115 1420999
#> 11116 1421000
#> 11117 1421001
#> 11118 1421002
#> 11119 1421003
#> 11120 1421004
#> 11121 1421005
#> 11122 1421006
#> 11123 1421007
#> 11124 1421008
#> 11125 1421009
#> 11126 1421010
#> 11127 1421011
#> 11128 1421012
#> 11129 1421014
#> 11130 1421015
#> 11131 1421016
#> 11132 1421017
#> 11133 1421018
#> 11134 1421019
#> 11135 1421020
#> 11136 1421021
#> 11137 1421022
#> 11138 1421023
#> 11139 1421025
#> 11140 1421026
#> 11141 1421027
#> 11142 1421028
#> 11143 1421029
#> 11144 1421030
#> 11145 1421031
#> 11146 1421032
#> 11147 1421033
#> 11148 1421034
#> 11149 1421035
#> 11150 1421036
#> 11151 1421037
#> 11152 1421038
#> 11153 1421039
#> 11154 1421040
#> 11155 1421041
#> 11156 1421042
#> 11157 1421043
#> 11158 1421044
#> 11159 1421045
#> 11160 1421046
#> 11161 1421047
#> 11162 1421048
#> 11163 1421049
#> 11164 1421050
#> 11165 1421051
#> 11166 1421052
#> 11167 1421053
#> 11168 1421054
#> 11169 1421055
#> 11170 1421056
#> 11171 1421057
#> 11172 1421058
#> 11173 1421059
#> 11174 1421060
#> 11175 1421061
#> 11176 1421062
#> 11177 1421063
#> 11178 1421064
#> 11179 1421065
#> 11180 1421066
#> 11181 1421067
#> 11182 1421068
#> 11183 1421069
#> 11184 1421070
#> 11185 1421071
#> 11186 1421072
#> 11187 1421073
#> 11188 1421074
#> 11189 1421075
#> 11190 1421076
#> 11191 1421077
#> 11192 1421078
#> 11193 1421079
#> 11194 1421080
#> 11195 1421380
#> 11196 1421534
#> 11197 1421548
#> 11198 1421562
#> 11199 1421777
#> 11200 1421778
#> 11201 1421781
#> 11202 1421782
#> 11203 1421788
#> 11204 1421789
#> 11205 1421790
#> 11206 1421791
#> 11207 1421792
#> 11208 1421793
#> 11209 1421794
#> 11210 1421795
#> 11211 1421796
#> 11212 1421797
#> 11213 1421798
#> 11214 1421799
#> 11215 1421800
#> 11216 1421801
#> 11217 1421802
#> 11218 1421803
#> 11219 1421804
#> 11220 1421805
#> 11221 1421806
#> 11222 1421807
#> 11223 1421808
#> 11224 1421809
#> 11225 1421810
#> 11226 1421811
#> 11227 1421812
#> 11228 1421813
#> 11229 1421814
#> 11230 1421815
#> 11231 1421816
#> 11232 1421817
#> 11233 1421818
#> 11234 1421819
#> 11235 1421820
#> 11236 1421821
#> 11237 1421822
#> 11238 1421823
#> 11239 1421824
#> 11240 1421825
#> 11241 1421826
#> 11242 1422128
#> 11243 1422129
#> 11244 1422160
#> 11245 1422167
#> 11246 1422174
#> 11247 1422178
#> 11248 1422555
#> 11249 1423054
#> 11250 1423202
#> 11251 1423225
#> 11252 1423345
#> 11253 1423376
#> 11254 1423377
#> 11255 1423378
#> 11256 1423848
#> 11257 1423864
#> 11258 1423923
#> 11259 1423928
#> 11260 1423974
#> 11261 1423975
#> 11262 1424274
#> 11263 1424292
#> 11264 1424318
#> 11265 1424320
#> 11266 1424325
#> 11267 1424336
#> 11268 1424397
#> 11269 1424400
#> 11270 1424446
#> 11271 1424526
#> 11272 1424527
#> 11273 1424529
#> 11274 1424556
#> 11275 1424557
#> 11276 1424752
#> 11277 1424794
#> 11278 1424795
#> 11279 1424796
#> 11280 1424797
#> 11281 1424798
#> 11282 1424799
#> 11283 1424800
#> 11284 1424801
#> 11285 1424802
#> 11286 1424803
#> 11287 1424804
#> 11288 1424805
#> 11289 1425604
#> 11290 1425606
#> 11291 1425747
#> 11292 1425750
#> 11293 1425751
#> 11294 1425752
#> 11295 1425753
#> 11296 1425754
#> 11297 1425755
#> 11298 1425756
#> 11299 1425757
#> 11300 1425758
#> 11301 1425759
#> 11302 1425760
#> 11303 1425761
#> 11304 1425762
#> 11305 1425763
#> 11306 1425764
#> 11307 1425765
#> 11308 1425766
#> 11309 1425767
#> 11310 1425768
#> 11311 1425769
#> 11312 1425780
#> 11313 1425785
#> 11314 1425786
#> 11315 1425787
#> 11316 1425788
#> 11317 1425789
#> 11318 1425790
#> 11319 1425791
#> 11320 1425792
#> 11321 1425793
#> 11322 1425794
#> 11323 1425795
#> 11324 1425796
#> 11325 1425797
#> 11326 1425798
#> 11327 1425799
#> 11328 1425800
#> 11329 1425801
#> 11330 1425802
#> 11331 1425803
#> 11332 1425804
#> 11333 1425805
#> 11334 1425806
#> 11335 1425807
#> 11336 1425808
#> 11337 1425809
#> 11338 1425810
#> 11339 1425811
#> 11340 1425812
#> 11341 1425813
#> 11342 1425814
#> 11343 1425815
#> 11344 1425816
#> 11345 1425817
#> 11346 1425818
#> 11347 1425819
#> 11348 1425820
#> 11349 1425821
#> 11350 1425822
#> 11351 1425823
#> 11352 1425824
#> 11353 1425825
#> 11354 1425826
#> 11355 1425827
#> 11356 1425828
#> 11357 1425829
#> 11358 1425830
#> 11359 1425831
#> 11360 1425832
#> 11361 1425833
#> 11362 1425834
#> 11363 1425835
#> 11364 1425836
#> 11365 1425837
#> 11366 1425838
#> 11367 1425839
#> 11368 1425840
#> 11369 1425841
#> 11370 1426043
#> 11371 1426045
#> 11372 1426047
#> 11373 1426048
#> 11374 1426049
#> 11375 1426057
#> 11376 1426066
#> 11377 1426068
#> 11378 1426070
#> 11379 1426716
#> 11380 1427048
#> 11381 1427053
#> 11382 1427054
#> 11383 1427059
#> 11384 1427060
#> 11385 1427129
#> 11386 1427133
#> 11387 1427135
#> 11388 1427137
#> 11389 1427139
#> 11390 1427142
#> 11391 1427145
#> 11392 1427157
#> 11393 1427840
#> 11394 1427841
#> 11395 1428348
#> 11396 1428413
#> 11397 1428467
#> 11398 1428611
#> 11399 1428694
#> 11400 1430411
#> 11401 1430412
#> 11402 1430413
#> 11403 1430414
#> 11404 1430415
#> 11405 1430416
#> 11406 1430790
#> 11407 1430812
#> 11408 1431177
#> 11409 1431178
#> 11410 1431247
#> 11411 1431446
#> 11412 1431683
#> 11413 1431684
#> 11414 1431685
#> 11415 1431686
#> 11416 1431687
#> 11417 1431688
#> 11418 1431689
#> 11419 1431690
#> 11420 1431694
#> 11421 1431695
#> 11422 1431696
#> 11423 1431697
#> 11424 1431698
#> 11425 1431699
#> 11426 1431700
#> 11427 1431701
#> 11428 1431702
#> 11429 1431703
#> 11430 1431704
#> 11431 1431705
#> 11432 1431706
#> 11433 1431707
#> 11434 1431708
#> 11435 1431709
#> 11436 1431710
#> 11437 1431711
#> 11438 1431712
#> 11439 1431713
#> 11440 1432181
#> 11441 1432394
#> 11442 1432395
#> 11443 1432396
#> 11444 1432397
#> 11445 1432398
#> 11446 1432402
#> 11447 1432403
#> 11448 1432404
#> 11449 1432405
#> 11450 1432406
#> 11451 1432407
#> 11452 1432408
#> 11453 1432409
#> 11454 1432410
#> 11455 1432411
#> 11456 1432412
#> 11457 1432413
#> 11458 1432414
#> 11459 1432415
#> 11460 1432416
#> 11461 1432417
#> 11462 1432418
#> 11463 1432419
#> 11464 1432420
#> 11465 1432421
#> 11466 1432422
#> 11467 1432423
#> 11468 1432424
#> 11469 1432425
#> 11470 1432426
#> 11471 1432840
#> 11472 1432848
#> 11473 1432915
#> 11474 1433112
#> 11475 1433127
#> 11476 1433128
#> 11477 1433129
#> 11478 1433132
#> 11479 1433140
#> 11480 1433141
#> 11481 1433142
#> 11482 1433357
#> 11483 1433534
#> 11484 1433536
#> 11485 1433538
#> 11486 1433539
#> 11487 1433540
#> 11488 1433541
#> 11489 1433542
#> 11490 1433543
#> 11491 1433544
#> 11492 1433545
#> 11493 1433546
#> 11494 1433547
#> 11495 1433548
#> 11496 1433549
#> 11497 1433550
#> 11498 1433551
#> 11499 1433552
#> 11500 1433553
#> 11501 1433554
#> 11502 1433555
#> 11503 1433561
#> 11504 1433566
#> 11505 1433805
#> 11506 1433806
#> 11507 1434053
#> 11508 1434065
#> 11509 1434070
#> 11510 1434352
#> 11511 1434721
#> 11512 1434750
#> 11513 1435369
#> 11514 1435526
#> 11515 1435754
#> 11516 1435759
#> 11517 1435760
#> 11518 1436220
#> 11519 1436221
#> 11520 1436222
#> 11521 1436223
#> 11522 1436224
#> 11523 1436452
#> 11524 1437354
#> 11525 1437481
#> 11526 1437627
#> 11527 1438022
#> 11528 1438240
#> 11529 1438384
#> 11530 1438530
#> 11531 1439164
#> 11532 1439165
#> 11533 1439633
#> 11534 1439634
#> 11535 1439635
#> 11536 1439636
#> 11537 1439637
#> 11538 1439638
#> 11539 1439639
#> 11540 1439640
#> 11541 1439641
#> 11542 1439642
#> 11543 1439643
#> 11544 1439644
#> 11545 1439645
#> 11546 1439646
#> 11547 1439647
#> 11548 1439648
#> 11549 1439649
#> 11550 1439650
#> 11551 1439929
#> 11552 1439935
#> 11553 1440198
#> 11554 1440652
#> 11555 1440659
#> 11556 1440664
#> 11557 1440671
#> 11558 1440696
#> 11559 1440700
#> 11560 1440703
#> 11561 1440704
#> 11562 1440705
#> 11563 1440710
#> 11564 1440713
#> 11565 1440714
#> 11566 1440715
#> 11567 1440840
#> 11568 1441242
#> 11569 1441894
#> 11570 1442183
#> 11571 1443685
#> 11572 1443689
#> 11573 1443690
#> 11574 1443691
#> 11575 1443692
#> 11576 1443693
#> 11577 1443694
#> 11578 1443695
#> 11579 1443696
#> 11580 1443697
#> 11581 1443698
#> 11582 1443699
#> 11583 1443700
#> 11584 1443701
#> 11585 1443702
#> 11586 1443703
#> 11587 1443704
#> 11588 1443705
#> 11589 1443706
#> 11590 1443707
#> 11591 1443708
#> 11592 1443709
#> 11593 1443710
#> 11594 1443711
#> 11595 1443712
#> 11596 1443713
#> 11597 1443714
#> 11598 1443715
#> 11599 1444431
#> 11600 1444569
#> 11601 1444570
#> 11602 1444571
#> 11603 1444572
#> 11604 1444573
#> 11605 1444574
#> 11606 1444575
#> 11607 1444576
#> 11608 1445115
#> 11609 1445116
#> 11610 1445117
#> 11611 1445204
#> 11612 1445899
#> 11613 1446265
#> 11614 1446632
#> 11615 1446864
#> 11616 1446868
#> 11617 1447189
#> 11618 1447192
#> 11619 1447193
#> 11620 1448643
#> 11621 1448659
#> 11622 1448660
#> 11623 1448661
#> 11624 1448665
#> 11625 1448666
#> 11626 1448667
#> 11627 1448668
#> 11628 1448669
#> 11629 1448670
#> 11630 1448671
#> 11631 1448672
#> 11632 1448673
#> 11633 1448674
#> 11634 1448675
#> 11635 1448676
#> 11636 1448677
#> 11637 1448915
#> 11638 1449536
#> 11639 1449675
#> 11640 1449683
#> 11641 1449717
#> 11642 1449724
#> 11643 1449750
#> 11644 1450363
#> 11645 1450852
#> 11646 1451172
#> 11647 1451175
#> 11648 1451176
#> 11649 1451177
#> 11650 1451178
#> 11651 1451179
#> 11652 1451181
#> 11653 1451182
#> 11654 1451183
#> 11655 1451184
#> 11656 1451185
#> 11657 1451186
#> 11658 1451190
#> 11659 1451191
#> 11660 1451192
#> 11661 1451193
#> 11662 1451200
#> 11663 1451201
#> 11664 1451202
#> 11665 1451203
#> 11666 1451491
#> 11667 1451492
#> 11668 1451512
#> 11669 1451513
#> 11670 1451514
#> 11671 1451515
#> 11672 1451516
#> 11673 1451517
#> 11674 1451518
#> 11675 1451519
#> 11676 1451520
#> 11677 1451521
#> 11678 1451522
#> 11679 1451523
#> 11680 1451524
#> 11681 1451525
#> 11682 1452102
#> 11683 1452108
#> 11684 1452125
#> 11685 1452213
#> 11686 1452247
#> 11687 1452253
#> 11688 1452254
#> 11689 1452256
#> 11690 1452257
#> 11691 1452259
#> 11692 1452261
#> 11693 1452262
#> 11694 1452264
#> 11695 1452265
#> 11696 1452266
#> 11697 1452279
#> 11698 1452327
#> 11699 1452613
#> 11700 1452614
#> 11701 1452615
#> 11702 1452628
#> 11703 1452789
#> 11704 1452790
#> 11705 1453057
#> 11706 1453200
#> 11707 1453387
#> 11708 1453470
#> 11709 1453475
#> 11710 1453476
#> 11711 1453477
#> 11712 1453478
#> 11713 1453479
#> 11714 1453480
#> 11715 1453481
#> 11716 1453482
#> 11717 1453483
#> 11718 1453484
#> 11719 1453485
#> 11720 1453486
#> 11721 1453487
#> 11722 1453488
#> 11723 1453489
#> 11724 1453490
#> 11725 1453491
#> 11726 1453492
#> 11727 1453493
#> 11728 1453494
#> 11729 1453695
#> 11730 1453887
#> 11731 1453888
#> 11732 1453889
#> 11733 1453910
#> 11734 1453922
#> 11735 1454070
#> 11736 1454136
#> 11737 1454144
#> 11738 1454145
#> 11739 1454146
#> 11740 1454147
#> 11741 1454152
#> 11742 1454153
#> 11743 1454154
#> 11744 1454160
#> 11745 1454290
#> 11746 1454291
#> 11747 1454292
#> 11748 1454346
#> 11749 1454747
#> 11750 1454934
#> 11751 1455420
#> 11752 1457631
#> 11753 1457636
#> 11754 1457645
#> 11755 1457646
#> 11756 1457647
#> 11757 1457651
#> 11758 1457652
#> 11759 1457653
#> 11760 1457654
#> 11761 1457655
#> 11762 1457656
#> 11763 1457657
#> 11764 1457658
#> 11765 1457659
#> 11766 1457660
#> 11767 1457661
#> 11768 1457662
#> 11769 1457663
#> 11770 1457664
#> 11771 1457665
#> 11772 1457666
#> 11773 1457667
#> 11774 1457668
#> 11775 1457669
#> 11776 1457670
#> 11777 1457671
#> 11778 1457672
#> 11779 1457673
#> 11780 1457674
#> 11781 1457675
#> 11782 1457676
#> 11783 1457677
#> 11784 1457678
#> 11785 1457679
#> 11786 1457680
#> 11787 1457681
#> 11788 1457682
#> 11789 1458342
#> 11790 1458343
#> 11791 1458381
#> 11792 1458382
#> 11793 1458383
#> 11794 1458384
#> 11795 1458385
#> 11796 1458386
#> 11797 1458387
#> 11798 1458388
#> 11799 1458389
#> 11800 1458390
#> 11801 1458391
#> 11802 1458392
#> 11803 1458393
#> 11804 1458394
#> 11805 1458395
#> 11806 1458402
#> 11807 1458403
#> 11808 1458692
#> 11809 1458693
#> 11810 1458821
#> 11811 1458879
#> 11812 1458881
#> 11813 1458883
#> 11814 1458885
#> 11815 1458887
#> 11816 1459193
#> 11817 1459194
#> 11818 1459195
#> 11819 1459196
#> 11820 1459197
#> 11821 1459198
#> 11822 1459202
#> 11823 1459203
#> 11824 1459204
#> 11825 1459611
#> 11826 1459617
#> 11827 1459618
#> 11828 1459619
#> 11829 1459630
#> 11830 1459829
#> 11831 1459830
#> 11832 1459925
#> 11833 1459930
#> 11834 1459932
#> 11835 1459934
#> 11836 1459939
#> 11837 1459940
#> 11838 1459941
#> 11839 1459942
#> 11840 1459945
#> 11841 1460295
#> 11842 1460351
#> 11843 1460352
#> 11844 1460353
#> 11845 1460354
#> 11846 1460611
#> 11847 1460615
#> 11848 1460868
#> 11849 1460873
#> 11850 1461629
#> 11851 1461632
#> 11852 1462042
#> 11853 1462043
#> 11854 1463416
#> 11855 1463437
#> 11856 1463438
#> 11857 1463444
#> 11858 1463976
#> 11859 1463977
#> 11860 1463979
#> 11861 1463980
#> 11862 1463981
#> 11863 1463982
#> 11864 1463984
#> 11865 1464224
#> 11866 1464225
#> 11867 1464226
#> 11868 1464227
#> 11869 1464228
#> 11870 1464229
#> 11871 1464782
#> 11872 1464921
#> 11873 1465169
#> 11874 1465531
#> 11875 1465532
#> 11876 1465533
#> 11877 1465534
#> 11878 1465535
#> 11879 1465536
#> 11880 1465537
#> 11881 1465538
#> 11882 1465539
#> 11883 1465540
#> 11884 1465929
#> 11885 1465940
#> 11886 1465941
#> 11887 1465994
#> 11888 1465995
#> 11889 1466056
#> 11890 1466162
#> 11891 1466167
#> 11892 1466168
#> 11893 1466169
#> 11894 1466170
#> 11895 1466171
#> 11896 1466172
#> 11897 1466173
#> 11898 1466174
#> 11899 1466175
#> 11900 1466176
#> 11901 1466177
#> 11902 1466178
#> 11903 1466179
#> 11904 1466180
#> 11905 1466181
#> 11906 1466182
#> 11907 1466183
#> 11908 1466184
#> 11909 1466185
#> 11910 1466186
#> 11911 1466243
#> 11912 1466249
#> 11913 1466250
#> 11914 1466251
#> 11915 1466252
#> 11916 1466253
#> 11917 1466254
#> 11918 1466255
#> 11919 1466256
#> 11920 1466257
#> 11921 1466258
#> 11922 1466354
#> 11923 1466708
#> 11924 1466729
#> 11925 1466730
#> 11926 1466731
#> 11927 1466732
#> 11928 1466736
#> 11929 1467167
#> 11930 1467286
#> 11931 1467295
#> 11932 1467329
#> 11933 1467330
#> 11934 1467331
#> 11935 1467332
#> 11936 1467333
#> 11937 1467334
#> 11938 1467344
#> 11939 1467345
#> 11940 1467346
#> 11941 1467347
#> 11942 1467590
#> 11943 1467732
#> 11944 1467735
#> 11945 1468094
#> 11946 1468136
#> 11947 1468137
#> 11948 1468138
#> 11949 1468139
#> 11950 1468148
#> 11951 1468149
#> 11952 1468155
#> 11953 1468160
#> 11954 1468165
#> 11955 1468170
#> 11956 1468175
#> 11957 1469211
#> 11958 1469214
#> 11959 1469226
#> 11960 1469227
#> 11961 1469802
#> 11962 1470745
#> 11963 1470749
#> 11964 1470770
#> 11965 1470772
#> 11966 1470781
#> 11967 1470784
#> 11968 1470788
#> 11969 1470917
#> 11970 1470921
#> 11971 1470922
#> 11972 1471049
#> 11973 1471052
#> 11974 1471053
#> 11975 1471096
#> 11976 1471178
#> 11977 1471422
#> 11978 1471732
#> 11979 1471736
#> 11980 1472959
#> 11981 1474397
#> 11982 1474400
#> 11983 1474888
#> 11984 1475680
#> 11985 1475681
#> 11986 1475682
#> 11987 1475793
#> 11988 1475794
#> 11989 1475795
#> 11990 1475796
#> 11991 1475797
#> 11992 1475798
#> 11993 1475804
#> 11994 1475805
#> 11995 1475806
#> 11996 1475809
#> 11997 1475810
#> 11998 1475811
#> 11999 1475812
#> 12000 1476840
#> 12001 1478423
#> 12002 1478427
#> 12003 1478428
#> 12004 1478429
#> 12005 1478430
#> 12006 1478431
#> 12007 1478432
#> 12008 1478433
#> 12009 1478434
#> 12010 1478435
#> 12011 1478436
#> 12012 1478437
#> 12013 1478480
#> 12014 1478481
#> 12015 1478482
#> 12016 1478483
#> 12017 1478484
#> 12018 1478485
#> 12019 1478486
#> 12020 1478590
#> 12021 1478598
#> 12022 1478701
#> 12023 1478702
#> 12024 1478727
#> 12025 1478745
#> 12026 1478746
#> 12027 1478817
#> 12028 1480298
#> 12029 1480299
#> 12030 1480300
#> 12031 1480587
#> 12032 1480668
#> 12033 1480672
#> 12034 1480675
#> 12035 1480676
#> 12036 1480677
#> 12037 1480678
#> 12038 1480679
#> 12039 1480680
#> 12040 1480681
#> 12041 1480682
#> 12042 1480683
#> 12043 1480684
#> 12044 1480685
#> 12045 1480686
#> 12046 1480687
#> 12047 1480688
#> 12048 1480689
#> 12049 1480690
#> 12050 1480691
#> 12051 1480692
#> 12052 1480693
#> 12053 1480694
#> 12054 1480695
#> 12055 1480696
#> 12056 1480697
#> 12057 1480698
#> 12058 1480699
#> 12059 1480700
#> 12060 1480701
#> 12061 1480702
#> 12062 1480703
#> 12063 1480704
#> 12064 1480705
#> 12065 1480706
#> 12066 1480707
#> 12067 1480708
#> 12068 1480709
#> 12069 1480710
#> 12070 1480711
#> 12071 1480712
#> 12072 1480713
#> 12073 1480738
#> 12074 1480744
#> 12075 1480749
#> 12076 1481785
#> 12077 1482176
#> 12078 1482178
#> 12079 1482180
#> 12080 1482182
#> 12081 1483567
#> 12082 1483572
#> 12083 1483823
#> 12084 1484986
#> 12085 1485222
#> 12086 1485223
#> 12087 1485224
#> 12088 1485225
#> 12089 1485226
#> 12090 1485227
#> 12091 1485228
#> 12092 1485229
#> 12093 1485230
#> 12094 1485231
#> 12095 1485240
#> 12096 1485241
#> 12097 1485242
#> 12098 1485257
#> 12099 1485258
#> 12100 1485259
#> 12101 1485260
#> 12102 1485261
#> 12103 1485262
#> 12104 1485263
#> 12105 1486250
#> 12106 1486299
#> 12107 1486673
#> 12108 1486761
#> 12109 1487202
#> 12110 1487203
#> 12111 1487504
#> 12112 1487508
#> 12113 1487509
#> 12114 1487510
#> 12115 1487511
#> 12116 1487512
#> 12117 1487514
#> 12118 1487515
#> 12119 1487516
#> 12120 1487691
#> 12121 1487692
#> 12122 1487693
#> 12123 1487694
#> 12124 1487695
#> 12125 1487696
#> 12126 1487697
#> 12127 1487698
#> 12128 1487699
#> 12129 1487700
#> 12130 1487701
#> 12131 1487702
#> 12132 1487703
#> 12133 1487704
#> 12134 1487705
#> 12135 1487716
#> 12136 1488291
#> 12137 1488397
#> 12138 1488398
#> 12139 1488487
#> 12140 1488615
#> 12141 1488687
#> 12142 1488707
#> 12143 1489043
#> 12144 1489075
#> 12145 1489127
#> 12146 1489378
#> 12147 1489605
#> 12148 1490938
#> 12149 1490950
#> 12150 1490954
#> 12151 1490955
#> 12152 1490956
#> 12153 1490959
#> 12154 1491051
#> 12155 1491121
#> 12156 1491122
#> 12157 1491123
#> 12158 1491209
#> 12159 1491469
#> 12160 1491478
#> 12161 1491479
#> 12162 1491480
#> 12163 1491481
#> 12164 1491483
#> 12165 1492837
#> 12166 1493938
#> 12167 1493969
#> 12168 1495471
#> 12169 1496084
#> 12170 1496299
#> 12171 1497216
#> 12172 1497324
#> 12173 1497329
#> 12174 1497330
#> 12175 1497331
#> 12176 1497332
#> 12177 1497333
#> 12178 1497334
#> 12179 1497335
#> 12180 1497336
#> 12181 1497337
#> 12182 1497338
#> 12183 1497339
#> 12184 1497340
#> 12185 1497341
#> 12186 1497342
#> 12187 1497343
#> 12188 1497344
#> 12189 1497345
#> 12190 1497346
#> 12191 1497347
#> 12192 1497348
#> 12193 1497349
#> 12194 1497350
#> 12195 1497351
#> 12196 1497352
#> 12197 1497353
#> 12198 1497354
#> 12199 1497355
#> 12200 1497601
#> 12201 1497619
#> 12202 1497696
#> 12203 1498138
#> 12204 1498375
#> 12205 1498975
#> 12206 1499200
#> 12207 1499244
#> 12208 1500282
#> 12209 1500913
#> 12210 1500915
#> 12211 1501177
#> 12212 1501688
#> 12213 1501911
#> 12214 1503033
#> 12215 1503043
#> 12216 1503044
#> 12217 1503477
#> 12218 1503613
#> 12219 1503615
#> 12220 1503617
#> 12221 1503724
#> 12222 1503736
#> 12223 1503760
#> 12224 1504183
#> 12225 1504263
#> 12226 1504286
#> 12227 1504423
#> 12228 1504424
#> 12229 1504508
#> 12230 1504527
#> 12231 1504728
#> 12232 1504729
#> 12233 1504730
#> 12234 1504734
#> 12235 1504739
#> 12236 1504740
#> 12237 1504769
#> 12238 1504868
#> 12239 1505179
#> 12240 1506516
#> 12241 1506694
#> 12242 1506733
#> 12243 1506878
#> 12244 1507657
#> 12245 1507679
#> 12246 1507904
#> 12247 1507909
#> 12248 1507913
#> 12249 1509521
#> 12250 1511021
#> 12251 1511022
#> 12252 1511023
#> 12253 1511024
#> 12254 1511027
#> 12255 1511043
#> 12256 1511217
#> 12257 1511227
#> 12258 1511235
#> 12259 1511464
#> 12260 1511465
#> 12261 1511466
#> 12262 1512194
#> 12263 1512675
#> 12264 1512696
#> 12265 1513911
#> 12266 1513912
#> 12267 1514432
#> 12268 1514436
#> 12269 1514437
#> 12270 1514438
#> 12271 1514439
#> 12272 1514440
#> 12273 1514441
#> 12274 1514442
#> 12275 1514582
#> 12276 1514583
#> 12277 1515182
#> 12278 1515186
#> 12279 1515187
#> 12280 1515188
#> 12281 1515189
#> 12282 1515190
#> 12283 1515191
#> 12284 1515192
#> 12285 1515193
#> 12286 1515194
#> 12287 1515195
#> 12288 1515196
#> 12289 1515197
#> 12290 1515198
#> 12291 1515199
#> 12292 1515200
#> 12293 1515201
#> 12294 1515202
#> 12295 1515203
#> 12296 1515204
#> 12297 1515205
#> 12298 1515206
#> 12299 1515207
#> 12300 1515208
#> 12301 1515209
#> 12302 1515210
#> 12303 1515211
#> 12304 1515212
#> 12305 1515213
#> 12306 1515214
#> 12307 1515215
#> 12308 1515216
#> 12309 1515219
#> 12310 1515220
#> 12311 1515221
#> 12312 1515222
#> 12313 1515223
#> 12314 1515224
#> 12315 1515225
#> 12316 1515226
#> 12317 1515238
#> 12318 1515383
#> 12319 1515384
#> 12320 1515385
#> 12321 1515386
#> 12322 1515388
#> 12323 1515389
#> 12324 1515390
#> 12325 1515391
#> 12326 1515396
#> 12327 1517357
#> 12328 1517361
#> 12329 1517362
#> 12330 1517363
#> 12331 1517364
#> 12332 1517365
#> 12333 1517366
#> 12334 1517367
#> 12335 1517368
#> 12336 1517369
#> 12337 1517370
#> 12338 1517371
#> 12339 1517372
#> 12340 1517373
#> 12341 1517374
#> 12342 1517375
#> 12343 1517376
#> 12344 1517377
#> 12345 1517378
#> 12346 1517379
#> 12347 1517380
#> 12348 1517381
#> 12349 1517382
#> 12350 1517383
#> 12351 1517384
#> 12352 1517385
#> 12353 1517386
#> 12354 1517387
#> 12355 1517388
#> 12356 1517389
#> 12357 1517390
#> 12358 1517391
#> 12359 1517392
#> 12360 1517393
#> 12361 1517394
#> 12362 1517395
#> 12363 1517396
#> 12364 1517397
#> 12365 1517398
#> 12366 1517399
#> 12367 1517400
#> 12368 1517401
#> 12369 1518071
#> 12370 1519240
#> 12371 1519241
#> 12372 1519242
#> 12373 1519243
#> 12374 1519244
#> 12375 1519245
#> 12376 1519412
#> 12377 1519439
#> 12378 1519440
#> 12379 1519441
#> 12380 1519442
#> 12381 1519640
#> 12382 1520043
#> 12383 1520047
#> 12384 1520048
#> 12385 1520050
#> 12386 1520051
#> 12387 1520141
#> 12388 1520144
#> 12389 1520145
#> 12390 1520213
#> 12391 1520217
#> 12392 1520221
#> 12393 1520268
#> 12394 1520269
#> 12395 1520270
#> 12396 1520271
#> 12397 1520272
#> 12398 1520273
#> 12399 1520329
#> 12400 1520345
#> 12401 1520369
#> 12402 1520393
#> 12403 1524219
#> 12404 1524241
#> 12405 1524242
#> 12406 1524243
#> 12407 1524244
#> 12408 1524245
#> 12409 1524246
#> 12410 1524247
#> 12411 1524248
#> 12412 1524249
#> 12413 1524250
#> 12414 1524251
#> 12415 1524252
#> 12416 1524254
#> 12417 1524256
#> 12418 1524258
#> 12419 1524259
#> 12420 1524262
#> 12421 1524265
#> 12422 1524266
#> 12423 1524273
#> 12424 1524275
#> 12425 1524277
#> 12426 1524278
#> 12427 1524284
#> 12428 1524285
#> 12429 1524286
#> 12430 1524287
#> 12431 1524289
#> 12432 1524291
#> 12433 1524293
#> 12434 1524294
#> 12435 1524296
#> 12436 1524298
#> 12437 1524300
#> 12438 1524307
#> 12439 1524308
#> 12440 1524309
#> 12441 1524310
#> 12442 1524311
#> 12443 1524312
#> 12444 1524318
#> 12445 1524323
#> 12446 1524342
#> 12447 1524345
#> 12448 1524348
#> 12449 1524351
#> 12450 1524354
#> 12451 1524361
#> 12452 1524362
#> 12453 1524363
#> 12454 1524364
#> 12455 1524365
#> 12456 1524366
#> 12457 1524369
#> 12458 1524370
#> 12459 1524371
#> 12460 1524372
#> 12461 1524373
#> 12462 1524374
#> 12463 1524375
#> 12464 1524556
#> 12465 1524561
#> 12466 1524573
#> 12467 1524601
#> 12468 1524652
#> 12469 1525028
#> 12470 1525044
#> 12471 1525059
#> 12472 1525060
#> 12473 1525198
#> 12474 1525202
#> 12475 1525206
#> 12476 1525207
#> 12477 1525208
#> 12478 1525209
#> 12479 1525210
#> 12480 1525211
#> 12481 1525212
#> 12482 1525248
#> 12483 1525715
#> 12484 1525716
#> 12485 1525719
#> 12486 1525720
#> 12487 1525721
#> 12488 1525722
#> 12489 1525723
#> 12490 1525724
#> 12491 1525725
#> 12492 1525726
#> 12493 1525727
#> 12494 1525728
#> 12495 1525729
#> 12496 1525730
#> 12497 1525731
#> 12498 1525732
#> 12499 1525733
#> 12500 1525734
#> 12501 1525735
#> 12502 1525736
#> 12503 1525737
#> 12504 1525738
#> 12505 1525739
#> 12506 1525740
#> 12507 1525741
#> 12508 1525742
#> 12509 1525743
#> 12510 1525744
#> 12511 1525745
#> 12512 1525746
#> 12513 1525747
#> 12514 1525748
#> 12515 1525749
#> 12516 1525750
#> 12517 1525751
#> 12518 1525752
#> 12519 1525753
#> 12520 1525754
#> 12521 1525755
#> 12522 1525757
#> 12523 1525758
#> 12524 1525759
#> 12525 1525760
#> 12526 1525761
#> 12527 1525762
#> 12528 1525763
#> 12529 1525764
#> 12530 1525765
#> 12531 1525766
#> 12532 1525767
#> 12533 1525770
#> 12534 1525771
#> 12535 1525783
#> 12536 1525785
#> 12537 1525786
#> 12538 1525787
#> 12539 1525788
#> 12540 1525789
#> 12541 1525790
#> 12542 1525791
#> 12543 1525798
#> 12544 1525881
#> 12545 1528517
#> 12546 1528729
#> 12547 1529212
#> 12548 1529217
#> 12549 1529218
#> 12550 1529221
#> 12551 1529869
#> 12552 1529998
#> 12553 1530488
#> 12554 1530489
#> 12555 1530490
#> 12556 1530501
#> 12557 1530524
#> 12558 1532050
#> 12559 1532244
#> 12560 1532245
#> 12561 1532246
#> 12562 1532247
#> 12563 1532248
#> 12564 1532249
#> 12565 1532250
#> 12566 1532251
#> 12567 1532252
#> 12568 1532253
#> 12569 1532254
#> 12570 1532255
#> 12571 1532256
#> 12572 1532257
#> 12573 1532258
#> 12574 1532259
#> 12575 1532260
#> 12576 1532261
#> 12577 1532262
#> 12578 1532263
#> 12579 1532264
#> 12580 1532265
#> 12581 1532266
#> 12582 1532267
#> 12583 1532268
#> 12584 1532269
#> 12585 1532270
#> 12586 1532271
#> 12587 1532272
#> 12588 1532273
#> 12589 1532274
#> 12590 1532275
#> 12591 1532466
#> 12592 1532473
#> 12593 1532474
#> 12594 1532475
#> 12595 1532491
#> 12596 1532492
#> 12597 1532500
#> 12598 1532505
#> 12599 1532506
#> 12600 1532507
#> 12601 1532508
#> 12602 1532509
#> 12603 1532510
#> 12604 1532662
#> 12605 1532663
#> 12606 1532683
#> 12607 1532691
#> 12608 1532692
#> 12609 1532710
#> 12610 1532846
#> 12611 1532855
#> 12612 1532866
#> 12613 1533309
#> 12614 1533310
#> 12615 1533462
#> 12616 1533529
#> 12617 1533531
#> 12618 1533532
#> 12619 1533533
#> 12620 1533534
#> 12621 1533535
#> 12622 1533536
#> 12623 1533537
#> 12624 1533538
#> 12625 1533539
#> 12626 1533540
#> 12627 1533541
#> 12628 1533542
#> 12629 1533543
#> 12630 1533544
#> 12631 1533545
#> 12632 1533546
#> 12633 1533547
#> 12634 1533548
#> 12635 1533558
#> 12636 1534694
#> 12637 1534704
#> 12638 1535014
#> 12639 1535572
#> 12640 1536153
#> 12641 1537019
#> 12642 1537025
#> 12643 1537190
#> 12644 1537194
#> 12645 1537196
#> 12646 1537197
#> 12647 1537198
#> 12648 1537199
#> 12649 1537200
#> 12650 1537201
#> 12651 1537202
#> 12652 1537203
#> 12653 1537387
#> 12654 1537388
#> 12655 1537389
#> 12656 1537391
#> 12657 1537392
#> 12658 1537393
#> 12659 1537394
#> 12660 1537395
#> 12661 1537669
#> 12662 1537715
#> 12663 1537835
#> 12664 1537847
#> 12665 1538664
#> 12666 1538679
#> 12667 1538700
#> 12668 1538708
#> 12669 1538724
#> 12670 1538725
#> 12671 1538726
#> 12672 1538727
#> 12673 1538728
#> 12674 1538729
#> 12675 1538730
#> 12676 1538731
#> 12677 1538732
#> 12678 1538733
#> 12679 1538734
#> 12680 1538735
#> 12681 1538736
#> 12682 1538737
#> 12683 1538738
#> 12684 1539056
#> 12685 1539057
#> 12686 1539063
#> 12687 1539071
#> 12688 1539072
#> 12689 1539073
#> 12690 1539074
#> 12691 1539075
#> 12692 1539076
#> 12693 1539077
#> 12694 1539079
#> 12695 1539082
#> 12696 1539103
#> 12697 1539104
#> 12698 1539108
#> 12699 1540252
#> 12700 1540632
#> 12701 1541664
#> 12702 1541723
#> 12703 1541741
#> 12704 1541742
#> 12705 1541743
#> 12706 1541746
#> 12707 1541747
#> 12708 1541748
#> 12709 1541749
#> 12710 1541750
#> 12711 1541751
#> 12712 1541752
#> 12713 1541753
#> 12714 1541754
#> 12715 1541755
#> 12716 1541756
#> 12717 1541757
#> 12718 1541758
#> 12719 1541759
#> 12720 1541760
#> 12721 1541761
#> 12722 1541762
#> 12723 1541763
#> 12724 1541764
#> 12725 1541765
#> 12726 1541766
#> 12727 1541767
#> 12728 1542169
#> 12729 1542923
#> 12730 1543034
#> 12731 1543120
#> 12732 1543126
#> 12733 1543186
#> 12734 1543459
#> 12735 1543503
#> 12736 1543506
#> 12737 1543507
#> 12738 1543509
#> 12739 1543511
#> 12740 1543513
#> 12741 1543515
#> 12742 1543517
#> 12743 1543519
#> 12744 1543523
#> 12745 1544072
#> 12746 1544398
#> 12747 1544657
#> 12748 1544658
#> 12749 1544659
#> 12750 1544660
#> 12751 1544661
#> 12752 1544662
#> 12753 1544789
#> 12754 1545041
#> 12755 1545102
#> 12756 1545103
#> 12757 1545105
#> 12758 1545106
#> 12759 1545120
#> 12760 1545410
#> 12761 1545757
#> 12762 1545777
#> 12763 1545844
#> 12764 1545849
#> 12765 1545855
#> 12766 1545866
#> 12767 1545879
#> 12768 1545881
#> 12769 1545905
#> 12770 1545953
#> 12771 1545993
#> 12772 1546456
#> 12773 1546536
#> 12774 1546556
#> 12775 1546565
#> 12776 1546572
#> 12777 1546624
#> 12778 1546626
#> 12779 1546630
#> 12780 1546631
#> 12781 1546799
#> 12782 1546809
#> 12783 1546982
#> 12784 1547112
#> 12785 1547148
#> 12786 1547959
#> 12787 1547967
#> 12788 1548244
#> 12789 1548256
#> 12790 1548257
#> 12791 1548986
#> 12792 1548987
#> 12793 1549101
#> 12794 1549674
#> 12795 1549868
#> 12796 1549906
#> 12797 1549917
#> 12798 1549920
#> 12799 1549929
#> 12800 1549934
#> 12801 1549935
#> 12802 1550000
#> 12803 1550094
#> 12804 1550096
#> 12805 1550103
#> 12806 1550542
#> 12807 1550785
#> 12808 1550794
#> 12809 1550795
#> 12810 1550796
#> 12811 1550797
#> 12812 1551329
#> 12813 1551768
#> 12814 1551769
#> 12815 1551893
#> 12816 1552549
#> 12817 1552710
#> 12818 1552862
#> 12819 1553416
#> 12820 1555771
#> 12821 1555772
#> 12822 1555773
#> 12823 1555827
#> 12824 1555834
#> 12825 1556024
#> 12826 1556109
#> 12827 1556148
#> 12828 1556149
#> 12829 1556150
#> 12830 1556151
#> 12831 1556162
#> 12832 1556163
#> 12833 1556604
#> 12834 1556835
#> 12835 1556842
#> 12836 1556846
#> 12837 1557387
#> 12838 1557391
#> 12839 1557398
#> 12840 1557466
#> 12841 1557960
#> 12842 1558384
#> 12843 1558412
#> 12844 1558434
#> 12845 1558483
#> 12846 1558800
#> 12847 1558802
#> 12848 1558803
#> 12849 1558804
#> 12850 1558805
#> 12851 1558806
#> 12852 1559382
#> 12853 1559492
#> 12854 1559494
#> 12855 1559496
#> 12856 1559497
#> 12857 1559500
#> 12858 1559503
#> 12859 1559505
#> 12860 1559506
#> 12861 1559509
#> 12862 1559511
#> 12863 1559514
#> 12864 1559517
#> 12865 1559519
#> 12866 1559521
#> 12867 1559523
#> 12868 1559525
#> 12869 1559527
#> 12870 1559529
#> 12871 1559531
#> 12872 1559532
#> 12873 1559535
#> 12874 1559537
#> 12875 1559539
#> 12876 1559541
#> 12877 1559543
#> 12878 1559545
#> 12879 1559547
#> 12880 1560693
#> 12881 1560787
#> 12882 1561076
#> 12883 1561152
#> 12884 1561153
#> 12885 1561172
#> 12886 1561173
#> 12887 1561176
#> 12888 1561178
#> 12889 1561179
#> 12890 1561180
#> 12891 1561181
#> 12892 1561182
#> 12893 1561183
#> 12894 1561184
#> 12895 1561185
#> 12896 1561187
#> 12897 1561188
#> 12898 1561189
#> 12899 1561190
#> 12900 1561193
#> 12901 1561194
#> 12902 1561195
#> 12903 1561196
#> 12904 1561197
#> 12905 1561198
#> 12906 1561199
#> 12907 1561200
#> 12908 1561201
#> 12909 1561202
#> 12910 1561271
#> 12911 1561275
#> 12912 1561331
#> 12913 1562379
#> 12914 1562382
#> 12915 1562766
#> 12916 1562843
#> 12917 1562944
#> 12918 1562985
#> 12919 1564182
#> 12920 1564441
#> 12921 1564454
#> 12922 1564455
#> 12923 1564456
#> 12924 1564457
#> 12925 1564458
#> 12926 1564459
#> 12927 1564460
#> 12928 1564461
#> 12929 1564462
#> 12930 1564463
#> 12931 1564464
#> 12932 1564465
#> 12933 1564481
#> 12934 1564482
#> 12935 1564483
#> 12936 1564484
#> 12937 1564485
#> 12938 1564774
#> 12939 1564790
#> 12940 1564791
#> 12941 1564792
#> 12942 1564793
#> 12943 1565073
#> 12944 1565721
#> 12945 1565922
#> 12946 1566496
#> 12947 1566497
#> 12948 1566537
#> 12949 1566557
#> 12950 1566942
#> 12951 1567110
#> 12952 1567111
#> 12953 1567217
#> 12954 1567364
#> 12955 1567367
#> 12956 1567604
#> 12957 1567606
#> 12958 1568249
#> 12959 1568290
#> 12960 1568297
#> 12961 1568298
#> 12962 1568299
#> 12963 1568300
#> 12964 1568312
#> 12965 1568317
#> 12966 1568318
#> 12967 1568319
#> 12968 1568320
#> 12969 1568321
#> 12970 1568329
#> 12971 1568330
#> 12972 1568731
#> 12973 1568733
#> 12974 1568869
#> 12975 1568971
#> 12976 1569611
#> 12977 1569612
#> 12978 1570108
#> 12979 1570325
#> 12980 1570334
#> 12981 1570338
#> 12982 1570341
#> 12983 1570368
#> 12984 1570369
#> 12985 1570370
#> 12986 1570371
#> 12987 1570372
#> 12988 1570808
#> 12989 1570809
#> 12990 1570810
#> 12991 1570811
#> 12992 1570812
#> 12993 1571163
#> 12994 1571172
#> 12995 1571185
#> 12996 1571188
#> 12997 1571427
#> 12998 1571511
#> 12999 1571517
#> 13000 1571558
#> 13001 1571559
#> 13002 1571599
#> 13003 1571600
#> 13004 1571601
#> 13005 1571602
#> 13006 1571603
#> 13007 1571604
#> 13008 1571606
#> 13009 1571607
#> 13010 1571608
#> 13011 1571609
#> 13012 1571610
#> 13013 1571611
#> 13014 1571612
#> 13015 1571613
#> 13016 1571614
#> 13017 1571615
#> 13018 1571616
#> 13019 1571621
#> 13020 1572255
#> 13021 1572263
#> 13022 1572264
#> 13023 1572265
#> 13024 1572266
#> 13025 1572267
#> 13026 1572269
#> 13027 1572270
#> 13028 1572271
#> 13029 1572272
#> 13030 1572273
#> 13031 1572287
#> 13032 1572556
#> 13033 1572568
#> 13034 1572569
#> 13035 1572570
#> 13036 1572571
#> 13037 1572572
#> 13038 1572573
#> 13039 1572574
#> 13040 1572580
#> 13041 1572591
#> 13042 1572598
#> 13043 1572839
#> 13044 1572840
#> 13045 1572848
#> 13046 1572849
#> 13047 1574047
#> 13048 1574088
#> 13049 1574089
#> 13050 1574195
#> 13051 1574269
#> 13052 1574272
#> 13053 1574273
#> 13054 1574274
#> 13055 1574275
#> 13056 1574276
#> 13057 1574277
#> 13058 1574278
#> 13059 1574279
#> 13060 1574280
#> 13061 1574284
#> 13062 1574285
#> 13063 1574435
#> 13064 1574436
#> 13065 1574450
#> 13066 1574451
#> 13067 1574497
#> 13068 1574498
#> 13069 1574499
#> 13070 1574500
#> 13071 1574501
#> 13072 1574502
#> 13073 1574503
#> 13074 1574504
#> 13075 1574505
#> 13076 1574506
#> 13077 1574507
#> 13078 1574595
#> 13079 1574596
#> 13080 1574597
#> 13081 1574598
#> 13082 1574599
#> 13083 1574609
#> 13084 1574611
#> 13085 1574612
#> 13086 1574613
#> 13087 1575077
#> 13088 1575291
#> 13089 1575293
#> 13090 1575480
#> 13091 1575595
#> 13092 1575634
#> 13093 1576848
#> 13094 1576849
#> 13095 1576850
#> 13096 1577581
#> 13097 1577643
#> 13098 1577659
#> 13099 1577663
#> 13100 1577682
#> 13101 1577692
#> 13102 1577700
#> 13103 1577718
#> 13104 1577724
#> 13105 1577896
#> 13106 1578156
#> 13107 1578239
#> 13108 1578247
#> 13109 1578248
#> 13110 1578249
#> 13111 1578250
#> 13112 1578251
#> 13113 1578252
#> 13114 1578253
#> 13115 1578254
#> 13116 1578255
#> 13117 1578256
#> 13118 1578257
#> 13119 1578258
#> 13120 1578515
#> 13121 1578516
#> 13122 1579160
#> 13123 1580238
#> 13124 1580659
#> 13125 1580663
#> 13126 1580691
#> 13127 1580692
#> 13128 1580693
#> 13129 1581560
#> 13130 1581820
#> 13131 1581821
#> 13132 1581822
#> 13133 1581823
#> 13134 1581987
#> 13135 1581988
#> 13136 1582591
#> 13137 1582701
#> 13138 1582702
#> 13139 1582703
#> 13140 1582704
#> 13141 1582705
#> 13142 1582706
#> 13143 1582707
#> 13144 1582708
#> 13145 1582709
#> 13146 1582710
#> 13147 1582711
#> 13148 1582712
#> 13149 1582716
#> 13150 1583164
#> 13151 1583165
#> 13152 1583364
#> 13153 1585715
#> 13154 1586322
#> 13155 1586360
#> 13156 1586767
#> 13157 1586782
#> 13158 1587303
#> 13159 1587308
#> 13160 1587358
#> 13161 1587635
#> 13162 1587831
#> 13163 1587852
#> 13164 1587860
#> 13165 1587861
#> 13166 1588021
#> 13167 1588122
#> 13168 1588343
#> 13169 1588374
#> 13170 1588375
#> 13171 1588376
#> 13172 1588377
#> 13173 1588379
#> 13174 1588383
#> 13175 1588385
#> 13176 1588386
#> 13177 1588387
#> 13178 1588388
#> 13179 1588389
#> 13180 1588390
#> 13181 1588498
#> 13182 1588500
#> 13183 1588585
#> 13184 1588962
#> 13185 1589101
#> 13186 1589102
#> 13187 1589103
#> 13188 1589104
#> 13189 1589113
#> 13190 1589114
#> 13191 1589115
#> 13192 1589116
#> 13193 1589117
#> 13194 1589143
#> 13195 1589147
#> 13196 1589218
#> 13197 1589219
#> 13198 1589220
#> 13199 1589221
#> 13200 1589660
#> 13201 1589825
#> 13202 1589949
#> 13203 1589950
#> 13204 1589955
#> 13205 1589993
#> 13206 1590016
#> 13207 1590027
#> 13208 1590028
#> 13209 1590029
#> 13210 1590030
#> 13211 1590031
#> 13212 1590147
#> 13213 1590317
#> 13214 1590318
#> 13215 1590319
#> 13216 1590320
#> 13217 1590321
#> 13218 1590322
#> 13219 1590323
#> 13220 1590324
#> 13221 1590325
#> 13222 1590326
#> 13223 1590327
#> 13224 1590329
#> 13225 1590330
#> 13226 1590331
#> 13227 1590332
#> 13228 1590333
#> 13229 1590334
#> 13230 1590335
#> 13231 1590336
#> 13232 1590337
#> 13233 1590338
#> 13234 1590339
#> 13235 1590340
#> 13236 1590341
#> 13237 1590342
#> 13238 1591559
#> 13239 1591718
#> 13240 1591719
#> 13241 1591738
#> 13242 1591746
#> 13243 1593167
#> 13244 1593198
#> 13245 1593199
#> 13246 1593200
#> 13247 1593204
#> 13248 1593648
#> 13249 1593806
#> 13250 1593819
#> 13251 1593820
#> 13252 1593821
#> 13253 1593822
#> 13254 1593823
#> 13255 1593824
#> 13256 1593825
#> 13257 1593826
#> 13258 1593827
#> 13259 1593828
#> 13260 1593829
#> 13261 1593830
#> 13262 1593831
#> 13263 1593832
#> 13264 1593833
#> 13265 1593834
#> 13266 1594084
#> 13267 1594306
#> 13268 1594754
#> 13269 1594759
#> 13270 1594769
#> 13271 1594820
#> 13272 1595375
#> 13273 1595377
#> 13274 1595393
#> 13275 1595394
#> 13276 1595395
#> 13277 1595396
#> 13278 1595397
#> 13279 1595398
#> 13280 1595399
#> 13281 1595510
#> 13282 1595517
#> 13283 1596037
#> 13284 1596038
#> 13285 1596046
#> 13286 1596080
#> 13287 1596510
#> 13288 1596511
#> 13289 1596512
#> 13290 1596513
#> 13291 1596514
#> 13292 1596515
#> 13293 1596516
#> 13294 1596517
#> 13295 1596518
#> 13296 1596519
#> 13297 1596520
#> 13298 1596521
#> 13299 1596522
#> 13300 1596523
#> 13301 1596524
#> 13302 1596525
#> 13303 1596527
#> 13304 1596528
#> 13305 1596529
#> 13306 1596530
#> 13307 1596531
#> 13308 1596532
#> 13309 1596533
#> 13310 1596630
#> 13311 1597179
#> 13312 1597753
#> 13313 1597754
#> 13314 1597755
#> 13315 1597756
#> 13316 1597758
#> 13317 1597759
#> 13318 1597760
#> 13319 1597761
#> 13320 1597762
#> 13321 1597763
#> 13322 1597764
#> 13323 1597765
#> 13324 1597766
#> 13325 1597767
#> 13326 1597768
#> 13327 1597769
#> 13328 1597770
#> 13329 1597930
#> 13330 1597933
#> 13331 1597974
#> 13332 1597990
#> 13333 1598974
#> 13334 1598975
#> 13335 1598980
#> 13336 1598982
#> 13337 1599128
#> 13338 1600524
#> 13339 1600528
#> 13340 1600531
#> 13341 1600533
#> 13342 1600535
#> 13343 1600546
#> 13344 1600547
#> 13345 1600548
#> 13346 1600549
#> 13347 1600550
#> 13348 1600556
#> 13349 1600557
#> 13350 1600565
#> 13351 1600566
#> 13352 1600567
#> 13353 1600568
#> 13354 1600569
#> 13355 1600570
#> 13356 1600571
#> 13357 1600572
#> 13358 1600573
#> 13359 1600574
#> 13360 1600575
#> 13361 1600576
#> 13362 1600577
#> 13363 1601488
#> 13364 1601493
#> 13365 1601639
#> 13366 1601642
#> 13367 1601643
#> 13368 1601644
#> 13369 1601645
#> 13370 1601646
#> 13371 1601647
#> 13372 1601648
#> 13373 1601649
#> 13374 1602814
#> 13375 1602815
#> 13376 1602816
#> 13377 1602817
#> 13378 1602818
#> 13379 1602819
#> 13380 1602820
#> 13381 1602821
#> 13382 1602822
#> 13383 1602823
#> 13384 1602824
#> 13385 1603320
#> 13386 1603736
#> 13387 1604037
#> 13388 1604224
#> 13389 1604229
#> 13390 1604231
#> 13391 1604240
#> 13392 1604277
#> 13393 1604381
#> 13394 1604742
#> 13395 1605076
#> 13396 1605100
#> 13397 1605720
#> 13398 1605721
#> 13399 1606936
#> 13400 1607705
#> 13401 1607707
#> 13402 1607708
#> 13403 1607709
#> 13404 1607728
#> 13405 1607742
#> 13406 1607751
#> 13407 1607752
#> 13408 1608324
#> 13409 1608496
#> 13410 1608513
#> 13411 1608530
#> 13412 1608531
#> 13413 1608544
#> 13414 1608545
#> 13415 1608546
#> 13416 1608550
#> 13417 1608554
#> 13418 1608558
#> 13419 1608562
#> 13420 1608877
#> 13421 1608881
#> 13422 1608888
#> 13423 1608892
#> 13424 1608894
#> 13425 1608898
#> 13426 1608954
#> 13427 1609129
#> 13428 1609130
#> 13429 1609175
#> 13430 1609229
#> 13431 1609779
#> 13432 1610065
#> 13433 1610070
#> 13434 1610074
#> 13435 1610136
#> 13436 1610228
#> 13437 1610229
#> 13438 1610230
#> 13439 1610231
#> 13440 1610250
#> 13441 1610365
#> 13442 1610373
#> 13443 1610654
#> 13444 1610891
#> 13445 1611265
#> 13446 1611268
#> 13447 1611269
#> 13448 1611270
#> 13449 1611271
#> 13450 1611272
#> 13451 1611273
#> 13452 1611274
#> 13453 1611275
#> 13454 1611276
#> 13455 1611277
#> 13456 1611522
#> 13457 1611848
#> 13458 1611979
#> 13459 1611994
#> 13460 1611999
#> 13461 1612001
#> 13462 1612035
#> 13463 1612054
#> 13464 1612088
#> 13465 1612329
#> 13466 1612697
#> 13467 1612875
#> 13468 1613072
#> 13469 1613392
#> 13470 1613395
#> 13471 1613396
#> 13472 1613398
#> 13473 1613399
#> 13474 1613400
#> 13475 1613401
#> 13476 1613402
#> 13477 1613403
#> 13478 1613404
#> 13479 1613405
#> 13480 1613406
#> 13481 1613407
#> 13482 1613408
#> 13483 1613409
#> 13484 1613410
#> 13485 1613411
#> 13486 1613412
#> 13487 1613413
#> 13488 1613414
#> 13489 1613415
#> 13490 1613416
#> 13491 1613417
#> 13492 1613418
#> 13493 1613419
#> 13494 1613420
#> 13495 1613421
#> 13496 1613422
#> 13497 1613423
#> 13498 1613424
#> 13499 1613425
#> 13500 1613454
#> 13501 1613455
#> 13502 1613456
#> 13503 1613460
#> 13504 1613461
#> 13505 1613462
#> 13506 1613463
#> 13507 1613464
#> 13508 1613465
#> 13509 1614561
#> 13510 1614566
#> 13511 1614573
#> 13512 1614575
#> 13513 1614778
#> 13514 1614779
#> 13515 1614780
#> 13516 1615814
#> 13517 1615872
#> 13518 1615886
#> 13519 1616251
#> 13520 1616268
#> 13521 1616271
#> 13522 1616534
#> 13523 1616535
#> 13524 1616541
#> 13525 1616542
#> 13526 1616746
#> 13527 1617181
#> 13528 1617607
#> 13529 1617645
#> 13530 1617686
#> 13531 1617921
#> 13532 1617925
#> 13533 1618682
#> 13534 1619139
#> 13535 1619616
#> 13536 1619617
#> 13537 1619625
#> 13538 1619626
#> 13539 1620067
#> 13540 1621185
#> 13541 1621186
#> 13542 1621187
#> 13543 1621404
#> 13544 1621405
#> 13545 1621406
#> 13546 1621407
#> 13547 1622847
#> 13548 1622899
#> 13549 1622903
#> 13550 1622907
#> 13551 1622908
#> 13552 1622912
#> 13553 1622954
#> 13554 1622970
#> 13555 1622984
#> 13556 1622985
#> 13557 1622986
#> 13558 1623005
#> 13559 1623064
#> 13560 1623546
#> 13561 1623820
#> 13562 1623892
#> 13563 1624018
#> 13564 1624020
#> 13565 1624022
#> 13566 1624058
#> 13567 1624059
#> 13568 1624061
#> 13569 1624062
#> 13570 1624064
#> 13571 1624065
#> 13572 1624068
#> 13573 1624070
#> 13574 1624073
#> 13575 1624075
#> 13576 1624076
#> 13577 1624077
#> 13578 1624078
#> 13579 1624079
#> 13580 1624080
#> 13581 1624083
#> 13582 1624084
#> 13583 1624085
#> 13584 1624086
#> 13585 1624087
#> 13586 1624088
#> 13587 1624089
#> 13588 1624090
#> 13589 1624091
#> 13590 1624092
#> 13591 1624107
#> 13592 1624108
#> 13593 1624143
#> 13594 1624627
#> 13595 1624729
#> 13596 1624730
#> 13597 1624731
#> 13598 1624732
#> 13599 1624733
#> 13600 1625019
#> 13601 1625138
#> 13602 1625194
#> 13603 1625197
#> 13604 1625198
#> 13605 1625199
#> 13606 1625200
#> 13607 1625201
#> 13608 1625202
#> 13609 1625203
#> 13610 1625204
#> 13611 1625205
#> 13612 1625206
#> 13613 1625207
#> 13614 1625208
#> 13615 1625209
#> 13616 1625210
#> 13617 1625211
#> 13618 1625212
#> 13619 1625213
#> 13620 1625214
#> 13621 1625215
#> 13622 1625216
#> 13623 1625430
#> 13624 1625454
#> 13625 1625935
#> 13626 1627187
#> 13627 1627665
#> 13628 1627857
#> 13629 1627858
#> 13630 1628237
#> 13631 1628277
#> 13632 1628283
#> 13633 1628399
#> 13634 1628522
#> 13635 1628523
#> 13636 1628524
#> 13637 1628525
#> 13638 1628526
#> 13639 1628527
#> 13640 1628528
#> 13641 1628529
#> 13642 1628530
#> 13643 1628681
#> 13644 1628689
#> 13645 1628690
#> 13646 1628691
#> 13647 1628700
#> 13648 1628701
#> 13649 1628702
#> 13650 1628703
#> 13651 1628704
#> 13652 1628705
#> 13653 1628760
#> 13654 1628913
#> 13655 1628916
#> 13656 1628917
#> 13657 1628918
#> 13658 1628919
#> 13659 1628920
#> 13660 1628921
#> 13661 1628922
#> 13662 1628923
#> 13663 1628924
#> 13664 1628925
#> 13665 1628926
#> 13666 1628927
#> 13667 1628928
#> 13668 1628929
#> 13669 1630156
#> 13670 1630230
#> 13671 1630390
#> 13672 1630453
#> 13673 1630454
#> 13674 1630455
#> 13675 1630456
#> 13676 1630457
#> 13677 1630466
#> 13678 1630467
#> 13679 1630669
#> 13680 1630670
#> 13681 1631064
#> 13682 1631595
#> 13683 1632122
#> 13684 1632183
#> 13685 1632483
#> 13686 1632654
#> 13687 1633545
#> 13688 1633801
#> 13689 1633802
#> 13690 1633803
#> 13691 1633808
#> 13692 1633816
#> 13693 1633826
#> 13694 1634209
#> 13695 1634239
#> 13696 1634240
#> 13697 1634319
#> 13698 1634320
#> 13699 1634321
#> 13700 1634323
#> 13701 1635266
#> 13702 1635269
#> 13703 1635333
#> 13704 1635334
#> 13705 1635336
#> 13706 1636143
#> 13707 1637286
#> 13708 1637287
#> 13709 1637288
#> 13710 1637289
#> 13711 1637290
#> 13712 1637291
#> 13713 1637292
#> 13714 1637293
#> 13715 1637294
#> 13716 1637295
#> 13717 1637296
#> 13718 1637297
#> 13719 1637298
#> 13720 1637299
#> 13721 1637300
#> 13722 1637301
#> 13723 1637302
#> 13724 1637303
#> 13725 1637304
#> 13726 1637305
#> 13727 1637306
#> 13728 1637307
#> 13729 1637308
#> 13730 1637309
#> 13731 1637310
#> 13732 1637311
#> 13733 1637312
#> 13734 1637313
#> 13735 1637314
#> 13736 1637315
#> 13737 1637316
#> 13738 1637317
#> 13739 1637319
#> 13740 1637320
#> 13741 1637321
#> 13742 1637322
#> 13743 1637323
#> 13744 1637324
#> 13745 1637325
#> 13746 1637326
#> 13747 1637327
#> 13748 1637328
#> 13749 1637329
#> 13750 1637330
#> 13751 1637331
#> 13752 1637332
#> 13753 1637333
#> 13754 1637334
#> 13755 1637335
#> 13756 1637336
#> 13757 1637337
#> 13758 1637338
#> 13759 1637347
#> 13760 1637348
#> 13761 1637349
#> 13762 1637350
#> 13763 1637351
#> 13764 1637352
#> 13765 1637353
#> 13766 1637354
#> 13767 1637355
#> 13768 1637514
#> 13769 1637518
#> 13770 1637519
#> 13771 1637520
#> 13772 1637521
#> 13773 1637522
#> 13774 1637523
#> 13775 1637524
#> 13776 1637525
#> 13777 1637528
#> 13778 1637529
#> 13779 1637530
#> 13780 1637531
#> 13781 1637532
#> 13782 1637534
#> 13783 1637578
#> 13784 1637656
#> 13785 1637805
#> 13786 1637824
#> 13787 1638077
#> 13788 1638892
#> 13789 1639198
#> 13790 1639267
#> 13791 1639268
#> 13792 1639270
#> 13793 1639271
#> 13794 1639272
#> 13795 1639273
#> 13796 1639274
#> 13797 1639275
#> 13798 1639276
#> 13799 1639361
#> 13800 1639362
#> 13801 1639363
#> 13802 1639383
#> 13803 1639498
#> 13804 1639845
#> 13805 1639972
#> 13806 1646179
#> 13807 1646183
#> 13808 1646345
#> 13809 1646361
#> 13810 1646362
#> 13811 1646363
#> 13812 1646364
#> 13813 1646365
#> 13814 1646366
#> 13815 1646370
#> 13816 1646371
#> 13817 1646372
#> 13818 1646373
#> 13819 1646374
#> 13820 1646375
#> 13821 1646376
#> 13822 1646377
#> 13823 1646378
#> 13824 1646379
#> 13825 1646380
#> 13826 1646381
#> 13827 1646382
#> 13828 1647423
#> 13829 1647658
#> 13830 1647706
#> 13831 1647710
#> 13832 1647714
#> 13833 1647718
#> 13834 1647722
#> 13835 1647726
#> 13836 1647748
#> 13837 1647749
#> 13838 1647750
#> 13839 1647751
#> 13840 1647752
#> 13841 1647753
#> 13842 1647754
#> 13843 1647755
#> 13844 1647756
#> 13845 1647775
#> 13846 1647776
#> 13847 1647777
#> 13848 1647778
#> 13849 1647779
#> 13850 1647792
#> 13851 1647804
#> 13852 1647805
#> 13853 1647810
#> 13854 1647812
#> 13855 1647817
#> 13856 1647820
#> 13857 1647823
#> 13858 1647827
#> 13859 1647968
#> 13860 1647970
#> 13861 1647973
#> 13862 1648056
#> 13863 1648104
#> 13864 1648909
#> 13865 1649313
#> 13866 1649323
#> 13867 1649330
#> 13868 1649335
#> 13869 1649941
#> 13870 1650131
#> 13871 1650132
#> 13872 1650133
#> 13873 1650617
#> 13874 1650662
#> 13875 1650663
#> 13876 1650860
#> 13877 1650862
#> 13878 1650863
#> 13879 1651056
#> 13880 1651161
#> 13881 1651255
#> 13882 1651256
#> 13883 1651257
#> 13884 1651258
#> 13885 1651551
#> 13886 1651554
#> 13887 1651565
#> 13888 1651566
#> 13889 1651567
#> 13890 1651568
#> 13891 1651569
#> 13892 1651570
#> 13893 1652069
#> 13894 1652074
#> 13895 1652718
#> 13896 1653099
#> 13897 1653107
#> 13898 1653110
#> 13899 1653147
#> 13900 1653179
#> 13901 1653188
#> 13902 1653192
#> 13903 1653197
#> 13904 1653664
#> 13905 1653665
#> 13906 1653667
#> 13907 1653668
#> 13908 1653694
#> 13909 1653695
#> 13910 1653696
#> 13911 1653700
#> 13912 1653704
#> 13913 1653705
#> 13914 1653709
#> 13915 1653713
#> 13916 1653715
#> 13917 1653716
#> 13918 1653721
#> 13919 1653911
#> 13920 1653913
#> 13921 1653914
#> 13922 1653915
#> 13923 1653919
#> 13924 1653935
#> 13925 1653936
#> 13926 1654056
#> 13927 1654070
#> 13928 1654071
#> 13929 1654143
#> 13930 1654509
#> 13931 1654724
#> 13932 1655027
#> 13933 1655302
#> 13934 1655401
#> 13935 1655443
#> 13936 1655495
#> 13937 1655700
#> 13938 1655906
#> 13939 1655907
#> 13940 1655908
#> 13941 1656507
#> 13942 1656509
#> 13943 1656725
#> 13944 1656992
#> 13945 1657015
#> 13946 1657549
#> 13947 1657556
#> 13948 1657906
#> 13949 1658389
#> 13950 1658408
#> 13951 1658425
#> 13952 1658670
#> 13953 1658671
#> 13954 1658672
#> 13955 1658673
#> 13956 1658674
#> 13957 1658675
#> 13958 1658676
#> 13959 1658677
#> 13960 1658678
#> 13961 1658679
#> 13962 1658680
#> 13963 1658681
#> 13964 1658682
#> 13965 1658683
#> 13966 1658684
#> 13967 1658685
#> 13968 1658686
#> 13969 1658687
#> 13970 1658688
#> 13971 1658689
#> 13972 1658915
#> 13973 1658916
#> 13974 1658919
#> 13975 1658920
#> 13976 1659073
#> 13977 1659074
#> 13978 1659075
#> 13979 1659212
#> 13980 1659217
#> 13981 1659245
#> 13982 1659646
#> 13983 1659657
#> 13984 1659685
#> 13985 1659842
#> 13986 1659843
#> 13987 1659844
#> 13988 1659845
#> 13989 1659846
#> 13990 1659997
#> 13991 1659998
#> 13992 1659999
#> 13993 1660000
#> 13994 1660001
#> 13995 1660002
#> 13996 1660004
#> 13997 1660005
#> 13998 1660006
#> 13999 1660007
#> 14000 1660008
#> 14001 1660022
#> 14002 1660023
#> 14003 1660024
#> 14004 1660025
#> 14005 1660026
#> 14006 1660027
#> 14007 1660028
#> 14008 1660029
#> 14009 1660030
#> 14010 1660031
#> 14011 1660032
#> 14012 1660033
#> 14013 1660101
#> 14014 1660102
#> 14015 1660123
#> 14016 1660124
#> 14017 1660127
#> 14018 1660128
#> 14019 1660129
#> 14020 1660198
#> 14021 1660199
#> 14022 1660348
#> 14023 1660613
#> 14024 1660615
#> 14025 1660910
#> 14026 1660911
#> 14027 1660912
#> 14028 1660976
#> 14029 1660977
#> 14030 1660978
#> 14031 1660980
#> 14032 1660981
#> 14033 1660982
#> 14034 1660983
#> 14035 1660984
#> 14036 1661120
#> 14037 1661121
#> 14038 1661736
#> 14039 1661953
#> 14040 1662197
#> 14041 1662198
#> 14042 1662203
#> 14043 1662205
#> 14044 1662206
#> 14045 1662207
#> 14046 1662208
#> 14047 1662209
#> 14048 1662213
#> 14049 1662258
#> 14050 1662259
#> 14051 1662260
#> 14052 1662261
#> 14053 1662843
#> 14054 1663469
#> 14055 1663477
#> 14056 1663770
#> 14057 1663861
#> 14058 1664326
#> 14059 1664327
#> 14060 1664371
#> 14061 1664609
#> 14062 1664650
#> 14063 1664700
#> 14064 1664837
#> 14065 1664838
#> 14066 1664839
#> 14067 1664846
#> 14068 1664847
#> 14069 1664848
#> 14070 1664849
#> 14071 1664850
#> 14072 1664851
#> 14073 1664852
#> 14074 1664853
#> 14075 1664854
#> 14076 1664855
#> 14077 1664856
#> 14078 1664857
#> 14079 1664858
#> 14080 1664859
#> 14081 1664860
#> 14082 1664861
#> 14083 1664862
#> 14084 1664863
#> 14085 1664864
#> 14086 1664865
#> 14087 1664866
#> 14088 1664867
#> 14089 1664868
#> 14090 1664869
#> 14091 1664870
#> 14092 1664871
#> 14093 1664872
#> 14094 1664873
#> 14095 1664874
#> 14096 1664875
#> 14097 1664876
#> 14098 1664877
#> 14099 1664878
#> 14100 1664879
#> 14101 1664880
#> 14102 1664881
#> 14103 1664882
#> 14104 1664883
#> 14105 1664884
#> 14106 1664885
#> 14107 1664886
#> 14108 1664887
#> 14109 1664888
#> 14110 1664889
#> 14111 1664890
#> 14112 1664891
#> 14113 1664892
#> 14114 1664893
#> 14115 1664894
#> 14116 1664895
#> 14117 1664896
#> 14118 1664897
#> 14119 1664898
#> 14120 1664899
#> 14121 1664900
#> 14122 1664901
#> 14123 1664902
#> 14124 1664903
#> 14125 1664904
#> 14126 1665003
#> 14127 1666165
#> 14128 1666173
#> 14129 1666196
#> 14130 1666470
#> 14131 1666471
#> 14132 1666472
#> 14133 1666473
#> 14134 1666474
#> 14135 1666475
#> 14136 1666485
#> 14137 1666487
#> 14138 1666488
#> 14139 1666492
#> 14140 1666494
#> 14141 1666497
#> 14142 1666498
#> 14143 1666499
#> 14144 1666500
#> 14145 1666501
#> 14146 1666502
#> 14147 1666503
#> 14148 1666504
#> 14149 1666505
#> 14150 1666506
#> 14151 1666507
#> 14152 1666508
#> 14153 1666509
#> 14154 1666510
#> 14155 1666511
#> 14156 1666512
#> 14157 1666513
#> 14158 1666514
#> 14159 1666515
#> 14160 1666516
#> 14161 1666517
#> 14162 1666518
#> 14163 1666519
#> 14164 1666520
#> 14165 1666521
#> 14166 1666522
#> 14167 1666523
#> 14168 1666524
#> 14169 1666525
#> 14170 1666551
#> 14171 1666557
#> 14172 1666930
#> 14173 1666931
#> 14174 1666932
#> 14175 1666933
#> 14176 1666934
#> 14177 1666935
#> 14178 1666936
#> 14179 1667119
#> 14180 1667121
#> 14181 1667122
#> 14182 1667123
#> 14183 1667124
#> 14184 1667125
#> 14185 1667126
#> 14186 1667127
#> 14187 1667128
#> 14188 1667129
#> 14189 1667130
#> 14190 1667223
#> 14191 1667249
#> 14192 1667426
#> 14193 1667734
#> 14194 1667737
#> 14195 1667740
#> 14196 1667741
#> 14197 1667742
#> 14198 1667743
#> 14199 1667744
#> 14200 1668272
#> 14201 1668527
#> 14202 1668619
#> 14203 1668620
#> 14204 1668621
#> 14205 1668622
#> 14206 1668623
#> 14207 1668624
#> 14208 1668625
#> 14209 1668626
#> 14210 1668627
#> 14211 1669115
#> 14212 1669116
#> 14213 1669121
#> 14214 1669122
#> 14215 1669123
#> 14216 1669124
#> 14217 1669125
#> 14218 1669126
#> 14219 1669127
#> 14220 1669128
#> 14221 1669130
#> 14222 1669244
#> 14223 1669245
#> 14224 1669246
#> 14225 1673180
#> 14226 1673383
#> 14227 1674014
#> 14228 1674266
#> 14229 1674366
#> 14230 1675243
#> 14231 1675244
#> 14232 1675245
#> 14233 1675604
#> 14234 1676415
#> 14235 1677358
#> 14236 1677359
#> 14237 1677360
#> 14238 1677361
#> 14239 1677362
#> 14240 1677363
#> 14241 1677364
#> 14242 1677365
#> 14243 1677366
#> 14244 1677367
#> 14245 1677368
#> 14246 1677369
#> 14247 1677370
#> 14248 1677371
#> 14249 1677372
#> 14250 1677426
#> 14251 1677448
#> 14252 1677449
#> 14253 1677450
#> 14254 1677451
#> 14255 1677452
#> 14256 1677453
#> 14257 1677454
#> 14258 1677455
#> 14259 1677456
#> 14260 1677457
#> 14261 1677458
#> 14262 1677459
#> 14263 1677460
#> 14264 1677461
#> 14265 1677462
#> 14266 1677463
#> 14267 1677464
#> 14268 1677465
#> 14269 1677494
#> 14270 1677495
#> 14271 1677496
#> 14272 1677497
#> 14273 1677498
#> 14274 1677499
#> 14275 1677500
#> 14276 1677501
#> 14277 1677502
#> 14278 1677503
#> 14279 1677504
#> 14280 1677505
#> 14281 1677506
#> 14282 1677509
#> 14283 1677518
#> 14284 1677519
#> 14285 1677520
#> 14286 1677522
#> 14287 1677783
#> 14288 1677979
#> 14289 1677981
#> 14290 1678666
#> 14291 1679880
#> 14292 1679884
#> 14293 1679885
#> 14294 1680004
#> 14295 1680076
#> 14296 1680924
#> 14297 1681125
#> 14298 1681126
#> 14299 1681127
#> 14300 1681128
#> 14301 1682634
#> 14302 1682724
#> 14303 1682727
#> 14304 1682728
#> 14305 1682729
#> 14306 1682790
#> 14307 1682793
#> 14308 1682794
#> 14309 1682795
#> 14310 1682798
#> 14311 1682831
#> 14312 1682910
#> 14313 1682911
#> 14314 1682912
#> 14315 1682913
#> 14316 1682914
#> 14317 1682915
#> 14318 1682916
#> 14319 1682917
#> 14320 1682918
#> 14321 1682919
#> 14322 1682922
#> 14323 1683019
#> 14324 1683020
#> 14325 1683021
#> 14326 1683022
#> 14327 1683040
#> 14328 1683108
#> 14329 1683176
#> 14330 1683177
#> 14331 1683179
#> 14332 1683180
#> 14333 1683183
#> 14334 1683185
#> 14335 1683186
#> 14336 1683189
#> 14337 1683190
#> 14338 1683193
#> 14339 1683196
#> 14340 1683197
#> 14341 1683443
#> 14342 1683444
#> 14343 1683445
#> 14344 1683446
#> 14345 1683447
#> 14346 1683448
#> 14347 1683449
#> 14348 1683450
#> 14349 1683451
#> 14350 1683452
#> 14351 1683453
#> 14352 1683454
#> 14353 1683455
#> 14354 1683456
#> 14355 1683457
#> 14356 1684497
#> 14357 1684592
#> 14358 1686066
#> 14359 1686069
#> 14360 1686070
#> 14361 1686598
#> 14362 1686601
#> 14363 1686691
#> 14364 1688236
#> 14365 1688237
#> 14366 1689067
#> 14367 1689072
#> 14368 1689073
#> 14369 1689074
#> 14370 1689075
#> 14371 1689076
#> 14372 1689077
#> 14373 1689078
#> 14374 1689079
#> 14375 1689080
#> 14376 1689081
#> 14377 1689082
#> 14378 1689083
#> 14379 1689084
#> 14380 1689085
#> 14381 1689086
#> 14382 1689091
#> 14383 1689092
#> 14384 1689093
#> 14385 1689094
#> 14386 1689095
#> 14387 1689096
#> 14388 1689097
#> 14389 1689098
#> 14390 1689107
#> 14391 1689778
#> 14392 1689796
#> 14393 1689800
#> 14394 1690589
#> 14395 1690591
#> 14396 1690602
#> 14397 1690603
#> 14398 1690604
#> 14399 1690605
#> 14400 1690607
#> 14401 1690608
#> 14402 1690609
#> 14403 1690610
#> 14404 1690611
#> 14405 1690612
#> 14406 1690613
#> 14407 1690618
#> 14408 1690801
#> 14409 1691237
#> 14410 1691240
#> 14411 1691244
#> 14412 1691248
#> 14413 1691252
#> 14414 1691257
#> 14415 1691261
#> 14416 1691265
#> 14417 1691553
#> 14418 1692249
#> 14419 1692469
#> 14420 1693359
#> 14421 1693647
#> 14422 1693845
#> 14423 1693848
#> 14424 1693983
#> 14425 1694031
#> 14426 1694032
#> 14427 1694033
#> 14428 1694034
#> 14429 1694035
#> 14430 1694036
#> 14431 1694039
#> 14432 1694124
#> 14433 1694242
#> 14434 1694244
#> 14435 1694245
#> 14436 1694246
#> 14437 1694247
#> 14438 1694248
#> 14439 1694249
#> 14440 1694250
#> 14441 1694251
#> 14442 1694252
#> 14443 1694253
#> 14444 1694254
#> 14445 1694255
#> 14446 1694256
#> 14447 1694257
#> 14448 1694258
#> 14449 1694259
#> 14450 1694260
#> 14451 1694261
#> 14452 1694262
#> 14453 1694263
#> 14454 1694264
#> 14455 1694265
#> 14456 1694266
#> 14457 1694268
#> 14458 1694269
#> 14459 1694300
#> 14460 1694343
#> 14461 1694905
#> 14462 1694945
#> 14463 1695017
#> 14464 1695083
#> 14465 1695300
#> 14466 1695397
#> 14467 1695602
#> 14468 1696476
#> 14469 1696592
#> 14470 1696720
#> 14471 1697174
#> 14472 1697876
#> 14473 1698639
#> 14474 1699009
#> 14475 1699011
#> 14476 1699045
#> 14477 1699052
#> 14478 1699053
#> 14479 1699178
#> 14480 1699179
#> 14481 1699286
#> 14482 1699496
#> 14483 1700000
#> 14484 1700145
#> 14485 1700146
#> 14486 1700147
#> 14487 1700148
#> 14488 1700149
#> 14489 1700150
#> 14490 1700151
#> 14491 1700152
#> 14492 1700153
#> 14493 1700154
#> 14494 1700155
#> 14495 1700168
#> 14496 1700169
#> 14497 1701037
#> 14498 1701222
#> 14499 1701510
#> 14500 1701938
#> 14501 1701960
#> 14502 1701961
#> 14503 1701988
#> 14504 1701989
#> 14505 1701990
#> 14506 1702586
#> 14507 1702932
#> 14508 1702942
#> 14509 1702952
#> 14510 1702962
#> 14511 1702972
#> 14512 1703215
#> 14513 1703284
#> 14514 1703387
#> 14515 1704305
#> 14516 1704388
#> 14517 1704389
#> 14518 1704390
#> 14519 1704493
#> 14520 1704631
#> 14521 1704654
#> 14522 1704670
#> 14523 1705700
#> 14524 1705711
#> 14525 1706104
#> 14526 1706105
#> 14527 1706109
#> 14528 1706124
#> 14529 1706125
#> 14530 1706126
#> 14531 1706127
#> 14532 1706128
#> 14533 1706137
#> 14534 1706138
#> 14535 1706141
#> 14536 1706475
#> 14537 1707043
#> 14538 1707198
#> 14539 1707203
#> 14540 1707214
#> 14541 1707242
#> 14542 1708502
#> 14543 1708503
#> 14544 1708507
#> 14545 1708939
#> 14546 1709300
#> 14547 1709301
#> 14548 1709302
#> 14549 1709727
#> 14550 1709734
#> 14551 1709735
#> 14552 1709736
#> 14553 1709737
#> 14554 1709738
#> 14555 1709739
#> 14556 1709740
#> 14557 1709741
#> 14558 1709742
#> 14559 1709743
#> 14560 1709744
#> 14561 1709745
#> 14562 1709746
#> 14563 1709747
#> 14564 1709748
#> 14565 1709749
#> 14566 1709750
#> 14567 1709751
#> 14568 1709752
#> 14569 1709753
#> 14570 1709754
#> 14571 1709756
#> 14572 1709759
#> 14573 1709762
#> 14574 1709786
#> 14575 1709787
#> 14576 1709799
#> 14577 1709800
#> 14578 1709837
#> 14579 1709838
#> 14580 1709839
#> 14581 1709840
#> 14582 1709841
#> 14583 1709842
#> 14584 1709843
#> 14585 1709844
#> 14586 1709845
#> 14587 1709846
#> 14588 1709847
#> 14589 1709848
#> 14590 1709849
#> 14591 1709850
#> 14592 1709851
#> 14593 1709852
#> 14594 1709853
#> 14595 1709854
#> 14596 1709855
#> 14597 1710777
#> 14598 1711505
#> 14599 1711798
#> 14600 1711841
#> 14601 1713024
#> 14602 1713144
#> 14603 1713253
#> 14604 1713596
#> 14605 1713720
#> 14606 1714143
#> 14607 1714144
#> 14608 1714145
#> 14609 1714146
#> 14610 1714149
#> 14611 1714150
#> 14612 1714151
#> 14613 1714152
#> 14614 1714153
#> 14615 1714154
#> 14616 1714155
#> 14617 1714156
#> 14618 1714157
#> 14619 1714158
#> 14620 1714166
#> 14621 1714167
#> 14622 1714175
#> 14623 1714176
#> 14624 1714179
#> 14625 1714180
#> 14626 1714183
#> 14627 1714184
#> 14628 1716995
#> 14629 1717030
#> 14630 1717096
#> 14631 1719505
#> 14632 1719506
#> 14633 1719507
#> 14634 1719508
#> 14635 1719509
#> 14636 1719510
#> 14637 1719511
#> 14638 1719512
#> 14639 1719513
#> 14640 1719514
#> 14641 1719515
#> 14642 1719518
#> 14643 1719519
#> 14644 1719520
#> 14645 1719521
#> 14646 1719522
#> 14647 1719523
#> 14648 1719524
#> 14649 1720091
#> 14650 1720117
#> 14651 1720437
#> 14652 1720447
#> 14653 1720448
#> 14654 1720449
#> 14655 1720455
#> 14656 1720560
#> 14657 1720561
#> 14658 1720562
#> 14659 1720563
#> 14660 1720564
#> 14661 1720566
#> 14662 1720567
#> 14663 1720568
#> 14664 1722288
#> 14665 1722290
#> 14666 1722676
#> 14667 1722757
#> 14668 1722758
#> 14669 1722763
#> 14670 1722772
#> 14671 1722773
#> 14672 1722774
#> 14673 1722775
#> 14674 1722776
#> 14675 1722777
#> 14676 1722778
#> 14677 1722779
#> 14678 1722780
#> 14679 1722781
#> 14680 1722782
#> 14681 1722783
#> 14682 1722784
#> 14683 1722785
#> 14684 1722786
#> 14685 1722787
#> 14686 1722796
#> 14687 1722852
#> 14688 1722856
#> 14689 1724512
#> 14690 1724530
#> 14691 1725705
#> 14692 1726325
#> 14693 1726326
#> 14694 1726338
#> 14695 1726342
#> 14696 1726344
#> 14697 1726678
#> 14698 1726679
#> 14699 1726680
#> 14700 1726763
#> 14701 1727016
#> 14702 1727051
#> 14703 1727083
#> 14704 1727087
#> 14705 1727091
#> 14706 1727156
#> 14707 1727298
#> 14708 1728741
#> 14709 1728925
#> 14710 1729231
#> 14711 1729297
#> 14712 1729878
#> 14713 1729886
#> 14714 1729887
#> 14715 1729888
#> 14716 1729889
#> 14717 1729896
#> 14718 1729897
#> 14719 1729900
#> 14720 1729901
#> 14721 1729906
#> 14722 1729907
#> 14723 1729916
#> 14724 1729917
#> 14725 1729918
#> 14726 1729919
#> 14727 1730122
#> 14728 1730126
#> 14729 1730127
#> 14730 1730128
#> 14731 1730129
#> 14732 1730130
#> 14733 1730131
#> 14734 1730132
#> 14735 1730133
#> 14736 1730134
#> 14737 1730135
#> 14738 1730136
#> 14739 1730137
#> 14740 1730269
#> 14741 1730301
#> 14742 1730307
#> 14743 1730315
#> 14744 1730323
#> 14745 1730638
#> 14746 1730657
#> 14747 1730721
#> 14748 1730723
#> 14749 1730724
#> 14750 1731561
#> 14751 1731569
#> 14752 1731571
#> 14753 1731573
#> 14754 1731575
#> 14755 1731576
#> 14756 1731578
#> 14757 1731579
#> 14758 1731580
#> 14759 1731581
#> 14760 1731582
#> 14761 1731583
#> 14762 1731584
#> 14763 1731961
#> 14764 1731994
#> 14765 1732003
#> 14766 1732004
#> 14767 1732005
#> 14768 1732006
#> 14769 1732007
#> 14770 1732008
#> 14771 1732009
#> 14772 1732010
#> 14773 1732011
#> 14774 1732012
#> 14775 1732013
#> 14776 1732014
#> 14777 1732015
#> 14778 1732016
#> 14779 1732017
#> 14780 1732018
#> 14781 1732019
#> 14782 1732020
#> 14783 1732021
#> 14784 1732022
#> 14785 1732023
#> 14786 1732024
#> 14787 1732025
#> 14788 1732160
#> 14789 1732410
#> 14790 1732438
#> 14791 1732442
#> 14792 1732443
#> 14793 1732444
#> 14794 1732445
#> 14795 1732446
#> 14796 1732447
#> 14797 1732448
#> 14798 1732449
#> 14799 1732450
#> 14800 1732451
#> 14801 1732452
#> 14802 1732453
#> 14803 1732454
#> 14804 1732455
#> 14805 1732456
#> 14806 1732457
#> 14807 1732458
#> 14808 1733014
#> 14809 1733015
#> 14810 1733017
#> 14811 1733022
#> 14812 1733025
#> 14813 1733026
#> 14814 1733027
#> 14815 1733028
#> 14816 1733029
#> 14817 1733030
#> 14818 1733031
#> 14819 1733125
#> 14820 1734808
#> 14821 1735275
#> 14822 1735672
#> 14823 1735888
#> 14824 1735977
#> 14825 1736121
#> 14826 1736587
#> 14827 1736625
#> 14828 1736761
#> 14829 1737138
#> 14830 1737578
#> 14831 1737579
#> 14832 1737580
#> 14833 1737581
#> 14834 1737582
#> 14835 1737583
#> 14836 1737584
#> 14837 1737585
#> 14838 1737586
#> 14839 1737587
#> 14840 1737797
#> 14841 1737803
#> 14842 1737805
#> 14843 1737806
#> 14844 1737807
#> 14845 1737808
#> 14846 1737809
#> 14847 1737810
#> 14848 1737811
#> 14849 1737812
#> 14850 1737813
#> 14851 1737814
#> 14852 1737815
#> 14853 1737816
#> 14854 1737828
#> 14855 1737829
#> 14856 1737830
#> 14857 1737831
#> 14858 1737832
#> 14859 1737833
#> 14860 1737841
#> 14861 1737842
#> 14862 1737843
#> 14863 1737902
#> 14864 1737912
#> 14865 1737918
#> 14866 1737921
#> 14867 1737957
#> 14868 1737958
#> 14869 1737959
#> 14870 1737960
#> 14871 1737961
#> 14872 1737962
#> 14873 1737963
#> 14874 1737964
#> 14875 1737965
#> 14876 1737966
#> 14877 1737967
#> 14878 1737968
#> 14879 1737969
#> 14880 1737993
#> 14881 1738823
#> 14882 1738838
#> 14883 1738839
#> 14884 1738840
#> 14885 1738841
#> 14886 1738842
#> 14887 1738843
#> 14888 1738844
#> 14889 1738845
#> 14890 1738846
#> 14891 1738847
#> 14892 1738848
#> 14893 1738849
#> 14894 1738850
#> 14895 1738851
#> 14896 1738852
#> 14897 1738853
#> 14898 1738854
#> 14899 1738855
#> 14900 1738856
#> 14901 1738857
#> 14902 1738858
#> 14903 1738859
#> 14904 1738860
#> 14905 1738861
#> 14906 1738862
#> 14907 1738863
#> 14908 1738864
#> 14909 1738865
#> 14910 1738866
#> 14911 1738867
#> 14912 1738868
#> 14913 1738869
#> 14914 1738870
#> 14915 1738871
#> 14916 1738872
#> 14917 1738873
#> 14918 1739707
#> 14919 1739806
#> 14920 1740503
#> 14921 1740506
#> 14922 1740507
#> 14923 1740508
#> 14924 1740509
#> 14925 1740510
#> 14926 1740511
#> 14927 1740512
#> 14928 1740513
#> 14929 1740514
#> 14930 1740515
#> 14931 1740516
#> 14932 1740517
#> 14933 1740518
#> 14934 1740519
#> 14935 1740520
#> 14936 1740521
#> 14937 1740522
#> 14938 1740588
#> 14939 1741420
#> 14940 1741565
#> 14941 1741570
#> 14942 1741571
#> 14943 1741572
#> 14944 1741573
#> 14945 1741574
#> 14946 1741575
#> 14947 1741576
#> 14948 1741577
#> 14949 1741578
#> 14950 1741579
#> 14951 1741580
#> 14952 1741581
#> 14953 1741582
#> 14954 1741583
#> 14955 1741584
#> 14956 1741585
#> 14957 1741586
#> 14958 1741587
#> 14959 1741588
#> 14960 1741589
#> 14961 1741590
#> 14962 1741591
#> 14963 1741592
#> 14964 1741593
#> 14965 1741594
#> 14966 1741595
#> 14967 1741596
#> 14968 1741915
#> 14969 1741916
#> 14970 1741928
#> 14971 1741933
#> 14972 1741934
#> 14973 1741935
#> 14974 1741945
#> 14975 1741946
#> 14976 1741947
#> 14977 1741948
#> 14978 1741949
#> 14979 1741958
#> 14980 1742334
#> 14981 1742340
#> 14982 1742345
#> 14983 1742348
#> 14984 1742365
#> 14985 1742544
#> 14986 1743182
#> 14987 1743648
#> 14988 1743649
#> 14989 1743650
#> 14990 1748631
#> 14991 1750230
#> 14992 1751131
#> 14993 1751298
#> 14994 1751320
#> 14995 1751493
#> 14996 1752063
#> 14997 1752065
#> 14998 1752067
#> 14999 1752068
#> 15000 1752069
#> 15001 1752070
#> 15002 1752506
#> 15003 1752507
#> 15004 1752512
#> 15005 1752513
#> 15006 1752514
#> 15007 1752519
#> 15008 1752520
#> 15009 1752521
#> 15010 1752522
#> 15011 1752532
#> 15012 1752533
#> 15013 1752628
#> 15014 1753127
#> 15015 1753881
#> 15016 1754633
#> 15017 1755070
#> 15018 1755095
#> 15019 1755570
#> 15020 1755830
#> 15021 1755838
#> 15022 1756038
#> 15023 1756134
#> 15024 1756135
#> 15025 1756547
#> 15026 1756924
#> 15027 1756928
#> 15028 1758691
#> 15029 1758986
#> 15030 1759088
#> 15031 1759488
#> 15032 1759850
#> 15033 1759941
#> 15034 1760127
#> 15035 1760129
#> 15036 1760142
#> 15037 1760143
#> 15038 1760144
#> 15039 1760363
#> 15040 1760374
#> 15041 1760386
#> 15042 1760403
#> 15043 1760406
#> 15044 1760409
#> 15045 1760418
#> 15046 1760429
#> 15047 1761743
#> 15048 1761926
#> 15049 1763138
#> 15050 1764002
#> 15051 1764670
#> 15052 1765861
#> 15053 1765919
#> 15054 1766020
#> 15055 1766104
#> 15056 1766105
#> 15057 1766188
#> 15058 1766192
#> 15059 1766196
#> 15060 1766555
#> 15061 1767166
#> 15062 1767912
#> 15063 1767915
#> 15064 1767916
#> 15065 1767917
#> 15066 1767918
#> 15067 1767919
#> 15068 1767920
#> 15069 1767921
#> 15070 1767922
#> 15071 1767923
#> 15072 1767924
#> 15073 1767925
#> 15074 1767926
#> 15075 1767940
#> 15076 1768122
#> 15077 1768411
#> 15078 1769818
#> 15079 1770908
#> 15080 1770909
#> 15081 1770910
#> 15082 1770911
#> 15083 1770912
#> 15084 1770913
#> 15085 1770914
#> 15086 1770915
#> 15087 1770916
#> 15088 1770917
#> 15089 1770918
#> 15090 1770919
#> 15091 1770922
#> 15092 1770923
#> 15093 1770924
#> 15094 1770925
#> 15095 1770926
#> 15096 1770927
#> 15097 1770928
#> 15098 1770979
#> 15099 1771460
#> 15100 1772961
#> 15101 1773310
#> 15102 1773825
#> 15103 1775101
#> 15104 1775102
#> 15105 1775103
#> 15106 1775105
#> 15107 1775116
#> 15108 1776946
#> 15109 1776979
#> 15110 1776988
#> 15111 1776996
#> 15112 1776997
#> 15113 1776998
#> 15114 1776999
#> 15115 1777000
#> 15116 1777001
#> 15117 1777002
#> 15118 1778187
#> 15119 1778194
#> 15120 1778195
#> 15121 1778196
#> 15122 1778197
#> 15123 1778198
#> 15124 1778199
#> 15125 1778200
#> 15126 1778201
#> 15127 1778202
#> 15128 1778203
#> 15129 1778204
#> 15130 1778205
#> 15131 1778206
#> 15132 1778207
#> 15133 1778208
#> 15134 1778209
#> 15135 1778210
#> 15136 1778211
#> 15137 1778212
#> 15138 1778213
#> 15139 1778214
#> 15140 1778215
#> 15141 1778216
#> 15142 1778217
#> 15143 1778218
#> 15144 1778264
#> 15145 1778267
#> 15146 1778268
#> 15147 1778269
#> 15148 1778270
#> 15149 1778271
#> 15150 1778272
#> 15151 1778273
#> 15152 1778274
#> 15153 1778275
#> 15154 1778276
#> 15155 1778277
#> 15156 1778278
#> 15157 1778279
#> 15158 1778280
#> 15159 1778281
#> 15160 1778282
#> 15161 1778283
#> 15162 1778284
#> 15163 1778285
#> 15164 1778286
#> 15165 1778287
#> 15166 1778288
#> 15167 1778295
#> 15168 1778861
#> 15169 1779278
#> 15170 1779396
#> 15171 1780467
#> 15172 1780705
#> 15173 1781484
#> 15174 1781508
#> 15175 1781785
#> 15176 1781786
#> 15177 1781787
#> 15178 1781788
#> 15179 1781789
#> 15180 1781790
#> 15181 1781791
#> 15182 1781792
#> 15183 1781793
#> 15184 1781912
#> 15185 1782147
#> 15186 1782203
#> 15187 1782524
#> 15188 1783715
#> 15189 1783822
#> 15190 1784415
#> 15191 1784416
#> 15192 1784417
#> 15193 1784418
#> 15194 1784973
#> 15195 1785349
#> 15196 1785395
#> 15197 1785503
#> 15198 1785875
#> 15199 1786122
#> 15200 1786123
#> 15201 1789669
#> 15202 1792930
#> 15203 1807436
#> 15204 1807605
#> 15205 1807868
#> 15206 1808095
#> 15207 1810125
#> 15208 1811504
#> 15209 1811505
#> 15210 1811508
#> 15211 1811509
#> 15212 1811510
#> 15213 1811511
#> 15214 1811513
#> 15215 1811514
#> 15216 1811515
#> 15217 1811516
#> 15218 1811517
#> 15219 1811518
#> 15220 1811519
#> 15221 1811520
#> 15222 1811521
#> 15223 1811523
#> 15224 1811524
#> 15225 1811525
#> 15226 1811526
#> 15227 1811527
#> 15228 1811528
#> 15229 1811529
#> 15230 1811530
#> 15231 1811531
#> 15232 1811532
#> 15233 1811533
#> 15234 1811534
#> 15235 1811535
#> 15236 1811536
#> 15237 1811537
#> 15238 1811538
#> 15239 1811540
#> 15240 1811541
#> 15241 1811542
#> 15242 1811543
#> 15243 1811544
#> 15244 1811545
#> 15245 1811546
#> 15246 1811547
#> 15247 1812574
#> 15248 1812601
#> 15249 1814211
#> 15250 1814214
#> 15251 1814215
#> 15252 1814216
#> 15253 1814229
#> 15254 1814233
#> 15255 1814235
#> 15256 1814237
#> 15257 1814239
#> 15258 1814242
#> 15259 1814243
#> 15260 1814244
#> 15261 1814245
#> 15262 1814285
#> 15263 1814787
#> 15264 1815684
#> 15265 1815685
#> 15266 1815686
#> 15267 1815687
#> 15268 1815688
#> 15269 1815692
#> 15270 1815693
#> 15271 1815694
#> 15272 1815695
#> 15273 1815696
#> 15274 1815697
#> 15275 1815698
#> 15276 1815699
#> 15277 1815700
#> 15278 1815701
#> 15279 1815702
#> 15280 1815705
#> 15281 1815706
#> 15282 1815707
#> 15283 1815708
#> 15284 1815709
#> 15285 1815710
#> 15286 1815711
#> 15287 1815712
#> 15288 1815713
#> 15289 1815714
#> 15290 1815715
#> 15291 1815716
#> 15292 1815717
#> 15293 1815733
#> 15294 1815775
#> 15295 1815776
#> 15296 1815853
#> 15297 1816962
#> 15298 1816968
#> 15299 1817207
#> 15300 1817218
#> 15301 1817227
#> 15302 1817281
#> 15303 1817293
#> 15304 1817885
#> 15305 1818071
#> 15306 1818755
#> 15307 1819563
#> 15308 1819564
#> 15309 1819932
#> 15310 1821635
#> 15311 1821636
#> 15312 1821637
#> 15313 1821645
#> 15314 1821646
#> 15315 1821647
#> 15316 1821657
#> 15317 1821658
#> 15318 1821659
#> 15319 1821660
#> 15320 1821661
#> 15321 1821662
#> 15322 1821663
#> 15323 1821664
#> 15324 1821665
#> 15325 1821666
#> 15326 1821667
#> 15327 1821668
#> 15328 1821669
#> 15329 1821670
#> 15330 1821671
#> 15331 1821672
#> 15332 1821673
#> 15333 1821674
#> 15334 1821675
#> 15335 1821676
#> 15336 1821677
#> 15337 1821678
#> 15338 1821679
#> 15339 1821680
#> 15340 1821681
#> 15341 1821682
#> 15342 1821704
#> 15343 1821945
#> 15344 1821946
#> 15345 1821947
#> 15346 1821948
#> 15347 1821949
#> 15348 1821950
#> 15349 1821951
#> 15350 1822233
#> 15351 1822506
#> 15352 1823046
#> 15353 1824978
#> 15354 1825305
#> 15355 1828134
#> 15356 1828747
#> 15357 1828748
#> 15358 1828749
#> 15359 1828750
#> 15360 1828751
#> 15361 1828758
#> 15362 1828759
#> 15363 1828894
#> 15364 1828939
#> 15365 1829031
#> 15366 1829032
#> 15367 1829033
#> 15368 1829034
#> 15369 1829035
#> 15370 1829036
#> 15371 1829037
#> 15372 1829038
#> 15373 1829698
#> 15374 1829941
#> 15375 1830065
#> 15376 1830066
#> 15377 1830067
#> 15378 1830068
#> 15379 1830069
#> 15380 1830076
#> 15381 1830077
#> 15382 1830078
#> 15383 1830080
#> 15384 1830081
#> 15385 1830082
#> 15386 1830789
#> 15387 1831002
#> 15388 1831106
#> 15389 1831107
#> 15390 1831108
#> 15391 1831109
#> 15392 1831110
#> 15393 1831111
#> 15394 1831113
#> 15395 1831116
#> 15396 1831117
#> 15397 1832106
#> 15398 1832112
#> 15399 1832113
#> 15400 1832114
#> 15401 1832115
#> 15402 1832116
#> 15403 1832117
#> 15404 1832118
#> 15405 1832119
#> 15406 1832120
#> 15407 1832121
#> 15408 1832122
#> 15409 1832123
#> 15410 1832124
#> 15411 1832125
#> 15412 1832126
#> 15413 1832127
#> 15414 1832128
#> 15415 1832129
#> 15416 1832130
#> 15417 1832131
#> 15418 1832132
#> 15419 1832133
#> 15420 1832134
#> 15421 1832135
#> 15422 1832136
#> 15423 1832137
#> 15424 1832138
#> 15425 1832139
#> 15426 1832140
#> 15427 1832141
#> 15428 1832142
#> 15429 1832683
#> 15430 1832749
#> 15431 1832975
#> 15432 1833843
#> 15433 1833847
#> 15434 1833938
#> 15435 1834433
#> 15436 1834434
#> 15437 1834435
#> 15438 1834436
#> 15439 1834437
#> 15440 1834438
#> 15441 1835832
#> 15442 1835833

To aggregate concise bioactivity data from each AID:

result <- get_pug_rest(identifier = "79900", namespace = "aid", domain = "assay", operation = "concise", output = "JSON")
result
#> 
#>  An object of class 'PugRestInstance'
#> 
#>  Request Details:  
#>   - Domain: Assay
#>   - Namespace: AID
#>   - Operation: concise
#>   - Identifier: 79900
#> 
#>  NOTE: Run getter function 'pubChemData(...)' to extract raw data retrieved from PubChem Database. 
#>        See ?pubChemData for details.
pubChemData(result)
#> $Table
#> $Table$Columns
#> $Table$Columns$Column
#>  [1] "AID"                 "SID"                 "CID"                
#>  [4] "Activity Outcome"    "Target Accession"    "Target GeneID"      
#>  [7] "Activity Value [uM]" "Activity Name"       "Assay Name"         
#> [10] "Assay Type"          "PubMed ID"           "RNAi"               
#> 
#> 
#> $Table$Row
#> $Table$Row[[1]]
#> $Table$Row[[1]]$Cell
#>  [1] "79900"                                                                                                       
#>  [2] "103416777"                                                                                                   
#>  [3] "6476829"                                                                                                     
#>  [4] "Active"                                                                                                      
#>  [5] ""                                                                                                            
#>  [6] ""                                                                                                            
#>  [7] "0.162"                                                                                                       
#>  [8] "EC50"                                                                                                        
#>  [9] "Tested for antirhinoviral activity of compound against HRV 25 infected H1HeLa cells; Cytotoxicity at > 10 uM"
#> [10] "Confirmatory"                                                                                                
#> [11] "11858991"                                                                                                    
#> [12] ""

These methods provide an efficient and targeted approach to access and analyze cell line-related data in PubChem, supporting a wide range of research applications in cellular biology, pharmacology, and related fields.