ETH Price: $3,493.47 (+3.63%)
Gas: 4 Gwei

Token

Party Grandpa Retirement Club (PGRC)
 

Overview

Max Total Supply

6,000 PGRC

Holders

2,612

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
stfnlb.eth
Balance
3 PGRC
0x996d36a1f4dc7a497a685cd33356d2311fe9015f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Party Grandpa Retirement Club is a collection of 6,000 unique Party Grandpa NFTs that grant access to an exclusive Retirement Club. #GetRetired

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PGRC

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 13 of 14: PGRC.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

contract PGRC is ERC721Enumerable, Ownable {
  uint256 public mintPrice = 0.1 ether;

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

  string _baseTokenURI;

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

  uint256 private MAX_MINTSUPPLY = 10300;

  uint256 public maximumAllowedTokensPerPurchase = 10;
  uint256 public maximumAllowedTokensPerWallet = 10000;
  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("Party Grandpa Retirement Club", "PGRC") {
    setBaseURI(baseURI);
  }

  modifier saleIsOpen {
    require(totalSupply() <= MAX_MINTSUPPLY, "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 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 <= MAX_MINTSUPPLY, "Total supply exceeded.");
    require(totalSupply() <= MAX_MINTSUPPLY, "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 <= MAX_MINTSUPPLY, "Total supply exceeded.");
      require(supply <= MAX_MINTSUPPLY, "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() < MAX_MINTSUPPLY, '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

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

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 3 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 4 of 14: ERC165.sol
// SPDX-License-Identifier: MIT

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 5 of 14: ERC721.sol
// SPDX-License-Identifier: MIT

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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 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 6 of 14: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 7 of 14: IERC165.sol
// SPDX-License-Identifier: MIT

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 8 of 14: IERC721.sol
// SPDX-License-Identifier: MIT

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 9 of 14: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 10 of 14: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 11 of 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 12 of 14: Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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":[{"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":"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"}]

608060405267016345785d8a0000600b556032600c556000600d5561012c600e556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff02191690831515021790555061283c601155600a60125561271060135560026014553480156200007957600080fd5b5060405162005f1338038062005f1383398181016040528101906200009f9190620003f5565b6040518060400160405280601d81526020017f5061727479204772616e647061205265746972656d656e7420436c75620000008152506040518060400160405280600481526020017f5047524300000000000000000000000000000000000000000000000000000000815250816000908051906020019062000123929190620002d3565b5080600190805190602001906200013c929190620002d3565b5050506200015f620001536200017760201b60201c565b6200017f60201b60201c565b62000170816200024560201b60201c565b506200056b565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff166200026c620002a960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200028d57600080fd5b80600f9080519060200190620002a5929190620002d3565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002e190620004d7565b90600052602060002090601f01602090048101928262000305576000855562000351565b82601f106200032057805160ff191683800117855562000351565b8280016001018555821562000351579182015b828111156200035057825182559160200191906001019062000333565b5b50905062000360919062000364565b5090565b5b808211156200037f57600081600090555060010162000365565b5090565b60006200039a62000394846200046e565b6200043a565b905082815260208101848484011115620003b357600080fd5b620003c0848285620004a1565b509392505050565b600082601f830112620003da57600080fd5b8151620003ec84826020860162000383565b91505092915050565b6000602082840312156200040857600080fd5b600082015167ffffffffffffffff8111156200042357600080fd5b6200043184828501620003c8565b91505092915050565b6000604051905081810181811067ffffffffffffffff821117156200046457620004636200053c565b5b8060405250919050565b600067ffffffffffffffff8211156200048c576200048b6200053c565b5b601f19601f8301169050602081019050919050565b60005b83811015620004c1578082015181840152602081019050620004a4565b83811115620004d1576000848401525b50505050565b60006002820490506001821680620004f057607f821691505b602082108114156200050757620005066200050d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b615998806200057b6000396000f3fe6080604052600436106102c85760003560e01c806371e3500c11610175578063a51312c8116100dc578063cadf881811610095578063e985e9c51161006f578063e985e9c514610ac1578063ea6eb83614610afe578063f2fde38b14610b27578063f6c9d9e314610b50576102c8565b8063cadf881814610a42578063e7b62d9614610a6d578063e82b2a7114610a98576102c8565b8063a51312c814610934578063acec338a1461095d578063ad06d75814610986578063b88d4fde146109b1578063c4e41b22146109da578063c87b56dd14610a05576102c8565b80638da5cb5b1161012e5780638da5cb5b1461083657806391b7f5ed1461086157806395d89b411461088a57806398d5fdca146108b55780639a3bf728146108e0578063a22cb4651461090b576102c8565b806371e3500c1461075d5780637263cfe21461077457806377b501b91461079d5780637835c635146107c65780637a6685f1146107e25780637f44ab2f1461080b576102c8565b806340c10f191161023457806355f804b3116101ed5780636817c76c116101c75780636817c76c146106b557806370a08231146106e0578063715018a61461071d578063718bc4af14610734576102c8565b806355f804b31461062657806356a87caa1461064f5780636352211e14610678576102c8565b806340c10f191461051357806342842e0e1461052f578063438b630014610558578063442890d5146105955780634dfea627146105c05780634f6ccce7146105e9576102c8565b806322f3e2d41161028657806322f3e2d41461040357806323b872dd1461042e57806329fc6bae146104575780632c1205f4146104825780632f745c59146104bf5780633ccfd60b146104fc576102c8565b806208ffdd146102cd57806301ffc9a71461030a57806306fdde0314610347578063081812fc14610372578063095ea7b3146103af57806318160ddd146103d8575b600080fd5b3480156102d957600080fd5b506102f460048036038101906102ef9190614095565b610b79565b6040516103019190615471565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c91906142aa565b610c31565b60405161033e9190615014565b60405180910390f35b34801561035357600080fd5b5061035c610cab565b604051610369919061502f565b60405180910390f35b34801561037e57600080fd5b506103996004803603810190610394919061433d565b610d3d565b6040516103a69190614f8b565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190614200565b610dc2565b005b3480156103e457600080fd5b506103ed610eda565b6040516103fa9190615471565b60405180910390f35b34801561040f57600080fd5b50610418610ee7565b6040516104259190615014565b60405180910390f35b34801561043a57600080fd5b50610455600480360381019061045091906140fa565b610efa565b005b34801561046357600080fd5b5061046c610f5a565b6040516104799190615014565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190614095565b610f6d565b6040516104b69190615014565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190614200565b610fc3565b6040516104f39190615471565b60405180910390f35b34801561050857600080fd5b50610511611068565b005b61052d60048036038101906105289190614200565b6110fd565b005b34801561053b57600080fd5b50610556600480360381019061055191906140fa565b611412565b005b34801561056457600080fd5b5061057f600480360381019061057a9190614095565b611432565b60405161058c9190614ff2565b60405180910390f35b3480156105a157600080fd5b506105aa61152c565b6040516105b79190614f8b565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e2919061433d565b61153b565b005b3480156105f557600080fd5b50610610600480360381019061060b919061433d565b611584565b60405161061d9190615471565b60405180910390f35b34801561063257600080fd5b5061064d600480360381019061064891906142fc565b61161b565b005b34801561065b57600080fd5b506106766004803603810190610671919061433d565b611674565b005b34801561068457600080fd5b5061069f600480360381019061069a919061433d565b6116bd565b6040516106ac9190614f8b565b60405180910390f35b3480156106c157600080fd5b506106ca61176f565b6040516106d79190615471565b60405180910390f35b3480156106ec57600080fd5b5061070760048036038101906107029190614095565b611775565b6040516107149190615471565b60405180910390f35b34801561072957600080fd5b5061073261182d565b005b34801561074057600080fd5b5061075b60048036038101906107569190614281565b6118b5565b005b34801561076957600080fd5b50610772611911565b005b34801561078057600080fd5b5061079b6004803603810190610796919061423c565b611a38565b005b3480156107a957600080fd5b506107c460048036038101906107bf9190614200565b611d29565b005b6107e060048036038101906107db919061433d565b611ddc565b005b3480156107ee57600080fd5b506108096004803603810190610804919061433d565b61213c565b005b34801561081757600080fd5b50610820612185565b60405161082d9190615471565b60405180910390f35b34801561084257600080fd5b5061084b61218b565b6040516108589190614f8b565b60405180910390f35b34801561086d57600080fd5b506108886004803603810190610883919061433d565b6121b5565b005b34801561089657600080fd5b5061089f6121fe565b6040516108ac919061502f565b60405180910390f35b3480156108c157600080fd5b506108ca612290565b6040516108d79190615471565b60405180910390f35b3480156108ec57600080fd5b506108f561229a565b6040516109029190615471565b60405180910390f35b34801561091757600080fd5b50610932600480360381019061092d91906141c4565b6122a0565b005b34801561094057600080fd5b5061095b6004803603810190610956919061423c565b612421565b005b34801561096957600080fd5b50610984600480360381019061097f9190614281565b6125e8565b005b34801561099257600080fd5b5061099b61267b565b6040516109a89190615471565b60405180910390f35b3480156109bd57600080fd5b506109d860048036038101906109d39190614149565b6126c4565b005b3480156109e657600080fd5b506109ef612726565b6040516109fc9190615471565b60405180910390f35b348015610a1157600080fd5b50610a2c6004803603810190610a27919061433d565b612735565b604051610a39919061502f565b60405180910390f35b348015610a4e57600080fd5b50610a576127dc565b604051610a649190615471565b60405180910390f35b348015610a7957600080fd5b50610a826127e2565b604051610a8f9190615471565b60405180910390f35b348015610aa457600080fd5b50610abf6004803603810190610aba9190614366565b6127ec565b005b348015610acd57600080fd5b50610ae86004803603810190610ae391906140be565b612abb565b604051610af59190615014565b60405180910390f35b348015610b0a57600080fd5b50610b256004803603810190610b20919061433d565b612b4f565b005b348015610b3357600080fd5b50610b4e6004803603810190610b499190614095565b612b98565b005b348015610b5c57600080fd5b50610b776004803603810190610b72919061433d565b612c90565b005b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be1906152d1565b60405180910390fd5b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ca45750610ca382612cd9565b5b9050919050565b606060008054610cba9061578d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce69061578d565b8015610d335780601f10610d0857610100808354040283529160200191610d33565b820191906000526020600020905b815481529060010190602001808311610d1657829003601f168201915b5050505050905090565b6000610d4882612dbb565b610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e90615271565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dcd826116bd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590615351565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e5d612e27565b73ffffffffffffffffffffffffffffffffffffffff161480610e8c5750610e8b81610e86612e27565b612abb565b5b610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec2906151f1565b60405180910390fd5b610ed58383612e2f565b505050565b6000600880549050905090565b601060009054906101000a900460ff1681565b610f0b610f05612e27565b82612ee8565b610f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4190615391565b60405180910390fd5b610f55838383612fc6565b505050565b601060019054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610fce83611775565b821061100f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611006906150d1565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1661108761218b565b73ffffffffffffffffffffffffffffffffffffffff16146110a757600080fd5b60004790506110b461218b565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110f9573d6000803e3d6000fd5b5050565b601154611108610eda565b1115611149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114090615171565b60405180910390fd5b61115161218b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111d357601060009054906101000a900460ff166111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c9906150b1565b60405180910390fd5b5b6111db61218b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611266576013548161121a84611775565b61122491906155c2565b1115611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c90615151565b60405180910390fd5b5b60115481611272610eda565b61127c91906155c2565b11156112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b490615371565b60405180910390fd5b6011546112c8610eda565b1115611309576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611300906153d1565b60405180910390fd5b60125481111561134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134590615331565b60405180910390fd5b80600b5461135c9190615649565b34101561139e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611395906153f1565b60405180910390fd5b60005b8181101561140d577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556113d2610eda565b846040516113e192919061548c565b60405180910390a16113fa836113f5610eda565b613222565b8080611405906157bf565b9150506113a1565b505050565b61142d838383604051806020016040528060008152506126c4565b505050565b6060600061143f83611775565b905060008167ffffffffffffffff811115611483577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114b15781602001602082028036833780820191505090505b50905060005b82811015611521576114c98582610fc3565b828281518110611502577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611519906157bf565b9150506114b7565b508092505050919050565b600061153661218b565b905090565b3373ffffffffffffffffffffffffffffffffffffffff1661155a61218b565b73ffffffffffffffffffffffffffffffffffffffff161461157a57600080fd5b8060128190555050565b600061158e610eda565b82106115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c6906153b1565b60405180910390fd5b60088281548110611609577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b3373ffffffffffffffffffffffffffffffffffffffff1661163a61218b565b73ffffffffffffffffffffffffffffffffffffffff161461165a57600080fd5b80600f9080519060200190611670929190613e6f565b5050565b3373ffffffffffffffffffffffffffffffffffffffff1661169361218b565b73ffffffffffffffffffffffffffffffffffffffff16146116b357600080fd5b80600e8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175d90615231565b60405180910390fd5b80915050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90615211565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611835612e27565b73ffffffffffffffffffffffffffffffffffffffff1661185361218b565b73ffffffffffffffffffffffffffffffffffffffff16146118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a0906152b1565b60405180910390fd5b6118b36000613240565b565b3373ffffffffffffffffffffffffffffffffffffffff166118d461218b565b73ffffffffffffffffffffffffffffffffffffffff16146118f457600080fd5b80601060016101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff1661193061218b565b73ffffffffffffffffffffffffffffffffffffffff161461195057600080fd5b600e54600d541115611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e90615051565b60405180910390fd5b60006119a1610eda565b905060005b600c54811015611a34577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd35581836119dd91906155c2565b336040516119ec92919061548c565b60405180910390a1611a09338284611a0491906155c2565b613222565b600d6000815480929190611a1c906157bf565b91905055508080611a2c906157bf565b9150506119a6565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611a5761218b565b73ffffffffffffffffffffffffffffffffffffffff1614611a7757600080fd5b60005b82829050811015611d2457600073ffffffffffffffffffffffffffffffffffffffff16838383818110611ad6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611aeb9190614095565b73ffffffffffffffffffffffffffffffffffffffff161415611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3990615291565b60405180910390fd5b600160156000858585818110611b81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611b969190614095565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060166000858585818110611c26577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611c3b9190614095565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611c82576000611d10565b60166000848484818110611cbf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611cd49190614095565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b508080611d1c906157bf565b915050611a7a565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16611d4861218b565b73ffffffffffffffffffffffffffffffffffffffff1614611d6857600080fd5b60005b81811015611dd7577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611d9c610eda565b84604051611dab92919061548c565b60405180910390a1611dc483611dbf610eda565b613222565b8080611dcf906157bf565b915050611d6b565b505050565b601154611de7610eda565b1115611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90615171565b60405180910390fd5b601060019054906101000a900460ff16611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e90615071565b60405180910390fd5b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efa90615091565b60405180910390fd5b601154611f0e610eda565b10611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4590615431565b60405180910390fd5b601454811115611f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8a90615451565b60405180910390fd5b60145481601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fe191906155c2565b1115612022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201990615411565b60405180910390fd5b80600b546120309190615649565b341015612072576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612069906153f1565b60405180910390fd5b60005b81811015612138576001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120cd91906155c2565b925050819055507f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556120fd610eda565b3360405161210c92919061548c565b60405180910390a161212533612120610eda565b613222565b8080612130906157bf565b915050612075565b5050565b3373ffffffffffffffffffffffffffffffffffffffff1661215b61218b565b73ffffffffffffffffffffffffffffffffffffffff161461217b57600080fd5b8060148190555050565b60145481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff166121d461218b565b73ffffffffffffffffffffffffffffffffffffffff16146121f457600080fd5b80600b8190555050565b60606001805461220d9061578d565b80601f01602080910402602001604051908101604052809291908181526020018280546122399061578d565b80156122865780601f1061225b57610100808354040283529160200191612286565b820191906000526020600020905b81548152906001019060200180831161226957829003601f168201915b5050505050905090565b6000600b54905090565b60125481565b6122a8612e27565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230d906151b1565b60405180910390fd5b8060056000612323612e27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123d0612e27565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124159190615014565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff1661244061218b565b73ffffffffffffffffffffffffffffffffffffffff161461246057600080fd5b60005b828290508110156125e357600073ffffffffffffffffffffffffffffffffffffffff168383838181106124bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906124d49190614095565b73ffffffffffffffffffffffffffffffffffffffff16141561252b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252290615291565b60405180910390fd5b60006015600085858581811061256a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061257f9190614095565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806125db906157bf565b915050612463565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1661260761218b565b73ffffffffffffffffffffffffffffffffffffffff161461262757600080fd5b80601060006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f816040516126709190615014565b60405180910390a150565b60003373ffffffffffffffffffffffffffffffffffffffff1661269c61218b565b73ffffffffffffffffffffffffffffffffffffffff16146126bc57600080fd5b601254905090565b6126d56126cf612e27565b83612ee8565b612714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270b90615391565b60405180910390fd5b61272084848484613306565b50505050565b6000612730610eda565b905090565b606061274082612dbb565b61277f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277690615311565b60405180910390fd5b6000612789613362565b905060008151116127a957604051806020016040528060008152506127d4565b806127b3846133f4565b6040516020016127c4929190614f67565b6040516020818303038152906040525b915050919050565b60135481565b6000600c54905090565b3373ffffffffffffffffffffffffffffffffffffffff1661280b61218b565b73ffffffffffffffffffffffffffffffffffffffff161461282b57600080fd5b6000612835610eda565b9050601154848261284691906155c2565b1115612887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287e90615371565b60405180910390fd5b6011548111156128cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c3906153d1565b60405180910390fd5b60005b83839050811015612ab457600073ffffffffffffffffffffffffffffffffffffffff1684848381811061292b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906129409190614095565b73ffffffffffffffffffffffffffffffffffffffff161415612997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298e90615291565b60405180910390fd5b60005b85811015612aa0577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556129cb610eda565b868685818110612a04577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190612a199190614095565b604051612a2792919061548c565b60405180910390a1612a8d858584818110612a6b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190612a809190614095565b612a88610eda565b613222565b8080612a98906157bf565b91505061299a565b508080612aac906157bf565b9150506128cf565b5050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16612b6e61218b565b73ffffffffffffffffffffffffffffffffffffffff1614612b8e57600080fd5b8060138190555050565b612ba0612e27565b73ffffffffffffffffffffffffffffffffffffffff16612bbe61218b565b73ffffffffffffffffffffffffffffffffffffffff1614612c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0b906152b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7b90615111565b60405180910390fd5b612c8d81613240565b50565b3373ffffffffffffffffffffffffffffffffffffffff16612caf61218b565b73ffffffffffffffffffffffffffffffffffffffff1614612ccf57600080fd5b80600c8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612da457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612db45750612db3826135a1565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ea2836116bd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ef382612dbb565b612f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f29906151d1565b60405180910390fd5b6000612f3d836116bd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612fac57508373ffffffffffffffffffffffffffffffffffffffff16612f9484610d3d565b73ffffffffffffffffffffffffffffffffffffffff16145b80612fbd5750612fbc8185612abb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612fe6826116bd565b73ffffffffffffffffffffffffffffffffffffffff161461303c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613033906152f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a390615191565b60405180910390fd5b6130b783838361360b565b6130c2600082612e2f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461311291906156a3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461316991906155c2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61323c82826040518060200160405280600081525061371f565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613311848484612fc6565b61331d8484848461377a565b61335c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613353906150f1565b60405180910390fd5b50505050565b6060600f80546133719061578d565b80601f016020809104026020016040519081016040528092919081815260200182805461339d9061578d565b80156133ea5780601f106133bf576101008083540402835291602001916133ea565b820191906000526020600020905b8154815290600101906020018083116133cd57829003601f168201915b5050505050905090565b6060600082141561343c576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061359c565b600082905060005b6000821461346e578080613457906157bf565b915050600a826134679190615618565b9150613444565b60008167ffffffffffffffff8111156134b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134e25781602001600182028036833780820191505090505b5090505b60008514613595576001826134fb91906156a3565b9150600a8561350a9190615808565b603061351691906155c2565b60f81b818381518110613552577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561358e9190615618565b94506134e6565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613616838383613911565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136595761365481613916565b613698565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461369757613696838261395f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136db576136d681613acc565b61371a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613719576137188282613c0f565b5b5b505050565b6137298383613c8e565b613736600084848461377a565b613775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376c906150f1565b60405180910390fd5b505050565b600061379b8473ffffffffffffffffffffffffffffffffffffffff16613e5c565b15613904578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137c4612e27565b8786866040518563ffffffff1660e01b81526004016137e69493929190614fa6565b602060405180830381600087803b15801561380057600080fd5b505af192505050801561383157506040513d601f19601f8201168201806040525081019061382e91906142d3565b60015b6138b4573d8060008114613861576040519150601f19603f3d011682016040523d82523d6000602084013e613866565b606091505b506000815114156138ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138a3906150f1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613909565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161396c84611775565b61397691906156a3565b9050600060076000848152602001908152602001600020549050818114613a5b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613ae091906156a3565b9050600060096000848152602001908152602001600020549050600060088381548110613b36577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613b7e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613bf3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613c1a83611775565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cf590615251565b60405180910390fd5b613d0781612dbb565b15613d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d3e90615131565b60405180910390fd5b613d536000838361360b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613da391906155c2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613e7b9061578d565b90600052602060002090601f016020900481019282613e9d5760008555613ee4565b82601f10613eb657805160ff1916838001178555613ee4565b82800160010185558215613ee4579182015b82811115613ee3578251825591602001919060010190613ec8565b5b509050613ef19190613ef5565b5090565b5b80821115613f0e576000816000905550600101613ef6565b5090565b6000613f25613f20846154e6565b6154b5565b905082815260208101848484011115613f3d57600080fd5b613f4884828561574b565b509392505050565b6000613f63613f5e84615516565b6154b5565b905082815260208101848484011115613f7b57600080fd5b613f8684828561574b565b509392505050565b600081359050613f9d81615906565b92915050565b60008083601f840112613fb557600080fd5b8235905067ffffffffffffffff811115613fce57600080fd5b602083019150836020820283011115613fe657600080fd5b9250929050565b600081359050613ffc8161591d565b92915050565b60008135905061401181615934565b92915050565b60008151905061402681615934565b92915050565b600082601f83011261403d57600080fd5b813561404d848260208601613f12565b91505092915050565b600082601f83011261406757600080fd5b8135614077848260208601613f50565b91505092915050565b60008135905061408f8161594b565b92915050565b6000602082840312156140a757600080fd5b60006140b584828501613f8e565b91505092915050565b600080604083850312156140d157600080fd5b60006140df85828601613f8e565b92505060206140f085828601613f8e565b9150509250929050565b60008060006060848603121561410f57600080fd5b600061411d86828701613f8e565b935050602061412e86828701613f8e565b925050604061413f86828701614080565b9150509250925092565b6000806000806080858703121561415f57600080fd5b600061416d87828801613f8e565b945050602061417e87828801613f8e565b935050604061418f87828801614080565b925050606085013567ffffffffffffffff8111156141ac57600080fd5b6141b88782880161402c565b91505092959194509250565b600080604083850312156141d757600080fd5b60006141e585828601613f8e565b92505060206141f685828601613fed565b9150509250929050565b6000806040838503121561421357600080fd5b600061422185828601613f8e565b925050602061423285828601614080565b9150509250929050565b6000806020838503121561424f57600080fd5b600083013567ffffffffffffffff81111561426957600080fd5b61427585828601613fa3565b92509250509250929050565b60006020828403121561429357600080fd5b60006142a184828501613fed565b91505092915050565b6000602082840312156142bc57600080fd5b60006142ca84828501614002565b91505092915050565b6000602082840312156142e557600080fd5b60006142f384828501614017565b91505092915050565b60006020828403121561430e57600080fd5b600082013567ffffffffffffffff81111561432857600080fd5b61433484828501614056565b91505092915050565b60006020828403121561434f57600080fd5b600061435d84828501614080565b91505092915050565b60008060006040848603121561437b57600080fd5b600061438986828701614080565b935050602084013567ffffffffffffffff8111156143a657600080fd5b6143b286828701613fa3565b92509250509250925092565b60006143ca8383614f49565b60208301905092915050565b6143df816156d7565b82525050565b60006143f082615556565b6143fa8185615584565b935061440583615546565b8060005b8381101561443657815161441d88826143be565b975061442883615577565b925050600181019050614409565b5085935050505092915050565b61444c816156e9565b82525050565b600061445d82615561565b6144678185615595565b935061447781856020860161575a565b614480816158f5565b840191505092915050565b60006144968261556c565b6144a081856155a6565b93506144b081856020860161575a565b6144b9816158f5565b840191505092915050565b60006144cf8261556c565b6144d981856155b7565b93506144e981856020860161575a565b80840191505092915050565b6000614502601b836155a6565b91507f4d61782052657365727665732074616b656e20616c72656164792100000000006000830152602082019050919050565b60006145426018836155a6565b91507f416c6c6f77204c697374206973206e6f742061637469766500000000000000006000830152602082019050919050565b6000614582601d836155a6565b91507f596f7520617265206e6f74206f6e2074686520416c6c6f77204c6973740000006000830152602082019050919050565b60006145c2601d836155a6565b91507f53616c65206973206e6f74206163746976652063757272656e746c792e0000006000830152602082019050919050565b6000614602602b836155a6565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006146686032836155a6565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006146ce6026836155a6565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614734601c836155a6565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006147746018836155a6565b91507f4d617820686f6c64696e672063617020726561636865642e00000000000000006000830152602082019050919050565b60006147b4600f836155a6565b91507f53616c652068617320656e6465642e00000000000000000000000000000000006000830152602082019050919050565b60006147f46024836155a6565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061485a6019836155a6565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061489a602c836155a6565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006149006038836155a6565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614966602a836155a6565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006149cc6029836155a6565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a326020836155a6565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614a72602c836155a6565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614ad86018836155a6565b91507f43616e2774206164642061206e756c6c206164647265737300000000000000006000830152602082019050919050565b6000614b186020836155a6565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614b58601e836155a6565b91507f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c69737400006000830152602082019050919050565b6000614b986029836155a6565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614bfe602f836155a6565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614c64601e836155a6565b91507f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e7300006000830152602082019050919050565b6000614ca46021836155a6565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d0a6016836155a6565b91507f546f74616c20737570706c792065786365656465642e000000000000000000006000830152602082019050919050565b6000614d4a6031836155a6565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614db0602c836155a6565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614e166013836155a6565b91507f546f74616c20737570706c79207370656e742e000000000000000000000000006000830152602082019050919050565b6000614e56601b836155a6565b91507f496e7375666669656e742045544820616d6f756e742073656e742e00000000006000830152602082019050919050565b6000614e96601c836155a6565b91507f50757263686173652065786365656473206d617820616c6c6f776564000000006000830152602082019050919050565b6000614ed6601b836155a6565b91507f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006000830152602082019050919050565b6000614f166020836155a6565b91507f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736000830152602082019050919050565b614f5281615741565b82525050565b614f6181615741565b82525050565b6000614f7382856144c4565b9150614f7f82846144c4565b91508190509392505050565b6000602082019050614fa060008301846143d6565b92915050565b6000608082019050614fbb60008301876143d6565b614fc860208301866143d6565b614fd56040830185614f58565b8181036060830152614fe78184614452565b905095945050505050565b6000602082019050818103600083015261500c81846143e5565b905092915050565b60006020820190506150296000830184614443565b92915050565b60006020820190508181036000830152615049818461448b565b905092915050565b6000602082019050818103600083015261506a816144f5565b9050919050565b6000602082019050818103600083015261508a81614535565b9050919050565b600060208201905081810360008301526150aa81614575565b9050919050565b600060208201905081810360008301526150ca816145b5565b9050919050565b600060208201905081810360008301526150ea816145f5565b9050919050565b6000602082019050818103600083015261510a8161465b565b9050919050565b6000602082019050818103600083015261512a816146c1565b9050919050565b6000602082019050818103600083015261514a81614727565b9050919050565b6000602082019050818103600083015261516a81614767565b9050919050565b6000602082019050818103600083015261518a816147a7565b9050919050565b600060208201905081810360008301526151aa816147e7565b9050919050565b600060208201905081810360008301526151ca8161484d565b9050919050565b600060208201905081810360008301526151ea8161488d565b9050919050565b6000602082019050818103600083015261520a816148f3565b9050919050565b6000602082019050818103600083015261522a81614959565b9050919050565b6000602082019050818103600083015261524a816149bf565b9050919050565b6000602082019050818103600083015261526a81614a25565b9050919050565b6000602082019050818103600083015261528a81614a65565b9050919050565b600060208201905081810360008301526152aa81614acb565b9050919050565b600060208201905081810360008301526152ca81614b0b565b9050919050565b600060208201905081810360008301526152ea81614b4b565b9050919050565b6000602082019050818103600083015261530a81614b8b565b9050919050565b6000602082019050818103600083015261532a81614bf1565b9050919050565b6000602082019050818103600083015261534a81614c57565b9050919050565b6000602082019050818103600083015261536a81614c97565b9050919050565b6000602082019050818103600083015261538a81614cfd565b9050919050565b600060208201905081810360008301526153aa81614d3d565b9050919050565b600060208201905081810360008301526153ca81614da3565b9050919050565b600060208201905081810360008301526153ea81614e09565b9050919050565b6000602082019050818103600083015261540a81614e49565b9050919050565b6000602082019050818103600083015261542a81614e89565b9050919050565b6000602082019050818103600083015261544a81614ec9565b9050919050565b6000602082019050818103600083015261546a81614f09565b9050919050565b60006020820190506154866000830184614f58565b92915050565b60006040820190506154a16000830185614f58565b6154ae60208301846143d6565b9392505050565b6000604051905081810181811067ffffffffffffffff821117156154dc576154db6158c6565b5b8060405250919050565b600067ffffffffffffffff821115615501576155006158c6565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615531576155306158c6565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006155cd82615741565b91506155d883615741565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561560d5761560c615839565b5b828201905092915050565b600061562382615741565b915061562e83615741565b92508261563e5761563d615868565b5b828204905092915050565b600061565482615741565b915061565f83615741565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561569857615697615839565b5b828202905092915050565b60006156ae82615741565b91506156b983615741565b9250828210156156cc576156cb615839565b5b828203905092915050565b60006156e282615721565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561577857808201518184015260208101905061575d565b83811115615787576000848401525b50505050565b600060028204905060018216806157a557607f821691505b602082108114156157b9576157b8615897565b5b50919050565b60006157ca82615741565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156157fd576157fc615839565b5b600182019050919050565b600061581382615741565b915061581e83615741565b92508261582e5761582d615868565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61590f816156d7565b811461591a57600080fd5b50565b615926816156e9565b811461593157600080fd5b50565b61593d816156f5565b811461594857600080fd5b50565b61595481615741565b811461595f57600080fd5b5056fea264697066735822122077846bede2ad4a77a93fe787330f0fe8ba75df6eccf8ffcc670691e04bcf497f64736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f7265746972656d656e74636c75626e66742e636f6d2f6d657461646174612f00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102c85760003560e01c806371e3500c11610175578063a51312c8116100dc578063cadf881811610095578063e985e9c51161006f578063e985e9c514610ac1578063ea6eb83614610afe578063f2fde38b14610b27578063f6c9d9e314610b50576102c8565b8063cadf881814610a42578063e7b62d9614610a6d578063e82b2a7114610a98576102c8565b8063a51312c814610934578063acec338a1461095d578063ad06d75814610986578063b88d4fde146109b1578063c4e41b22146109da578063c87b56dd14610a05576102c8565b80638da5cb5b1161012e5780638da5cb5b1461083657806391b7f5ed1461086157806395d89b411461088a57806398d5fdca146108b55780639a3bf728146108e0578063a22cb4651461090b576102c8565b806371e3500c1461075d5780637263cfe21461077457806377b501b91461079d5780637835c635146107c65780637a6685f1146107e25780637f44ab2f1461080b576102c8565b806340c10f191161023457806355f804b3116101ed5780636817c76c116101c75780636817c76c146106b557806370a08231146106e0578063715018a61461071d578063718bc4af14610734576102c8565b806355f804b31461062657806356a87caa1461064f5780636352211e14610678576102c8565b806340c10f191461051357806342842e0e1461052f578063438b630014610558578063442890d5146105955780634dfea627146105c05780634f6ccce7146105e9576102c8565b806322f3e2d41161028657806322f3e2d41461040357806323b872dd1461042e57806329fc6bae146104575780632c1205f4146104825780632f745c59146104bf5780633ccfd60b146104fc576102c8565b806208ffdd146102cd57806301ffc9a71461030a57806306fdde0314610347578063081812fc14610372578063095ea7b3146103af57806318160ddd146103d8575b600080fd5b3480156102d957600080fd5b506102f460048036038101906102ef9190614095565b610b79565b6040516103019190615471565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c91906142aa565b610c31565b60405161033e9190615014565b60405180910390f35b34801561035357600080fd5b5061035c610cab565b604051610369919061502f565b60405180910390f35b34801561037e57600080fd5b506103996004803603810190610394919061433d565b610d3d565b6040516103a69190614f8b565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190614200565b610dc2565b005b3480156103e457600080fd5b506103ed610eda565b6040516103fa9190615471565b60405180910390f35b34801561040f57600080fd5b50610418610ee7565b6040516104259190615014565b60405180910390f35b34801561043a57600080fd5b50610455600480360381019061045091906140fa565b610efa565b005b34801561046357600080fd5b5061046c610f5a565b6040516104799190615014565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190614095565b610f6d565b6040516104b69190615014565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190614200565b610fc3565b6040516104f39190615471565b60405180910390f35b34801561050857600080fd5b50610511611068565b005b61052d60048036038101906105289190614200565b6110fd565b005b34801561053b57600080fd5b50610556600480360381019061055191906140fa565b611412565b005b34801561056457600080fd5b5061057f600480360381019061057a9190614095565b611432565b60405161058c9190614ff2565b60405180910390f35b3480156105a157600080fd5b506105aa61152c565b6040516105b79190614f8b565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e2919061433d565b61153b565b005b3480156105f557600080fd5b50610610600480360381019061060b919061433d565b611584565b60405161061d9190615471565b60405180910390f35b34801561063257600080fd5b5061064d600480360381019061064891906142fc565b61161b565b005b34801561065b57600080fd5b506106766004803603810190610671919061433d565b611674565b005b34801561068457600080fd5b5061069f600480360381019061069a919061433d565b6116bd565b6040516106ac9190614f8b565b60405180910390f35b3480156106c157600080fd5b506106ca61176f565b6040516106d79190615471565b60405180910390f35b3480156106ec57600080fd5b5061070760048036038101906107029190614095565b611775565b6040516107149190615471565b60405180910390f35b34801561072957600080fd5b5061073261182d565b005b34801561074057600080fd5b5061075b60048036038101906107569190614281565b6118b5565b005b34801561076957600080fd5b50610772611911565b005b34801561078057600080fd5b5061079b6004803603810190610796919061423c565b611a38565b005b3480156107a957600080fd5b506107c460048036038101906107bf9190614200565b611d29565b005b6107e060048036038101906107db919061433d565b611ddc565b005b3480156107ee57600080fd5b506108096004803603810190610804919061433d565b61213c565b005b34801561081757600080fd5b50610820612185565b60405161082d9190615471565b60405180910390f35b34801561084257600080fd5b5061084b61218b565b6040516108589190614f8b565b60405180910390f35b34801561086d57600080fd5b506108886004803603810190610883919061433d565b6121b5565b005b34801561089657600080fd5b5061089f6121fe565b6040516108ac919061502f565b60405180910390f35b3480156108c157600080fd5b506108ca612290565b6040516108d79190615471565b60405180910390f35b3480156108ec57600080fd5b506108f561229a565b6040516109029190615471565b60405180910390f35b34801561091757600080fd5b50610932600480360381019061092d91906141c4565b6122a0565b005b34801561094057600080fd5b5061095b6004803603810190610956919061423c565b612421565b005b34801561096957600080fd5b50610984600480360381019061097f9190614281565b6125e8565b005b34801561099257600080fd5b5061099b61267b565b6040516109a89190615471565b60405180910390f35b3480156109bd57600080fd5b506109d860048036038101906109d39190614149565b6126c4565b005b3480156109e657600080fd5b506109ef612726565b6040516109fc9190615471565b60405180910390f35b348015610a1157600080fd5b50610a2c6004803603810190610a27919061433d565b612735565b604051610a39919061502f565b60405180910390f35b348015610a4e57600080fd5b50610a576127dc565b604051610a649190615471565b60405180910390f35b348015610a7957600080fd5b50610a826127e2565b604051610a8f9190615471565b60405180910390f35b348015610aa457600080fd5b50610abf6004803603810190610aba9190614366565b6127ec565b005b348015610acd57600080fd5b50610ae86004803603810190610ae391906140be565b612abb565b604051610af59190615014565b60405180910390f35b348015610b0a57600080fd5b50610b256004803603810190610b20919061433d565b612b4f565b005b348015610b3357600080fd5b50610b4e6004803603810190610b499190614095565b612b98565b005b348015610b5c57600080fd5b50610b776004803603810190610b72919061433d565b612c90565b005b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be1906152d1565b60405180910390fd5b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ca45750610ca382612cd9565b5b9050919050565b606060008054610cba9061578d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce69061578d565b8015610d335780601f10610d0857610100808354040283529160200191610d33565b820191906000526020600020905b815481529060010190602001808311610d1657829003601f168201915b5050505050905090565b6000610d4882612dbb565b610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e90615271565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dcd826116bd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590615351565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e5d612e27565b73ffffffffffffffffffffffffffffffffffffffff161480610e8c5750610e8b81610e86612e27565b612abb565b5b610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec2906151f1565b60405180910390fd5b610ed58383612e2f565b505050565b6000600880549050905090565b601060009054906101000a900460ff1681565b610f0b610f05612e27565b82612ee8565b610f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4190615391565b60405180910390fd5b610f55838383612fc6565b505050565b601060019054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610fce83611775565b821061100f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611006906150d1565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1661108761218b565b73ffffffffffffffffffffffffffffffffffffffff16146110a757600080fd5b60004790506110b461218b565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110f9573d6000803e3d6000fd5b5050565b601154611108610eda565b1115611149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114090615171565b60405180910390fd5b61115161218b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111d357601060009054906101000a900460ff166111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c9906150b1565b60405180910390fd5b5b6111db61218b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611266576013548161121a84611775565b61122491906155c2565b1115611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c90615151565b60405180910390fd5b5b60115481611272610eda565b61127c91906155c2565b11156112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b490615371565b60405180910390fd5b6011546112c8610eda565b1115611309576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611300906153d1565b60405180910390fd5b60125481111561134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134590615331565b60405180910390fd5b80600b5461135c9190615649565b34101561139e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611395906153f1565b60405180910390fd5b60005b8181101561140d577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556113d2610eda565b846040516113e192919061548c565b60405180910390a16113fa836113f5610eda565b613222565b8080611405906157bf565b9150506113a1565b505050565b61142d838383604051806020016040528060008152506126c4565b505050565b6060600061143f83611775565b905060008167ffffffffffffffff811115611483577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114b15781602001602082028036833780820191505090505b50905060005b82811015611521576114c98582610fc3565b828281518110611502577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611519906157bf565b9150506114b7565b508092505050919050565b600061153661218b565b905090565b3373ffffffffffffffffffffffffffffffffffffffff1661155a61218b565b73ffffffffffffffffffffffffffffffffffffffff161461157a57600080fd5b8060128190555050565b600061158e610eda565b82106115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c6906153b1565b60405180910390fd5b60088281548110611609577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b3373ffffffffffffffffffffffffffffffffffffffff1661163a61218b565b73ffffffffffffffffffffffffffffffffffffffff161461165a57600080fd5b80600f9080519060200190611670929190613e6f565b5050565b3373ffffffffffffffffffffffffffffffffffffffff1661169361218b565b73ffffffffffffffffffffffffffffffffffffffff16146116b357600080fd5b80600e8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175d90615231565b60405180910390fd5b80915050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90615211565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611835612e27565b73ffffffffffffffffffffffffffffffffffffffff1661185361218b565b73ffffffffffffffffffffffffffffffffffffffff16146118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a0906152b1565b60405180910390fd5b6118b36000613240565b565b3373ffffffffffffffffffffffffffffffffffffffff166118d461218b565b73ffffffffffffffffffffffffffffffffffffffff16146118f457600080fd5b80601060016101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff1661193061218b565b73ffffffffffffffffffffffffffffffffffffffff161461195057600080fd5b600e54600d541115611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e90615051565b60405180910390fd5b60006119a1610eda565b905060005b600c54811015611a34577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd35581836119dd91906155c2565b336040516119ec92919061548c565b60405180910390a1611a09338284611a0491906155c2565b613222565b600d6000815480929190611a1c906157bf565b91905055508080611a2c906157bf565b9150506119a6565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611a5761218b565b73ffffffffffffffffffffffffffffffffffffffff1614611a7757600080fd5b60005b82829050811015611d2457600073ffffffffffffffffffffffffffffffffffffffff16838383818110611ad6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611aeb9190614095565b73ffffffffffffffffffffffffffffffffffffffff161415611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3990615291565b60405180910390fd5b600160156000858585818110611b81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611b969190614095565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060166000858585818110611c26577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611c3b9190614095565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611c82576000611d10565b60166000848484818110611cbf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611cd49190614095565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b508080611d1c906157bf565b915050611a7a565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16611d4861218b565b73ffffffffffffffffffffffffffffffffffffffff1614611d6857600080fd5b60005b81811015611dd7577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611d9c610eda565b84604051611dab92919061548c565b60405180910390a1611dc483611dbf610eda565b613222565b8080611dcf906157bf565b915050611d6b565b505050565b601154611de7610eda565b1115611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90615171565b60405180910390fd5b601060019054906101000a900460ff16611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e90615071565b60405180910390fd5b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efa90615091565b60405180910390fd5b601154611f0e610eda565b10611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4590615431565b60405180910390fd5b601454811115611f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8a90615451565b60405180910390fd5b60145481601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fe191906155c2565b1115612022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201990615411565b60405180910390fd5b80600b546120309190615649565b341015612072576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612069906153f1565b60405180910390fd5b60005b81811015612138576001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120cd91906155c2565b925050819055507f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556120fd610eda565b3360405161210c92919061548c565b60405180910390a161212533612120610eda565b613222565b8080612130906157bf565b915050612075565b5050565b3373ffffffffffffffffffffffffffffffffffffffff1661215b61218b565b73ffffffffffffffffffffffffffffffffffffffff161461217b57600080fd5b8060148190555050565b60145481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff166121d461218b565b73ffffffffffffffffffffffffffffffffffffffff16146121f457600080fd5b80600b8190555050565b60606001805461220d9061578d565b80601f01602080910402602001604051908101604052809291908181526020018280546122399061578d565b80156122865780601f1061225b57610100808354040283529160200191612286565b820191906000526020600020905b81548152906001019060200180831161226957829003601f168201915b5050505050905090565b6000600b54905090565b60125481565b6122a8612e27565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230d906151b1565b60405180910390fd5b8060056000612323612e27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123d0612e27565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124159190615014565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff1661244061218b565b73ffffffffffffffffffffffffffffffffffffffff161461246057600080fd5b60005b828290508110156125e357600073ffffffffffffffffffffffffffffffffffffffff168383838181106124bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906124d49190614095565b73ffffffffffffffffffffffffffffffffffffffff16141561252b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252290615291565b60405180910390fd5b60006015600085858581811061256a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061257f9190614095565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806125db906157bf565b915050612463565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1661260761218b565b73ffffffffffffffffffffffffffffffffffffffff161461262757600080fd5b80601060006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f816040516126709190615014565b60405180910390a150565b60003373ffffffffffffffffffffffffffffffffffffffff1661269c61218b565b73ffffffffffffffffffffffffffffffffffffffff16146126bc57600080fd5b601254905090565b6126d56126cf612e27565b83612ee8565b612714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270b90615391565b60405180910390fd5b61272084848484613306565b50505050565b6000612730610eda565b905090565b606061274082612dbb565b61277f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277690615311565b60405180910390fd5b6000612789613362565b905060008151116127a957604051806020016040528060008152506127d4565b806127b3846133f4565b6040516020016127c4929190614f67565b6040516020818303038152906040525b915050919050565b60135481565b6000600c54905090565b3373ffffffffffffffffffffffffffffffffffffffff1661280b61218b565b73ffffffffffffffffffffffffffffffffffffffff161461282b57600080fd5b6000612835610eda565b9050601154848261284691906155c2565b1115612887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287e90615371565b60405180910390fd5b6011548111156128cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c3906153d1565b60405180910390fd5b60005b83839050811015612ab457600073ffffffffffffffffffffffffffffffffffffffff1684848381811061292b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906129409190614095565b73ffffffffffffffffffffffffffffffffffffffff161415612997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298e90615291565b60405180910390fd5b60005b85811015612aa0577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556129cb610eda565b868685818110612a04577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190612a199190614095565b604051612a2792919061548c565b60405180910390a1612a8d858584818110612a6b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190612a809190614095565b612a88610eda565b613222565b8080612a98906157bf565b91505061299a565b508080612aac906157bf565b9150506128cf565b5050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16612b6e61218b565b73ffffffffffffffffffffffffffffffffffffffff1614612b8e57600080fd5b8060138190555050565b612ba0612e27565b73ffffffffffffffffffffffffffffffffffffffff16612bbe61218b565b73ffffffffffffffffffffffffffffffffffffffff1614612c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0b906152b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7b90615111565b60405180910390fd5b612c8d81613240565b50565b3373ffffffffffffffffffffffffffffffffffffffff16612caf61218b565b73ffffffffffffffffffffffffffffffffffffffff1614612ccf57600080fd5b80600c8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612da457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612db45750612db3826135a1565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ea2836116bd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ef382612dbb565b612f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f29906151d1565b60405180910390fd5b6000612f3d836116bd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612fac57508373ffffffffffffffffffffffffffffffffffffffff16612f9484610d3d565b73ffffffffffffffffffffffffffffffffffffffff16145b80612fbd5750612fbc8185612abb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612fe6826116bd565b73ffffffffffffffffffffffffffffffffffffffff161461303c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613033906152f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a390615191565b60405180910390fd5b6130b783838361360b565b6130c2600082612e2f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461311291906156a3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461316991906155c2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61323c82826040518060200160405280600081525061371f565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613311848484612fc6565b61331d8484848461377a565b61335c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613353906150f1565b60405180910390fd5b50505050565b6060600f80546133719061578d565b80601f016020809104026020016040519081016040528092919081815260200182805461339d9061578d565b80156133ea5780601f106133bf576101008083540402835291602001916133ea565b820191906000526020600020905b8154815290600101906020018083116133cd57829003601f168201915b5050505050905090565b6060600082141561343c576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061359c565b600082905060005b6000821461346e578080613457906157bf565b915050600a826134679190615618565b9150613444565b60008167ffffffffffffffff8111156134b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134e25781602001600182028036833780820191505090505b5090505b60008514613595576001826134fb91906156a3565b9150600a8561350a9190615808565b603061351691906155c2565b60f81b818381518110613552577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561358e9190615618565b94506134e6565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613616838383613911565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136595761365481613916565b613698565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461369757613696838261395f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136db576136d681613acc565b61371a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613719576137188282613c0f565b5b5b505050565b6137298383613c8e565b613736600084848461377a565b613775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376c906150f1565b60405180910390fd5b505050565b600061379b8473ffffffffffffffffffffffffffffffffffffffff16613e5c565b15613904578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137c4612e27565b8786866040518563ffffffff1660e01b81526004016137e69493929190614fa6565b602060405180830381600087803b15801561380057600080fd5b505af192505050801561383157506040513d601f19601f8201168201806040525081019061382e91906142d3565b60015b6138b4573d8060008114613861576040519150601f19603f3d011682016040523d82523d6000602084013e613866565b606091505b506000815114156138ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138a3906150f1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613909565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161396c84611775565b61397691906156a3565b9050600060076000848152602001908152602001600020549050818114613a5b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613ae091906156a3565b9050600060096000848152602001908152602001600020549050600060088381548110613b36577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613b7e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613bf3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613c1a83611775565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cf590615251565b60405180910390fd5b613d0781612dbb565b15613d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d3e90615131565b60405180910390fd5b613d536000838361360b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613da391906155c2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613e7b9061578d565b90600052602060002090601f016020900481019282613e9d5760008555613ee4565b82601f10613eb657805160ff1916838001178555613ee4565b82800160010185558215613ee4579182015b82811115613ee3578251825591602001919060010190613ec8565b5b509050613ef19190613ef5565b5090565b5b80821115613f0e576000816000905550600101613ef6565b5090565b6000613f25613f20846154e6565b6154b5565b905082815260208101848484011115613f3d57600080fd5b613f4884828561574b565b509392505050565b6000613f63613f5e84615516565b6154b5565b905082815260208101848484011115613f7b57600080fd5b613f8684828561574b565b509392505050565b600081359050613f9d81615906565b92915050565b60008083601f840112613fb557600080fd5b8235905067ffffffffffffffff811115613fce57600080fd5b602083019150836020820283011115613fe657600080fd5b9250929050565b600081359050613ffc8161591d565b92915050565b60008135905061401181615934565b92915050565b60008151905061402681615934565b92915050565b600082601f83011261403d57600080fd5b813561404d848260208601613f12565b91505092915050565b600082601f83011261406757600080fd5b8135614077848260208601613f50565b91505092915050565b60008135905061408f8161594b565b92915050565b6000602082840312156140a757600080fd5b60006140b584828501613f8e565b91505092915050565b600080604083850312156140d157600080fd5b60006140df85828601613f8e565b92505060206140f085828601613f8e565b9150509250929050565b60008060006060848603121561410f57600080fd5b600061411d86828701613f8e565b935050602061412e86828701613f8e565b925050604061413f86828701614080565b9150509250925092565b6000806000806080858703121561415f57600080fd5b600061416d87828801613f8e565b945050602061417e87828801613f8e565b935050604061418f87828801614080565b925050606085013567ffffffffffffffff8111156141ac57600080fd5b6141b88782880161402c565b91505092959194509250565b600080604083850312156141d757600080fd5b60006141e585828601613f8e565b92505060206141f685828601613fed565b9150509250929050565b6000806040838503121561421357600080fd5b600061422185828601613f8e565b925050602061423285828601614080565b9150509250929050565b6000806020838503121561424f57600080fd5b600083013567ffffffffffffffff81111561426957600080fd5b61427585828601613fa3565b92509250509250929050565b60006020828403121561429357600080fd5b60006142a184828501613fed565b91505092915050565b6000602082840312156142bc57600080fd5b60006142ca84828501614002565b91505092915050565b6000602082840312156142e557600080fd5b60006142f384828501614017565b91505092915050565b60006020828403121561430e57600080fd5b600082013567ffffffffffffffff81111561432857600080fd5b61433484828501614056565b91505092915050565b60006020828403121561434f57600080fd5b600061435d84828501614080565b91505092915050565b60008060006040848603121561437b57600080fd5b600061438986828701614080565b935050602084013567ffffffffffffffff8111156143a657600080fd5b6143b286828701613fa3565b92509250509250925092565b60006143ca8383614f49565b60208301905092915050565b6143df816156d7565b82525050565b60006143f082615556565b6143fa8185615584565b935061440583615546565b8060005b8381101561443657815161441d88826143be565b975061442883615577565b925050600181019050614409565b5085935050505092915050565b61444c816156e9565b82525050565b600061445d82615561565b6144678185615595565b935061447781856020860161575a565b614480816158f5565b840191505092915050565b60006144968261556c565b6144a081856155a6565b93506144b081856020860161575a565b6144b9816158f5565b840191505092915050565b60006144cf8261556c565b6144d981856155b7565b93506144e981856020860161575a565b80840191505092915050565b6000614502601b836155a6565b91507f4d61782052657365727665732074616b656e20616c72656164792100000000006000830152602082019050919050565b60006145426018836155a6565b91507f416c6c6f77204c697374206973206e6f742061637469766500000000000000006000830152602082019050919050565b6000614582601d836155a6565b91507f596f7520617265206e6f74206f6e2074686520416c6c6f77204c6973740000006000830152602082019050919050565b60006145c2601d836155a6565b91507f53616c65206973206e6f74206163746976652063757272656e746c792e0000006000830152602082019050919050565b6000614602602b836155a6565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006146686032836155a6565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006146ce6026836155a6565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614734601c836155a6565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006147746018836155a6565b91507f4d617820686f6c64696e672063617020726561636865642e00000000000000006000830152602082019050919050565b60006147b4600f836155a6565b91507f53616c652068617320656e6465642e00000000000000000000000000000000006000830152602082019050919050565b60006147f46024836155a6565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061485a6019836155a6565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061489a602c836155a6565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006149006038836155a6565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614966602a836155a6565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006149cc6029836155a6565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a326020836155a6565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614a72602c836155a6565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614ad86018836155a6565b91507f43616e2774206164642061206e756c6c206164647265737300000000000000006000830152602082019050919050565b6000614b186020836155a6565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614b58601e836155a6565b91507f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c69737400006000830152602082019050919050565b6000614b986029836155a6565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614bfe602f836155a6565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614c64601e836155a6565b91507f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e7300006000830152602082019050919050565b6000614ca46021836155a6565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d0a6016836155a6565b91507f546f74616c20737570706c792065786365656465642e000000000000000000006000830152602082019050919050565b6000614d4a6031836155a6565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614db0602c836155a6565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614e166013836155a6565b91507f546f74616c20737570706c79207370656e742e000000000000000000000000006000830152602082019050919050565b6000614e56601b836155a6565b91507f496e7375666669656e742045544820616d6f756e742073656e742e00000000006000830152602082019050919050565b6000614e96601c836155a6565b91507f50757263686173652065786365656473206d617820616c6c6f776564000000006000830152602082019050919050565b6000614ed6601b836155a6565b91507f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006000830152602082019050919050565b6000614f166020836155a6565b91507f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736000830152602082019050919050565b614f5281615741565b82525050565b614f6181615741565b82525050565b6000614f7382856144c4565b9150614f7f82846144c4565b91508190509392505050565b6000602082019050614fa060008301846143d6565b92915050565b6000608082019050614fbb60008301876143d6565b614fc860208301866143d6565b614fd56040830185614f58565b8181036060830152614fe78184614452565b905095945050505050565b6000602082019050818103600083015261500c81846143e5565b905092915050565b60006020820190506150296000830184614443565b92915050565b60006020820190508181036000830152615049818461448b565b905092915050565b6000602082019050818103600083015261506a816144f5565b9050919050565b6000602082019050818103600083015261508a81614535565b9050919050565b600060208201905081810360008301526150aa81614575565b9050919050565b600060208201905081810360008301526150ca816145b5565b9050919050565b600060208201905081810360008301526150ea816145f5565b9050919050565b6000602082019050818103600083015261510a8161465b565b9050919050565b6000602082019050818103600083015261512a816146c1565b9050919050565b6000602082019050818103600083015261514a81614727565b9050919050565b6000602082019050818103600083015261516a81614767565b9050919050565b6000602082019050818103600083015261518a816147a7565b9050919050565b600060208201905081810360008301526151aa816147e7565b9050919050565b600060208201905081810360008301526151ca8161484d565b9050919050565b600060208201905081810360008301526151ea8161488d565b9050919050565b6000602082019050818103600083015261520a816148f3565b9050919050565b6000602082019050818103600083015261522a81614959565b9050919050565b6000602082019050818103600083015261524a816149bf565b9050919050565b6000602082019050818103600083015261526a81614a25565b9050919050565b6000602082019050818103600083015261528a81614a65565b9050919050565b600060208201905081810360008301526152aa81614acb565b9050919050565b600060208201905081810360008301526152ca81614b0b565b9050919050565b600060208201905081810360008301526152ea81614b4b565b9050919050565b6000602082019050818103600083015261530a81614b8b565b9050919050565b6000602082019050818103600083015261532a81614bf1565b9050919050565b6000602082019050818103600083015261534a81614c57565b9050919050565b6000602082019050818103600083015261536a81614c97565b9050919050565b6000602082019050818103600083015261538a81614cfd565b9050919050565b600060208201905081810360008301526153aa81614d3d565b9050919050565b600060208201905081810360008301526153ca81614da3565b9050919050565b600060208201905081810360008301526153ea81614e09565b9050919050565b6000602082019050818103600083015261540a81614e49565b9050919050565b6000602082019050818103600083015261542a81614e89565b9050919050565b6000602082019050818103600083015261544a81614ec9565b9050919050565b6000602082019050818103600083015261546a81614f09565b9050919050565b60006020820190506154866000830184614f58565b92915050565b60006040820190506154a16000830185614f58565b6154ae60208301846143d6565b9392505050565b6000604051905081810181811067ffffffffffffffff821117156154dc576154db6158c6565b5b8060405250919050565b600067ffffffffffffffff821115615501576155006158c6565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615531576155306158c6565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006155cd82615741565b91506155d883615741565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561560d5761560c615839565b5b828201905092915050565b600061562382615741565b915061562e83615741565b92508261563e5761563d615868565b5b828204905092915050565b600061565482615741565b915061565f83615741565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561569857615697615839565b5b828202905092915050565b60006156ae82615741565b91506156b983615741565b9250828210156156cc576156cb615839565b5b828203905092915050565b60006156e282615721565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561577857808201518184015260208101905061575d565b83811115615787576000848401525b50505050565b600060028204905060018216806157a557607f821691505b602082108114156157b9576157b8615897565b5b50919050565b60006157ca82615741565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156157fd576157fc615839565b5b600182019050919050565b600061581382615741565b915061581e83615741565b92508261582e5761582d615868565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61590f816156d7565b811461591a57600080fd5b50565b615926816156e9565b811461593157600080fd5b50565b61593d816156f5565b811461594857600080fd5b50565b61595481615741565b811461595f57600080fd5b5056fea264697066735822122077846bede2ad4a77a93fe787330f0fe8ba75df6eccf8ffcc670691e04bcf497f64736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f7265746972656d656e74636c75626e66742e636f6d2f6d657461646174612f00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://retirementclubnft.com/metadata/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000027
Arg [2] : 68747470733a2f2f7265746972656d656e74636c75626e66742e636f6d2f6d65
Arg [3] : 7461646174612f00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

123:6852:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2520:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;939:224:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2428:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3987:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3510:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1579:113:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;367:28:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4877:339:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;400:37:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2138:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1247:256:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6838:134:12;;;;;;;;;;;;;:::i;:::-;;4356:792;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5287:185:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6518:314:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3534:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1159:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1769:233:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3005:101:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2814:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2122:239:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;171:36:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1852:208:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1652:94:11;;;;;;;;;;;;;:::i;:::-;;1541:130:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3739:350;;;;;;;;;;;;;:::i;:::-;;1793:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4095:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5779:733;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1677:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;602:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1001:87:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2912::12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2597:104:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3249:81:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;489:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4280:295:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2251:263:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1426:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3112:131;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5543:328:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3437:91:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2772:334:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;545:52:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3336:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5154:619;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4646:164:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1289:131:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1901:192:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2713:95:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2520:187;2586:7;2626:1;2609:19;;:5;:19;;;;2601:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;2677:17;:24;2695:5;2677:24;;;;;;;;;;;;;;;;2670:31;;2520:187;;;:::o;939:224:5:-;1041:4;1080:35;1065:50;;;:11;:50;;;;:90;;;;1119:36;1143:11;1119:23;:36::i;:::-;1065:90;1058:97;;939:224;;;:::o;2428:100:4:-;2482:13;2515:5;2508:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2428:100;:::o;3987:221::-;4063:7;4091:16;4099:7;4091;:16::i;:::-;4083:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4176:15;:24;4192:7;4176:24;;;;;;;;;;;;;;;;;;;;;4169:31;;3987:221;;;:::o;3510:411::-;3591:13;3607:23;3622:7;3607:14;:23::i;:::-;3591:39;;3655:5;3649:11;;:2;:11;;;;3641:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3749:5;3733:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3758:37;3775:5;3782:12;:10;:12::i;:::-;3758:16;:37::i;:::-;3733:62;3711:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;3892:21;3901:2;3905:7;3892:8;:21::i;:::-;3510:411;;;:::o;1579:113:5:-;1640:7;1667:10;:17;;;;1660:24;;1579:113;:::o;367:28:12:-;;;;;;;;;;;;;:::o;4877:339:4:-;5072:41;5091:12;:10;:12::i;:::-;5105:7;5072:18;:41::i;:::-;5064:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5180:28;5190:4;5196:2;5200:7;5180:9;:28::i;:::-;4877:339;;;:::o;400:37:12:-;;;;;;;;;;;;;:::o;2138:107::-;2203:4;2223:10;:16;2234:4;2223:16;;;;;;;;;;;;;;;;;;;;;;;;;2216:23;;2138:107;;;:::o;1247:256:5:-;1344:7;1380:23;1397:5;1380:16;:23::i;:::-;1372:5;:31;1364:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1469:12;:19;1482:5;1469:19;;;;;;;;;;;;;;;:26;1489:5;1469:26;;;;;;;;;;;;1462:33;;1247:256;;;;:::o;6838:134:12:-;1128:10;1117:21;;:7;:5;:7::i;:::-;:21;;;1109:30;;;;;;6889:12:::1;6904:21;6889:36;;6940:7;:5;:7::i;:::-;6932:25;;:34;6958:7;6932:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1146:1;6838:134::o:0;4356:792::-;1022:14;;1005:13;:11;:13::i;:::-;:31;;997:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;4450:7:::1;:5;:7::i;:::-;4436:21;;:10;:21;;;4432:94;;4476:8;;;;;;;;;;;4468:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;4432:94;4544:7;:5;:7::i;:::-;4537:14;;:3;:14;;;4534:129;;4597:29;;4587:6;4570:14;4580:3;4570:9;:14::i;:::-;:23;;;;:::i;:::-;:56;;4562:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;4534:129;4705:14;;4695:6;4679:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:40;;4671:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4778:14;;4761:13;:11;:13::i;:::-;:31;;4753:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4849:31;;4839:6;:41;;4823:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;4968:6;4956:9;;:18;;;;:::i;:::-;4943:9;:31;;4935:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5020:9;5015:128;5039:6;5035:1;:10;5015:128;;;5066:31;5078:13;:11;:13::i;:::-;5093:3;5066:31;;;;;;;:::i;:::-;;;;;;;;5106:29;5116:3;5121:13;:11;:13::i;:::-;5106:9;:29::i;:::-;5047:3;;;;;:::i;:::-;;;;5015:128;;;;4356:792:::0;;:::o;5287:185:4:-;5425:39;5442:4;5448:2;5452:7;5425:39;;;;;;;;;;;;:16;:39::i;:::-;5287:185;;;:::o;6518:314:12:-;6579:16;6604:15;6622:17;6632:6;6622:9;:17::i;:::-;6604:35;;6646:25;6688:10;6674:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6646:53;;6712:6;6708:97;6728:10;6724:1;:14;6708:97;;;6767:30;6787:6;6795:1;6767:19;:30::i;:::-;6753:8;6762:1;6753:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;6740:3;;;;;:::i;:::-;;;;6708:97;;;;6818:8;6811:15;;;;6518:314;;;:::o;3534:85::-;3583:7;3606;:5;:7::i;:::-;3599:14;;3534:85;:::o;1159:124::-;1128:10;1117:21;;:7;:5;:7::i;:::-;:21;;;1109:30;;;;;;1271:6:::1;1237:31;:40;;;;1159:124:::0;:::o;1769:233:5:-;1844:7;1880:30;:28;:30::i;:::-;1872:5;:38;1864:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1977:10;1988:5;1977:17;;;;;;;;;;;;;;;;;;;;;;;;1970:24;;1769:233;;;:::o;3005:101:12:-;1128:10;1117:21;;:7;:5;:7::i;:::-;:21;;;1109:30;;;;;;3093:7:::1;3077:13;:23;;;;;;;;;;;;:::i;:::-;;3005:101:::0;:::o;2814:92::-;1128:10;1117:21;;:7;:5;:7::i;:::-;:21;;;1109:30;;;;;;2897:3:::1;2879:15;:21;;;;2814:92:::0;:::o;2122:239:4:-;2194:7;2214:13;2230:7;:16;2238:7;2230:16;;;;;;;;;;;;;;;;;;;;;2214:32;;2282:1;2265:19;;:5;:19;;;;2257:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2348:5;2341:12;;;2122:239;;;:::o;171:36:12:-;;;;:::o;1852:208:4:-;1924:7;1969:1;1952:19;;:5;:19;;;;1944:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2036:9;:16;2046:5;2036:16;;;;;;;;;;;;;;;;2029:23;;1852:208;;;:::o;1652:94:11:-;1232:12;:10;:12::i;:::-;1221:23;;:7;:5;:7::i;:::-;:23;;;1213:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1717:21:::1;1735:1;1717:9;:21::i;:::-;1652:94::o:0;1541:130:12:-;1128:10;1117:21;;:7;:5;:7::i;:::-;:21;;;1109:30;;;;;;1647:18:::1;1627:17;;:38;;;;;;;;;;;;;;;;;;1541:130:::0;:::o;3739:350::-;1128:10;1117:21;;:7;:5;:7::i;:::-;:21;;;1109:30;;;;;;3815:15:::1;;3798:13;;:32;;3790:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;3869:14;3886:13;:11;:13::i;:::-;3869:30;;3906:9;3924:160;3940:14;;3936:1;:18;3924:160;;;3975:35;3996:1;3987:6;:10;;;;:::i;:::-;3999;3975:35;;;;;;;:::i;:::-;;;;;;;;4019:33;4029:10;4050:1;4041:6;:10;;;;:::i;:::-;4019:9;:33::i;:::-;4061:13;;:15;;;;;;;;;:::i;:::-;;;;;;3956:3;;;;;:::i;:::-;;;;3924:160;;;1146:1;;3739:350::o:0;1793:339::-;1128:10;1117:21;;:7;:5;:7::i;:::-;:21;;;1109:30;;;;;;1883:9:::1;1878:249;1902:9;;:16;;1898:1;:20;1878:249;;;1966:1;1942:26;;:9;;1952:1;1942:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:26;;;;1934:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2033:4;2006:10;:24;2017:9;;2027:1;2017:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2006:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;2080:1;2046:17;:31;2064:9;;2074:1;2064:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2046:31;;;;;;;;;;;;;;;;:35;:73;;2118:1;2046:73;;;2084:17;:31;2102:9;;2112:1;2102:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2084:31;;;;;;;;;;;;;;;;2046:73;;1920:3;;;;;:::i;:::-;;;;1878:249;;;;1793:339:::0;;:::o;4095:255::-;1128:10;1117:21;;:7;:5;:7::i;:::-;:21;;;1109:30;;;;;;4200:9:::1;4195:150;4219:6;4215:1;:10;4195:150;;;4246:42;4258:13;:11;:13::i;:::-;4273:14;4246:42;;;;;;;:::i;:::-;;;;;;;;4297:40;4307:14;4323:13;:11;:13::i;:::-;4297:9;:40::i;:::-;4227:3;;;;;:::i;:::-;;;;4195:150;;;;4095:255:::0;;:::o;5779:733::-;1022:14;;1005:13;:11;:13::i;:::-;:31;;997:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;5857:17:::1;;;;;;;;;;;5849:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;5918:10;:22;5929:10;5918:22;;;;;;;;;;;;;;;;;;;;;;;;;5910:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;6005:14;;5989:13;:11;:13::i;:::-;:30;5981:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;6076:16;;6066:6;:26;;6058:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6186:16;;6176:6;6144:17;:29;6162:10;6144:29;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:58;;6136:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;6275:6;6263:9;;:18;;;;:::i;:::-;6250:9;:31;;6242:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6327:9;6322:185;6346:6;6342:1;:10;6322:185;;;6401:1;6368:17;:29;6386:10;6368:29;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;6416:38;6428:13;:11;:13::i;:::-;6443:10;6416:38;;;;;;;:::i;:::-;;;;;;;;6463:36;6473:10;6485:13;:11;:13::i;:::-;6463:9;:36::i;:::-;6354:3;;;;;:::i;:::-;;;;6322:185;;;;5779:733:::0;:::o;1677:110::-;1128:10;1117:21;;:7;:5;:7::i;:::-;:21;;;1109:30;;;;;;1774:7:::1;1755:16;:26;;;;1677:110:::0;:::o;602:35::-;;;;:::o;1001:87:11:-;1047:7;1074:6;;;;;;;;;;;1067:13;;1001:87;:::o;2912::12:-;1128:10;1117:21;;:7;:5;:7::i;:::-;:21;;;1109:30;;;;;;2987:6:::1;2975:9;:18;;;;2912:87:::0;:::o;2597:104:4:-;2653:13;2686:7;2679:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2597:104;:::o;3249:81:12:-;3292:7;3315:9;;3308:16;;3249:81;:::o;489:51::-;;;;:::o;4280:295:4:-;4395:12;:10;:12::i;:::-;4383:24;;:8;:24;;;;4375:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4495:8;4450:18;:32;4469:12;:10;:12::i;:::-;4450:32;;;;;;;;;;;;;;;:42;4483:8;4450:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4548:8;4519:48;;4534:12;:10;:12::i;:::-;4519:48;;;4558:8;4519:48;;;;;;:::i;:::-;;;;;;;;4280:295;;:::o;2251:263:12:-;1128:10;1117:21;;:7;:5;:7::i;:::-;:21;;;1109:30;;;;;;2346:9:::1;2341:168;2365:9;;:16;;2361:1;:20;2341:168;;;2429:1;2405:26;;:9;;2415:1;2405:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:26;;;;2397:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2496:5;2469:10;:24;2480:9;;2490:1;2480:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2469:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;2383:3;;;;;:::i;:::-;;;;2341:168;;;;2251:263:::0;;:::o;1426:109::-;1128:10;1117:21;;:7;:5;:7::i;:::-;:21;;;1109:30;;;;;;1495:3:::1;1484:8;;:14;;;;;;;;;;;;;;;;;;1510:19;1525:3;1510:19;;;;;;:::i;:::-;;;;;;;;1426:109:::0;:::o;3112:131::-;3183:7;1128:10;1117:21;;:7;:5;:7::i;:::-;:21;;;1109:30;;;;;;3206:31:::1;;3199:38;;3112:131:::0;:::o;5543:328:4:-;5718:41;5737:12;:10;:12::i;:::-;5751:7;5718:18;:41::i;:::-;5710:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5824:39;5838:4;5844:2;5848:7;5857:5;5824:13;:39::i;:::-;5543:328;;;;:::o;3437:91:12:-;3486:7;3509:13;:11;:13::i;:::-;3502:20;;3437:91;:::o;2772:334:4:-;2845:13;2879:16;2887:7;2879;:16::i;:::-;2871:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2960:21;2984:10;:8;:10::i;:::-;2960:34;;3036:1;3018:7;3012:21;:25;:86;;;;;;;;;;;;;;;;;3064:7;3073:18;:7;:16;:18::i;:::-;3047:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3012:86;3005:93;;;2772:334;;;:::o;545:52:12:-;;;;:::o;3336:95::-;3388:7;3411:14;;3404:21;;3336:95;:::o;5154:619::-;1128:10;1117:21;;:7;:5;:7::i;:::-;:21;;;1109:30;;;;;;5274:14:::1;5291:13;:11;:13::i;:::-;5274:30;;5342:14;;5332:6;5323;:15;;;;:::i;:::-;:33;;5315:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5410:14;;5400:6;:24;;5392:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;5464:9;5459:309;5483:9;;:16;;5479:1;:20;5459:309;;;5549:1;5525:26;;:9;;5535:1;5525:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:26;;;;5517:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;5605:9;5601:158;5624:6;5620:1;:10;5601:158;;;5656:40;5668:13;:11;:13::i;:::-;5683:9;;5693:1;5683:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5656:40;;;;;;;:::i;:::-;;;;;;;;5709:38;5719:9;;5729:1;5719:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5733:13;:11;:13::i;:::-;5709:9;:38::i;:::-;5632:3;;;;;:::i;:::-;;;;5601:158;;;;5501:3;;;;;:::i;:::-;;;;5459:309;;;;1146:1;5154:619:::0;;;:::o;4646:164:4:-;4743:4;4767:18;:25;4786:5;4767:25;;;;;;;;;;;;;;;:35;4793:8;4767:35;;;;;;;;;;;;;;;;;;;;;;;;;4760:42;;4646:164;;;;:::o;1289:131:12:-;1128:10;1117:21;;:7;:5;:7::i;:::-;:21;;;1109:30;;;;;;1408:6:::1;1376:29;:38;;;;1289:131:::0;:::o;1901:192:11:-;1232:12;:10;:12::i;:::-;1221:23;;:7;:5;:7::i;:::-;:23;;;1213:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2010:1:::1;1990:22;;:8;:22;;;;1982:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2066:19;2076:8;2066:9;:19::i;:::-;1901:192:::0;:::o;2713:95:12:-;1128:10;1117:21;;:7;:5;:7::i;:::-;:21;;;1109:30;;;;;;2799:3:::1;2782:14;:20;;;;2713:95:::0;:::o;1483:305:4:-;1585:4;1637:25;1622:40;;;:11;:40;;;;:105;;;;1694:33;1679:48;;;:11;:48;;;;1622:105;:158;;;;1744:36;1768:11;1744:23;:36::i;:::-;1622:158;1602:178;;1483:305;;;:::o;7381:127::-;7446:4;7498:1;7470:30;;:7;:16;7478:7;7470:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7463:37;;7381:127;;;:::o;602:98:1:-;655:7;682:10;675:17;;602:98;:::o;11363:174:4:-;11465:2;11438:15;:24;11454:7;11438:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11521:7;11517:2;11483:46;;11492:23;11507:7;11492:14;:23::i;:::-;11483:46;;;;;;;;;;;;11363:174;;:::o;7675:348::-;7768:4;7793:16;7801:7;7793;:16::i;:::-;7785:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7869:13;7885:23;7900:7;7885:14;:23::i;:::-;7869:39;;7938:5;7927:16;;:7;:16;;;:51;;;;7971:7;7947:31;;:20;7959:7;7947:11;:20::i;:::-;:31;;;7927:51;:87;;;;7982:32;7999:5;8006:7;7982:16;:32::i;:::-;7927:87;7919:96;;;7675:348;;;;:::o;10667:578::-;10826:4;10799:31;;:23;10814:7;10799:14;:23::i;:::-;:31;;;10791:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10909:1;10895:16;;:2;:16;;;;10887:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10965:39;10986:4;10992:2;10996:7;10965:20;:39::i;:::-;11069:29;11086:1;11090:7;11069:8;:29::i;:::-;11130:1;11111:9;:15;11121:4;11111:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;11159:1;11142:9;:13;11152:2;11142:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;11190:2;11171:7;:16;11179:7;11171:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;11229:7;11225:2;11210:27;;11219:4;11210:27;;;;;;;;;;;;10667:578;;;:::o;8365:110::-;8441:26;8451:2;8455:7;8441:26;;;;;;;;;;;;:9;:26::i;:::-;8365:110;;:::o;2101:173:11:-;2157:16;2176:6;;;;;;;;;;;2157:25;;2202:8;2193:6;;:17;;;;;;;;;;;;;;;;;;2257:8;2226:40;;2247:8;2226:40;;;;;;;;;;;;2101:173;;:::o;6753:315:4:-;6910:28;6920:4;6926:2;6930:7;6910:9;:28::i;:::-;6957:48;6980:4;6986:2;6990:7;6999:5;6957:22;:48::i;:::-;6949:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6753:315;;;;:::o;3625:108:12:-;3685:13;3714;3707:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3625:108;:::o;288:723:13:-;344:13;574:1;565:5;:10;561:53;;;592:10;;;;;;;;;;;;;;;;;;;;;561:53;624:12;639:5;624:20;;655:14;680:78;695:1;687:4;:9;680:78;;713:8;;;;;:::i;:::-;;;;744:2;736:10;;;;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;768:39;;818:154;834:1;825:5;:10;818:154;;862:1;852:11;;;;;:::i;:::-;;;929:2;921:5;:10;;;;:::i;:::-;908:2;:24;;;;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;958:2;949:11;;;;;:::i;:::-;;;818:154;;;996:6;982:21;;;;;288:723;;;;:::o;787:157:3:-;872:4;911:25;896:40;;;:11;:40;;;;889:47;;787:157;;;:::o;2615:589:5:-;2759:45;2786:4;2792:2;2796:7;2759:26;:45::i;:::-;2837:1;2821:18;;:4;:18;;;2817:187;;;2856:40;2888:7;2856:31;:40::i;:::-;2817:187;;;2926:2;2918:10;;:4;:10;;;2914:90;;2945:47;2978:4;2984:7;2945:32;:47::i;:::-;2914:90;2817:187;3032:1;3018:16;;:2;:16;;;3014:183;;;3051:45;3088:7;3051:36;:45::i;:::-;3014:183;;;3124:4;3118:10;;:2;:10;;;3114:83;;3145:40;3173:2;3177:7;3145:27;:40::i;:::-;3114:83;3014:183;2615:589;;;:::o;8702:321:4:-;8832:18;8838:2;8842:7;8832:5;:18::i;:::-;8883:54;8914:1;8918:2;8922:7;8931:5;8883:22;:54::i;:::-;8861:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;8702:321;;;:::o;12102:799::-;12257:4;12278:15;:2;:13;;;:15::i;:::-;12274:620;;;12330:2;12314:36;;;12351:12;:10;:12::i;:::-;12365:4;12371:7;12380:5;12314:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12310:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12573:1;12556:6;:13;:18;12552:272;;;12599:60;;;;;;;;;;:::i;:::-;;;;;;;;12552:272;12774:6;12768:13;12759:6;12755:2;12751:15;12744:38;12310:529;12447:41;;;12437:51;;;:6;:51;;;;12430:58;;;;;12274:620;12878:4;12871:11;;12102:799;;;;;;;:::o;13473:126::-;;;;:::o;3927:164:5:-;4031:10;:17;;;;4004:15;:24;4020:7;4004:24;;;;;;;;;;;:44;;;;4059:10;4075:7;4059:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3927:164;:::o;4718:988::-;4984:22;5034:1;5009:22;5026:4;5009:16;:22::i;:::-;:26;;;;:::i;:::-;4984:51;;5046:18;5067:17;:26;5085:7;5067:26;;;;;;;;;;;;5046:47;;5214:14;5200:10;:28;5196:328;;5245:19;5267:12;:18;5280:4;5267:18;;;;;;;;;;;;;;;:34;5286:14;5267:34;;;;;;;;;;;;5245:56;;5351:11;5318:12;:18;5331:4;5318:18;;;;;;;;;;;;;;;:30;5337:10;5318:30;;;;;;;;;;;:44;;;;5468:10;5435:17;:30;5453:11;5435:30;;;;;;;;;;;:43;;;;5196:328;;5620:17;:26;5638:7;5620:26;;;;;;;;;;;5613:33;;;5664:12;:18;5677:4;5664:18;;;;;;;;;;;;;;;:34;5683:14;5664:34;;;;;;;;;;;5657:41;;;4718:988;;;;:::o;6001:1079::-;6254:22;6299:1;6279:10;:17;;;;:21;;;;:::i;:::-;6254:46;;6311:18;6332:15;:24;6348:7;6332:24;;;;;;;;;;;;6311:45;;6683:19;6705:10;6716:14;6705:26;;;;;;;;;;;;;;;;;;;;;;;;6683:48;;6769:11;6744:10;6755;6744:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;6880:10;6849:15;:28;6865:11;6849:28;;;;;;;;;;;:41;;;;7021:15;:24;7037:7;7021:24;;;;;;;;;;;7014:31;;;7056:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6001:1079;;;;:::o;3505:221::-;3590:14;3607:20;3624:2;3607:16;:20::i;:::-;3590:37;;3665:7;3638:12;:16;3651:2;3638:16;;;;;;;;;;;;;;;:24;3655:6;3638:24;;;;;;;;;;;:34;;;;3712:6;3683:17;:26;3701:7;3683:26;;;;;;;;;;;:35;;;;3505:221;;;:::o;9359:382:4:-;9453:1;9439:16;;:2;:16;;;;9431:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9512:16;9520:7;9512;:16::i;:::-;9511:17;9503:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9574:45;9603:1;9607:2;9611:7;9574:20;:45::i;:::-;9649:1;9632:9;:13;9642:2;9632:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9680:2;9661:7;:16;9669:7;9661:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9725:7;9721:2;9700:33;;9717:1;9700:33;;;;;;;;;;;;9359:382;;:::o;745:387:0:-;805:4;1013:12;1080:7;1068:20;1060:28;;1123:1;1116:4;:8;1109:15;;;745:387;;;:::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://77846bede2ad4a77a93fe787330f0fe8ba75df6eccf8ffcc670691e04bcf497f
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.