ETH Price: $2,525.36 (-0.15%)

Token

Cryptolex (C)
 

Overview

Max Total Supply

388 C

Holders

154

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
web3ap.eth
Balance
1 C
0xdbbc06816817a6525ddca3a888904898389bd018
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Cryptolex is a collection of 10,000 timepieces with a crypto influence, these timepieces are custom generated and keep time on the Ethereum blockchain. They can never be altered due to being hosted on IFPS.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Cryptolex

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 3 of 14: Cryptolex.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721Enumerable.sol";
import "./Ownable.sol";

contract Cryptolex is ERC721Enumerable, Ownable {
  uint256 public mintPrice = 0.09 ether;

  uint256 private reserveAtATime = 50;
  
  uint256 private reservedCount = 0;
  uint256 private maxReserveCount = 200;


  string _baseTokenURI;

  bool public isActive = false;
  bool public isAllowListActive = false;

  uint256 public maximumMintSupply = 10000;

  uint256 public maximumAllowedTokensPerPurchase = 3;
  uint256 public maximumAllowedTokensPerWallet = 6;
  uint256 public allowListMaxMint = 2;

  mapping(address => bool) private _allowList;
  mapping(address => uint256) private _allowListClaimed;

  event AssetMinted(uint256 tokenId, address sender);
  event SaleActivation(bool isActive);

  constructor(string memory baseURI) ERC721("Cryptolex", "C") {
    setBaseURI(baseURI);
  }

  modifier saleIsOpen {
    require(totalSupply() <= maximumMintSupply, "Sale has ended.");
    _;
  }

  modifier onlyAuthorized() {
    require(owner() == msg.sender);
    _;
  }

  function setMaximumAllowedTokens(uint256 _count) public onlyAuthorized {
    maximumAllowedTokensPerPurchase = _count;
  }

  function setMaximumAllowedTokensPerWallet(uint256 _count) public onlyAuthorized {
    maximumAllowedTokensPerWallet = _count;
  }

  function setActive(bool val) public onlyAuthorized {
    isActive = val;
    emit SaleActivation(val);
  }

  function setMaxMintSupply(uint256 maxMintSupply) external  onlyAuthorized {
    maximumMintSupply = maxMintSupply;
  }

  function setIsAllowListActive(bool _isAllowListActive) external onlyAuthorized {
    isAllowListActive = _isAllowListActive;
  }

  function setAllowListMaxMint(uint256 maxMint) external  onlyAuthorized {
    allowListMaxMint = maxMint;
  }

  function addToAllowList(address[] calldata addresses) external onlyAuthorized {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add a null address");
      _allowList[addresses[i]] = true;
      _allowListClaimed[addresses[i]] > 0 ? _allowListClaimed[addresses[i]] : 0;
    }
  }

  function checkIfOnAllowList(address addr) external view returns (bool) {
    return _allowList[addr];
  }

  function removeFromAllowList(address[] calldata addresses) external onlyAuthorized {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add a null address");
      _allowList[addresses[i]] = false;
    }
  }

  function allowListClaimedBy(address owner) external view returns (uint256){
    require(owner != address(0), 'Zero address not on Allow List');
    return _allowListClaimed[owner];
  }

  function setReserveAtATime(uint256 val) public onlyAuthorized {
    reserveAtATime = val;
  }

  function setMaxReserve(uint256 val) public onlyAuthorized {
    maxReserveCount = val;
  }

  function setPrice(uint256 _price) public onlyAuthorized {
    mintPrice = _price;
  }

  function setBaseURI(string memory baseURI) public onlyAuthorized {
    _baseTokenURI = baseURI;
  }

  function getMaximumAllowedTokens() public view onlyAuthorized returns (uint256) {
    return maximumAllowedTokensPerPurchase;
  }

  function getPrice() external view returns (uint256) {
    return mintPrice;
  }

  function getReserveAtATime() external view returns (uint256) {
    return reserveAtATime;
  }

  function getTotalSupply() external view returns (uint256) {
    return totalSupply();
  }

  function getContractOwner() public view returns (address) {
    return owner();
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return _baseTokenURI;
  }

  function reserveNft() public onlyAuthorized {
    require(reservedCount <= maxReserveCount, "Max Reserves taken already!");
    uint256 supply = totalSupply();
    uint256 i;

    for (i = 0; i < reserveAtATime; i++) {
      emit AssetMinted(supply + i, msg.sender);
      _safeMint(msg.sender, supply + i);
      reservedCount++;
    }
  }

  function reserveToCustomWallet(address _walletAddress, uint256 _count) public onlyAuthorized {
    for (uint256 i = 0; i < _count; i++) {
      emit AssetMinted(totalSupply(), _walletAddress);
      _safeMint(_walletAddress, totalSupply());
    }
  }

  function mint(address _to, uint256 _count) public payable saleIsOpen {
    if (msg.sender != owner()) {
      require(isActive, "Sale is not active currently.");
    }

    if(_to != owner()) {
      require(balanceOf(_to) + _count <= maximumAllowedTokensPerWallet, "Max holding cap reached.");
    }

    require(totalSupply() + _count <= maximumMintSupply, "Total supply exceeded.");
    require(totalSupply() <= maximumMintSupply, "Total supply spent.");
    require(
      _count <= maximumAllowedTokensPerPurchase,
      "Exceeds maximum allowed tokens"
    );
    require(msg.value >= mintPrice * _count, "Insuffient ETH amount sent.");

    for (uint256 i = 0; i < _count; i++) {
      emit AssetMinted(totalSupply(), _to);
      _safeMint(_to, totalSupply());
    }
  }

  function batchReserveToMultipleAddresses(uint256 _count, address[] calldata addresses) external onlyAuthorized {
      uint256 supply = totalSupply();

      require(supply + _count <= maximumMintSupply, "Total supply exceeded.");
      require(supply <= maximumMintSupply, "Total supply spent.");

      for (uint256 i = 0; i < addresses.length; i++) {
        require(addresses[i] != address(0), "Can't add a null address");
        
        for(uint256 j = 0; j < _count; j++) {
           emit AssetMinted(totalSupply(), addresses[i]);
          _safeMint(addresses[i], totalSupply());
        }
      }
  }

  function preSaleMint(uint256 _count) public payable saleIsOpen {
    require(isAllowListActive, 'Allow List is not active');
    require(_allowList[msg.sender], 'You are not on the Allow List');
    require(totalSupply() < maximumMintSupply, 'All tokens have been minted');
    require(_count <= allowListMaxMint, 'Cannot purchase this many tokens');
    require(_allowListClaimed[msg.sender] + _count <= allowListMaxMint, 'Purchase exceeds max allowed');
    require(msg.value >= mintPrice * _count, 'Insuffient ETH amount sent.');

    for (uint256 i = 0; i < _count; i++) {
      _allowListClaimed[msg.sender] += 1;
      emit AssetMinted(totalSupply(), msg.sender);
      _safeMint(msg.sender, totalSupply());
    }
  }

  function walletOfOwner(address _owner) external view returns(uint256[] memory) {
    uint tokenCount = balanceOf(_owner);
    uint256[] memory tokensId = new uint256[](tokenCount);

    for(uint i = 0; i < tokenCount; i++){
      tokensId[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokensId;
  }

  function withdraw() external onlyAuthorized {
    uint balance = address(this).balance;
    payable(owner()).transfer(balance);
  }
}

File 1 of 14: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 14: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 4 of 14: ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 5 of 14: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 6 of 14: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 7 of 14: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 8 of 14: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 9 of 14: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 10 of 14: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 11 of 14: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 12 of 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 13 of 14: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 14 of 14: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"AssetMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isActive","type":"bool"}],"name":"SaleActivation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"batchReserveToMultipleAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkIfOnAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaximumAllowedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserveAtATime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_walletAddress","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserveToCustomWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setAllowListMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setReserveAtATime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267013fbe85edc90000600b556032600c556000600d5560c8600e556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506127106011556003601255600660135560026014553480156200007757600080fd5b5060405162005fec38038062005fec83398181016040528101906200009d9190620003f3565b6040518060400160405280600981526020017f43727970746f6c657800000000000000000000000000000000000000000000008152506040518060400160405280600181526020017f4300000000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000121929190620002d1565b5080600190805190602001906200013a929190620002d1565b5050506200015d620001516200017560201b60201c565b6200017d60201b60201c565b6200016e816200024360201b60201c565b5062000569565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff166200026a620002a760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200028b57600080fd5b80600f9080519060200190620002a3929190620002d1565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002df90620004d5565b90600052602060002090601f0160209004810192826200030357600085556200034f565b82601f106200031e57805160ff19168380011785556200034f565b828001600101855582156200034f579182015b828111156200034e57825182559160200191906001019062000331565b5b5090506200035e919062000362565b5090565b5b808211156200037d57600081600090555060010162000363565b5090565b60006200039862000392846200046c565b62000438565b905082815260208101848484011115620003b157600080fd5b620003be8482856200049f565b509392505050565b600082601f830112620003d857600080fd5b8151620003ea84826020860162000381565b91505092915050565b6000602082840312156200040657600080fd5b600082015167ffffffffffffffff8111156200042157600080fd5b6200042f84828501620003c6565b91505092915050565b6000604051905081810181811067ffffffffffffffff821117156200046257620004616200053a565b5b8060405250919050565b600067ffffffffffffffff8211156200048a57620004896200053a565b5b601f19601f8301169050602081019050919050565b60005b83811015620004bf578082015181840152602081019050620004a2565b83811115620004cf576000848401525b50505050565b60006002820490506001821680620004ee57607f821691505b602082108114156200050557620005046200050b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b615a7380620005796000396000f3fe6080604052600436106102fe5760003560e01c806371e3500c11610190578063a51312c8116100dc578063cadf881811610095578063e985e9c51161006f578063e985e9c514610b4b578063ea6eb83614610b88578063f2fde38b14610bb1578063f6c9d9e314610bda576102fe565b8063cadf881814610acc578063e7b62d9614610af7578063e82b2a7114610b22576102fe565b8063a51312c8146109be578063acec338a146109e7578063ad06d75814610a10578063b88d4fde14610a3b578063c4e41b2214610a64578063c87b56dd14610a8f576102fe565b80637f44ab2f1161014957806395d89b411161012357806395d89b411461091457806398d5fdca1461093f5780639a3bf7281461096a578063a22cb46514610995576102fe565b80637f44ab2f146108955780638da5cb5b146108c057806391b7f5ed146108eb576102fe565b806371e3500c146107be5780637263cfe2146107d55780637389fbb7146107fe57806377b501b9146108275780637835c635146108505780637a6685f11461086c576102fe565b806342842e0e1161024f57806355f804b3116102085780636817c76c116101e25780636817c76c1461071657806370a0823114610741578063715018a61461077e578063718bc4af14610795576102fe565b806355f804b31461068757806356a87caa146106b05780636352211e146106d9576102fe565b806342842e0e14610565578063438b63001461058e578063442890d5146105cb5780634d0550de146105f65780634dfea627146106215780634f6ccce71461064a576102fe565b806322f3e2d4116102bc5780632c1205f4116102965780632c1205f4146104b85780632f745c59146104f55780633ccfd60b1461053257806340c10f1914610549576102fe565b806322f3e2d41461043957806323b872dd1461046457806329fc6bae1461048d576102fe565b806208ffdd1461030357806301ffc9a71461034057806306fdde031461037d578063081812fc146103a8578063095ea7b3146103e557806318160ddd1461040e575b600080fd5b34801561030f57600080fd5b5061032a60048036038101906103259190614170565b610c03565b604051610337919061554c565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190614385565b610cbb565b60405161037491906150ef565b60405180910390f35b34801561038957600080fd5b50610392610d35565b60405161039f919061510a565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca9190614418565b610dc7565b6040516103dc9190615066565b60405180910390f35b3480156103f157600080fd5b5061040c600480360381019061040791906142db565b610e4c565b005b34801561041a57600080fd5b50610423610f64565b604051610430919061554c565b60405180910390f35b34801561044557600080fd5b5061044e610f71565b60405161045b91906150ef565b60405180910390f35b34801561047057600080fd5b5061048b600480360381019061048691906141d5565b610f84565b005b34801561049957600080fd5b506104a2610fe4565b6040516104af91906150ef565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614170565b610ff7565b6040516104ec91906150ef565b60405180910390f35b34801561050157600080fd5b5061051c600480360381019061051791906142db565b61104d565b604051610529919061554c565b60405180910390f35b34801561053e57600080fd5b506105476110f2565b005b610563600480360381019061055e91906142db565b611187565b005b34801561057157600080fd5b5061058c600480360381019061058791906141d5565b61149c565b005b34801561059a57600080fd5b506105b560048036038101906105b09190614170565b6114bc565b6040516105c291906150cd565b60405180910390f35b3480156105d757600080fd5b506105e06115b6565b6040516105ed9190615066565b60405180910390f35b34801561060257600080fd5b5061060b6115c5565b604051610618919061554c565b60405180910390f35b34801561062d57600080fd5b5061064860048036038101906106439190614418565b6115cb565b005b34801561065657600080fd5b50610671600480360381019061066c9190614418565b611614565b60405161067e919061554c565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a991906143d7565b6116ab565b005b3480156106bc57600080fd5b506106d760048036038101906106d29190614418565b611704565b005b3480156106e557600080fd5b5061070060048036038101906106fb9190614418565b61174d565b60405161070d9190615066565b60405180910390f35b34801561072257600080fd5b5061072b6117ff565b604051610738919061554c565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190614170565b611805565b604051610775919061554c565b60405180910390f35b34801561078a57600080fd5b506107936118bd565b005b3480156107a157600080fd5b506107bc60048036038101906107b7919061435c565b611945565b005b3480156107ca57600080fd5b506107d36119a1565b005b3480156107e157600080fd5b506107fc60048036038101906107f79190614317565b611ac8565b005b34801561080a57600080fd5b5061082560048036038101906108209190614418565b611db9565b005b34801561083357600080fd5b5061084e600480360381019061084991906142db565b611e02565b005b61086a60048036038101906108659190614418565b611eb5565b005b34801561087857600080fd5b50610893600480360381019061088e9190614418565b612215565b005b3480156108a157600080fd5b506108aa61225e565b6040516108b7919061554c565b60405180910390f35b3480156108cc57600080fd5b506108d5612264565b6040516108e29190615066565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190614418565b61228e565b005b34801561092057600080fd5b506109296122d7565b604051610936919061510a565b60405180910390f35b34801561094b57600080fd5b50610954612369565b604051610961919061554c565b60405180910390f35b34801561097657600080fd5b5061097f612373565b60405161098c919061554c565b60405180910390f35b3480156109a157600080fd5b506109bc60048036038101906109b7919061429f565b612379565b005b3480156109ca57600080fd5b506109e560048036038101906109e09190614317565b61238f565b005b3480156109f357600080fd5b50610a0e6004803603810190610a09919061435c565b612556565b005b348015610a1c57600080fd5b50610a256125e9565b604051610a32919061554c565b60405180910390f35b348015610a4757600080fd5b50610a626004803603810190610a5d9190614224565b612632565b005b348015610a7057600080fd5b50610a79612694565b604051610a86919061554c565b60405180910390f35b348015610a9b57600080fd5b50610ab66004803603810190610ab19190614418565b6126a3565b604051610ac3919061510a565b60405180910390f35b348015610ad857600080fd5b50610ae161274a565b604051610aee919061554c565b60405180910390f35b348015610b0357600080fd5b50610b0c612750565b604051610b19919061554c565b60405180910390f35b348015610b2e57600080fd5b50610b496004803603810190610b449190614441565b61275a565b005b348015610b5757600080fd5b50610b726004803603810190610b6d9190614199565b612a29565b604051610b7f91906150ef565b60405180910390f35b348015610b9457600080fd5b50610baf6004803603810190610baa9190614418565b612abd565b005b348015610bbd57600080fd5b50610bd86004803603810190610bd39190614170565b612b06565b005b348015610be657600080fd5b50610c016004803603810190610bfc9190614418565b612bfe565b005b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6b906153ac565b60405180910390fd5b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d2e5750610d2d82612c47565b5b9050919050565b606060008054610d4490615868565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7090615868565b8015610dbd5780601f10610d9257610100808354040283529160200191610dbd565b820191906000526020600020905b815481529060010190602001808311610da057829003601f168201915b5050505050905090565b6000610dd282612d29565b610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e089061534c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e578261174d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf9061542c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ee7612d95565b73ffffffffffffffffffffffffffffffffffffffff161480610f165750610f1581610f10612d95565b612a29565b5b610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c906152cc565b60405180910390fd5b610f5f8383612d9d565b505050565b6000600880549050905090565b601060009054906101000a900460ff1681565b610f95610f8f612d95565b82612e56565b610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb9061546c565b60405180910390fd5b610fdf838383612f34565b505050565b601060019054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061105883611805565b8210611099576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611090906151ac565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16611111612264565b73ffffffffffffffffffffffffffffffffffffffff161461113157600080fd5b600047905061113e612264565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611183573d6000803e3d6000fd5b5050565b601154611192610f64565b11156111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca9061524c565b60405180910390fd5b6111db612264565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461125d57601060009054906101000a900460ff1661125c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112539061518c565b60405180910390fd5b5b611265612264565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146112f057601354816112a484611805565b6112ae919061569d565b11156112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e69061522c565b60405180910390fd5b5b601154816112fc610f64565b611306919061569d565b1115611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e9061544c565b60405180910390fd5b601154611352610f64565b1115611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a906154ac565b60405180910390fd5b6012548111156113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf9061540c565b60405180910390fd5b80600b546113e69190615724565b341015611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f906154cc565b60405180910390fd5b60005b81811015611497577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd35561145c610f64565b8460405161146b929190615567565b60405180910390a16114848361147f610f64565b613190565b808061148f9061589a565b91505061142b565b505050565b6114b783838360405180602001604052806000815250612632565b505050565b606060006114c983611805565b905060008167ffffffffffffffff81111561150d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561153b5781602001602082028036833780820191505090505b50905060005b828110156115ab57611553858261104d565b82828151811061158c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806115a39061589a565b915050611541565b508092505050919050565b60006115c0612264565b905090565b60115481565b3373ffffffffffffffffffffffffffffffffffffffff166115ea612264565b73ffffffffffffffffffffffffffffffffffffffff161461160a57600080fd5b8060128190555050565b600061161e610f64565b821061165f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116569061548c565b60405180910390fd5b60088281548110611699577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b3373ffffffffffffffffffffffffffffffffffffffff166116ca612264565b73ffffffffffffffffffffffffffffffffffffffff16146116ea57600080fd5b80600f9080519060200190611700929190613f4a565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611723612264565b73ffffffffffffffffffffffffffffffffffffffff161461174357600080fd5b80600e8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed9061530c565b60405180910390fd5b80915050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d906152ec565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118c5612d95565b73ffffffffffffffffffffffffffffffffffffffff166118e3612264565b73ffffffffffffffffffffffffffffffffffffffff1614611939576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119309061538c565b60405180910390fd5b61194360006131ae565b565b3373ffffffffffffffffffffffffffffffffffffffff16611964612264565b73ffffffffffffffffffffffffffffffffffffffff161461198457600080fd5b80601060016101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff166119c0612264565b73ffffffffffffffffffffffffffffffffffffffff16146119e057600080fd5b600e54600d541115611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e9061512c565b60405180910390fd5b6000611a31610f64565b905060005b600c54811015611ac4577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3558183611a6d919061569d565b33604051611a7c929190615567565b60405180910390a1611a99338284611a94919061569d565b613190565b600d6000815480929190611aac9061589a565b91905055508080611abc9061589a565b915050611a36565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611ae7612264565b73ffffffffffffffffffffffffffffffffffffffff1614611b0757600080fd5b60005b82829050811015611db457600073ffffffffffffffffffffffffffffffffffffffff16838383818110611b66577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611b7b9190614170565b73ffffffffffffffffffffffffffffffffffffffff161415611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc99061536c565b60405180910390fd5b600160156000858585818110611c11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611c269190614170565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060166000858585818110611cb6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611ccb9190614170565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611d12576000611da0565b60166000848484818110611d4f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611d649190614170565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b508080611dac9061589a565b915050611b0a565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16611dd8612264565b73ffffffffffffffffffffffffffffffffffffffff1614611df857600080fd5b8060118190555050565b3373ffffffffffffffffffffffffffffffffffffffff16611e21612264565b73ffffffffffffffffffffffffffffffffffffffff1614611e4157600080fd5b60005b81811015611eb0577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611e75610f64565b84604051611e84929190615567565b60405180910390a1611e9d83611e98610f64565b613190565b8080611ea89061589a565b915050611e44565b505050565b601154611ec0610f64565b1115611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef89061524c565b60405180910390fd5b601060019054906101000a900460ff16611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f479061514c565b60405180910390fd5b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd39061516c565b60405180910390fd5b601154611fe7610f64565b10612027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201e9061550c565b60405180910390fd5b60145481111561206c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120639061552c565b60405180910390fd5b60145481601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120ba919061569d565b11156120fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f2906154ec565b60405180910390fd5b80600b546121099190615724565b34101561214b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612142906154cc565b60405180910390fd5b60005b81811015612211576001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121a6919061569d565b925050819055507f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556121d6610f64565b336040516121e5929190615567565b60405180910390a16121fe336121f9610f64565b613190565b80806122099061589a565b91505061214e565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16612234612264565b73ffffffffffffffffffffffffffffffffffffffff161461225457600080fd5b8060148190555050565b60145481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff166122ad612264565b73ffffffffffffffffffffffffffffffffffffffff16146122cd57600080fd5b80600b8190555050565b6060600180546122e690615868565b80601f016020809104026020016040519081016040528092919081815260200182805461231290615868565b801561235f5780601f106123345761010080835404028352916020019161235f565b820191906000526020600020905b81548152906001019060200180831161234257829003601f168201915b5050505050905090565b6000600b54905090565b60125481565b61238b612384612d95565b8383613274565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166123ae612264565b73ffffffffffffffffffffffffffffffffffffffff16146123ce57600080fd5b60005b8282905081101561255157600073ffffffffffffffffffffffffffffffffffffffff1683838381811061242d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906124429190614170565b73ffffffffffffffffffffffffffffffffffffffff161415612499576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124909061536c565b60405180910390fd5b6000601560008585858181106124d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906124ed9190614170565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806125499061589a565b9150506123d1565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16612575612264565b73ffffffffffffffffffffffffffffffffffffffff161461259557600080fd5b80601060006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f816040516125de91906150ef565b60405180910390a150565b60003373ffffffffffffffffffffffffffffffffffffffff1661260a612264565b73ffffffffffffffffffffffffffffffffffffffff161461262a57600080fd5b601254905090565b61264361263d612d95565b83612e56565b612682576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126799061546c565b60405180910390fd5b61268e848484846133e1565b50505050565b600061269e610f64565b905090565b60606126ae82612d29565b6126ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e4906153ec565b60405180910390fd5b60006126f761343d565b905060008151116127175760405180602001604052806000815250612742565b80612721846134cf565b604051602001612732929190615042565b6040516020818303038152906040525b915050919050565b60135481565b6000600c54905090565b3373ffffffffffffffffffffffffffffffffffffffff16612779612264565b73ffffffffffffffffffffffffffffffffffffffff161461279957600080fd5b60006127a3610f64565b905060115484826127b4919061569d565b11156127f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ec9061544c565b60405180910390fd5b60115481111561283a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612831906154ac565b60405180910390fd5b60005b83839050811015612a2257600073ffffffffffffffffffffffffffffffffffffffff16848483818110612899577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906128ae9190614170565b73ffffffffffffffffffffffffffffffffffffffff161415612905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fc9061536c565b60405180910390fd5b60005b85811015612a0e577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355612939610f64565b868685818110612972577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906129879190614170565b604051612995929190615567565b60405180910390a16129fb8585848181106129d9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906129ee9190614170565b6129f6610f64565b613190565b8080612a069061589a565b915050612908565b508080612a1a9061589a565b91505061283d565b5050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16612adc612264565b73ffffffffffffffffffffffffffffffffffffffff1614612afc57600080fd5b8060138190555050565b612b0e612d95565b73ffffffffffffffffffffffffffffffffffffffff16612b2c612264565b73ffffffffffffffffffffffffffffffffffffffff1614612b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b799061538c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be9906151ec565b60405180910390fd5b612bfb816131ae565b50565b3373ffffffffffffffffffffffffffffffffffffffff16612c1d612264565b73ffffffffffffffffffffffffffffffffffffffff1614612c3d57600080fd5b80600c8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612d1257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612d225750612d218261367c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e108361174d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e6182612d29565b612ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e97906152ac565b60405180910390fd5b6000612eab8361174d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f1a57508373ffffffffffffffffffffffffffffffffffffffff16612f0284610dc7565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f2b5750612f2a8185612a29565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f548261174d565b73ffffffffffffffffffffffffffffffffffffffff1614612faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa1906153cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561301a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130119061526c565b60405180910390fd5b6130258383836136e6565b613030600082612d9d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613080919061577e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130d7919061569d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6131aa8282604051806020016040528060008152506137fa565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132da9061528c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516133d491906150ef565b60405180910390a3505050565b6133ec848484612f34565b6133f884848484613855565b613437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342e906151cc565b60405180910390fd5b50505050565b6060600f805461344c90615868565b80601f016020809104026020016040519081016040528092919081815260200182805461347890615868565b80156134c55780601f1061349a576101008083540402835291602001916134c5565b820191906000526020600020905b8154815290600101906020018083116134a857829003601f168201915b5050505050905090565b60606000821415613517576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613677565b600082905060005b600082146135495780806135329061589a565b915050600a8261354291906156f3565b915061351f565b60008167ffffffffffffffff81111561358b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135bd5781602001600182028036833780820191505090505b5090505b60008514613670576001826135d6919061577e565b9150600a856135e591906158e3565b60306135f1919061569d565b60f81b81838151811061362d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561366991906156f3565b94506135c1565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6136f18383836139ec565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137345761372f816139f1565b613773565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613772576137718382613a3a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137b6576137b181613ba7565b6137f5565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146137f4576137f38282613cea565b5b5b505050565b6138048383613d69565b6138116000848484613855565b613850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613847906151cc565b60405180910390fd5b505050565b60006138768473ffffffffffffffffffffffffffffffffffffffff16613f37565b156139df578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261389f612d95565b8786866040518563ffffffff1660e01b81526004016138c19493929190615081565b602060405180830381600087803b1580156138db57600080fd5b505af192505050801561390c57506040513d601f19601f8201168201806040525081019061390991906143ae565b60015b61398f573d806000811461393c576040519150601f19603f3d011682016040523d82523d6000602084013e613941565b606091505b50600081511415613987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397e906151cc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506139e4565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613a4784611805565b613a51919061577e565b9050600060076000848152602001908152602001600020549050818114613b36576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613bbb919061577e565b9050600060096000848152602001908152602001600020549050600060088381548110613c11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613c59577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613cce577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613cf583611805565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dd09061532c565b60405180910390fd5b613de281612d29565b15613e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e199061520c565b60405180910390fd5b613e2e600083836136e6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e7e919061569d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613f5690615868565b90600052602060002090601f016020900481019282613f785760008555613fbf565b82601f10613f9157805160ff1916838001178555613fbf565b82800160010185558215613fbf579182015b82811115613fbe578251825591602001919060010190613fa3565b5b509050613fcc9190613fd0565b5090565b5b80821115613fe9576000816000905550600101613fd1565b5090565b6000614000613ffb846155c1565b615590565b90508281526020810184848401111561401857600080fd5b614023848285615826565b509392505050565b600061403e614039846155f1565b615590565b90508281526020810184848401111561405657600080fd5b614061848285615826565b509392505050565b600081359050614078816159e1565b92915050565b60008083601f84011261409057600080fd5b8235905067ffffffffffffffff8111156140a957600080fd5b6020830191508360208202830111156140c157600080fd5b9250929050565b6000813590506140d7816159f8565b92915050565b6000813590506140ec81615a0f565b92915050565b60008151905061410181615a0f565b92915050565b600082601f83011261411857600080fd5b8135614128848260208601613fed565b91505092915050565b600082601f83011261414257600080fd5b813561415284826020860161402b565b91505092915050565b60008135905061416a81615a26565b92915050565b60006020828403121561418257600080fd5b600061419084828501614069565b91505092915050565b600080604083850312156141ac57600080fd5b60006141ba85828601614069565b92505060206141cb85828601614069565b9150509250929050565b6000806000606084860312156141ea57600080fd5b60006141f886828701614069565b935050602061420986828701614069565b925050604061421a8682870161415b565b9150509250925092565b6000806000806080858703121561423a57600080fd5b600061424887828801614069565b945050602061425987828801614069565b935050604061426a8782880161415b565b925050606085013567ffffffffffffffff81111561428757600080fd5b61429387828801614107565b91505092959194509250565b600080604083850312156142b257600080fd5b60006142c085828601614069565b92505060206142d1858286016140c8565b9150509250929050565b600080604083850312156142ee57600080fd5b60006142fc85828601614069565b925050602061430d8582860161415b565b9150509250929050565b6000806020838503121561432a57600080fd5b600083013567ffffffffffffffff81111561434457600080fd5b6143508582860161407e565b92509250509250929050565b60006020828403121561436e57600080fd5b600061437c848285016140c8565b91505092915050565b60006020828403121561439757600080fd5b60006143a5848285016140dd565b91505092915050565b6000602082840312156143c057600080fd5b60006143ce848285016140f2565b91505092915050565b6000602082840312156143e957600080fd5b600082013567ffffffffffffffff81111561440357600080fd5b61440f84828501614131565b91505092915050565b60006020828403121561442a57600080fd5b60006144388482850161415b565b91505092915050565b60008060006040848603121561445657600080fd5b60006144648682870161415b565b935050602084013567ffffffffffffffff81111561448157600080fd5b61448d8682870161407e565b92509250509250925092565b60006144a58383615024565b60208301905092915050565b6144ba816157b2565b82525050565b60006144cb82615631565b6144d5818561565f565b93506144e083615621565b8060005b838110156145115781516144f88882614499565b975061450383615652565b9250506001810190506144e4565b5085935050505092915050565b614527816157c4565b82525050565b60006145388261563c565b6145428185615670565b9350614552818560208601615835565b61455b816159d0565b840191505092915050565b600061457182615647565b61457b8185615681565b935061458b818560208601615835565b614594816159d0565b840191505092915050565b60006145aa82615647565b6145b48185615692565b93506145c4818560208601615835565b80840191505092915050565b60006145dd601b83615681565b91507f4d61782052657365727665732074616b656e20616c72656164792100000000006000830152602082019050919050565b600061461d601883615681565b91507f416c6c6f77204c697374206973206e6f742061637469766500000000000000006000830152602082019050919050565b600061465d601d83615681565b91507f596f7520617265206e6f74206f6e2074686520416c6c6f77204c6973740000006000830152602082019050919050565b600061469d601d83615681565b91507f53616c65206973206e6f74206163746976652063757272656e746c792e0000006000830152602082019050919050565b60006146dd602b83615681565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000614743603283615681565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006147a9602683615681565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061480f601c83615681565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061484f601883615681565b91507f4d617820686f6c64696e672063617020726561636865642e00000000000000006000830152602082019050919050565b600061488f600f83615681565b91507f53616c652068617320656e6465642e00000000000000000000000000000000006000830152602082019050919050565b60006148cf602483615681565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614935601983615681565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614975602c83615681565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006149db603883615681565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614a41602a83615681565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614aa7602983615681565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b0d602083615681565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614b4d602c83615681565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614bb3601883615681565b91507f43616e2774206164642061206e756c6c206164647265737300000000000000006000830152602082019050919050565b6000614bf3602083615681565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614c33601e83615681565b91507f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c69737400006000830152602082019050919050565b6000614c73602983615681565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614cd9602f83615681565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614d3f601e83615681565b91507f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e7300006000830152602082019050919050565b6000614d7f602183615681565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614de5601683615681565b91507f546f74616c20737570706c792065786365656465642e000000000000000000006000830152602082019050919050565b6000614e25603183615681565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614e8b602c83615681565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614ef1601383615681565b91507f546f74616c20737570706c79207370656e742e000000000000000000000000006000830152602082019050919050565b6000614f31601b83615681565b91507f496e7375666669656e742045544820616d6f756e742073656e742e00000000006000830152602082019050919050565b6000614f71601c83615681565b91507f50757263686173652065786365656473206d617820616c6c6f776564000000006000830152602082019050919050565b6000614fb1601b83615681565b91507f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006000830152602082019050919050565b6000614ff1602083615681565b91507f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736000830152602082019050919050565b61502d8161581c565b82525050565b61503c8161581c565b82525050565b600061504e828561459f565b915061505a828461459f565b91508190509392505050565b600060208201905061507b60008301846144b1565b92915050565b600060808201905061509660008301876144b1565b6150a360208301866144b1565b6150b06040830185615033565b81810360608301526150c2818461452d565b905095945050505050565b600060208201905081810360008301526150e781846144c0565b905092915050565b6000602082019050615104600083018461451e565b92915050565b600060208201905081810360008301526151248184614566565b905092915050565b60006020820190508181036000830152615145816145d0565b9050919050565b6000602082019050818103600083015261516581614610565b9050919050565b6000602082019050818103600083015261518581614650565b9050919050565b600060208201905081810360008301526151a581614690565b9050919050565b600060208201905081810360008301526151c5816146d0565b9050919050565b600060208201905081810360008301526151e581614736565b9050919050565b600060208201905081810360008301526152058161479c565b9050919050565b6000602082019050818103600083015261522581614802565b9050919050565b6000602082019050818103600083015261524581614842565b9050919050565b6000602082019050818103600083015261526581614882565b9050919050565b60006020820190508181036000830152615285816148c2565b9050919050565b600060208201905081810360008301526152a581614928565b9050919050565b600060208201905081810360008301526152c581614968565b9050919050565b600060208201905081810360008301526152e5816149ce565b9050919050565b6000602082019050818103600083015261530581614a34565b9050919050565b6000602082019050818103600083015261532581614a9a565b9050919050565b6000602082019050818103600083015261534581614b00565b9050919050565b6000602082019050818103600083015261536581614b40565b9050919050565b6000602082019050818103600083015261538581614ba6565b9050919050565b600060208201905081810360008301526153a581614be6565b9050919050565b600060208201905081810360008301526153c581614c26565b9050919050565b600060208201905081810360008301526153e581614c66565b9050919050565b6000602082019050818103600083015261540581614ccc565b9050919050565b6000602082019050818103600083015261542581614d32565b9050919050565b6000602082019050818103600083015261544581614d72565b9050919050565b6000602082019050818103600083015261546581614dd8565b9050919050565b6000602082019050818103600083015261548581614e18565b9050919050565b600060208201905081810360008301526154a581614e7e565b9050919050565b600060208201905081810360008301526154c581614ee4565b9050919050565b600060208201905081810360008301526154e581614f24565b9050919050565b6000602082019050818103600083015261550581614f64565b9050919050565b6000602082019050818103600083015261552581614fa4565b9050919050565b6000602082019050818103600083015261554581614fe4565b9050919050565b60006020820190506155616000830184615033565b92915050565b600060408201905061557c6000830185615033565b61558960208301846144b1565b9392505050565b6000604051905081810181811067ffffffffffffffff821117156155b7576155b66159a1565b5b8060405250919050565b600067ffffffffffffffff8211156155dc576155db6159a1565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561560c5761560b6159a1565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006156a88261581c565b91506156b38361581c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156156e8576156e7615914565b5b828201905092915050565b60006156fe8261581c565b91506157098361581c565b92508261571957615718615943565b5b828204905092915050565b600061572f8261581c565b915061573a8361581c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561577357615772615914565b5b828202905092915050565b60006157898261581c565b91506157948361581c565b9250828210156157a7576157a6615914565b5b828203905092915050565b60006157bd826157fc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615853578082015181840152602081019050615838565b83811115615862576000848401525b50505050565b6000600282049050600182168061588057607f821691505b6020821081141561589457615893615972565b5b50919050565b60006158a58261581c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156158d8576158d7615914565b5b600182019050919050565b60006158ee8261581c565b91506158f98361581c565b92508261590957615908615943565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6159ea816157b2565b81146159f557600080fd5b50565b615a01816157c4565b8114615a0c57600080fd5b50565b615a18816157d0565b8114615a2357600080fd5b50565b615a2f8161581c565b8114615a3a57600080fd5b5056fea264697066735822122010961d11f8ea0464ffef17b18e7c15490297f6bf4e84cee0b0fcf187e1956ac364736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002a68747470733a2f2f6170702e70696e6174612e636c6f75642f676174657761792f63727970746f6c657800000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102fe5760003560e01c806371e3500c11610190578063a51312c8116100dc578063cadf881811610095578063e985e9c51161006f578063e985e9c514610b4b578063ea6eb83614610b88578063f2fde38b14610bb1578063f6c9d9e314610bda576102fe565b8063cadf881814610acc578063e7b62d9614610af7578063e82b2a7114610b22576102fe565b8063a51312c8146109be578063acec338a146109e7578063ad06d75814610a10578063b88d4fde14610a3b578063c4e41b2214610a64578063c87b56dd14610a8f576102fe565b80637f44ab2f1161014957806395d89b411161012357806395d89b411461091457806398d5fdca1461093f5780639a3bf7281461096a578063a22cb46514610995576102fe565b80637f44ab2f146108955780638da5cb5b146108c057806391b7f5ed146108eb576102fe565b806371e3500c146107be5780637263cfe2146107d55780637389fbb7146107fe57806377b501b9146108275780637835c635146108505780637a6685f11461086c576102fe565b806342842e0e1161024f57806355f804b3116102085780636817c76c116101e25780636817c76c1461071657806370a0823114610741578063715018a61461077e578063718bc4af14610795576102fe565b806355f804b31461068757806356a87caa146106b05780636352211e146106d9576102fe565b806342842e0e14610565578063438b63001461058e578063442890d5146105cb5780634d0550de146105f65780634dfea627146106215780634f6ccce71461064a576102fe565b806322f3e2d4116102bc5780632c1205f4116102965780632c1205f4146104b85780632f745c59146104f55780633ccfd60b1461053257806340c10f1914610549576102fe565b806322f3e2d41461043957806323b872dd1461046457806329fc6bae1461048d576102fe565b806208ffdd1461030357806301ffc9a71461034057806306fdde031461037d578063081812fc146103a8578063095ea7b3146103e557806318160ddd1461040e575b600080fd5b34801561030f57600080fd5b5061032a60048036038101906103259190614170565b610c03565b604051610337919061554c565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190614385565b610cbb565b60405161037491906150ef565b60405180910390f35b34801561038957600080fd5b50610392610d35565b60405161039f919061510a565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca9190614418565b610dc7565b6040516103dc9190615066565b60405180910390f35b3480156103f157600080fd5b5061040c600480360381019061040791906142db565b610e4c565b005b34801561041a57600080fd5b50610423610f64565b604051610430919061554c565b60405180910390f35b34801561044557600080fd5b5061044e610f71565b60405161045b91906150ef565b60405180910390f35b34801561047057600080fd5b5061048b600480360381019061048691906141d5565b610f84565b005b34801561049957600080fd5b506104a2610fe4565b6040516104af91906150ef565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614170565b610ff7565b6040516104ec91906150ef565b60405180910390f35b34801561050157600080fd5b5061051c600480360381019061051791906142db565b61104d565b604051610529919061554c565b60405180910390f35b34801561053e57600080fd5b506105476110f2565b005b610563600480360381019061055e91906142db565b611187565b005b34801561057157600080fd5b5061058c600480360381019061058791906141d5565b61149c565b005b34801561059a57600080fd5b506105b560048036038101906105b09190614170565b6114bc565b6040516105c291906150cd565b60405180910390f35b3480156105d757600080fd5b506105e06115b6565b6040516105ed9190615066565b60405180910390f35b34801561060257600080fd5b5061060b6115c5565b604051610618919061554c565b60405180910390f35b34801561062d57600080fd5b5061064860048036038101906106439190614418565b6115cb565b005b34801561065657600080fd5b50610671600480360381019061066c9190614418565b611614565b60405161067e919061554c565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a991906143d7565b6116ab565b005b3480156106bc57600080fd5b506106d760048036038101906106d29190614418565b611704565b005b3480156106e557600080fd5b5061070060048036038101906106fb9190614418565b61174d565b60405161070d9190615066565b60405180910390f35b34801561072257600080fd5b5061072b6117ff565b604051610738919061554c565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190614170565b611805565b604051610775919061554c565b60405180910390f35b34801561078a57600080fd5b506107936118bd565b005b3480156107a157600080fd5b506107bc60048036038101906107b7919061435c565b611945565b005b3480156107ca57600080fd5b506107d36119a1565b005b3480156107e157600080fd5b506107fc60048036038101906107f79190614317565b611ac8565b005b34801561080a57600080fd5b5061082560048036038101906108209190614418565b611db9565b005b34801561083357600080fd5b5061084e600480360381019061084991906142db565b611e02565b005b61086a60048036038101906108659190614418565b611eb5565b005b34801561087857600080fd5b50610893600480360381019061088e9190614418565b612215565b005b3480156108a157600080fd5b506108aa61225e565b6040516108b7919061554c565b60405180910390f35b3480156108cc57600080fd5b506108d5612264565b6040516108e29190615066565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190614418565b61228e565b005b34801561092057600080fd5b506109296122d7565b604051610936919061510a565b60405180910390f35b34801561094b57600080fd5b50610954612369565b604051610961919061554c565b60405180910390f35b34801561097657600080fd5b5061097f612373565b60405161098c919061554c565b60405180910390f35b3480156109a157600080fd5b506109bc60048036038101906109b7919061429f565b612379565b005b3480156109ca57600080fd5b506109e560048036038101906109e09190614317565b61238f565b005b3480156109f357600080fd5b50610a0e6004803603810190610a09919061435c565b612556565b005b348015610a1c57600080fd5b50610a256125e9565b604051610a32919061554c565b60405180910390f35b348015610a4757600080fd5b50610a626004803603810190610a5d9190614224565b612632565b005b348015610a7057600080fd5b50610a79612694565b604051610a86919061554c565b60405180910390f35b348015610a9b57600080fd5b50610ab66004803603810190610ab19190614418565b6126a3565b604051610ac3919061510a565b60405180910390f35b348015610ad857600080fd5b50610ae161274a565b604051610aee919061554c565b60405180910390f35b348015610b0357600080fd5b50610b0c612750565b604051610b19919061554c565b60405180910390f35b348015610b2e57600080fd5b50610b496004803603810190610b449190614441565b61275a565b005b348015610b5757600080fd5b50610b726004803603810190610b6d9190614199565b612a29565b604051610b7f91906150ef565b60405180910390f35b348015610b9457600080fd5b50610baf6004803603810190610baa9190614418565b612abd565b005b348015610bbd57600080fd5b50610bd86004803603810190610bd39190614170565b612b06565b005b348015610be657600080fd5b50610c016004803603810190610bfc9190614418565b612bfe565b005b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6b906153ac565b60405180910390fd5b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d2e5750610d2d82612c47565b5b9050919050565b606060008054610d4490615868565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7090615868565b8015610dbd5780601f10610d9257610100808354040283529160200191610dbd565b820191906000526020600020905b815481529060010190602001808311610da057829003601f168201915b5050505050905090565b6000610dd282612d29565b610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e089061534c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e578261174d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf9061542c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ee7612d95565b73ffffffffffffffffffffffffffffffffffffffff161480610f165750610f1581610f10612d95565b612a29565b5b610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c906152cc565b60405180910390fd5b610f5f8383612d9d565b505050565b6000600880549050905090565b601060009054906101000a900460ff1681565b610f95610f8f612d95565b82612e56565b610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb9061546c565b60405180910390fd5b610fdf838383612f34565b505050565b601060019054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061105883611805565b8210611099576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611090906151ac565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16611111612264565b73ffffffffffffffffffffffffffffffffffffffff161461113157600080fd5b600047905061113e612264565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611183573d6000803e3d6000fd5b5050565b601154611192610f64565b11156111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca9061524c565b60405180910390fd5b6111db612264565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461125d57601060009054906101000a900460ff1661125c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112539061518c565b60405180910390fd5b5b611265612264565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146112f057601354816112a484611805565b6112ae919061569d565b11156112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e69061522c565b60405180910390fd5b5b601154816112fc610f64565b611306919061569d565b1115611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e9061544c565b60405180910390fd5b601154611352610f64565b1115611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a906154ac565b60405180910390fd5b6012548111156113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf9061540c565b60405180910390fd5b80600b546113e69190615724565b341015611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f906154cc565b60405180910390fd5b60005b81811015611497577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd35561145c610f64565b8460405161146b929190615567565b60405180910390a16114848361147f610f64565b613190565b808061148f9061589a565b91505061142b565b505050565b6114b783838360405180602001604052806000815250612632565b505050565b606060006114c983611805565b905060008167ffffffffffffffff81111561150d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561153b5781602001602082028036833780820191505090505b50905060005b828110156115ab57611553858261104d565b82828151811061158c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806115a39061589a565b915050611541565b508092505050919050565b60006115c0612264565b905090565b60115481565b3373ffffffffffffffffffffffffffffffffffffffff166115ea612264565b73ffffffffffffffffffffffffffffffffffffffff161461160a57600080fd5b8060128190555050565b600061161e610f64565b821061165f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116569061548c565b60405180910390fd5b60088281548110611699577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b3373ffffffffffffffffffffffffffffffffffffffff166116ca612264565b73ffffffffffffffffffffffffffffffffffffffff16146116ea57600080fd5b80600f9080519060200190611700929190613f4a565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611723612264565b73ffffffffffffffffffffffffffffffffffffffff161461174357600080fd5b80600e8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed9061530c565b60405180910390fd5b80915050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d906152ec565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118c5612d95565b73ffffffffffffffffffffffffffffffffffffffff166118e3612264565b73ffffffffffffffffffffffffffffffffffffffff1614611939576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119309061538c565b60405180910390fd5b61194360006131ae565b565b3373ffffffffffffffffffffffffffffffffffffffff16611964612264565b73ffffffffffffffffffffffffffffffffffffffff161461198457600080fd5b80601060016101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff166119c0612264565b73ffffffffffffffffffffffffffffffffffffffff16146119e057600080fd5b600e54600d541115611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e9061512c565b60405180910390fd5b6000611a31610f64565b905060005b600c54811015611ac4577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3558183611a6d919061569d565b33604051611a7c929190615567565b60405180910390a1611a99338284611a94919061569d565b613190565b600d6000815480929190611aac9061589a565b91905055508080611abc9061589a565b915050611a36565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611ae7612264565b73ffffffffffffffffffffffffffffffffffffffff1614611b0757600080fd5b60005b82829050811015611db457600073ffffffffffffffffffffffffffffffffffffffff16838383818110611b66577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611b7b9190614170565b73ffffffffffffffffffffffffffffffffffffffff161415611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc99061536c565b60405180910390fd5b600160156000858585818110611c11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611c269190614170565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060166000858585818110611cb6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611ccb9190614170565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611d12576000611da0565b60166000848484818110611d4f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611d649190614170565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b508080611dac9061589a565b915050611b0a565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16611dd8612264565b73ffffffffffffffffffffffffffffffffffffffff1614611df857600080fd5b8060118190555050565b3373ffffffffffffffffffffffffffffffffffffffff16611e21612264565b73ffffffffffffffffffffffffffffffffffffffff1614611e4157600080fd5b60005b81811015611eb0577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611e75610f64565b84604051611e84929190615567565b60405180910390a1611e9d83611e98610f64565b613190565b8080611ea89061589a565b915050611e44565b505050565b601154611ec0610f64565b1115611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef89061524c565b60405180910390fd5b601060019054906101000a900460ff16611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f479061514c565b60405180910390fd5b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd39061516c565b60405180910390fd5b601154611fe7610f64565b10612027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201e9061550c565b60405180910390fd5b60145481111561206c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120639061552c565b60405180910390fd5b60145481601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120ba919061569d565b11156120fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f2906154ec565b60405180910390fd5b80600b546121099190615724565b34101561214b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612142906154cc565b60405180910390fd5b60005b81811015612211576001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121a6919061569d565b925050819055507f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556121d6610f64565b336040516121e5929190615567565b60405180910390a16121fe336121f9610f64565b613190565b80806122099061589a565b91505061214e565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16612234612264565b73ffffffffffffffffffffffffffffffffffffffff161461225457600080fd5b8060148190555050565b60145481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff166122ad612264565b73ffffffffffffffffffffffffffffffffffffffff16146122cd57600080fd5b80600b8190555050565b6060600180546122e690615868565b80601f016020809104026020016040519081016040528092919081815260200182805461231290615868565b801561235f5780601f106123345761010080835404028352916020019161235f565b820191906000526020600020905b81548152906001019060200180831161234257829003601f168201915b5050505050905090565b6000600b54905090565b60125481565b61238b612384612d95565b8383613274565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166123ae612264565b73ffffffffffffffffffffffffffffffffffffffff16146123ce57600080fd5b60005b8282905081101561255157600073ffffffffffffffffffffffffffffffffffffffff1683838381811061242d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906124429190614170565b73ffffffffffffffffffffffffffffffffffffffff161415612499576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124909061536c565b60405180910390fd5b6000601560008585858181106124d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906124ed9190614170565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806125499061589a565b9150506123d1565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16612575612264565b73ffffffffffffffffffffffffffffffffffffffff161461259557600080fd5b80601060006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f816040516125de91906150ef565b60405180910390a150565b60003373ffffffffffffffffffffffffffffffffffffffff1661260a612264565b73ffffffffffffffffffffffffffffffffffffffff161461262a57600080fd5b601254905090565b61264361263d612d95565b83612e56565b612682576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126799061546c565b60405180910390fd5b61268e848484846133e1565b50505050565b600061269e610f64565b905090565b60606126ae82612d29565b6126ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e4906153ec565b60405180910390fd5b60006126f761343d565b905060008151116127175760405180602001604052806000815250612742565b80612721846134cf565b604051602001612732929190615042565b6040516020818303038152906040525b915050919050565b60135481565b6000600c54905090565b3373ffffffffffffffffffffffffffffffffffffffff16612779612264565b73ffffffffffffffffffffffffffffffffffffffff161461279957600080fd5b60006127a3610f64565b905060115484826127b4919061569d565b11156127f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ec9061544c565b60405180910390fd5b60115481111561283a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612831906154ac565b60405180910390fd5b60005b83839050811015612a2257600073ffffffffffffffffffffffffffffffffffffffff16848483818110612899577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906128ae9190614170565b73ffffffffffffffffffffffffffffffffffffffff161415612905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fc9061536c565b60405180910390fd5b60005b85811015612a0e577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355612939610f64565b868685818110612972577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906129879190614170565b604051612995929190615567565b60405180910390a16129fb8585848181106129d9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906129ee9190614170565b6129f6610f64565b613190565b8080612a069061589a565b915050612908565b508080612a1a9061589a565b91505061283d565b5050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16612adc612264565b73ffffffffffffffffffffffffffffffffffffffff1614612afc57600080fd5b8060138190555050565b612b0e612d95565b73ffffffffffffffffffffffffffffffffffffffff16612b2c612264565b73ffffffffffffffffffffffffffffffffffffffff1614612b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b799061538c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be9906151ec565b60405180910390fd5b612bfb816131ae565b50565b3373ffffffffffffffffffffffffffffffffffffffff16612c1d612264565b73ffffffffffffffffffffffffffffffffffffffff1614612c3d57600080fd5b80600c8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612d1257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612d225750612d218261367c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e108361174d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e6182612d29565b612ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e97906152ac565b60405180910390fd5b6000612eab8361174d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f1a57508373ffffffffffffffffffffffffffffffffffffffff16612f0284610dc7565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f2b5750612f2a8185612a29565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f548261174d565b73ffffffffffffffffffffffffffffffffffffffff1614612faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa1906153cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561301a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130119061526c565b60405180910390fd5b6130258383836136e6565b613030600082612d9d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613080919061577e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130d7919061569d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6131aa8282604051806020016040528060008152506137fa565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132da9061528c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516133d491906150ef565b60405180910390a3505050565b6133ec848484612f34565b6133f884848484613855565b613437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342e906151cc565b60405180910390fd5b50505050565b6060600f805461344c90615868565b80601f016020809104026020016040519081016040528092919081815260200182805461347890615868565b80156134c55780601f1061349a576101008083540402835291602001916134c5565b820191906000526020600020905b8154815290600101906020018083116134a857829003601f168201915b5050505050905090565b60606000821415613517576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613677565b600082905060005b600082146135495780806135329061589a565b915050600a8261354291906156f3565b915061351f565b60008167ffffffffffffffff81111561358b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135bd5781602001600182028036833780820191505090505b5090505b60008514613670576001826135d6919061577e565b9150600a856135e591906158e3565b60306135f1919061569d565b60f81b81838151811061362d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561366991906156f3565b94506135c1565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6136f18383836139ec565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137345761372f816139f1565b613773565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613772576137718382613a3a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137b6576137b181613ba7565b6137f5565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146137f4576137f38282613cea565b5b5b505050565b6138048383613d69565b6138116000848484613855565b613850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613847906151cc565b60405180910390fd5b505050565b60006138768473ffffffffffffffffffffffffffffffffffffffff16613f37565b156139df578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261389f612d95565b8786866040518563ffffffff1660e01b81526004016138c19493929190615081565b602060405180830381600087803b1580156138db57600080fd5b505af192505050801561390c57506040513d601f19601f8201168201806040525081019061390991906143ae565b60015b61398f573d806000811461393c576040519150601f19603f3d011682016040523d82523d6000602084013e613941565b606091505b50600081511415613987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397e906151cc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506139e4565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613a4784611805565b613a51919061577e565b9050600060076000848152602001908152602001600020549050818114613b36576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613bbb919061577e565b9050600060096000848152602001908152602001600020549050600060088381548110613c11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613c59577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613cce577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613cf583611805565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dd09061532c565b60405180910390fd5b613de281612d29565b15613e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e199061520c565b60405180910390fd5b613e2e600083836136e6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e7e919061569d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613f5690615868565b90600052602060002090601f016020900481019282613f785760008555613fbf565b82601f10613f9157805160ff1916838001178555613fbf565b82800160010185558215613fbf579182015b82811115613fbe578251825591602001919060010190613fa3565b5b509050613fcc9190613fd0565b5090565b5b80821115613fe9576000816000905550600101613fd1565b5090565b6000614000613ffb846155c1565b615590565b90508281526020810184848401111561401857600080fd5b614023848285615826565b509392505050565b600061403e614039846155f1565b615590565b90508281526020810184848401111561405657600080fd5b614061848285615826565b509392505050565b600081359050614078816159e1565b92915050565b60008083601f84011261409057600080fd5b8235905067ffffffffffffffff8111156140a957600080fd5b6020830191508360208202830111156140c157600080fd5b9250929050565b6000813590506140d7816159f8565b92915050565b6000813590506140ec81615a0f565b92915050565b60008151905061410181615a0f565b92915050565b600082601f83011261411857600080fd5b8135614128848260208601613fed565b91505092915050565b600082601f83011261414257600080fd5b813561415284826020860161402b565b91505092915050565b60008135905061416a81615a26565b92915050565b60006020828403121561418257600080fd5b600061419084828501614069565b91505092915050565b600080604083850312156141ac57600080fd5b60006141ba85828601614069565b92505060206141cb85828601614069565b9150509250929050565b6000806000606084860312156141ea57600080fd5b60006141f886828701614069565b935050602061420986828701614069565b925050604061421a8682870161415b565b9150509250925092565b6000806000806080858703121561423a57600080fd5b600061424887828801614069565b945050602061425987828801614069565b935050604061426a8782880161415b565b925050606085013567ffffffffffffffff81111561428757600080fd5b61429387828801614107565b91505092959194509250565b600080604083850312156142b257600080fd5b60006142c085828601614069565b92505060206142d1858286016140c8565b9150509250929050565b600080604083850312156142ee57600080fd5b60006142fc85828601614069565b925050602061430d8582860161415b565b9150509250929050565b6000806020838503121561432a57600080fd5b600083013567ffffffffffffffff81111561434457600080fd5b6143508582860161407e565b92509250509250929050565b60006020828403121561436e57600080fd5b600061437c848285016140c8565b91505092915050565b60006020828403121561439757600080fd5b60006143a5848285016140dd565b91505092915050565b6000602082840312156143c057600080fd5b60006143ce848285016140f2565b91505092915050565b6000602082840312156143e957600080fd5b600082013567ffffffffffffffff81111561440357600080fd5b61440f84828501614131565b91505092915050565b60006020828403121561442a57600080fd5b60006144388482850161415b565b91505092915050565b60008060006040848603121561445657600080fd5b60006144648682870161415b565b935050602084013567ffffffffffffffff81111561448157600080fd5b61448d8682870161407e565b92509250509250925092565b60006144a58383615024565b60208301905092915050565b6144ba816157b2565b82525050565b60006144cb82615631565b6144d5818561565f565b93506144e083615621565b8060005b838110156145115781516144f88882614499565b975061450383615652565b9250506001810190506144e4565b5085935050505092915050565b614527816157c4565b82525050565b60006145388261563c565b6145428185615670565b9350614552818560208601615835565b61455b816159d0565b840191505092915050565b600061457182615647565b61457b8185615681565b935061458b818560208601615835565b614594816159d0565b840191505092915050565b60006145aa82615647565b6145b48185615692565b93506145c4818560208601615835565b80840191505092915050565b60006145dd601b83615681565b91507f4d61782052657365727665732074616b656e20616c72656164792100000000006000830152602082019050919050565b600061461d601883615681565b91507f416c6c6f77204c697374206973206e6f742061637469766500000000000000006000830152602082019050919050565b600061465d601d83615681565b91507f596f7520617265206e6f74206f6e2074686520416c6c6f77204c6973740000006000830152602082019050919050565b600061469d601d83615681565b91507f53616c65206973206e6f74206163746976652063757272656e746c792e0000006000830152602082019050919050565b60006146dd602b83615681565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000614743603283615681565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006147a9602683615681565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061480f601c83615681565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061484f601883615681565b91507f4d617820686f6c64696e672063617020726561636865642e00000000000000006000830152602082019050919050565b600061488f600f83615681565b91507f53616c652068617320656e6465642e00000000000000000000000000000000006000830152602082019050919050565b60006148cf602483615681565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614935601983615681565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614975602c83615681565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006149db603883615681565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614a41602a83615681565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614aa7602983615681565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b0d602083615681565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614b4d602c83615681565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614bb3601883615681565b91507f43616e2774206164642061206e756c6c206164647265737300000000000000006000830152602082019050919050565b6000614bf3602083615681565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614c33601e83615681565b91507f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c69737400006000830152602082019050919050565b6000614c73602983615681565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614cd9602f83615681565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614d3f601e83615681565b91507f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e7300006000830152602082019050919050565b6000614d7f602183615681565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614de5601683615681565b91507f546f74616c20737570706c792065786365656465642e000000000000000000006000830152602082019050919050565b6000614e25603183615681565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614e8b602c83615681565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614ef1601383615681565b91507f546f74616c20737570706c79207370656e742e000000000000000000000000006000830152602082019050919050565b6000614f31601b83615681565b91507f496e7375666669656e742045544820616d6f756e742073656e742e00000000006000830152602082019050919050565b6000614f71601c83615681565b91507f50757263686173652065786365656473206d617820616c6c6f776564000000006000830152602082019050919050565b6000614fb1601b83615681565b91507f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006000830152602082019050919050565b6000614ff1602083615681565b91507f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736000830152602082019050919050565b61502d8161581c565b82525050565b61503c8161581c565b82525050565b600061504e828561459f565b915061505a828461459f565b91508190509392505050565b600060208201905061507b60008301846144b1565b92915050565b600060808201905061509660008301876144b1565b6150a360208301866144b1565b6150b06040830185615033565b81810360608301526150c2818461452d565b905095945050505050565b600060208201905081810360008301526150e781846144c0565b905092915050565b6000602082019050615104600083018461451e565b92915050565b600060208201905081810360008301526151248184614566565b905092915050565b60006020820190508181036000830152615145816145d0565b9050919050565b6000602082019050818103600083015261516581614610565b9050919050565b6000602082019050818103600083015261518581614650565b9050919050565b600060208201905081810360008301526151a581614690565b9050919050565b600060208201905081810360008301526151c5816146d0565b9050919050565b600060208201905081810360008301526151e581614736565b9050919050565b600060208201905081810360008301526152058161479c565b9050919050565b6000602082019050818103600083015261522581614802565b9050919050565b6000602082019050818103600083015261524581614842565b9050919050565b6000602082019050818103600083015261526581614882565b9050919050565b60006020820190508181036000830152615285816148c2565b9050919050565b600060208201905081810360008301526152a581614928565b9050919050565b600060208201905081810360008301526152c581614968565b9050919050565b600060208201905081810360008301526152e5816149ce565b9050919050565b6000602082019050818103600083015261530581614a34565b9050919050565b6000602082019050818103600083015261532581614a9a565b9050919050565b6000602082019050818103600083015261534581614b00565b9050919050565b6000602082019050818103600083015261536581614b40565b9050919050565b6000602082019050818103600083015261538581614ba6565b9050919050565b600060208201905081810360008301526153a581614be6565b9050919050565b600060208201905081810360008301526153c581614c26565b9050919050565b600060208201905081810360008301526153e581614c66565b9050919050565b6000602082019050818103600083015261540581614ccc565b9050919050565b6000602082019050818103600083015261542581614d32565b9050919050565b6000602082019050818103600083015261544581614d72565b9050919050565b6000602082019050818103600083015261546581614dd8565b9050919050565b6000602082019050818103600083015261548581614e18565b9050919050565b600060208201905081810360008301526154a581614e7e565b9050919050565b600060208201905081810360008301526154c581614ee4565b9050919050565b600060208201905081810360008301526154e581614f24565b9050919050565b6000602082019050818103600083015261550581614f64565b9050919050565b6000602082019050818103600083015261552581614fa4565b9050919050565b6000602082019050818103600083015261554581614fe4565b9050919050565b60006020820190506155616000830184615033565b92915050565b600060408201905061557c6000830185615033565b61558960208301846144b1565b9392505050565b6000604051905081810181811067ffffffffffffffff821117156155b7576155b66159a1565b5b8060405250919050565b600067ffffffffffffffff8211156155dc576155db6159a1565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561560c5761560b6159a1565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006156a88261581c565b91506156b38361581c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156156e8576156e7615914565b5b828201905092915050565b60006156fe8261581c565b91506157098361581c565b92508261571957615718615943565b5b828204905092915050565b600061572f8261581c565b915061573a8361581c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561577357615772615914565b5b828202905092915050565b60006157898261581c565b91506157948361581c565b9250828210156157a7576157a6615914565b5b828203905092915050565b60006157bd826157fc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615853578082015181840152602081019050615838565b83811115615862576000848401525b50505050565b6000600282049050600182168061588057607f821691505b6020821081141561589457615893615972565b5b50919050565b60006158a58261581c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156158d8576158d7615914565b5b600182019050919050565b60006158ee8261581c565b91506158f98361581c565b92508261590957615908615943565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6159ea816157b2565b81146159f557600080fd5b50565b615a01816157c4565b8114615a0c57600080fd5b50565b615a18816157d0565b8114615a2357600080fd5b50565b615a2f8161581c565b8114615a3a57600080fd5b5056fea264697066735822122010961d11f8ea0464ffef17b18e7c15490297f6bf4e84cee0b0fcf187e1956ac364736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002a68747470733a2f2f6170702e70696e6174612e636c6f75642f676174657761792f63727970746f6c657800000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://app.pinata.cloud/gateway/cryptolex

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002a
Arg [2] : 68747470733a2f2f6170702e70696e6174612e636c6f75642f67617465776179
Arg [3] : 2f63727970746f6c657800000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

116:6762:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2540:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;989:222:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2408:98:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3919:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3457:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1614:111:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;357:28:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4646:330:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;389:37:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2169:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1290:253:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6745:131:2;;;;;;;;;;;;;:::i;:::-;;4312:777;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5042:179:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6435:306:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3517:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;431:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1097:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1797:230:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3008:99:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2825:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2111:235:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;168:37:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1849:205:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1661:101:12;;;;;;;;;;;;;:::i;:::-;;1588:128:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3714:340;;;;;;;;;;;;;:::i;:::-;;1832:333;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1466:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4058:250;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5708:723;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1720:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;582:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1029:85:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2919::2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2570:102:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3244:79:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;476:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4203:153:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2278:258:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1356:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3111:129;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5287:320:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3424:89:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2738:329:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;530:48:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3327:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5093:611;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4422:162:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1223:129:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1911:198:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2728:93:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2540:184;2606:7;2645:1;2628:19;;:5;:19;;;;2620:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;2695:17;:24;2713:5;2695:24;;;;;;;;;;;;;;;;2688:31;;2540:184;;;:::o;989:222:6:-;1091:4;1129:35;1114:50;;;:11;:50;;;;:90;;;;1168:36;1192:11;1168:23;:36::i;:::-;1114:90;1107:97;;989:222;;;:::o;2408:98:5:-;2462:13;2494:5;2487:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2408:98;:::o;3919:217::-;3995:7;4022:16;4030:7;4022;:16::i;:::-;4014:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4105:15;:24;4121:7;4105:24;;;;;;;;;;;;;;;;;;;;;4098:31;;3919:217;;;:::o;3457:401::-;3537:13;3553:23;3568:7;3553:14;:23::i;:::-;3537:39;;3600:5;3594:11;;:2;:11;;;;3586:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3691:5;3675:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3700:37;3717:5;3724:12;:10;:12::i;:::-;3700:16;:37::i;:::-;3675:62;3654:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3830:21;3839:2;3843:7;3830:8;:21::i;:::-;3457:401;;;:::o;1614:111:6:-;1675:7;1701:10;:17;;;;1694:24;;1614:111;:::o;357:28:2:-;;;;;;;;;;;;;:::o;4646:330:5:-;4835:41;4854:12;:10;:12::i;:::-;4868:7;4835:18;:41::i;:::-;4827:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;4941:28;4951:4;4957:2;4961:7;4941:9;:28::i;:::-;4646:330;;;:::o;389:37:2:-;;;;;;;;;;;;;:::o;2169:105::-;2234:4;2253:10;:16;2264:4;2253:16;;;;;;;;;;;;;;;;;;;;;;;;;2246:23;;2169:105;;;:::o;1290:253:6:-;1387:7;1422:23;1439:5;1422:16;:23::i;:::-;1414:5;:31;1406:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1510:12;:19;1523:5;1510:19;;;;;;;;;;;;;;;:26;1530:5;1510:26;;;;;;;;;;;;1503:33;;1290:253;;;;:::o;6745:131:2:-;1070:10;1059:21;;:7;:5;:7::i;:::-;:21;;;1051:30;;;;;;6795:12:::1;6810:21;6795:36;;6845:7;:5;:7::i;:::-;6837:25;;:34;6863:7;6837:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1087:1;6745:131::o:0;4312:777::-;966:17;;949:13;:11;:13::i;:::-;:34;;941:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4405:7:::1;:5;:7::i;:::-;4391:21;;:10;:21;;;4387:92;;4430:8;;;;;;;;;;;4422:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;4387:92;4495:7;:5;:7::i;:::-;4488:14;;:3;:14;;;4485:127;;4547:29;;4537:6;4520:14;4530:3;4520:9;:14::i;:::-;:23;;;;:::i;:::-;:56;;4512:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;4485:127;4652:17;;4642:6;4626:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:43;;4618:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;4727:17;;4710:13;:11;:13::i;:::-;:34;;4702:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;4799:31;;4789:6;:41;;4774:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;4915:6;4903:9;;:18;;;;:::i;:::-;4890:9;:31;;4882:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;4965:9;4960:125;4984:6;4980:1;:10;4960:125;;;5010:31;5022:13;:11;:13::i;:::-;5037:3;5010:31;;;;;;;:::i;:::-;;;;;;;;5049:29;5059:3;5064:13;:11;:13::i;:::-;5049:9;:29::i;:::-;4992:3;;;;;:::i;:::-;;;;4960:125;;;;4312:777:::0;;:::o;5042:179:5:-;5175:39;5192:4;5198:2;5202:7;5175:39;;;;;;;;;;;;:16;:39::i;:::-;5042:179;;;:::o;6435:306:2:-;6496:16;6520:15;6538:17;6548:6;6538:9;:17::i;:::-;6520:35;;6561:25;6603:10;6589:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6561:53;;6625:6;6621:95;6641:10;6637:1;:14;6621:95;;;6679:30;6699:6;6707:1;6679:19;:30::i;:::-;6665:8;6674:1;6665:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;6653:3;;;;;:::i;:::-;;;;6621:95;;;;6728:8;6721:15;;;;6435:306;;;:::o;3517:83::-;3566:7;3588;:5;:7::i;:::-;3581:14;;3517:83;:::o;431:40::-;;;;:::o;1097:122::-;1070:10;1059:21;;:7;:5;:7::i;:::-;:21;;;1051:30;;;;;;1208:6:::1;1174:31;:40;;;;1097:122:::0;:::o;1797:230:6:-;1872:7;1907:30;:28;:30::i;:::-;1899:5;:38;1891:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;2003:10;2014:5;2003:17;;;;;;;;;;;;;;;;;;;;;;;;1996:24;;1797:230;;;:::o;3008:99:2:-;1070:10;1059:21;;:7;:5;:7::i;:::-;:21;;;1051:30;;;;;;3095:7:::1;3079:13;:23;;;;;;;;;;;;:::i;:::-;;3008:99:::0;:::o;2825:90::-;1070:10;1059:21;;:7;:5;:7::i;:::-;:21;;;1051:30;;;;;;2907:3:::1;2889:15;:21;;;;2825:90:::0;:::o;2111:235:5:-;2183:7;2202:13;2218:7;:16;2226:7;2218:16;;;;;;;;;;;;;;;;;;;;;2202:32;;2269:1;2252:19;;:5;:19;;;;2244:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2334:5;2327:12;;;2111:235;;;:::o;168:37:2:-;;;;:::o;1849:205:5:-;1921:7;1965:1;1948:19;;:5;:19;;;;1940:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2031:9;:16;2041:5;2031:16;;;;;;;;;;;;;;;;2024:23;;1849:205;;;:::o;1661:101:12:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;1588:128:2:-;1070:10;1059:21;;:7;:5;:7::i;:::-;:21;;;1051:30;;;;;;1693:18:::1;1673:17;;:38;;;;;;;;;;;;;;;;;;1588:128:::0;:::o;3714:340::-;1070:10;1059:21;;:7;:5;:7::i;:::-;:21;;;1051:30;;;;;;3789:15:::1;;3772:13;;:32;;3764:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;3842:14;3859:13;:11;:13::i;:::-;3842:30;;3878:9;3894:156;3910:14;;3906:1;:18;3894:156;;;3944:35;3965:1;3956:6;:10;;;;:::i;:::-;3968;3944:35;;;;;;;:::i;:::-;;;;;;;;3987:33;3997:10;4018:1;4009:6;:10;;;;:::i;:::-;3987:9;:33::i;:::-;4028:13;;:15;;;;;;;;;:::i;:::-;;;;;;3926:3;;;;;:::i;:::-;;;;3894:156;;;1087:1;;3714:340::o:0;1832:333::-;1070:10;1059:21;;:7;:5;:7::i;:::-;:21;;;1051:30;;;;;;1921:9:::1;1916:245;1940:9;;:16;;1936:1;:20;1916:245;;;2003:1;1979:26;;:9;;1989:1;1979:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:26;;;;1971:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2069:4;2042:10;:24;2053:9;;2063:1;2053:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2042:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;2115:1;2081:17;:31;2099:9;;2109:1;2099:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2081:31;;;;;;;;;;;;;;;;:35;:73;;2153:1;2081:73;;;2119:17;:31;2137:9;;2147:1;2137:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2119:31;;;;;;;;;;;;;;;;2081:73;;1958:3;;;;;:::i;:::-;;;;1916:245;;;;1832:333:::0;;:::o;1466:118::-;1070:10;1059:21;;:7;:5;:7::i;:::-;:21;;;1051:30;;;;;;1566:13:::1;1546:17;:33;;;;1466:118:::0;:::o;4058:250::-;1070:10;1059:21;;:7;:5;:7::i;:::-;:21;;;1051:30;;;;;;4162:9:::1;4157:147;4181:6;4177:1;:10;4157:147;;;4207:42;4219:13;:11;:13::i;:::-;4234:14;4207:42;;;;;;;:::i;:::-;;;;;;;;4257:40;4267:14;4283:13;:11;:13::i;:::-;4257:9;:40::i;:::-;4189:3;;;;;:::i;:::-;;;;4157:147;;;;4058:250:::0;;:::o;5708:723::-;966:17;;949:13;:11;:13::i;:::-;:34;;941:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;5785:17:::1;;;;;;;;;;;5777:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;5845:10;:22;5856:10;5845:22;;;;;;;;;;;;;;;;;;;;;;;;;5837:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;5931:17;;5915:13;:11;:13::i;:::-;:33;5907:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6004:16;;5994:6;:26;;5986:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6113:16;;6103:6;6071:17;:29;6089:10;6071:29;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:58;;6063:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;6201:6;6189:9;;:18;;;;:::i;:::-;6176:9;:31;;6168:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6251:9;6246:181;6270:6;6266:1;:10;6246:181;;;6324:1;6291:17;:29;6309:10;6291:29;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;6338:38;6350:13;:11;:13::i;:::-;6365:10;6338:38;;;;;;;:::i;:::-;;;;;;;;6384:36;6394:10;6406:13;:11;:13::i;:::-;6384:9;:36::i;:::-;6278:3;;;;;:::i;:::-;;;;6246:181;;;;5708:723:::0;:::o;1720:108::-;1070:10;1059:21;;:7;:5;:7::i;:::-;:21;;;1051:30;;;;;;1816:7:::1;1797:16;:26;;;;1720:108:::0;:::o;582:35::-;;;;:::o;1029:85:12:-;1075:7;1101:6;;;;;;;;;;;1094:13;;1029:85;:::o;2919::2:-;1070:10;1059:21;;:7;:5;:7::i;:::-;:21;;;1051:30;;;;;;2993:6:::1;2981:9;:18;;;;2919:85:::0;:::o;2570:102:5:-;2626:13;2658:7;2651:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2570:102;:::o;3244:79:2:-;3287:7;3309:9;;3302:16;;3244:79;:::o;476:50::-;;;;:::o;4203:153:5:-;4297:52;4316:12;:10;:12::i;:::-;4330:8;4340;4297:18;:52::i;:::-;4203:153;;:::o;2278:258:2:-;1070:10;1059:21;;:7;:5;:7::i;:::-;:21;;;1051:30;;;;;;2372:9:::1;2367:165;2391:9;;:16;;2387:1;:20;2367:165;;;2454:1;2430:26;;:9;;2440:1;2430:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:26;;;;2422:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2520:5;2493:10;:24;2504:9;;2514:1;2504:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2493:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;2409:3;;;;;:::i;:::-;;;;2367:165;;;;2278:258:::0;;:::o;1356:106::-;1070:10;1059:21;;:7;:5;:7::i;:::-;:21;;;1051:30;;;;;;1424:3:::1;1413:8;;:14;;;;;;;;;;;;;;;;;;1438:19;1453:3;1438:19;;;;;;:::i;:::-;;;;;;;;1356:106:::0;:::o;3111:129::-;3182:7;1070:10;1059:21;;:7;:5;:7::i;:::-;:21;;;1051:30;;;;;;3204:31:::1;;3197:38;;3111:129:::0;:::o;5287:320:5:-;5456:41;5475:12;:10;:12::i;:::-;5489:7;5456:18;:41::i;:::-;5448:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5561:39;5575:4;5581:2;5585:7;5594:5;5561:13;:39::i;:::-;5287:320;;;;:::o;3424:89:2:-;3473:7;3495:13;:11;:13::i;:::-;3488:20;;3424:89;:::o;2738:329:5:-;2811:13;2844:16;2852:7;2844;:16::i;:::-;2836:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2923:21;2947:10;:8;:10::i;:::-;2923:34;;2998:1;2980:7;2974:21;:25;:86;;;;;;;;;;;;;;;;;3026:7;3035:18;:7;:16;:18::i;:::-;3009:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2974:86;2967:93;;;2738:329;;;:::o;530:48:2:-;;;;:::o;3327:93::-;3379:7;3401:14;;3394:21;;3327:93;:::o;5093:611::-;1070:10;1059:21;;:7;:5;:7::i;:::-;:21;;;1051:30;;;;;;5212:14:::1;5229:13;:11;:13::i;:::-;5212:30;;5278:17;;5268:6;5259;:15;;;;:::i;:::-;:36;;5251:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5348:17;;5338:6;:27;;5330:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;5403:9;5398:302;5422:9;;:16;;5418:1;:20;5398:302;;;5487:1;5463:26;;:9;;5473:1;5463:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:26;;;;5455:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;5541:9;5537:155;5560:6;5556:1;:10;5537:155;;;5591:40;5603:13;:11;:13::i;:::-;5618:9;;5628:1;5618:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5591:40;;;;;;;:::i;:::-;;;;;;;;5643:38;5653:9;;5663:1;5653:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5667:13;:11;:13::i;:::-;5643:9;:38::i;:::-;5568:3;;;;;:::i;:::-;;;;5537:155;;;;5440:3;;;;;:::i;:::-;;;;5398:302;;;;1087:1;5093:611:::0;;;:::o;4422:162:5:-;4519:4;4542:18;:25;4561:5;4542:25;;;;;;;;;;;;;;;:35;4568:8;4542:35;;;;;;;;;;;;;;;;;;;;;;;;;4535:42;;4422:162;;;;:::o;1223:129:2:-;1070:10;1059:21;;:7;:5;:7::i;:::-;:21;;;1051:30;;;;;;1341:6:::1;1309:29;:38;;;;1223:129:::0;:::o;1911:198:12:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2019:1:::1;1999:22;;:8;:22;;;;1991:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;2728:93:2:-;1070:10;1059:21;;:7;:5;:7::i;:::-;:21;;;1051:30;;;;;;2813:3:::1;2796:14;:20;;;;2728:93:::0;:::o;1490:300:5:-;1592:4;1642:25;1627:40;;;:11;:40;;;;:104;;;;1698:33;1683:48;;;:11;:48;;;;1627:104;:156;;;;1747:36;1771:11;1747:23;:36::i;:::-;1627:156;1608:175;;1490:300;;;:::o;7079:125::-;7144:4;7195:1;7167:30;;:7;:16;7175:7;7167:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7160:37;;7079:125;;;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;10930:171:5:-;11031:2;11004:15;:24;11020:7;11004:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11086:7;11082:2;11048:46;;11057:23;11072:7;11057:14;:23::i;:::-;11048:46;;;;;;;;;;;;10930:171;;:::o;7362:344::-;7455:4;7479:16;7487:7;7479;:16::i;:::-;7471:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7554:13;7570:23;7585:7;7570:14;:23::i;:::-;7554:39;;7622:5;7611:16;;:7;:16;;;:51;;;;7655:7;7631:31;;:20;7643:7;7631:11;:20::i;:::-;:31;;;7611:51;:87;;;;7666:32;7683:5;7690:7;7666:16;:32::i;:::-;7611:87;7603:96;;;7362:344;;;;:::o;10259:560::-;10413:4;10386:31;;:23;10401:7;10386:14;:23::i;:::-;:31;;;10378:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10495:1;10481:16;;:2;:16;;;;10473:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10549:39;10570:4;10576:2;10580:7;10549:20;:39::i;:::-;10650:29;10667:1;10671:7;10650:8;:29::i;:::-;10709:1;10690:9;:15;10700:4;10690:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10737:1;10720:9;:13;10730:2;10720:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10767:2;10748:7;:16;10756:7;10748:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10804:7;10800:2;10785:27;;10794:4;10785:27;;;;;;;;;;;;10259:560;;;:::o;8036:108::-;8111:26;8121:2;8125:7;8111:26;;;;;;;;;;;;:9;:26::i;:::-;8036:108;;:::o;2263:187:12:-;2336:16;2355:6;;;;;;;;;;;2336:25;;2380:8;2371:6;;:17;;;;;;;;;;;;;;;;;;2434:8;2403:40;;2424:8;2403:40;;;;;;;;;;;;2263:187;;:::o;11236:307:5:-;11386:8;11377:17;;:5;:17;;;;11369:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11472:8;11434:18;:25;11453:5;11434:25;;;;;;;;;;;;;;;:35;11460:8;11434:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11517:8;11495:41;;11510:5;11495:41;;;11527:8;11495:41;;;;;;:::i;:::-;;;;;;;;11236:307;;;:::o;6469:::-;6620:28;6630:4;6636:2;6640:7;6620:9;:28::i;:::-;6666:48;6689:4;6695:2;6699:7;6708:5;6666:22;:48::i;:::-;6658:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6469:307;;;;:::o;3604:106:2:-;3664:13;3692;3685:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3604:106;:::o;328:703:13:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;829:155:4:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;2623:572:6:-;2762:45;2789:4;2795:2;2799:7;2762:26;:45::i;:::-;2838:1;2822:18;;:4;:18;;;2818:183;;;2856:40;2888:7;2856:31;:40::i;:::-;2818:183;;;2925:2;2917:10;;:4;:10;;;2913:88;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;2913:88;2818:183;3028:1;3014:16;;:2;:16;;;3010:179;;;3046:45;3083:7;3046:36;:45::i;:::-;3010:179;;;3118:4;3112:10;;:2;:10;;;3108:81;;3138:40;3166:2;3170:7;3138:27;:40::i;:::-;3108:81;3010:179;2623:572;;;:::o;8365:311:5:-;8490:18;8496:2;8500:7;8490:5;:18::i;:::-;8539:54;8570:1;8574:2;8578:7;8587:5;8539:22;:54::i;:::-;8518:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8365:311;;;:::o;12096:778::-;12246:4;12266:15;:2;:13;;;:15::i;:::-;12262:606;;;12317:2;12301:36;;;12338:12;:10;:12::i;:::-;12352:4;12358:7;12367:5;12301:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12297:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12557:1;12540:6;:13;:18;12536:266;;;12582:60;;;;;;;;;;:::i;:::-;;;;;;;;12536:266;12754:6;12748:13;12739:6;12735:2;12731:15;12724:38;12297:519;12433:41;;;12423:51;;;:6;:51;;;;12416:58;;;;;12262:606;12853:4;12846:11;;12096:778;;;;;;;:::o;13430:122::-;;;;:::o;3901:161:6:-;4004:10;:17;;;;3977:15;:24;3993:7;3977:24;;;;;;;;;;;:44;;;;4031:10;4047:7;4031:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3901:161;:::o;4679:970::-;4941:22;4991:1;4966:22;4983:4;4966:16;:22::i;:::-;:26;;;;:::i;:::-;4941:51;;5002:18;5023:17;:26;5041:7;5023:26;;;;;;;;;;;;5002:47;;5167:14;5153:10;:28;5149:323;;5197:19;5219:12;:18;5232:4;5219:18;;;;;;;;;;;;;;;:34;5238:14;5219:34;;;;;;;;;;;;5197:56;;5301:11;5268:12;:18;5281:4;5268:18;;;;;;;;;;;;;;;:30;5287:10;5268:30;;;;;;;;;;;:44;;;;5417:10;5384:17;:30;5402:11;5384:30;;;;;;;;;;;:43;;;;5149:323;;5565:17;:26;5583:7;5565:26;;;;;;;;;;;5558:33;;;5608:12;:18;5621:4;5608:18;;;;;;;;;;;;;;;:34;5627:14;5608:34;;;;;;;;;;;5601:41;;;4679:970;;;;:::o;5937:1061::-;6186:22;6231:1;6211:10;:17;;;;:21;;;;:::i;:::-;6186:46;;6242:18;6263:15;:24;6279:7;6263:24;;;;;;;;;;;;6242:45;;6609:19;6631:10;6642:14;6631:26;;;;;;;;;;;;;;;;;;;;;;;;6609:48;;6693:11;6668:10;6679;6668:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;6803:10;6772:15;:28;6788:11;6772:28;;;;;;;;;;;:41;;;;6941:15;:24;6957:7;6941:24;;;;;;;;;;;6934:31;;;6975:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5937:1061;;;;:::o;3489:217::-;3573:14;3590:20;3607:2;3590:16;:20::i;:::-;3573:37;;3647:7;3620:12;:16;3633:2;3620:16;;;;;;;;;;;;;;;:24;3637:6;3620:24;;;;;;;;;;;:34;;;;3693:6;3664:17;:26;3682:7;3664:26;;;;;;;;;;;:35;;;;3489:217;;;:::o;8998:372:5:-;9091:1;9077:16;;:2;:16;;;;9069:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9149:16;9157:7;9149;:16::i;:::-;9148:17;9140:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9209:45;9238:1;9242:2;9246:7;9209:20;:45::i;:::-;9282:1;9265:9;:13;9275:2;9265:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9312:2;9293:7;:16;9301:7;9293:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9355:7;9351:2;9330:33;;9347:1;9330:33;;;;;;;;;;;;8998:372;;:::o;771:377:0:-;831:4;1034:12;1099:7;1087:20;1079:28;;1140:1;1133:4;:8;1126:15;;;771:377;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:14:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;867:367::-;;;1000:3;993:4;985:6;981:17;977:27;967:2;;1018:1;1015;1008:12;967:2;1054:6;1041:20;1031:30;;1084:18;1076:6;1073:30;1070:2;;;1116:1;1113;1106:12;1070:2;1153:4;1145:6;1141:17;1129:29;;1207:3;1199:4;1191:6;1187:17;1177:8;1173:32;1170:41;1167:2;;;1224:1;1221;1214:12;1167:2;957:277;;;;;:::o;1240:133::-;;1321:6;1308:20;1299:29;;1337:30;1361:5;1337:30;:::i;:::-;1289:84;;;;:::o;1379:137::-;;1462:6;1449:20;1440:29;;1478:32;1504:5;1478:32;:::i;:::-;1430:86;;;;:::o;1522:141::-;;1609:6;1603:13;1594:22;;1625:32;1651:5;1625:32;:::i;:::-;1584:79;;;;:::o;1682:271::-;;1786:3;1779:4;1771:6;1767:17;1763:27;1753:2;;1804:1;1801;1794:12;1753:2;1844:6;1831:20;1869:78;1943:3;1935:6;1928:4;1920:6;1916:17;1869:78;:::i;:::-;1860:87;;1743:210;;;;;:::o;1973:273::-;;2078:3;2071:4;2063:6;2059:17;2055:27;2045:2;;2096:1;2093;2086:12;2045:2;2136:6;2123:20;2161:79;2236:3;2228:6;2221:4;2213:6;2209:17;2161:79;:::i;:::-;2152:88;;2035:211;;;;;:::o;2252:139::-;;2336:6;2323:20;2314:29;;2352:33;2379:5;2352:33;:::i;:::-;2304:87;;;;:::o;2397:262::-;;2505:2;2493:9;2484:7;2480:23;2476:32;2473:2;;;2521:1;2518;2511:12;2473:2;2564:1;2589:53;2634:7;2625:6;2614:9;2610:22;2589:53;:::i;:::-;2579:63;;2535:117;2463:196;;;;:::o;2665:407::-;;;2790:2;2778:9;2769:7;2765:23;2761:32;2758:2;;;2806:1;2803;2796:12;2758:2;2849:1;2874:53;2919:7;2910:6;2899:9;2895:22;2874:53;:::i;:::-;2864:63;;2820:117;2976:2;3002:53;3047:7;3038:6;3027:9;3023:22;3002:53;:::i;:::-;2992:63;;2947:118;2748:324;;;;;:::o;3078:552::-;;;;3220:2;3208:9;3199:7;3195:23;3191:32;3188:2;;;3236:1;3233;3226:12;3188:2;3279:1;3304:53;3349:7;3340:6;3329:9;3325:22;3304:53;:::i;:::-;3294:63;;3250:117;3406:2;3432:53;3477:7;3468:6;3457:9;3453:22;3432:53;:::i;:::-;3422:63;;3377:118;3534:2;3560:53;3605:7;3596:6;3585:9;3581:22;3560:53;:::i;:::-;3550:63;;3505:118;3178:452;;;;;:::o;3636:809::-;;;;;3804:3;3792:9;3783:7;3779:23;3775:33;3772:2;;;3821:1;3818;3811:12;3772:2;3864:1;3889:53;3934:7;3925:6;3914:9;3910:22;3889:53;:::i;:::-;3879:63;;3835:117;3991:2;4017:53;4062:7;4053:6;4042:9;4038:22;4017:53;:::i;:::-;4007:63;;3962:118;4119:2;4145:53;4190:7;4181:6;4170:9;4166:22;4145:53;:::i;:::-;4135:63;;4090:118;4275:2;4264:9;4260:18;4247:32;4306:18;4298:6;4295:30;4292:2;;;4338:1;4335;4328:12;4292:2;4366:62;4420:7;4411:6;4400:9;4396:22;4366:62;:::i;:::-;4356:72;;4218:220;3762:683;;;;;;;:::o;4451:401::-;;;4573:2;4561:9;4552:7;4548:23;4544:32;4541:2;;;4589:1;4586;4579:12;4541:2;4632:1;4657:53;4702:7;4693:6;4682:9;4678:22;4657:53;:::i;:::-;4647:63;;4603:117;4759:2;4785:50;4827:7;4818:6;4807:9;4803:22;4785:50;:::i;:::-;4775:60;;4730:115;4531:321;;;;;:::o;4858:407::-;;;4983:2;4971:9;4962:7;4958:23;4954:32;4951:2;;;4999:1;4996;4989:12;4951:2;5042:1;5067:53;5112:7;5103:6;5092:9;5088:22;5067:53;:::i;:::-;5057:63;;5013:117;5169:2;5195:53;5240:7;5231:6;5220:9;5216:22;5195:53;:::i;:::-;5185:63;;5140:118;4941:324;;;;;:::o;5271:425::-;;;5414:2;5402:9;5393:7;5389:23;5385:32;5382:2;;;5430:1;5427;5420:12;5382:2;5501:1;5490:9;5486:17;5473:31;5531:18;5523:6;5520:30;5517:2;;;5563:1;5560;5553:12;5517:2;5599:80;5671:7;5662:6;5651:9;5647:22;5599:80;:::i;:::-;5581:98;;;;5444:245;5372:324;;;;;:::o;5702:256::-;;5807:2;5795:9;5786:7;5782:23;5778:32;5775:2;;;5823:1;5820;5813:12;5775:2;5866:1;5891:50;5933:7;5924:6;5913:9;5909:22;5891:50;:::i;:::-;5881:60;;5837:114;5765:193;;;;:::o;5964:260::-;;6071:2;6059:9;6050:7;6046:23;6042:32;6039:2;;;6087:1;6084;6077:12;6039:2;6130:1;6155:52;6199:7;6190:6;6179:9;6175:22;6155:52;:::i;:::-;6145:62;;6101:116;6029:195;;;;:::o;6230:282::-;;6348:2;6336:9;6327:7;6323:23;6319:32;6316:2;;;6364:1;6361;6354:12;6316:2;6407:1;6432:63;6487:7;6478:6;6467:9;6463:22;6432:63;:::i;:::-;6422:73;;6378:127;6306:206;;;;:::o;6518:375::-;;6636:2;6624:9;6615:7;6611:23;6607:32;6604:2;;;6652:1;6649;6642:12;6604:2;6723:1;6712:9;6708:17;6695:31;6753:18;6745:6;6742:30;6739:2;;;6785:1;6782;6775:12;6739:2;6813:63;6868:7;6859:6;6848:9;6844:22;6813:63;:::i;:::-;6803:73;;6666:220;6594:299;;;;:::o;6899:262::-;;7007:2;6995:9;6986:7;6982:23;6978:32;6975:2;;;7023:1;7020;7013:12;6975:2;7066:1;7091:53;7136:7;7127:6;7116:9;7112:22;7091:53;:::i;:::-;7081:63;;7037:117;6965:196;;;;:::o;7167:570::-;;;;7327:2;7315:9;7306:7;7302:23;7298:32;7295:2;;;7343:1;7340;7333:12;7295:2;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7541:2;7530:9;7526:18;7513:32;7572:18;7564:6;7561:30;7558:2;;;7604:1;7601;7594:12;7558:2;7640:80;7712:7;7703:6;7692:9;7688:22;7640:80;:::i;:::-;7622:98;;;;7484:246;7285:452;;;;;:::o;7743:179::-;;7833:46;7875:3;7867:6;7833:46;:::i;:::-;7911:4;7906:3;7902:14;7888:28;;7823:99;;;;:::o;7928:118::-;8015:24;8033:5;8015:24;:::i;:::-;8010:3;8003:37;7993:53;;:::o;8082:732::-;;8230:54;8278:5;8230:54;:::i;:::-;8300:86;8379:6;8374:3;8300:86;:::i;:::-;8293:93;;8410:56;8460:5;8410:56;:::i;:::-;8489:7;8520:1;8505:284;8530:6;8527:1;8524:13;8505:284;;;8606:6;8600:13;8633:63;8692:3;8677:13;8633:63;:::i;:::-;8626:70;;8719:60;8772:6;8719:60;:::i;:::-;8709:70;;8565:224;8552:1;8549;8545:9;8540:14;;8505:284;;;8509:14;8805:3;8798:10;;8206:608;;;;;;;:::o;8820:109::-;8901:21;8916:5;8901:21;:::i;:::-;8896:3;8889:34;8879:50;;:::o;8935:360::-;;9049:38;9081:5;9049:38;:::i;:::-;9103:70;9166:6;9161:3;9103:70;:::i;:::-;9096:77;;9182:52;9227:6;9222:3;9215:4;9208:5;9204:16;9182:52;:::i;:::-;9259:29;9281:6;9259:29;:::i;:::-;9254:3;9250:39;9243:46;;9025:270;;;;;:::o;9301:364::-;;9417:39;9450:5;9417:39;:::i;:::-;9472:71;9536:6;9531:3;9472:71;:::i;:::-;9465:78;;9552:52;9597:6;9592:3;9585:4;9578:5;9574:16;9552:52;:::i;:::-;9629:29;9651:6;9629:29;:::i;:::-;9624:3;9620:39;9613:46;;9393:272;;;;;:::o;9671:377::-;;9805:39;9838:5;9805:39;:::i;:::-;9860:89;9942:6;9937:3;9860:89;:::i;:::-;9853:96;;9958:52;10003:6;9998:3;9991:4;9984:5;9980:16;9958:52;:::i;:::-;10035:6;10030:3;10026:16;10019:23;;9781:267;;;;;:::o;10054:325::-;;10217:67;10281:2;10276:3;10217:67;:::i;:::-;10210:74;;10314:29;10310:1;10305:3;10301:11;10294:50;10370:2;10365:3;10361:12;10354:19;;10200:179;;;:::o;10385:322::-;;10548:67;10612:2;10607:3;10548:67;:::i;:::-;10541:74;;10645:26;10641:1;10636:3;10632:11;10625:47;10698:2;10693:3;10689:12;10682:19;;10531:176;;;:::o;10713:327::-;;10876:67;10940:2;10935:3;10876:67;:::i;:::-;10869:74;;10973:31;10969:1;10964:3;10960:11;10953:52;11031:2;11026:3;11022:12;11015:19;;10859:181;;;:::o;11046:327::-;;11209:67;11273:2;11268:3;11209:67;:::i;:::-;11202:74;;11306:31;11302:1;11297:3;11293:11;11286:52;11364:2;11359:3;11355:12;11348:19;;11192:181;;;:::o;11379:375::-;;11542:67;11606:2;11601:3;11542:67;:::i;:::-;11535:74;;11639:34;11635:1;11630:3;11626:11;11619:55;11705:13;11700:2;11695:3;11691:12;11684:35;11745:2;11740:3;11736:12;11729:19;;11525:229;;;:::o;11760:382::-;;11923:67;11987:2;11982:3;11923:67;:::i;:::-;11916:74;;12020:34;12016:1;12011:3;12007:11;12000:55;12086:20;12081:2;12076:3;12072:12;12065:42;12133:2;12128:3;12124:12;12117:19;;11906:236;;;:::o;12148:370::-;;12311:67;12375:2;12370:3;12311:67;:::i;:::-;12304:74;;12408:34;12404:1;12399:3;12395:11;12388:55;12474:8;12469:2;12464:3;12460:12;12453:30;12509:2;12504:3;12500:12;12493:19;;12294:224;;;:::o;12524:326::-;;12687:67;12751:2;12746:3;12687:67;:::i;:::-;12680:74;;12784:30;12780:1;12775:3;12771:11;12764:51;12841:2;12836:3;12832:12;12825:19;;12670:180;;;:::o;12856:322::-;;13019:67;13083:2;13078:3;13019:67;:::i;:::-;13012:74;;13116:26;13112:1;13107:3;13103:11;13096:47;13169:2;13164:3;13160:12;13153:19;;13002:176;;;:::o;13184:313::-;;13347:67;13411:2;13406:3;13347:67;:::i;:::-;13340:74;;13444:17;13440:1;13435:3;13431:11;13424:38;13488:2;13483:3;13479:12;13472:19;;13330:167;;;:::o;13503:368::-;;13666:67;13730:2;13725:3;13666:67;:::i;:::-;13659:74;;13763:34;13759:1;13754:3;13750:11;13743:55;13829:6;13824:2;13819:3;13815:12;13808:28;13862:2;13857:3;13853:12;13846:19;;13649:222;;;:::o;13877:323::-;;14040:67;14104:2;14099:3;14040:67;:::i;:::-;14033:74;;14137:27;14133:1;14128:3;14124:11;14117:48;14191:2;14186:3;14182:12;14175:19;;14023:177;;;:::o;14206:376::-;;14369:67;14433:2;14428:3;14369:67;:::i;:::-;14362:74;;14466:34;14462:1;14457:3;14453:11;14446:55;14532:14;14527:2;14522:3;14518:12;14511:36;14573:2;14568:3;14564:12;14557:19;;14352:230;;;:::o;14588:388::-;;14751:67;14815:2;14810:3;14751:67;:::i;:::-;14744:74;;14848:34;14844:1;14839:3;14835:11;14828:55;14914:26;14909:2;14904:3;14900:12;14893:48;14967:2;14962:3;14958:12;14951:19;;14734:242;;;:::o;14982:374::-;;15145:67;15209:2;15204:3;15145:67;:::i;:::-;15138:74;;15242:34;15238:1;15233:3;15229:11;15222:55;15308:12;15303:2;15298:3;15294:12;15287:34;15347:2;15342:3;15338:12;15331:19;;15128:228;;;:::o;15362:373::-;;15525:67;15589:2;15584:3;15525:67;:::i;:::-;15518:74;;15622:34;15618:1;15613:3;15609:11;15602:55;15688:11;15683:2;15678:3;15674:12;15667:33;15726:2;15721:3;15717:12;15710:19;;15508:227;;;:::o;15741:330::-;;15904:67;15968:2;15963:3;15904:67;:::i;:::-;15897:74;;16001:34;15997:1;15992:3;15988:11;15981:55;16062:2;16057:3;16053:12;16046:19;;15887:184;;;:::o;16077:376::-;;16240:67;16304:2;16299:3;16240:67;:::i;:::-;16233:74;;16337:34;16333:1;16328:3;16324:11;16317:55;16403:14;16398:2;16393:3;16389:12;16382:36;16444:2;16439:3;16435:12;16428:19;;16223:230;;;:::o;16459:322::-;;16622:67;16686:2;16681:3;16622:67;:::i;:::-;16615:74;;16719:26;16715:1;16710:3;16706:11;16699:47;16772:2;16767:3;16763:12;16756:19;;16605:176;;;:::o;16787:330::-;;16950:67;17014:2;17009:3;16950:67;:::i;:::-;16943:74;;17047:34;17043:1;17038:3;17034:11;17027:55;17108:2;17103:3;17099:12;17092:19;;16933:184;;;:::o;17123:328::-;;17286:67;17350:2;17345:3;17286:67;:::i;:::-;17279:74;;17383:32;17379:1;17374:3;17370:11;17363:53;17442:2;17437:3;17433:12;17426:19;;17269:182;;;:::o;17457:373::-;;17620:67;17684:2;17679:3;17620:67;:::i;:::-;17613:74;;17717:34;17713:1;17708:3;17704:11;17697:55;17783:11;17778:2;17773:3;17769:12;17762:33;17821:2;17816:3;17812:12;17805:19;;17603:227;;;:::o;17836:379::-;;17999:67;18063:2;18058:3;17999:67;:::i;:::-;17992:74;;18096:34;18092:1;18087:3;18083:11;18076:55;18162:17;18157:2;18152:3;18148:12;18141:39;18206:2;18201:3;18197:12;18190:19;;17982:233;;;:::o;18221:328::-;;18384:67;18448:2;18443:3;18384:67;:::i;:::-;18377:74;;18481:32;18477:1;18472:3;18468:11;18461:53;18540:2;18535:3;18531:12;18524:19;;18367:182;;;:::o;18555:365::-;;18718:67;18782:2;18777:3;18718:67;:::i;:::-;18711:74;;18815:34;18811:1;18806:3;18802:11;18795:55;18881:3;18876:2;18871:3;18867:12;18860:25;18911:2;18906:3;18902:12;18895:19;;18701:219;;;:::o;18926:320::-;;19089:67;19153:2;19148:3;19089:67;:::i;:::-;19082:74;;19186:24;19182:1;19177:3;19173:11;19166:45;19237:2;19232:3;19228:12;19221:19;;19072:174;;;:::o;19252:381::-;;19415:67;19479:2;19474:3;19415:67;:::i;:::-;19408:74;;19512:34;19508:1;19503:3;19499:11;19492:55;19578:19;19573:2;19568:3;19564:12;19557:41;19624:2;19619:3;19615:12;19608:19;;19398:235;;;:::o;19639:376::-;;19802:67;19866:2;19861:3;19802:67;:::i;:::-;19795:74;;19899:34;19895:1;19890:3;19886:11;19879:55;19965:14;19960:2;19955:3;19951:12;19944:36;20006:2;20001:3;19997:12;19990:19;;19785:230;;;:::o;20021:317::-;;20184:67;20248:2;20243:3;20184:67;:::i;:::-;20177:74;;20281:21;20277:1;20272:3;20268:11;20261:42;20329:2;20324:3;20320:12;20313:19;;20167:171;;;:::o;20344:325::-;;20507:67;20571:2;20566:3;20507:67;:::i;:::-;20500:74;;20604:29;20600:1;20595:3;20591:11;20584:50;20660:2;20655:3;20651:12;20644:19;;20490:179;;;:::o;20675:326::-;;20838:67;20902:2;20897:3;20838:67;:::i;:::-;20831:74;;20935:30;20931:1;20926:3;20922:11;20915:51;20992:2;20987:3;20983:12;20976:19;;20821:180;;;:::o;21007:325::-;;21170:67;21234:2;21229:3;21170:67;:::i;:::-;21163:74;;21267:29;21263:1;21258:3;21254:11;21247:50;21323:2;21318:3;21314:12;21307:19;;21153:179;;;:::o;21338:330::-;;21501:67;21565:2;21560:3;21501:67;:::i;:::-;21494:74;;21598:34;21594:1;21589:3;21585:11;21578:55;21659:2;21654:3;21650:12;21643:19;;21484:184;;;:::o;21674:108::-;21751:24;21769:5;21751:24;:::i;:::-;21746:3;21739:37;21729:53;;:::o;21788:118::-;21875:24;21893:5;21875:24;:::i;:::-;21870:3;21863:37;21853:53;;:::o;21912:435::-;;22114:95;22205:3;22196:6;22114:95;:::i;:::-;22107:102;;22226:95;22317:3;22308:6;22226:95;:::i;:::-;22219:102;;22338:3;22331:10;;22096:251;;;;;:::o;22353:222::-;;22484:2;22473:9;22469:18;22461:26;;22497:71;22565:1;22554:9;22550:17;22541:6;22497:71;:::i;:::-;22451:124;;;;:::o;22581:640::-;;22814:3;22803:9;22799:19;22791:27;;22828:71;22896:1;22885:9;22881:17;22872:6;22828:71;:::i;:::-;22909:72;22977:2;22966:9;22962:18;22953:6;22909:72;:::i;:::-;22991;23059:2;23048:9;23044:18;23035:6;22991:72;:::i;:::-;23110:9;23104:4;23100:20;23095:2;23084:9;23080:18;23073:48;23138:76;23209:4;23200:6;23138:76;:::i;:::-;23130:84;;22781:440;;;;;;;:::o;23227:373::-;;23408:2;23397:9;23393:18;23385:26;;23457:9;23451:4;23447:20;23443:1;23432:9;23428:17;23421:47;23485:108;23588:4;23579:6;23485:108;:::i;:::-;23477:116;;23375:225;;;;:::o;23606:210::-;;23731:2;23720:9;23716:18;23708:26;;23744:65;23806:1;23795:9;23791:17;23782:6;23744:65;:::i;:::-;23698:118;;;;:::o;23822:313::-;;23973:2;23962:9;23958:18;23950:26;;24022:9;24016:4;24012:20;24008:1;23997:9;23993:17;23986:47;24050:78;24123:4;24114:6;24050:78;:::i;:::-;24042:86;;23940:195;;;;:::o;24141:419::-;;24345:2;24334:9;24330:18;24322:26;;24394:9;24388:4;24384:20;24380:1;24369:9;24365:17;24358:47;24422:131;24548:4;24422:131;:::i;:::-;24414:139;;24312:248;;;:::o;24566:419::-;;24770:2;24759:9;24755:18;24747:26;;24819:9;24813:4;24809:20;24805:1;24794:9;24790:17;24783:47;24847:131;24973:4;24847:131;:::i;:::-;24839:139;;24737:248;;;:::o;24991:419::-;;25195:2;25184:9;25180:18;25172:26;;25244:9;25238:4;25234:20;25230:1;25219:9;25215:17;25208:47;25272:131;25398:4;25272:131;:::i;:::-;25264:139;;25162:248;;;:::o;25416:419::-;;25620:2;25609:9;25605:18;25597:26;;25669:9;25663:4;25659:20;25655:1;25644:9;25640:17;25633:47;25697:131;25823:4;25697:131;:::i;:::-;25689:139;;25587:248;;;:::o;25841:419::-;;26045:2;26034:9;26030:18;26022:26;;26094:9;26088:4;26084:20;26080:1;26069:9;26065:17;26058:47;26122:131;26248:4;26122:131;:::i;:::-;26114:139;;26012:248;;;:::o;26266:419::-;;26470:2;26459:9;26455:18;26447:26;;26519:9;26513:4;26509:20;26505:1;26494:9;26490:17;26483:47;26547:131;26673:4;26547:131;:::i;:::-;26539:139;;26437:248;;;:::o;26691:419::-;;26895:2;26884:9;26880:18;26872:26;;26944:9;26938:4;26934:20;26930:1;26919:9;26915:17;26908:47;26972:131;27098:4;26972:131;:::i;:::-;26964:139;;26862:248;;;:::o;27116:419::-;;27320:2;27309:9;27305:18;27297:26;;27369:9;27363:4;27359:20;27355:1;27344:9;27340:17;27333:47;27397:131;27523:4;27397:131;:::i;:::-;27389:139;;27287:248;;;:::o;27541:419::-;;27745:2;27734:9;27730:18;27722:26;;27794:9;27788:4;27784:20;27780:1;27769:9;27765:17;27758:47;27822:131;27948:4;27822:131;:::i;:::-;27814:139;;27712:248;;;:::o;27966:419::-;;28170:2;28159:9;28155:18;28147:26;;28219:9;28213:4;28209:20;28205:1;28194:9;28190:17;28183:47;28247:131;28373:4;28247:131;:::i;:::-;28239:139;;28137:248;;;:::o;28391:419::-;;28595:2;28584:9;28580:18;28572:26;;28644:9;28638:4;28634:20;28630:1;28619:9;28615:17;28608:47;28672:131;28798:4;28672:131;:::i;:::-;28664:139;;28562:248;;;:::o;28816:419::-;;29020:2;29009:9;29005:18;28997:26;;29069:9;29063:4;29059:20;29055:1;29044:9;29040:17;29033:47;29097:131;29223:4;29097:131;:::i;:::-;29089:139;;28987:248;;;:::o;29241:419::-;;29445:2;29434:9;29430:18;29422:26;;29494:9;29488:4;29484:20;29480:1;29469:9;29465:17;29458:47;29522:131;29648:4;29522:131;:::i;:::-;29514:139;;29412:248;;;:::o;29666:419::-;;29870:2;29859:9;29855:18;29847:26;;29919:9;29913:4;29909:20;29905:1;29894:9;29890:17;29883:47;29947:131;30073:4;29947:131;:::i;:::-;29939:139;;29837:248;;;:::o;30091:419::-;;30295:2;30284:9;30280:18;30272:26;;30344:9;30338:4;30334:20;30330:1;30319:9;30315:17;30308:47;30372:131;30498:4;30372:131;:::i;:::-;30364:139;;30262:248;;;:::o;30516:419::-;;30720:2;30709:9;30705:18;30697:26;;30769:9;30763:4;30759:20;30755:1;30744:9;30740:17;30733:47;30797:131;30923:4;30797:131;:::i;:::-;30789:139;;30687:248;;;:::o;30941:419::-;;31145:2;31134:9;31130:18;31122:26;;31194:9;31188:4;31184:20;31180:1;31169:9;31165:17;31158:47;31222:131;31348:4;31222:131;:::i;:::-;31214:139;;31112:248;;;:::o;31366:419::-;;31570:2;31559:9;31555:18;31547:26;;31619:9;31613:4;31609:20;31605:1;31594:9;31590:17;31583:47;31647:131;31773:4;31647:131;:::i;:::-;31639:139;;31537:248;;;:::o;31791:419::-;;31995:2;31984:9;31980:18;31972:26;;32044:9;32038:4;32034:20;32030:1;32019:9;32015:17;32008:47;32072:131;32198:4;32072:131;:::i;:::-;32064:139;;31962:248;;;:::o;32216:419::-;;32420:2;32409:9;32405:18;32397:26;;32469:9;32463:4;32459:20;32455:1;32444:9;32440:17;32433:47;32497:131;32623:4;32497:131;:::i;:::-;32489:139;;32387:248;;;:::o;32641:419::-;;32845:2;32834:9;32830:18;32822:26;;32894:9;32888:4;32884:20;32880:1;32869:9;32865:17;32858:47;32922:131;33048:4;32922:131;:::i;:::-;32914:139;;32812:248;;;:::o;33066:419::-;;33270:2;33259:9;33255:18;33247:26;;33319:9;33313:4;33309:20;33305:1;33294:9;33290:17;33283:47;33347:131;33473:4;33347:131;:::i;:::-;33339:139;;33237:248;;;:::o;33491:419::-;;33695:2;33684:9;33680:18;33672:26;;33744:9;33738:4;33734:20;33730:1;33719:9;33715:17;33708:47;33772:131;33898:4;33772:131;:::i;:::-;33764:139;;33662:248;;;:::o;33916:419::-;;34120:2;34109:9;34105:18;34097:26;;34169:9;34163:4;34159:20;34155:1;34144:9;34140:17;34133:47;34197:131;34323:4;34197:131;:::i;:::-;34189:139;;34087:248;;;:::o;34341:419::-;;34545:2;34534:9;34530:18;34522:26;;34594:9;34588:4;34584:20;34580:1;34569:9;34565:17;34558:47;34622:131;34748:4;34622:131;:::i;:::-;34614:139;;34512:248;;;:::o;34766:419::-;;34970:2;34959:9;34955:18;34947:26;;35019:9;35013:4;35009:20;35005:1;34994:9;34990:17;34983:47;35047:131;35173:4;35047:131;:::i;:::-;35039:139;;34937:248;;;:::o;35191:419::-;;35395:2;35384:9;35380:18;35372:26;;35444:9;35438:4;35434:20;35430:1;35419:9;35415:17;35408:47;35472:131;35598:4;35472:131;:::i;:::-;35464:139;;35362:248;;;:::o;35616:419::-;;35820:2;35809:9;35805:18;35797:26;;35869:9;35863:4;35859:20;35855:1;35844:9;35840:17;35833:47;35897:131;36023:4;35897:131;:::i;:::-;35889:139;;35787:248;;;:::o;36041:419::-;;36245:2;36234:9;36230:18;36222:26;;36294:9;36288:4;36284:20;36280:1;36269:9;36265:17;36258:47;36322:131;36448:4;36322:131;:::i;:::-;36314:139;;36212:248;;;:::o;36466:419::-;;36670:2;36659:9;36655:18;36647:26;;36719:9;36713:4;36709:20;36705:1;36694:9;36690:17;36683:47;36747:131;36873:4;36747:131;:::i;:::-;36739:139;;36637:248;;;:::o;36891:419::-;;37095:2;37084:9;37080:18;37072:26;;37144:9;37138:4;37134:20;37130:1;37119:9;37115:17;37108:47;37172:131;37298:4;37172:131;:::i;:::-;37164:139;;37062:248;;;:::o;37316:419::-;;37520:2;37509:9;37505:18;37497:26;;37569:9;37563:4;37559:20;37555:1;37544:9;37540:17;37533:47;37597:131;37723:4;37597:131;:::i;:::-;37589:139;;37487:248;;;:::o;37741:419::-;;37945:2;37934:9;37930:18;37922:26;;37994:9;37988:4;37984:20;37980:1;37969:9;37965:17;37958:47;38022:131;38148:4;38022:131;:::i;:::-;38014:139;;37912:248;;;:::o;38166:222::-;;38297:2;38286:9;38282:18;38274:26;;38310:71;38378:1;38367:9;38363:17;38354:6;38310:71;:::i;:::-;38264:124;;;;:::o;38394:332::-;;38553:2;38542:9;38538:18;38530:26;;38566:71;38634:1;38623:9;38619:17;38610:6;38566:71;:::i;:::-;38647:72;38715:2;38704:9;38700:18;38691:6;38647:72;:::i;:::-;38520:206;;;;;:::o;38732:283::-;;38798:2;38792:9;38782:19;;38840:4;38832:6;38828:17;38947:6;38935:10;38932:22;38911:18;38899:10;38896:34;38893:62;38890:2;;;38958:18;;:::i;:::-;38890:2;38998:10;38994:2;38987:22;38772:243;;;;:::o;39021:331::-;;39172:18;39164:6;39161:30;39158:2;;;39194:18;;:::i;:::-;39158:2;39279:4;39275:9;39268:4;39260:6;39256:17;39252:33;39244:41;;39340:4;39334;39330:15;39322:23;;39087:265;;;:::o;39358:332::-;;39510:18;39502:6;39499:30;39496:2;;;39532:18;;:::i;:::-;39496:2;39617:4;39613:9;39606:4;39598:6;39594:17;39590:33;39582:41;;39678:4;39672;39668:15;39660:23;;39425:265;;;:::o;39696:132::-;;39786:3;39778:11;;39816:4;39811:3;39807:14;39799:22;;39768:60;;;:::o;39834:114::-;;39935:5;39929:12;39919:22;;39908:40;;;:::o;39954:98::-;;40039:5;40033:12;40023:22;;40012:40;;;:::o;40058:99::-;;40144:5;40138:12;40128:22;;40117:40;;;:::o;40163:113::-;;40265:4;40260:3;40256:14;40248:22;;40238:38;;;:::o;40282:184::-;;40415:6;40410:3;40403:19;40455:4;40450:3;40446:14;40431:29;;40393:73;;;;:::o;40472:168::-;;40589:6;40584:3;40577:19;40629:4;40624:3;40620:14;40605:29;;40567:73;;;;:::o;40646:169::-;;40764:6;40759:3;40752:19;40804:4;40799:3;40795:14;40780:29;;40742:73;;;;:::o;40821:148::-;;40960:3;40945:18;;40935:34;;;;:::o;40975:305::-;;41034:20;41052:1;41034:20;:::i;:::-;41029:25;;41068:20;41086:1;41068:20;:::i;:::-;41063:25;;41222:1;41154:66;41150:74;41147:1;41144:81;41141:2;;;41228:18;;:::i;:::-;41141:2;41272:1;41269;41265:9;41258:16;;41019:261;;;;:::o;41286:185::-;;41343:20;41361:1;41343:20;:::i;:::-;41338:25;;41377:20;41395:1;41377:20;:::i;:::-;41372:25;;41416:1;41406:2;;41421:18;;:::i;:::-;41406:2;41463:1;41460;41456:9;41451:14;;41328:143;;;;:::o;41477:348::-;;41540:20;41558:1;41540:20;:::i;:::-;41535:25;;41574:20;41592:1;41574:20;:::i;:::-;41569:25;;41762:1;41694:66;41690:74;41687:1;41684:81;41679:1;41672:9;41665:17;41661:105;41658:2;;;41769:18;;:::i;:::-;41658:2;41817:1;41814;41810:9;41799:20;;41525:300;;;;:::o;41831:191::-;;41891:20;41909:1;41891:20;:::i;:::-;41886:25;;41925:20;41943:1;41925:20;:::i;:::-;41920:25;;41964:1;41961;41958:8;41955:2;;;41969:18;;:::i;:::-;41955:2;42014:1;42011;42007:9;41999:17;;41876:146;;;;:::o;42028:96::-;;42094:24;42112:5;42094:24;:::i;:::-;42083:35;;42073:51;;;:::o;42130:90::-;;42207:5;42200:13;42193:21;42182:32;;42172:48;;;:::o;42226:149::-;;42302:66;42295:5;42291:78;42280:89;;42270:105;;;:::o;42381:126::-;;42458:42;42451:5;42447:54;42436:65;;42426:81;;;:::o;42513:77::-;;42579:5;42568:16;;42558:32;;;:::o;42596:154::-;42680:6;42675:3;42670;42657:30;42742:1;42733:6;42728:3;42724:16;42717:27;42647:103;;;:::o;42756:307::-;42824:1;42834:113;42848:6;42845:1;42842:13;42834:113;;;42933:1;42928:3;42924:11;42918:18;42914:1;42909:3;42905:11;42898:39;42870:2;42867:1;42863:10;42858:15;;42834:113;;;42965:6;42962:1;42959:13;42956:2;;;43045:1;43036:6;43031:3;43027:16;43020:27;42956:2;42805:258;;;;:::o;43069:320::-;;43150:1;43144:4;43140:12;43130:22;;43197:1;43191:4;43187:12;43218:18;43208:2;;43274:4;43266:6;43262:17;43252:27;;43208:2;43336;43328:6;43325:14;43305:18;43302:38;43299:2;;;43355:18;;:::i;:::-;43299:2;43120:269;;;;:::o;43395:233::-;;43457:24;43475:5;43457:24;:::i;:::-;43448:33;;43503:66;43496:5;43493:77;43490:2;;;43573:18;;:::i;:::-;43490:2;43620:1;43613:5;43609:13;43602:20;;43438:190;;;:::o;43634:176::-;;43683:20;43701:1;43683:20;:::i;:::-;43678:25;;43717:20;43735:1;43717:20;:::i;:::-;43712:25;;43756:1;43746:2;;43761:18;;:::i;:::-;43746:2;43802:1;43799;43795:9;43790:14;;43668:142;;;;:::o;43816:180::-;43864:77;43861:1;43854:88;43961:4;43958:1;43951:15;43985:4;43982:1;43975:15;44002:180;44050:77;44047:1;44040:88;44147:4;44144:1;44137:15;44171:4;44168:1;44161:15;44188:180;44236:77;44233:1;44226:88;44333:4;44330:1;44323:15;44357:4;44354:1;44347:15;44374:180;44422:77;44419:1;44412:88;44519:4;44516:1;44509:15;44543:4;44540:1;44533:15;44560:102;;44652:2;44648:7;44643:2;44636:5;44632:14;44628:28;44618:38;;44608:54;;;:::o;44668:122::-;44741:24;44759:5;44741:24;:::i;:::-;44734:5;44731:35;44721:2;;44780:1;44777;44770:12;44721:2;44711:79;:::o;44796:116::-;44866:21;44881:5;44866:21;:::i;:::-;44859:5;44856:32;44846:2;;44902:1;44899;44892:12;44846:2;44836:76;:::o;44918:120::-;44990:23;45007:5;44990:23;:::i;:::-;44983:5;44980:34;44970:2;;45028:1;45025;45018:12;44970:2;44960:78;:::o;45044:122::-;45117:24;45135:5;45117:24;:::i;:::-;45110:5;45107:35;45097:2;;45156:1;45153;45146:12;45097:2;45087:79;:::o

Swarm Source

ipfs://10961d11f8ea0464ffef17b18e7c15490297f6bf4e84cee0b0fcf187e1956ac3
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.