ETH Price: $3,433.64 (-1.54%)
Gas: 3 Gwei

Token

Intree Cards (IC)
 

Overview

Max Total Supply

537 IC

Holders

182

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rayyu.eth
Balance
2 IC
0x7f0FaBb9e9CA34fD876838d959557d81108681dC
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Intree Club is a movement of people co-developing a new social media platform. Intree is a Copenhagen-based startup that wants to fix social media by bringing in privacy, authencity and trust.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
IntreeCards

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, None license
File 1 of 15 : IntreeCard.sol
pragma solidity >=0.7.0 <0.9.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/ERC721A.sol";

struct PresaleConfig {
  uint32 startTime;
  uint32 endTime;
  uint256 whitelistMintPerWalletMax;
  uint256 whitelistPrice;
  uint256 maxSupply;
}

// Bureaucrat (LKL) & Stonk
contract IntreeCards is ERC721A, ERC2981, Ownable, ReentrancyGuard {
    using Strings for uint256;

    bytes32 public merkleRoot;

    string public baseURI;
    
    uint32 public publicSaleStartTime;
    uint32 MINT_PER_TX = 10;

    uint256 public CURRENT_PHASE = 0; // 0 -> Alpha, 1 -> Beta, 2 -> Charlie.
    uint256 public PRICE = 0.12 ether;
    uint256 public whitelistTotalSupply = 0;


    // UPDATE SUPPLY AFTER EACH PHASE.
    uint256 public CURRENT_MAX_SUPPLY = 1000;
    uint256[] public SUPPLY_MAX = [1000, 1000, 2580];
    uint256[] public WL_SUPPLY_MAX = [1000, 1000, 2580];

    PresaleConfig public presaleConfig;

    bool public presalePaused = false;
    bool public publicSalePaused = true;
    bool public revealed;

    mapping(address => mapping(uint256 => uint256)) public walletMints;

    constructor(
        string memory _name,
        string memory _symbol,
        address royaltiesReceiver,
        uint96 royaltyInBips  // "basis points" (points per 10_000, e.g., 10% = 1000 bps)
    ) ERC721A(_name, _symbol) payable {
        presaleConfig = PresaleConfig({
            startTime: 1651413600, // Sun May 01 2022 14:00:00 GMT+0000
            endTime: 1651435200, //	Sun May 01 2022 20:00:00 GMT+0000
            whitelistMintPerWalletMax: 2,
            whitelistPrice: 0.12 ether,
            maxSupply: 1000
        });
        publicSaleStartTime = 1651437000; // Sun May 01 2022 20:30:00 GMT+0000
        setRoyaltyInfo(royaltiesReceiver, royaltyInBips);
    }

    modifier mintCompliance(uint256 _mintAmount) {
        require(msg.sender == tx.origin, "Nope. Can't mint through another contract.");
        require(_mintAmount <= MINT_PER_TX, "You can mint only 10 per TX!");
        // Total Phase-limiting supply:
        require(_mintAmount + totalSupply() <= CURRENT_MAX_SUPPLY, "You can't mint more than the max supply!");
        _;
    }

    function presaleMint(uint256 _mintAmount, bytes32[] calldata _merkleProof)
        external
        payable
        nonReentrant
        mintCompliance(_mintAmount) 
    {
        PresaleConfig memory config_ = presaleConfig;
        
        require(!presalePaused, "Presale has been paused.");
        require(block.timestamp >= config_.startTime && block.timestamp < config_.endTime, "Presale is not active yet!");
        require((walletMints[msg.sender][CURRENT_PHASE] + _mintAmount) <= config_.whitelistMintPerWalletMax, "Exceeds whitelist max mint per wallet!");
        require(_mintAmount + whitelistTotalSupply <= currentMaxSupply(WL_SUPPLY_MAX), "Exceeds allowed max supply for this phase!"); 
        require(msg.value >= (config_.whitelistPrice * _mintAmount), "Insufficient funds!");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid Merkle Proof.");

        unchecked {
            walletMints[msg.sender][CURRENT_PHASE] += _mintAmount;
            whitelistTotalSupply += _mintAmount;
        }
        _safeMint(msg.sender, _mintAmount);
    }

    function publicMint(uint256 _mintAmount)
        external
        payable
        nonReentrant
        mintCompliance(_mintAmount)
    {
        require(!publicSalePaused, "Public minting is paused.");
        require(publicSaleStartTime <= block.timestamp, "Public sale is not active yet!");
        require(msg.value >= (PRICE * _mintAmount), "Insufficient funds!");
        require(_mintAmount + totalSupply() <= currentMaxSupply(SUPPLY_MAX), "Exceeds allowed max supply for this phase!"); 

        unchecked { walletMints[msg.sender][CURRENT_PHASE] += _mintAmount; }
        _safeMint(msg.sender, _mintAmount);
    }
    
     // Reserves for the team, promos, and VIP sale.
    function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
        _safeMint(_receiver, _mintAmount);
    }

    function _startTokenId()
        internal
        view
        virtual
        override returns (uint256) 
    {
        return 1;
    }

    function currentMaxSupply(uint256[] memory _mintTypeMaxSupply) internal view returns (uint256) {
        uint256 _supply;
        uint i;
        // Sums over total supply for WL OR Public sale.
        for (i=0; i <= CURRENT_PHASE; i++) {
            _supply += _mintTypeMaxSupply[i];
        }
        // Returns the total minted across all phases
        // for either WL OR Public sale.
        return _supply;
    }

    function walletStatus(address _address) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_address);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= currentMaxSupply(SUPPLY_MAX)) {
            address currentTokenOwner = ownerOf(currentTokenId);
            if (currentTokenOwner == _address) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }
            currentTokenId++;
        }
        return ownedTokenIds;
    }

    function setRevealed() external onlyOwner {
        revealed = true;
    }

    function setCurrentPhase(uint256 _phase) external onlyOwner { 
        CURRENT_PHASE = _phase;
    }

    function pausePublic(bool _state) external onlyOwner {
        publicSalePaused = _state;
    }

    function pausePresale(bool _state) external onlyOwner {
        presalePaused = _state;
    }

    function setPublicSaleStartTime(uint32 startTime_) external onlyOwner {
        publicSaleStartTime = startTime_;
    }

    function configurePresale(uint32 _startTime, uint32 _endTime, uint256 _price, uint32 _walletLimitPerUser) external onlyOwner {
        presaleConfig.startTime = _startTime;
        presaleConfig.endTime = _endTime;
        presaleConfig.whitelistPrice = _price;
        presaleConfig.whitelistMintPerWalletMax = _walletLimitPerUser;
    }

    function setMerkleRoot(bytes32 merkleRoot_) external onlyOwner {
        merkleRoot = merkleRoot_;
    }

    function setPublicPrice(uint256 _price) external onlyOwner {
        // Price in uint256
        PRICE = _price;
    }

    function setCurrentMaxSupply(uint256 _supply) external onlyOwner {
        CURRENT_MAX_SUPPLY = _supply;
    }

    function setMaxSupplyPublic(uint256 _supply, uint16 _phase) external onlyOwner {
        SUPPLY_MAX[_phase] = _supply;
    }

    function setMaxSupplyPresale(uint256 _supply, uint16 _phase) external onlyOwner {
        WL_SUPPLY_MAX[_phase] = _supply;
    }

    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    /*
    * ROYALTIES
    */
    function setRoyaltyInfo(address receiver, uint96 feeNumerator) public onlyOwner {
        _setDefaultRoyalty(receiver, feeNumerator);
    }

    function deleteDefaultRoyalty() external onlyOwner {
        _deleteDefaultRoyalty();
    }

    function setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) external onlyOwner {
        _setTokenRoyalty(tokenId, receiver, feeNumerator);
    }

    function resetTokenRoyalty(uint256 tokenId) external onlyOwner {
        _resetTokenRoyalty(tokenId);
    }

    /*
    * METADATA URI
    */
    function _baseURI()
        internal 
        view 
        virtual
        override returns (string memory)
    {
        return baseURI;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (!revealed) return _baseURI();
        return string(abi.encodePacked(_baseURI(), _tokenId.toString(), ".json"));
    }
    
}

File 2 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 3 of 15 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 4 of 15 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 5 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 6 of 15 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 7 of 15 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 8 of 15 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 9 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 10 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 11 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

File 12 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 13 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 14 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 15 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 20000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"royaltiesReceiver","type":"address"},{"internalType":"uint96","name":"royaltyInBips","type":"uint96"}],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":[],"name":"CURRENT_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CURRENT_PHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"SUPPLY_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"WL_SUPPLY_MAX","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_startTime","type":"uint32"},{"internalType":"uint32","name":"_endTime","type":"uint32"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint32","name":"_walletLimitPerUser","type":"uint32"}],"name":"configurePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":"bool","name":"_state","type":"bool"}],"name":"pausePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pausePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presaleConfig","outputs":[{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint32","name":"endTime","type":"uint32"},{"internalType":"uint256","name":"whitelistMintPerWalletMax","type":"uint256"},{"internalType":"uint256","name":"whitelistPrice","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStartTime","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"resetTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setCurrentMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phase","type":"uint256"}],"name":"setCurrentPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint16","name":"_phase","type":"uint16"}],"name":"setMaxSupplyPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint16","name":"_phase","type":"uint16"}],"name":"setMaxSupplyPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"startTime_","type":"uint32"}],"name":"setPublicSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","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":"_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":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"walletMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletStatus","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600e805463ffffffff60201b1916640a000000001790556000600f8190556701aa535d3d0c00006010556011556103e8601281905560e0604052608081815260a091909152610a1460c0526200005a90601390600362000358565b50604080516060810182526103e88082526020820152610a14918101919091526200008a90601490600362000358565b506019805461ffff19166101001790556040516200470438819003908190833981016040819052620000bc91620004f9565b835184908490620000d5906002906020850190620003ae565b508051620000eb906003906020840190620003ae565b5050600160005550620000fe3362000195565b6001600b556040805160a08101825263626e9260815263626ee6c0602082015260029181018290526701aa535d3d0c0000606082018190526103e860809092018290526015805467626ee6c0626e92606001600160401b0319909116179055601692909255601791909155601855600e805463ffffffff191663626eedc81790556200018b8282620001e7565b50505050620005f8565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620002475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b62000253828262000257565b5050565b6127106001600160601b0382161115620002c75760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084016200023e565b6001600160a01b0382166200031f5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016200023e565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b8280548282559060005260206000209081019282156200039c579160200282015b828111156200039c578251829061ffff1690559160200191906001019062000379565b50620003aa9291506200042b565b5090565b828054620003bc90620005a5565b90600052602060002090601f016020900481019282620003e057600085556200039c565b82601f10620003fb57805160ff19168380011785556200039c565b828001600101855582156200039c579182015b828111156200039c5782518255916020019190600101906200040e565b5b80821115620003aa57600081556001016200042c565b600082601f8301126200045457600080fd5b81516001600160401b0380821115620004715762000471620005e2565b604051601f8301601f19908116603f011681019082821181831017156200049c576200049c620005e2565b81604052838152602092508683858801011115620004b957600080fd5b600091505b83821015620004dd5785820183015181830184015290820190620004be565b83821115620004ef5760008385830101525b9695505050505050565b600080600080608085870312156200051057600080fd5b84516001600160401b03808211156200052857600080fd5b620005368883890162000442565b955060208701519150808211156200054d57600080fd5b506200055c8782880162000442565b604087015190945090506001600160a01b03811681146200057c57600080fd5b60608601519092506001600160601b03811681146200059a57600080fd5b939692955090935050565b600181811c90821680620005ba57607f821691505b60208210811415620005dc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6140fc80620006086000396000f3fe60806040526004361061034a5760003560e01c806373022011116101bb578063adc3a788116100f7578063d7299ef711610095578063efbd73f41161006f578063efbd73f4146109e1578063f2fde38b14610a01578063f79c173f14610a21578063fd88fa6914610a4157600080fd5b8063d7299ef714610958578063e3e1e8ef14610978578063e985e9c51461098b57600080fd5b8063bd4af89c116100d1578063bd4af89c146108e2578063c6275255146108f8578063c87b56dd14610918578063d1f318c11461093857600080fd5b8063adc3a7881461088c578063b88d4fde146108a2578063bb173ddd146108c257600080fd5b80638da5cb5b11610164578063a22cb4651161013e578063a22cb46514610805578063a744685f14610825578063a79fdbb41461085d578063aa1b103f1461087757600080fd5b80638da5cb5b146107a557806392316b8b146107d057806395d89b41146107f057600080fd5b80638a616bc0116101955780638a616bc0146107595780638c5f1e3e146107795780638d859f3e1461078f57600080fd5b806373022011146106f95780637cb64759146107195780637d3e1ee41461073957600080fd5b80633ccfd60b1161028a5780635944c753116102335780636bb7b1d91161020d5780636bb7b1d91461067d5780636c0360eb146106af57806370a08231146106c4578063715018a6146106e457600080fd5b80635944c7531461061d5780635fd84c281461063d5780636352211e1461065d57600080fd5b80634e3f8e4e116102645780634e3f8e4e146105bd57806351830227146105dd57806355f804b3146105fd57600080fd5b80633ccfd60b1461055b57806342842e0e146105705780634d6d0af81461059057600080fd5b806318160ddd116102f75780632db11544116102d15780632db11544146104fd5780632eb4a7ab14610510578063302cfe30146105265780633bd649681461054657600080fd5b806318160ddd1461044c57806323b872dd146104915780632a55205a146104b157600080fd5b806306fdde031161032857806306fdde03146103c5578063081812fc146103e7578063095ea7b31461042c57600080fd5b806301ffc9a71461034f57806302fa7c4714610384578063069cd573146103a6575b600080fd5b34801561035b57600080fd5b5061036f61036a366004613b2c565b610aa7565b60405190151581526020015b60405180910390f35b34801561039057600080fd5b506103a461039f366004613ace565b610ab8565b005b3480156103b257600080fd5b5060195461036f90610100900460ff1681565b3480156103d157600080fd5b506103da610b32565b60405161037b9190613e7c565b3480156103f357600080fd5b50610407610402366004613b13565b610bc4565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161037b565b34801561043857600080fd5b506103a4610447366004613aa4565b610c2e565b34801561045857600080fd5b50600154600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff015b60405190815260200161037b565b34801561049d57600080fd5b506103a46104ac3660046139c2565b610d15565b3480156104bd57600080fd5b506104d16104cc366004613cc4565b610d20565b6040805173ffffffffffffffffffffffffffffffffffffffff909316835260208301919091520161037b565b6103a461050b366004613b13565b610e17565b34801561051c57600080fd5b50610483600c5481565b34801561053257600080fd5b50610483610541366004613b13565b611233565b34801561055257600080fd5b506103a4611254565b34801561056757600080fd5b506103a46112ea565b34801561057c57600080fd5b506103a461058b3660046139c2565b61139a565b34801561059c57600080fd5b506105b06105ab36600461396d565b6113b5565b60405161037b9190613e38565b3480156105c957600080fd5b506103a46105d8366004613d01565b611504565b3480156105e957600080fd5b5060195461036f9062010000900460ff1681565b34801561060957600080fd5b506103a4610618366004613b66565b6115b9565b34801561062957600080fd5b506103a4610638366004613bd2565b611633565b34801561064957600080fd5b506103a4610658366004613ce6565b6116a5565b34801561066957600080fd5b50610407610678366004613b13565b611743565b34801561068957600080fd5b50600e5461069a9063ffffffff1681565b60405163ffffffff909116815260200161037b565b3480156106bb57600080fd5b506103da611755565b3480156106d057600080fd5b506104836106df36600461396d565b6117e3565b3480156106f057600080fd5b506103a4611865565b34801561070557600080fd5b506103a4610714366004613b13565b6118d8565b34801561072557600080fd5b506103a4610734366004613b13565b611944565b34801561074557600080fd5b506103a4610754366004613b13565b6119b0565b34801561076557600080fd5b506103a4610774366004613b13565b611a1c565b34801561078557600080fd5b50610483600f5481565b34801561079b57600080fd5b5061048360105481565b3480156107b157600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff16610407565b3480156107dc57600080fd5b506104836107eb366004613b13565b611a94565b3480156107fc57600080fd5b506103da611aa4565b34801561081157600080fd5b506103a4610820366004613a7a565b611ab3565b34801561083157600080fd5b50610483610840366004613aa4565b601a60209081526000928352604080842090915290825290205481565b34801561086957600080fd5b5060195461036f9060ff1681565b34801561088357600080fd5b506103a4611b9a565b34801561089857600080fd5b5061048360125481565b3480156108ae57600080fd5b506103a46108bd3660046139fe565b611c0b565b3480156108ce57600080fd5b506103a46108dd366004613c8d565b611c82565b3480156108ee57600080fd5b5061048360115481565b34801561090457600080fd5b506103a4610913366004613b13565b611d11565b34801561092457600080fd5b506103da610933366004613b13565b611d7d565b34801561094457600080fd5b506103a4610953366004613c8d565b611e4a565b34801561096457600080fd5b506103a4610973366004613af8565b611ec9565b6103a4610986366004613c0e565b611f61565b34801561099757600080fd5b5061036f6109a636600461398f565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109ed57600080fd5b506103a46109fc366004613baf565b61252a565b348015610a0d57600080fd5b506103a4610a1c36600461396d565b61259b565b348015610a2d57600080fd5b506103a4610a3c366004613af8565b612694565b348015610a4d57600080fd5b50601554601654601754601854610a779363ffffffff808216946401000000009092041692909185565b6040805163ffffffff9687168152959094166020860152928401919091526060830152608082015260a00161037b565b6000610ab282612732565b92915050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610b245760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b610b2e8282612788565b5050565b606060028054610b4190613f3b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6d90613f3b565b8015610bba5780601f10610b8f57610100808354040283529160200191610bba565b820191906000526020600020905b815481529060010190602001808311610b9d57829003601f168201915b5050505050905090565b6000610bcf826128cd565b610c05576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610c3982611743565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca1576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff821614801590610cce5750610ccc81336109a6565b155b15610d05576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d1083838361291f565b505050565b610d108383836129a0565b600082815260096020908152604080832081518083019092525473ffffffffffffffffffffffffffffffffffffffff8116808352740100000000000000000000000000000000000000009091046bffffffffffffffffffffffff16928201929092528291610ddb57506040805180820190915260085473ffffffffffffffffffffffffffffffffffffffff811682527401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1660208201525b602081015160009061271090610dff906bffffffffffffffffffffffff1687613ebb565b610e099190613ea7565b915196919550909350505050565b6002600b541415610e6a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b1b565b6002600b5580333214610ee55760405162461bcd60e51b815260206004820152602a60248201527f4e6f70652e2043616e2774206d696e74207468726f75676820616e6f7468657260448201527f20636f6e74726163742e000000000000000000000000000000000000000000006064820152608401610b1b565b600e54640100000000900463ffffffff16811115610f455760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e206d696e74206f6e6c792031302070657220545821000000006044820152606401610b1b565b601254600154600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01610f7b9083613e8f565b1115610fef5760405162461bcd60e51b815260206004820152602860248201527f596f752063616e2774206d696e74206d6f7265207468616e20746865206d617860448201527f20737570706c79210000000000000000000000000000000000000000000000006064820152608401610b1b565b601954610100900460ff16156110475760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e74696e67206973207061757365642e000000000000006044820152606401610b1b565b600e544263ffffffff90911611156110a15760405162461bcd60e51b815260206004820152601e60248201527f5075626c69632073616c65206973206e6f7420616374697665207965742100006044820152606401610b1b565b816010546110af9190613ebb565b3410156110fe5760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610b1b565b611157601380548060200260200160405190810160405280929190818152602001828054801561114d57602002820191906000526020600020905b815481526020019060010190808311611139575b5050505050612cd8565b600154600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0161118a9084613e8f565b11156111fe5760405162461bcd60e51b815260206004820152602a60248201527f4578636565647320616c6c6f776564206d617820737570706c7920666f72207460448201527f68697320706861736521000000000000000000000000000000000000000000006064820152608401610b1b565b336000818152601a60209081526040808320600f548452909152902080548401905561122a9083612d27565b50506001600b55565b6014818154811061124357600080fd5b600091825260209091200154905081565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146112bb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b601980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff1662010000179055565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146113515760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b600a5460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02916000818181858888f19350505050158015611397573d6000803e3d6000fd5b50565b610d1083838360405180602001604052806000815250611c0b565b606060006113c2836117e3565b905060008167ffffffffffffffff8111156113df576113df614069565b604051908082528060200260200182016040528015611408578160200160208202803683370190505b509050600160005b83811080156114755750611471601380548060200260200160405190810160405280929190818152602001828054801561114d5760200282019190600052602060002090815481526020019060010190808311611139575050505050612cd8565b8211155b156114fa57600061148583611743565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114e757828483815181106114ce576114ce61403a565b6020908102919091010152816114e381613f8f565b9250505b826114f181613f8f565b93505050611410565b5090949350505050565b600a5473ffffffffffffffffffffffffffffffffffffffff16331461156b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b6015805463ffffffff948516640100000000027fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000909116958516959095179490941790935560175516601655565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146116205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b8051610b2e90600d9060208401906137d7565b600a5473ffffffffffffffffffffffffffffffffffffffff16331461169a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b610d10838383612d41565b600a5473ffffffffffffffffffffffffffffffffffffffff16331461170c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001663ffffffff92909216919091179055565b600061174e82612e97565b5192915050565b600d805461176290613f3b565b80601f016020809104026020016040519081016040528092919081815260200182805461178e90613f3b565b80156117db5780601f106117b0576101008083540402835291602001916117db565b820191906000526020600020905b8154815290600101906020018083116117be57829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216611832576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146118cc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b6118d66000613072565b565b600a5473ffffffffffffffffffffffffffffffffffffffff16331461193f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b601255565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146119ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b600c55565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611a175760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b600f55565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611a835760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b600090815260096020526040812055565b6013818154811061124357600080fd5b606060038054610b4190613f3b565b73ffffffffffffffffffffffffffffffffffffffff8216331415611b03576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611c015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b6118d66000600855565b611c168484846129a0565b73ffffffffffffffffffffffffffffffffffffffff83163b15158015611c455750611c43848484846130e9565b155b15611c7c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611ce95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b8160138261ffff1681548110611d0157611d0161403a565b6000918252602090912001555050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611d785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b601055565b6060611d88826128cd565b611dfa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610b1b565b60195462010000900460ff16611e1257610ab261326f565b611e1a61326f565b611e238361327e565b604051602001611e34929190613d98565b6040516020818303038152906040529050919050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611eb15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b8160148261ffff1681548110611d0157611d0161403a565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611f305760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b601980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6002600b541415611fb45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b1b565b6002600b558233321461202f5760405162461bcd60e51b815260206004820152602a60248201527f4e6f70652e2043616e2774206d696e74207468726f75676820616e6f7468657260448201527f20636f6e74726163742e000000000000000000000000000000000000000000006064820152608401610b1b565b600e54640100000000900463ffffffff1681111561208f5760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e206d696e74206f6e6c792031302070657220545821000000006044820152606401610b1b565b601254600154600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016120c59083613e8f565b11156121395760405162461bcd60e51b815260206004820152602860248201527f596f752063616e2774206d696e74206d6f7265207468616e20746865206d617860448201527f20737570706c79210000000000000000000000000000000000000000000000006064820152608401610b1b565b6040805160a08101825260155463ffffffff8082168352640100000000909104166020820152601654918101919091526017546060820152601854608082015260195460ff16156121cc5760405162461bcd60e51b815260206004820152601860248201527f50726573616c6520686173206265656e207061757365642e00000000000000006044820152606401610b1b565b805163ffffffff1642108015906121ec5750806020015163ffffffff1642105b6122385760405162461bcd60e51b815260206004820152601a60248201527f50726573616c65206973206e6f742061637469766520796574210000000000006044820152606401610b1b565b604080820151336000908152601a6020908152838220600f54835290529190912054612265908790613e8f565b11156122d95760405162461bcd60e51b815260206004820152602660248201527f457863656564732077686974656c697374206d6178206d696e7420706572207760448201527f616c6c65742100000000000000000000000000000000000000000000000000006064820152608401610b1b565b612330601480548060200260200160405190810160405280929190818152602001828054801561114d5760200282019190600052602060002090815481526020019060010190808311611139575050505050612cd8565b60115461233d9087613e8f565b11156123b15760405162461bcd60e51b815260206004820152602a60248201527f4578636565647320616c6c6f776564206d617820737570706c7920666f72207460448201527f68697320706861736521000000000000000000000000000000000000000000006064820152608401610b1b565b8481606001516123c19190613ebb565b3410156124105760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610b1b565b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b16602082015260009060340160405160208183030381529060405280519060200120905061249d85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c5491508490506133b0565b6124e95760405162461bcd60e51b815260206004820152601560248201527f496e76616c6964204d65726b6c652050726f6f662e00000000000000000000006044820152606401610b1b565b336000818152601a60209081526040808320600f5484529091529020805488019055601180548801905561251d9087612d27565b50506001600b5550505050565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146125915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b610b2e8183612d27565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146126025760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b73ffffffffffffffffffffffffffffffffffffffff811661268b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b1b565b61139781613072565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146126fb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b60198054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a000000000000000000000000000000000000000000000000000000001480610ab25750610ab2826133c6565b6127106bffffffffffffffffffffffff8216111561280e5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610b1b565b73ffffffffffffffffffffffffffffffffffffffff82166128715760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610b1b565b6040805180820190915273ffffffffffffffffffffffffffffffffffffffff9092168083526bffffffffffffffffffffffff90911660209092018290527401000000000000000000000000000000000000000090910217600855565b6000816001111580156128e1575060005482105b8015610ab25750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006129ab82612e97565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a16576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff86161480612a415750612a4185336109a6565b80612a69575033612a5184610bc4565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612aa2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8416612aef576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612afb6000848761291f565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000080821667ffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080547fffffffff00000000000000000000000000000000000000000000000000000000169094177401000000000000000000000000000000000000000042909216919091021783558701808452922080549193909116612c72576000548214612c72578054602086015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090911673ffffffffffffffffffffffffffffffffffffffff8a16171781555b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60008060005b600f548111612d2057838181518110612cf957612cf961403a565b602002602001015182612d0c9190613e8f565b915080612d1881613f8f565b915050612cde565b5092915050565b610b2e8282604051806020016040528060008152506134a9565b6127106bffffffffffffffffffffffff82161115612dc75760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610b1b565b73ffffffffffffffffffffffffffffffffffffffff8216612e2a5760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20496e76616c696420706172616d657465727300000000006044820152606401610b1b565b60408051808201825273ffffffffffffffffffffffffffffffffffffffff93841681526bffffffffffffffffffffffff9283166020808301918252600096875260099052919094209351905190911674010000000000000000000000000000000000000000029116179055565b60408051606081018252600080825260208201819052918101919091528180600111158015612ec7575060005481105b15613040576000818152600460209081526040918290208251606081018452905473ffffffffffffffffffffffffffffffffffffffff8116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff1615159181018290529061303e57805173ffffffffffffffffffffffffffffffffffffffff1615612f7f579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016000818152600460209081526040918290208251606081018452905473ffffffffffffffffffffffffffffffffffffffff811680835274010000000000000000000000000000000000000000820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff1615159281019290925215613039579392505050565b612f7f565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290613144903390899088908890600401613def565b602060405180830381600087803b15801561315e57600080fd5b505af19250505080156131ac575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526131a991810190613b49565b60015b613220573d8080156131da576040519150601f19603f3d011682016040523d82523d6000602084013e6131df565b606091505b508051613218576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600d8054610b4190613f3b565b6060816132be57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156132e857806132d281613f8f565b91506132e19050600a83613ea7565b91506132c2565b60008167ffffffffffffffff81111561330357613303614069565b6040519080825280601f01601f19166020018201604052801561332d576020820181803683370190505b5090505b841561326757613342600183613ef8565b915061334f600a86613fc8565b61335a906030613e8f565b60f81b81838151811061336f5761336f61403a565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506133a9600a86613ea7565b9450613331565b6000826133bd85846134b6565b14949350505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061345957507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610ab257507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610ab2565b610d10838383600161352a565b600081815b84518110156135225760008582815181106134d8576134d861403a565b602002602001015190508083116134fe576000838152602082905260409020925061350f565b600081815260208490526040902092505b508061351a81613f8f565b9150506134bb565b509392505050565b60005473ffffffffffffffffffffffffffffffffffffffff851661357a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b836135b1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c018116918217680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941690921783900481168c01811690920217909155858452600490925290912080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004290921691909102179055808085018380156136cc575073ffffffffffffffffffffffffffffffffffffffff87163b15155b1561377b575b604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461372a60008884806001019550886130e9565b613760576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156136d257826000541461377657600080fd5b6137ce565b5b60405160018301929073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561377c575b50600055612cd1565b8280546137e390613f3b565b90600052602060002090601f016020900481019282613805576000855561384b565b82601f1061381e57805160ff191683800117855561384b565b8280016001018555821561384b579182015b8281111561384b578251825591602001919060010190613830565b5061385792915061385b565b5090565b5b80821115613857576000815560010161385c565b600067ffffffffffffffff8084111561388b5761388b614069565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156138d1576138d1614069565b816040528093508581528686860111156138ea57600080fd5b858560208301376000602087830101525050509392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461392857600080fd5b919050565b8035801515811461392857600080fd5b803563ffffffff8116811461392857600080fd5b80356bffffffffffffffffffffffff8116811461392857600080fd5b60006020828403121561397f57600080fd5b61398882613904565b9392505050565b600080604083850312156139a257600080fd5b6139ab83613904565b91506139b960208401613904565b90509250929050565b6000806000606084860312156139d757600080fd5b6139e084613904565b92506139ee60208501613904565b9150604084013590509250925092565b60008060008060808587031215613a1457600080fd5b613a1d85613904565b9350613a2b60208601613904565b925060408501359150606085013567ffffffffffffffff811115613a4e57600080fd5b8501601f81018713613a5f57600080fd5b613a6e87823560208401613870565b91505092959194509250565b60008060408385031215613a8d57600080fd5b613a9683613904565b91506139b96020840161392d565b60008060408385031215613ab757600080fd5b613ac083613904565b946020939093013593505050565b60008060408385031215613ae157600080fd5b613aea83613904565b91506139b960208401613951565b600060208284031215613b0a57600080fd5b6139888261392d565b600060208284031215613b2557600080fd5b5035919050565b600060208284031215613b3e57600080fd5b813561398881614098565b600060208284031215613b5b57600080fd5b815161398881614098565b600060208284031215613b7857600080fd5b813567ffffffffffffffff811115613b8f57600080fd5b8201601f81018413613ba057600080fd5b61326784823560208401613870565b60008060408385031215613bc257600080fd5b823591506139b960208401613904565b600080600060608486031215613be757600080fd5b83359250613bf760208501613904565b9150613c0560408501613951565b90509250925092565b600080600060408486031215613c2357600080fd5b83359250602084013567ffffffffffffffff80821115613c4257600080fd5b818601915086601f830112613c5657600080fd5b813581811115613c6557600080fd5b8760208260051b8501011115613c7a57600080fd5b6020830194508093505050509250925092565b60008060408385031215613ca057600080fd5b82359150602083013561ffff81168114613cb957600080fd5b809150509250929050565b60008060408385031215613cd757600080fd5b50508035926020909101359150565b600060208284031215613cf857600080fd5b6139888261393d565b60008060008060808587031215613d1757600080fd5b613d208561393d565b9350613d2e6020860161393d565b925060408501359150613d436060860161393d565b905092959194509250565b60008151808452613d66816020860160208601613f0f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351613daa818460208801613f0f565b835190830190613dbe818360208801613f0f565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613e2e6080830184613d4e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613e7057835183529284019291840191600101613e54565b50909695505050505050565b6020815260006139886020830184613d4e565b60008219821115613ea257613ea2613fdc565b500190565b600082613eb657613eb661400b565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ef357613ef3613fdc565b500290565b600082821015613f0a57613f0a613fdc565b500390565b60005b83811015613f2a578181015183820152602001613f12565b83811115611c7c5750506000910152565b600181811c90821680613f4f57607f821691505b60208210811415613f89577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fc157613fc1613fdc565b5060010190565b600082613fd757613fd761400b565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461139757600080fdfea2646970667358221220d04966df6f404b5a7ac9b4375ae0f5e842bafd806e5a55a59b810cdc310a3dc764736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000644e8c6d0ab42ee5f2117ccb3eea41b0d013f36500000000000000000000000000000000000000000000000000000000000002ee000000000000000000000000000000000000000000000000000000000000000c496e74726565204361726473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024943000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061034a5760003560e01c806373022011116101bb578063adc3a788116100f7578063d7299ef711610095578063efbd73f41161006f578063efbd73f4146109e1578063f2fde38b14610a01578063f79c173f14610a21578063fd88fa6914610a4157600080fd5b8063d7299ef714610958578063e3e1e8ef14610978578063e985e9c51461098b57600080fd5b8063bd4af89c116100d1578063bd4af89c146108e2578063c6275255146108f8578063c87b56dd14610918578063d1f318c11461093857600080fd5b8063adc3a7881461088c578063b88d4fde146108a2578063bb173ddd146108c257600080fd5b80638da5cb5b11610164578063a22cb4651161013e578063a22cb46514610805578063a744685f14610825578063a79fdbb41461085d578063aa1b103f1461087757600080fd5b80638da5cb5b146107a557806392316b8b146107d057806395d89b41146107f057600080fd5b80638a616bc0116101955780638a616bc0146107595780638c5f1e3e146107795780638d859f3e1461078f57600080fd5b806373022011146106f95780637cb64759146107195780637d3e1ee41461073957600080fd5b80633ccfd60b1161028a5780635944c753116102335780636bb7b1d91161020d5780636bb7b1d91461067d5780636c0360eb146106af57806370a08231146106c4578063715018a6146106e457600080fd5b80635944c7531461061d5780635fd84c281461063d5780636352211e1461065d57600080fd5b80634e3f8e4e116102645780634e3f8e4e146105bd57806351830227146105dd57806355f804b3146105fd57600080fd5b80633ccfd60b1461055b57806342842e0e146105705780634d6d0af81461059057600080fd5b806318160ddd116102f75780632db11544116102d15780632db11544146104fd5780632eb4a7ab14610510578063302cfe30146105265780633bd649681461054657600080fd5b806318160ddd1461044c57806323b872dd146104915780632a55205a146104b157600080fd5b806306fdde031161032857806306fdde03146103c5578063081812fc146103e7578063095ea7b31461042c57600080fd5b806301ffc9a71461034f57806302fa7c4714610384578063069cd573146103a6575b600080fd5b34801561035b57600080fd5b5061036f61036a366004613b2c565b610aa7565b60405190151581526020015b60405180910390f35b34801561039057600080fd5b506103a461039f366004613ace565b610ab8565b005b3480156103b257600080fd5b5060195461036f90610100900460ff1681565b3480156103d157600080fd5b506103da610b32565b60405161037b9190613e7c565b3480156103f357600080fd5b50610407610402366004613b13565b610bc4565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161037b565b34801561043857600080fd5b506103a4610447366004613aa4565b610c2e565b34801561045857600080fd5b50600154600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff015b60405190815260200161037b565b34801561049d57600080fd5b506103a46104ac3660046139c2565b610d15565b3480156104bd57600080fd5b506104d16104cc366004613cc4565b610d20565b6040805173ffffffffffffffffffffffffffffffffffffffff909316835260208301919091520161037b565b6103a461050b366004613b13565b610e17565b34801561051c57600080fd5b50610483600c5481565b34801561053257600080fd5b50610483610541366004613b13565b611233565b34801561055257600080fd5b506103a4611254565b34801561056757600080fd5b506103a46112ea565b34801561057c57600080fd5b506103a461058b3660046139c2565b61139a565b34801561059c57600080fd5b506105b06105ab36600461396d565b6113b5565b60405161037b9190613e38565b3480156105c957600080fd5b506103a46105d8366004613d01565b611504565b3480156105e957600080fd5b5060195461036f9062010000900460ff1681565b34801561060957600080fd5b506103a4610618366004613b66565b6115b9565b34801561062957600080fd5b506103a4610638366004613bd2565b611633565b34801561064957600080fd5b506103a4610658366004613ce6565b6116a5565b34801561066957600080fd5b50610407610678366004613b13565b611743565b34801561068957600080fd5b50600e5461069a9063ffffffff1681565b60405163ffffffff909116815260200161037b565b3480156106bb57600080fd5b506103da611755565b3480156106d057600080fd5b506104836106df36600461396d565b6117e3565b3480156106f057600080fd5b506103a4611865565b34801561070557600080fd5b506103a4610714366004613b13565b6118d8565b34801561072557600080fd5b506103a4610734366004613b13565b611944565b34801561074557600080fd5b506103a4610754366004613b13565b6119b0565b34801561076557600080fd5b506103a4610774366004613b13565b611a1c565b34801561078557600080fd5b50610483600f5481565b34801561079b57600080fd5b5061048360105481565b3480156107b157600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff16610407565b3480156107dc57600080fd5b506104836107eb366004613b13565b611a94565b3480156107fc57600080fd5b506103da611aa4565b34801561081157600080fd5b506103a4610820366004613a7a565b611ab3565b34801561083157600080fd5b50610483610840366004613aa4565b601a60209081526000928352604080842090915290825290205481565b34801561086957600080fd5b5060195461036f9060ff1681565b34801561088357600080fd5b506103a4611b9a565b34801561089857600080fd5b5061048360125481565b3480156108ae57600080fd5b506103a46108bd3660046139fe565b611c0b565b3480156108ce57600080fd5b506103a46108dd366004613c8d565b611c82565b3480156108ee57600080fd5b5061048360115481565b34801561090457600080fd5b506103a4610913366004613b13565b611d11565b34801561092457600080fd5b506103da610933366004613b13565b611d7d565b34801561094457600080fd5b506103a4610953366004613c8d565b611e4a565b34801561096457600080fd5b506103a4610973366004613af8565b611ec9565b6103a4610986366004613c0e565b611f61565b34801561099757600080fd5b5061036f6109a636600461398f565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109ed57600080fd5b506103a46109fc366004613baf565b61252a565b348015610a0d57600080fd5b506103a4610a1c36600461396d565b61259b565b348015610a2d57600080fd5b506103a4610a3c366004613af8565b612694565b348015610a4d57600080fd5b50601554601654601754601854610a779363ffffffff808216946401000000009092041692909185565b6040805163ffffffff9687168152959094166020860152928401919091526060830152608082015260a00161037b565b6000610ab282612732565b92915050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610b245760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b610b2e8282612788565b5050565b606060028054610b4190613f3b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6d90613f3b565b8015610bba5780601f10610b8f57610100808354040283529160200191610bba565b820191906000526020600020905b815481529060010190602001808311610b9d57829003601f168201915b5050505050905090565b6000610bcf826128cd565b610c05576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610c3982611743565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca1576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff821614801590610cce5750610ccc81336109a6565b155b15610d05576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d1083838361291f565b505050565b610d108383836129a0565b600082815260096020908152604080832081518083019092525473ffffffffffffffffffffffffffffffffffffffff8116808352740100000000000000000000000000000000000000009091046bffffffffffffffffffffffff16928201929092528291610ddb57506040805180820190915260085473ffffffffffffffffffffffffffffffffffffffff811682527401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1660208201525b602081015160009061271090610dff906bffffffffffffffffffffffff1687613ebb565b610e099190613ea7565b915196919550909350505050565b6002600b541415610e6a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b1b565b6002600b5580333214610ee55760405162461bcd60e51b815260206004820152602a60248201527f4e6f70652e2043616e2774206d696e74207468726f75676820616e6f7468657260448201527f20636f6e74726163742e000000000000000000000000000000000000000000006064820152608401610b1b565b600e54640100000000900463ffffffff16811115610f455760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e206d696e74206f6e6c792031302070657220545821000000006044820152606401610b1b565b601254600154600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01610f7b9083613e8f565b1115610fef5760405162461bcd60e51b815260206004820152602860248201527f596f752063616e2774206d696e74206d6f7265207468616e20746865206d617860448201527f20737570706c79210000000000000000000000000000000000000000000000006064820152608401610b1b565b601954610100900460ff16156110475760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e74696e67206973207061757365642e000000000000006044820152606401610b1b565b600e544263ffffffff90911611156110a15760405162461bcd60e51b815260206004820152601e60248201527f5075626c69632073616c65206973206e6f7420616374697665207965742100006044820152606401610b1b565b816010546110af9190613ebb565b3410156110fe5760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610b1b565b611157601380548060200260200160405190810160405280929190818152602001828054801561114d57602002820191906000526020600020905b815481526020019060010190808311611139575b5050505050612cd8565b600154600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0161118a9084613e8f565b11156111fe5760405162461bcd60e51b815260206004820152602a60248201527f4578636565647320616c6c6f776564206d617820737570706c7920666f72207460448201527f68697320706861736521000000000000000000000000000000000000000000006064820152608401610b1b565b336000818152601a60209081526040808320600f548452909152902080548401905561122a9083612d27565b50506001600b55565b6014818154811061124357600080fd5b600091825260209091200154905081565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146112bb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b601980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff1662010000179055565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146113515760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b600a5460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02916000818181858888f19350505050158015611397573d6000803e3d6000fd5b50565b610d1083838360405180602001604052806000815250611c0b565b606060006113c2836117e3565b905060008167ffffffffffffffff8111156113df576113df614069565b604051908082528060200260200182016040528015611408578160200160208202803683370190505b509050600160005b83811080156114755750611471601380548060200260200160405190810160405280929190818152602001828054801561114d5760200282019190600052602060002090815481526020019060010190808311611139575050505050612cd8565b8211155b156114fa57600061148583611743565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114e757828483815181106114ce576114ce61403a565b6020908102919091010152816114e381613f8f565b9250505b826114f181613f8f565b93505050611410565b5090949350505050565b600a5473ffffffffffffffffffffffffffffffffffffffff16331461156b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b6015805463ffffffff948516640100000000027fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000909116958516959095179490941790935560175516601655565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146116205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b8051610b2e90600d9060208401906137d7565b600a5473ffffffffffffffffffffffffffffffffffffffff16331461169a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b610d10838383612d41565b600a5473ffffffffffffffffffffffffffffffffffffffff16331461170c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001663ffffffff92909216919091179055565b600061174e82612e97565b5192915050565b600d805461176290613f3b565b80601f016020809104026020016040519081016040528092919081815260200182805461178e90613f3b565b80156117db5780601f106117b0576101008083540402835291602001916117db565b820191906000526020600020905b8154815290600101906020018083116117be57829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216611832576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146118cc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b6118d66000613072565b565b600a5473ffffffffffffffffffffffffffffffffffffffff16331461193f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b601255565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146119ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b600c55565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611a175760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b600f55565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611a835760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b600090815260096020526040812055565b6013818154811061124357600080fd5b606060038054610b4190613f3b565b73ffffffffffffffffffffffffffffffffffffffff8216331415611b03576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611c015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b6118d66000600855565b611c168484846129a0565b73ffffffffffffffffffffffffffffffffffffffff83163b15158015611c455750611c43848484846130e9565b155b15611c7c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611ce95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b8160138261ffff1681548110611d0157611d0161403a565b6000918252602090912001555050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611d785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b601055565b6060611d88826128cd565b611dfa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610b1b565b60195462010000900460ff16611e1257610ab261326f565b611e1a61326f565b611e238361327e565b604051602001611e34929190613d98565b6040516020818303038152906040529050919050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611eb15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b8160148261ffff1681548110611d0157611d0161403a565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611f305760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b601980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6002600b541415611fb45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b1b565b6002600b558233321461202f5760405162461bcd60e51b815260206004820152602a60248201527f4e6f70652e2043616e2774206d696e74207468726f75676820616e6f7468657260448201527f20636f6e74726163742e000000000000000000000000000000000000000000006064820152608401610b1b565b600e54640100000000900463ffffffff1681111561208f5760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e206d696e74206f6e6c792031302070657220545821000000006044820152606401610b1b565b601254600154600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016120c59083613e8f565b11156121395760405162461bcd60e51b815260206004820152602860248201527f596f752063616e2774206d696e74206d6f7265207468616e20746865206d617860448201527f20737570706c79210000000000000000000000000000000000000000000000006064820152608401610b1b565b6040805160a08101825260155463ffffffff8082168352640100000000909104166020820152601654918101919091526017546060820152601854608082015260195460ff16156121cc5760405162461bcd60e51b815260206004820152601860248201527f50726573616c6520686173206265656e207061757365642e00000000000000006044820152606401610b1b565b805163ffffffff1642108015906121ec5750806020015163ffffffff1642105b6122385760405162461bcd60e51b815260206004820152601a60248201527f50726573616c65206973206e6f742061637469766520796574210000000000006044820152606401610b1b565b604080820151336000908152601a6020908152838220600f54835290529190912054612265908790613e8f565b11156122d95760405162461bcd60e51b815260206004820152602660248201527f457863656564732077686974656c697374206d6178206d696e7420706572207760448201527f616c6c65742100000000000000000000000000000000000000000000000000006064820152608401610b1b565b612330601480548060200260200160405190810160405280929190818152602001828054801561114d5760200282019190600052602060002090815481526020019060010190808311611139575050505050612cd8565b60115461233d9087613e8f565b11156123b15760405162461bcd60e51b815260206004820152602a60248201527f4578636565647320616c6c6f776564206d617820737570706c7920666f72207460448201527f68697320706861736521000000000000000000000000000000000000000000006064820152608401610b1b565b8481606001516123c19190613ebb565b3410156124105760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610b1b565b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b16602082015260009060340160405160208183030381529060405280519060200120905061249d85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c5491508490506133b0565b6124e95760405162461bcd60e51b815260206004820152601560248201527f496e76616c6964204d65726b6c652050726f6f662e00000000000000000000006044820152606401610b1b565b336000818152601a60209081526040808320600f5484529091529020805488019055601180548801905561251d9087612d27565b50506001600b5550505050565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146125915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b610b2e8183612d27565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146126025760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b73ffffffffffffffffffffffffffffffffffffffff811661268b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b1b565b61139781613072565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146126fb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b1b565b60198054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a000000000000000000000000000000000000000000000000000000001480610ab25750610ab2826133c6565b6127106bffffffffffffffffffffffff8216111561280e5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610b1b565b73ffffffffffffffffffffffffffffffffffffffff82166128715760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610b1b565b6040805180820190915273ffffffffffffffffffffffffffffffffffffffff9092168083526bffffffffffffffffffffffff90911660209092018290527401000000000000000000000000000000000000000090910217600855565b6000816001111580156128e1575060005482105b8015610ab25750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006129ab82612e97565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a16576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff86161480612a415750612a4185336109a6565b80612a69575033612a5184610bc4565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612aa2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8416612aef576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612afb6000848761291f565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000080821667ffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080547fffffffff00000000000000000000000000000000000000000000000000000000169094177401000000000000000000000000000000000000000042909216919091021783558701808452922080549193909116612c72576000548214612c72578054602086015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090911673ffffffffffffffffffffffffffffffffffffffff8a16171781555b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60008060005b600f548111612d2057838181518110612cf957612cf961403a565b602002602001015182612d0c9190613e8f565b915080612d1881613f8f565b915050612cde565b5092915050565b610b2e8282604051806020016040528060008152506134a9565b6127106bffffffffffffffffffffffff82161115612dc75760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610b1b565b73ffffffffffffffffffffffffffffffffffffffff8216612e2a5760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20496e76616c696420706172616d657465727300000000006044820152606401610b1b565b60408051808201825273ffffffffffffffffffffffffffffffffffffffff93841681526bffffffffffffffffffffffff9283166020808301918252600096875260099052919094209351905190911674010000000000000000000000000000000000000000029116179055565b60408051606081018252600080825260208201819052918101919091528180600111158015612ec7575060005481105b15613040576000818152600460209081526040918290208251606081018452905473ffffffffffffffffffffffffffffffffffffffff8116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff1615159181018290529061303e57805173ffffffffffffffffffffffffffffffffffffffff1615612f7f579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016000818152600460209081526040918290208251606081018452905473ffffffffffffffffffffffffffffffffffffffff811680835274010000000000000000000000000000000000000000820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff1615159281019290925215613039579392505050565b612f7f565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290613144903390899088908890600401613def565b602060405180830381600087803b15801561315e57600080fd5b505af19250505080156131ac575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526131a991810190613b49565b60015b613220573d8080156131da576040519150601f19603f3d011682016040523d82523d6000602084013e6131df565b606091505b508051613218576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600d8054610b4190613f3b565b6060816132be57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156132e857806132d281613f8f565b91506132e19050600a83613ea7565b91506132c2565b60008167ffffffffffffffff81111561330357613303614069565b6040519080825280601f01601f19166020018201604052801561332d576020820181803683370190505b5090505b841561326757613342600183613ef8565b915061334f600a86613fc8565b61335a906030613e8f565b60f81b81838151811061336f5761336f61403a565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506133a9600a86613ea7565b9450613331565b6000826133bd85846134b6565b14949350505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061345957507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610ab257507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610ab2565b610d10838383600161352a565b600081815b84518110156135225760008582815181106134d8576134d861403a565b602002602001015190508083116134fe576000838152602082905260409020925061350f565b600081815260208490526040902092505b508061351a81613f8f565b9150506134bb565b509392505050565b60005473ffffffffffffffffffffffffffffffffffffffff851661357a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b836135b1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c018116918217680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941690921783900481168c01811690920217909155858452600490925290912080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004290921691909102179055808085018380156136cc575073ffffffffffffffffffffffffffffffffffffffff87163b15155b1561377b575b604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461372a60008884806001019550886130e9565b613760576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156136d257826000541461377657600080fd5b6137ce565b5b60405160018301929073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561377c575b50600055612cd1565b8280546137e390613f3b565b90600052602060002090601f016020900481019282613805576000855561384b565b82601f1061381e57805160ff191683800117855561384b565b8280016001018555821561384b579182015b8281111561384b578251825591602001919060010190613830565b5061385792915061385b565b5090565b5b80821115613857576000815560010161385c565b600067ffffffffffffffff8084111561388b5761388b614069565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156138d1576138d1614069565b816040528093508581528686860111156138ea57600080fd5b858560208301376000602087830101525050509392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461392857600080fd5b919050565b8035801515811461392857600080fd5b803563ffffffff8116811461392857600080fd5b80356bffffffffffffffffffffffff8116811461392857600080fd5b60006020828403121561397f57600080fd5b61398882613904565b9392505050565b600080604083850312156139a257600080fd5b6139ab83613904565b91506139b960208401613904565b90509250929050565b6000806000606084860312156139d757600080fd5b6139e084613904565b92506139ee60208501613904565b9150604084013590509250925092565b60008060008060808587031215613a1457600080fd5b613a1d85613904565b9350613a2b60208601613904565b925060408501359150606085013567ffffffffffffffff811115613a4e57600080fd5b8501601f81018713613a5f57600080fd5b613a6e87823560208401613870565b91505092959194509250565b60008060408385031215613a8d57600080fd5b613a9683613904565b91506139b96020840161392d565b60008060408385031215613ab757600080fd5b613ac083613904565b946020939093013593505050565b60008060408385031215613ae157600080fd5b613aea83613904565b91506139b960208401613951565b600060208284031215613b0a57600080fd5b6139888261392d565b600060208284031215613b2557600080fd5b5035919050565b600060208284031215613b3e57600080fd5b813561398881614098565b600060208284031215613b5b57600080fd5b815161398881614098565b600060208284031215613b7857600080fd5b813567ffffffffffffffff811115613b8f57600080fd5b8201601f81018413613ba057600080fd5b61326784823560208401613870565b60008060408385031215613bc257600080fd5b823591506139b960208401613904565b600080600060608486031215613be757600080fd5b83359250613bf760208501613904565b9150613c0560408501613951565b90509250925092565b600080600060408486031215613c2357600080fd5b83359250602084013567ffffffffffffffff80821115613c4257600080fd5b818601915086601f830112613c5657600080fd5b813581811115613c6557600080fd5b8760208260051b8501011115613c7a57600080fd5b6020830194508093505050509250925092565b60008060408385031215613ca057600080fd5b82359150602083013561ffff81168114613cb957600080fd5b809150509250929050565b60008060408385031215613cd757600080fd5b50508035926020909101359150565b600060208284031215613cf857600080fd5b6139888261393d565b60008060008060808587031215613d1757600080fd5b613d208561393d565b9350613d2e6020860161393d565b925060408501359150613d436060860161393d565b905092959194509250565b60008151808452613d66816020860160208601613f0f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351613daa818460208801613f0f565b835190830190613dbe818360208801613f0f565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613e2e6080830184613d4e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613e7057835183529284019291840191600101613e54565b50909695505050505050565b6020815260006139886020830184613d4e565b60008219821115613ea257613ea2613fdc565b500190565b600082613eb657613eb661400b565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ef357613ef3613fdc565b500290565b600082821015613f0a57613f0a613fdc565b500390565b60005b83811015613f2a578181015183820152602001613f12565b83811115611c7c5750506000910152565b600181811c90821680613f4f57607f821691505b60208210811415613f89577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fc157613fc1613fdc565b5060010190565b600082613fd757613fd761400b565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461139757600080fdfea2646970667358221220d04966df6f404b5a7ac9b4375ae0f5e842bafd806e5a55a59b810cdc310a3dc764736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000644e8c6d0ab42ee5f2117ccb3eea41b0d013f36500000000000000000000000000000000000000000000000000000000000002ee000000000000000000000000000000000000000000000000000000000000000c496e74726565204361726473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024943000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Intree Cards
Arg [1] : _symbol (string): IC
Arg [2] : royaltiesReceiver (address): 0x644e8C6D0Ab42Ee5f2117ccb3eEA41b0d013f365
Arg [3] : royaltyInBips (uint96): 750

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000644e8c6d0ab42ee5f2117ccb3eea41b0d013f365
Arg [3] : 00000000000000000000000000000000000000000000000000000000000002ee
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 496e747265652043617264730000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4943000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

494:8207:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7210:213;;;;;;;;;;-1:-1:-1;7210:213:13;;;;;:::i;:::-;;:::i;:::-;;;10732:14:15;;10725:22;10707:41;;10695:2;10680:18;7210:213:13;;;;;;;;7459:139;;;;;;;;;;-1:-1:-1;7459:139:13;;;;;:::i;:::-;;:::i;:::-;;1173:35;;;;;;;;;;-1:-1:-1;1173:35:13;;;;;;;;;;;7579:98:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9035:200::-;;;;;;;;;;-1:-1:-1;9035:200:14;;;;;:::i;:::-;;:::i;:::-;;;9057:42:15;9045:55;;;9027:74;;9015:2;9000:18;9035:200:14;8881:226:15;8612:362:14;;;;;;;;;;-1:-1:-1;8612:362:14;;;;;:::i;:::-;;:::i;3822:297::-;;;;;;;;;;-1:-1:-1;4497:1:13;4072:12:14;3866:7;4056:13;:28;:46;;3822:297;;;10905:25:15;;;10893:2;10878:18;3822:297:14;10759:177:15;9874:164:14;;;;;;;;;;-1:-1:-1;9874:164:14;;;;;:::i;:::-;;:::i;1671:432:6:-;;;;;;;;;;-1:-1:-1;1671:432:6;;;;;:::i;:::-;;:::i;:::-;;;;9832:42:15;9820:55;;;9802:74;;9907:2;9892:18;;9885:34;;;;9775:18;1671:432:6;9628:297:15;3548:621:13;;;;;;:::i;:::-;;:::i;599:25::-;;;;;;;;;;;;;;;;1035:51;;;;;;;;;;-1:-1:-1;1035:51:13;;;;;:::i;:::-;;:::i;5631:74::-;;;;;;;;;;;;;:::i;7100:104::-;;;;;;;;;;;;;:::i;10104:179:14:-;;;;;;;;;;-1:-1:-1;10104:179:14;;;;;:::i;:::-;;:::i;4937:688:13:-;;;;;;;;;;-1:-1:-1;4937:688:13;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6142:338::-;;;;;;;;;;-1:-1:-1;6142:338:13;;;;;:::i;:::-;;:::i;1214:20::-;;;;;;;;;;-1:-1:-1;1214:20:13;;;;;;;;;;;8199:102;;;;;;;;;;-1:-1:-1;8199:102:13;;;;;:::i;:::-;;:::i;7701:196::-;;;;;;;;;;-1:-1:-1;7701:196:13;;;;;:::i;:::-;;:::i;6017:119::-;;;;;;;;;;-1:-1:-1;6017:119:13;;;;;:::i;:::-;;:::i;7394:123:14:-;;;;;;;;;;-1:-1:-1;7394:123:14;;;;;:::i;:::-;;:::i;663:33:13:-;;;;;;;;;;-1:-1:-1;663:33:13;;;;;;;;;;;18300:10:15;18288:23;;;18270:42;;18258:2;18243:18;663:33:13;18126:192:15;631:21:13;;;;;;;;;;;;;:::i;4910:203:14:-;;;;;;;;;;-1:-1:-1;4910:203:14;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;6720:110:13:-;;;;;;;;;;-1:-1:-1;6720:110:13;;;;;:::i;:::-;;:::i;6486:104::-;;;;;;;;;;-1:-1:-1;6486:104:13;;;;;:::i;:::-;;:::i;5711:100::-;;;;;;;;;;-1:-1:-1;5711:100:13;;;;;:::i;:::-;;:::i;7903:107::-;;;;;;;;;;-1:-1:-1;7903:107:13;;;;;:::i;:::-;;:::i;732:32::-;;;;;;;;;;;;;;;;810:33;;;;;;;;;;;;;;;;1036:85:0;;;;;;;;;;-1:-1:-1;1108:6:0;;;;1036:85;;981:48:13;;;;;;;;;;-1:-1:-1;981:48:13;;;;;:::i;:::-;;:::i;7741:102:14:-;;;;;;;;;;;;;:::i;9302:282::-;;;;;;;;;;-1:-1:-1;9302:282:14;;;;;:::i;:::-;;:::i;1241:66:13:-;;;;;;;;;;-1:-1:-1;1241:66:13;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;1134:33;;;;;;;;;;-1:-1:-1;1134:33:13;;;;;;;;7604:91;;;;;;;;;;;;;:::i;935:40::-;;;;;;;;;;;;;;;;10349:359:14;;;;;;;;;;-1:-1:-1;10349:359:14;;;;;:::i;:::-;;:::i;6836:124:13:-;;;;;;;;;;-1:-1:-1;6836:124:13;;;;;:::i;:::-;;:::i;849:39::-;;;;;;;;;;;;;;;;6596:118;;;;;;;;;;-1:-1:-1;6596:118:13;;;;;:::i;:::-;;:::i;8307:387::-;;;;;;;;;;-1:-1:-1;8307:387:13;;;;;:::i;:::-;;:::i;6966:128::-;;;;;;;;;;-1:-1:-1;6966:128:13;;;;;:::i;:::-;;:::i;5918:93::-;;;;;;;;;;-1:-1:-1;5918:93:13;;;;;:::i;:::-;;:::i;2390:1152::-;;;;;;:::i;:::-;;:::i;9650:162:14:-;;;;;;;;;;-1:-1:-1;9650:162:14;;;;;:::i;:::-;9770:25;;;;9747:4;9770:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;9650:162;4232:131:13;;;;;;;;;;-1:-1:-1;4232:131:13;;;;;:::i;:::-;;:::i;1918:198:0:-;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;5817:95:13:-;;;;;;;;;;-1:-1:-1;5817:95:13;;;;;:::i;:::-;;:::i;1093:34::-;;;;;;;;;;-1:-1:-1;1093:34:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18588:10:15;18625:15;;;18607:34;;18677:15;;;;18672:2;18657:18;;18650:43;18709:18;;;18702:34;;;;18767:2;18752:18;;18745:34;18810:3;18795:19;;18788:35;18565:3;18550:19;1093:34:13;18323:506:15;7210:213:13;7353:4;7380:36;7404:11;7380:23;:36::i;:::-;7373:43;7210:213;-1:-1:-1;;7210:213:13:o;7459:139::-;1108:6:0;;1248:23;1108:6;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14418:2:15;1240:68:0;;;14400:21:15;;;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;14548:18;;1240:68:0;;;;;;;;;7549:42:13::1;7568:8;7578:12;7549:18;:42::i;:::-;7459:139:::0;;:::o;7579:98:14:-;7633:13;7665:5;7658:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7579:98;:::o;9035:200::-;9103:7;9127:16;9135:7;9127;:16::i;:::-;9122:64;;9152:34;;;;;;;;;;;;;;9122:64;-1:-1:-1;9204:24:14;;;;:15;:24;;;;;;;;;9035:200::o;8612:362::-;8684:13;8700:24;8716:7;8700:15;:24::i;:::-;8684:40;;8744:5;8738:11;;:2;:11;;;8734:48;;;8758:24;;;;;;;;;;;;;;8734:48;719:10:8;8797:21:14;;;;;;;:63;;-1:-1:-1;8823:37:14;8840:5;719:10:8;9650:162:14;:::i;8823:37::-;8822:38;8797:63;8793:136;;;8883:35;;;;;;;;;;;;;;8793:136;8939:28;8948:2;8952:7;8961:5;8939:8;:28::i;:::-;8674:300;8612:362;;:::o;9874:164::-;10003:28;10013:4;10019:2;10023:7;10003:9;:28::i;1671:432:6:-;1768:7;1825:27;;;:17;:27;;;;;;;;1796:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;1768:7;;1863:90;;-1:-1:-1;1913:29:6;;;;;;;;;1923:19;1913:29;;;;;;;;;;;;;;;1863:90;2001:23;;;;1963:21;;2461:5;;1988:36;;1987:58;1988:36;:10;:36;:::i;:::-;1987:58;;;;:::i;:::-;2064:16;;;;;-1:-1:-1;1671:432:6;;-1:-1:-1;;;;1671:432:6:o;3548:621:13:-;1744:1:2;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:2;;17084:2:15;2317:63:2;;;17066:21:15;17123:2;17103:18;;;17096:30;17162:33;17142:18;;;17135:61;17213:18;;2317:63:2;16882:355:15;2317:63:2;1744:1;2455:7;:18;3666:11:13;2067:10:::1;2081:9;2067:23;2059:78;;;::::0;-1:-1:-1;;;2059:78:13;;13652:2:15;2059:78:13::1;::::0;::::1;13634:21:15::0;13691:2;13671:18;;;13664:30;13730:34;13710:18;;;13703:62;13801:12;13781:18;;;13774:40;13831:19;;2059:78:13::1;13450:406:15::0;2059:78:13::1;2170:11;::::0;;;::::1;;;2155:26:::0;::::1;;2147:67;;;::::0;-1:-1:-1;;;2147:67:13;;12888:2:15;2147:67:13::1;::::0;::::1;12870:21:15::0;12927:2;12907:18;;;12900:30;12966;12946:18;;;12939:58;13014:18;;2147:67:13::1;12686:352:15::0;2147:67:13::1;2303:18;::::0;4497:1;4072:12:14;3866:7;4056:13;:28;:46;;2272:27:13::1;::::0;:11;:27:::1;:::i;:::-;:49;;2264:102;;;::::0;-1:-1:-1;;;2264:102:13;;15554:2:15;2264:102:13::1;::::0;::::1;15536:21:15::0;15593:2;15573:18;;;15566:30;15632:34;15612:18;;;15605:62;15703:10;15683:18;;;15676:38;15731:19;;2264:102:13::1;15352:404:15::0;2264:102:13::1;3702:16:::2;::::0;::::2;::::0;::::2;;;3701:17;3693:55;;;::::0;-1:-1:-1;;;3693:55:13;;16319:2:15;3693:55:13::2;::::0;::::2;16301:21:15::0;16358:2;16338:18;;;16331:30;16397:27;16377:18;;;16370:55;16442:18;;3693:55:13::2;16117:349:15::0;3693:55:13::2;3766:19;::::0;3789:15:::2;3766:19;::::0;;::::2;:38;;3758:81;;;::::0;-1:-1:-1;;;3758:81:13;;14779:2:15;3758:81:13::2;::::0;::::2;14761:21:15::0;14818:2;14798:18;;;14791:30;14857:32;14837:18;;;14830:60;14907:18;;3758:81:13::2;14577:354:15::0;3758:81:13::2;3879:11;3871:5;;:19;;;;:::i;:::-;3857:9;:34;;3849:66;;;::::0;-1:-1:-1;;;3849:66:13;;17798:2:15;3849:66:13::2;::::0;::::2;17780:21:15::0;17837:2;17817:18;;;17810:30;17876:21;17856:18;;;17849:49;17915:18;;3849:66:13::2;17596:343:15::0;3849:66:13::2;3964:28;3981:10;3964:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:16;:28::i;:::-;4497:1:::0;4072:12:14;3866:7;4056:13;:28;:46;;3933:27:13::2;::::0;:11;:27:::2;:::i;:::-;:59;;3925:114;;;::::0;-1:-1:-1;;;3925:114:13;;12477:2:15;3925:114:13::2;::::0;::::2;12459:21:15::0;12516:2;12496:18;;;12489:30;12555:34;12535:18;;;12528:62;12626:12;12606:18;;;12599:40;12656:19;;3925:114:13::2;12275:406:15::0;3925:114:13::2;4075:10;4063:23;::::0;;;:11:::2;:23;::::0;;;;;;;4087:13:::2;::::0;4063:38;;;;;;;:53;;;::::2;::::0;;4128:34:::2;::::0;4105:11;4128:9:::2;:34::i;:::-;-1:-1:-1::0;;1701:1:2;2628:7;:22;3548:621:13:o;1035:51::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1035:51:13;:::o;5631:74::-;1108:6:0;;1248:23;1108:6;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14418:2:15;1240:68:0;;;14400:21:15;;;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;14548:18;;1240:68:0;14216:356:15;1240:68:0;5683:8:13::1;:15:::0;;;::::1;::::0;::::1;::::0;;5631:74::o;7100:104::-;1108:6:0;;1248:23;1108:6;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14418:2:15;1240:68:0;;;14400:21:15;;;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;14548:18;;1240:68:0;14216:356:15;1240:68:0;1108:6;;7149:48:13::1;::::0;1108:6:0;;;;;7175:21:13::1;7149:48:::0;::::1;;;::::0;::::1;::::0;;;7175:21;1108:6:0;7149:48:13;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;7100:104::o:0;10104:179:14:-;10237:39;10254:4;10260:2;10264:7;10237:39;;;;;;;;;;;;:16;:39::i;4937:688:13:-;4998:16;5026:23;5052:19;5062:8;5052:9;:19::i;:::-;5026:45;;5081:30;5128:15;5114:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5114:30:13;-1:-1:-1;5081:63:13;-1:-1:-1;5179:1:13;5154:22;5228:361;5253:15;5235;:33;:83;;;;;5290:28;5307:10;5290:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:16;:28::i;:::-;5272:14;:46;;5235:83;5228:361;;;5334:25;5362:23;5370:14;5362:7;:23::i;:::-;5334:51;;5424:8;5403:29;;:17;:29;;;5399:150;;;5485:14;5452:13;5466:15;5452:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;5517:17;;;;:::i;:::-;;;;5399:150;5562:16;;;;:::i;:::-;;;;5320:269;5228:361;;;-1:-1:-1;5605:13:13;;4937:688;-1:-1:-1;;;;4937:688:13:o;6142:338::-;1108:6:0;;1248:23;1108:6;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14418:2:15;1240:68:0;;;14400:21:15;;;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;14548:18;;1240:68:0;14216:356:15;1240:68:0;6277:13:13::1;:36:::0;;::::1;6323:32:::0;;::::1;::::0;::::1;::::0;;;;6277:36;;::::1;6323:32:::0;;;;;;;::::1;::::0;;;6365:28;:37;6412:61:::1;:39:::0;:61;6142:338::o;8199:102::-;1108:6:0;;1248:23;1108:6;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14418:2:15;1240:68:0;;;14400:21:15;;;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;14548:18;;1240:68:0;14216:356:15;1240:68:0;8273:21:13;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;7701:196::-:0;1108:6:0;;1248:23;1108:6;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14418:2:15;1240:68:0;;;14400:21:15;;;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;14548:18;;1240:68:0;14216:356:15;1240:68:0;7841:49:13::1;7858:7;7867:8;7877:12;7841:16;:49::i;6017:119::-:0;1108:6:0;;1248:23;1108:6;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14418:2:15;1240:68:0;;;14400:21:15;;;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;14548:18;;1240:68:0;14216:356:15;1240:68:0;6097:19:13::1;:32:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;6017:119::o;7394:123:14:-;7458:7;7484:21;7497:7;7484:12;:21::i;:::-;:26;;7394:123;-1:-1:-1;;7394:123:14:o;631:21:13:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4910:203:14:-;4974:7;4997:19;;;4993:60;;5025:28;;;;;;;;;;;;;;4993:60;-1:-1:-1;5078:19:14;;;;;;:12;:19;;;;;:27;;;;4910:203::o;1668:101:0:-;1108:6;;1248:23;1108:6;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14418:2:15;1240:68:0;;;14400:21:15;;;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;14548:18;;1240:68:0;14216:356:15;1240:68:0;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;6720:110:13:-;1108:6:0;;1248:23;1108:6;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14418:2:15;1240:68:0;;;14400:21:15;;;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;14548:18;;1240:68:0;14216:356:15;1240:68:0;6795:18:13::1;:28:::0;6720:110::o;6486:104::-;1108:6:0;;1248:23;1108:6;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14418:2:15;1240:68:0;;;14400:21:15;;;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;14548:18;;1240:68:0;14216:356:15;1240:68:0;6559:10:13::1;:24:::0;6486:104::o;5711:100::-;1108:6:0;;1248:23;1108:6;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14418:2:15;1240:68:0;;;14400:21:15;;;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;14548:18;;1240:68:0;14216:356:15;1240:68:0;5782:13:13::1;:22:::0;5711:100::o;7903:107::-;1108:6:0;;1248:23;1108:6;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14418:2:15;1240:68:0;;;14400:21:15;;;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;14548:18;;1240:68:0;14216:356:15;1240:68:0;4104:26:6;;;;:17;:26;;;;;4097:33;7100:104:13:o;981:48::-;;;;;;;;;;;;7741:102:14;7797:13;7829:7;7822:14;;;;;:::i;9302:282::-;9400:24;;;719:10:8;9400:24:14;9396:54;;;9433:17;;;;;;;;;;;;;;9396:54;719:10:8;9461:32:14;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;9529:48;;10707:41:15;;;9461:42:14;;719:10:8;9529:48:14;;10680:18:15;9529:48:14;;;;;;;9302:282;;:::o;7604:91:13:-;1108:6:0;;1248:23;1108:6;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14418:2:15;1240:68:0;;;14400:21:15;;;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;14548:18;;1240:68:0;14216:356:15;1240:68:0;7665:23:13::1;3199:19:6::0;;3192:26;3132:93;10349:359:14;10510:28;10520:4;10526:2;10530:7;10510:9;:28::i;:::-;10552:13;;;1465:19:7;:23;;10552:76:14;;;;;10572:56;10603:4;10609:2;10613:7;10622:5;10572:30;:56::i;:::-;10571:57;10552:76;10548:154;;;10651:40;;;;;;;;;;;;;;10548:154;10349:359;;;;:::o;6836:124:13:-;1108:6:0;;1248:23;1108:6;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14418:2:15;1240:68:0;;;14400:21:15;;;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;14548:18;;1240:68:0;14216:356:15;1240:68:0;6946:7:13::1;6925:10;6936:6;6925:18;;;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;:28:::0;-1:-1:-1;;6836:124:13:o;6596:118::-;1108:6:0;;1248:23;1108:6;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14418:2:15;1240:68:0;;;14400:21:15;;;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;14548:18;;1240:68:0;14216:356:15;1240:68:0;6693:5:13::1;:14:::0;6596:118::o;8307:387::-;8421:13;8471:17;8479:8;8471:7;:17::i;:::-;8450:111;;;;-1:-1:-1;;;8450:111:13;;15138:2:15;8450:111:13;;;15120:21:15;15177:2;15157:18;;;15150:30;15216:34;15196:18;;;15189:62;15287:17;15267:18;;;15260:45;15322:19;;8450:111:13;14936:411:15;8450:111:13;8577:8;;;;;;;8572:32;;8594:10;:8;:10::i;8572:32::-;8645:10;:8;:10::i;:::-;8657:19;:8;:17;:19::i;:::-;8628:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;8614:73;;8307:387;;;:::o;6966:128::-;1108:6:0;;1248:23;1108:6;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14418:2:15;1240:68:0;;;14400:21:15;;;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;14548:18;;1240:68:0;14216:356:15;1240:68:0;7080:7:13::1;7056:13;7070:6;7056:21;;;;;;;;;;:::i;5918:93::-:0;1108:6:0;;1248:23;1108:6;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14418:2:15;1240:68:0;;;14400:21:15;;;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;14548:18;;1240:68:0;14216:356:15;1240:68:0;5982:13:13::1;:22:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;5918:93::o;2390:1152::-;1744:1:2;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:2;;17084:2:15;2317:63:2;;;17066:21:15;17123:2;17103:18;;;17096:30;17162:33;17142:18;;;17135:61;17213:18;;2317:63:2;16882:355:15;2317:63:2;1744:1;2455:7;:18;2542:11:13;2067:10:::1;2081:9;2067:23;2059:78;;;::::0;-1:-1:-1;;;2059:78:13;;13652:2:15;2059:78:13::1;::::0;::::1;13634:21:15::0;13691:2;13671:18;;;13664:30;13730:34;13710:18;;;13703:62;13801:12;13781:18;;;13774:40;13831:19;;2059:78:13::1;13450:406:15::0;2059:78:13::1;2170:11;::::0;;;::::1;;;2155:26:::0;::::1;;2147:67;;;::::0;-1:-1:-1;;;2147:67:13;;12888:2:15;2147:67:13::1;::::0;::::1;12870:21:15::0;12927:2;12907:18;;;12900:30;12966;12946:18;;;12939:58;13014:18;;2147:67:13::1;12686:352:15::0;2147:67:13::1;2303:18;::::0;4497:1;4072:12:14;3866:7;4056:13;:28;:46;;2272:27:13::1;::::0;:11;:27:::1;:::i;:::-;:49;;2264:102;;;::::0;-1:-1:-1;;;2264:102:13;;15554:2:15;2264:102:13::1;::::0;::::1;15536:21:15::0;15593:2;15573:18;;;15566:30;15632:34;15612:18;;;15605:62;15703:10;15683:18;;;15676:38;15731:19;;2264:102:13::1;15352:404:15::0;2264:102:13::1;2570:44:::2;::::0;;::::2;::::0;::::2;::::0;;2601:13:::2;2570:44:::0;::::2;::::0;;::::2;::::0;;;;;::::2;;;::::0;::::2;::::0;;;;;;;;;;;;;;;;;;;;;;2642:13:::2;::::0;::::2;;2641:14;2633:51;;;::::0;-1:-1:-1;;;2633:51:13;;11774:2:15;2633:51:13::2;::::0;::::2;11756:21:15::0;11813:2;11793:18;;;11786:30;11852:26;11832:18;;;11825:54;11896:18;;2633:51:13::2;11572:348:15::0;2633:51:13::2;2721:17:::0;;2702:36:::2;;:15;:36;::::0;::::2;::::0;:73:::2;;;2760:7;:15;;;2742:33;;:15;:33;2702:73;2694:112;;;::::0;-1:-1:-1;;;2694:112:13;;14063:2:15;2694:112:13::2;::::0;::::2;14045:21:15::0;14102:2;14082:18;;;14075:30;14141:28;14121:18;;;14114:56;14187:18;;2694:112:13::2;13861:350:15::0;2694:112:13::2;2882:33;::::0;;::::2;::::0;2837:10:::2;2825:23;::::0;;;:11:::2;:23;::::0;;;;;;2849:13:::2;::::0;2825:38;;;;;;;;;:52:::2;::::0;2866:11;;2825:52:::2;:::i;:::-;2824:91;;2816:142;;;::::0;-1:-1:-1;;;2816:142:13;;13245:2:15;2816:142:13::2;::::0;::::2;13227:21:15::0;13284:2;13264:18;;;13257:30;13323:34;13303:18;;;13296:62;13394:8;13374:18;;;13367:36;13420:19;;2816:142:13::2;13043:402:15::0;2816:142:13::2;3014:31;3031:13;3014:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:16;:31::i;:::-;2990:20;::::0;2976:34:::2;::::0;:11;:34:::2;:::i;:::-;:69;;2968:124;;;::::0;-1:-1:-1;;;2968:124:13;;12477:2:15;2968:124:13::2;::::0;::::2;12459:21:15::0;12516:2;12496:18;;;12489:30;12555:34;12535:18;;;12528:62;12626:12;12606:18;;;12599:40;12656:19;;2968:124:13::2;12275:406:15::0;2968:124:13::2;3150:11;3125:7;:22;;;:36;;;;:::i;:::-;3111:9;:51;;3103:83;;;::::0;-1:-1:-1;;;3103:83:13;;17798:2:15;3103:83:13::2;::::0;::::2;17780:21:15::0;17837:2;17817:18;;;17810:30;17876:21;17856:18;;;17849:49;17915:18;;3103:83:13::2;17596:343:15::0;3103:83:13::2;3221:28;::::0;8132:66:15;3238:10:13::2;8119:2:15::0;8115:15;8111:88;3221:28:13::2;::::0;::::2;8099:101:15::0;3196:12:13::2;::::0;8216::15;;3221:28:13::2;;;;;;;;;;;;3211:39;;;;;;3196:54;;3268:50;3287:12;;3268:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;3301:10:13::2;::::0;;-1:-1:-1;3313:4:13;;-1:-1:-1;3268:18:13::2;:50::i;:::-;3260:84;;;::::0;-1:-1:-1;;;3260:84:13;;12127:2:15;3260:84:13::2;::::0;::::2;12109:21:15::0;12166:2;12146:18;;;12139:30;12205:23;12185:18;;;12178:51;12246:18;;3260:84:13::2;11925:345:15::0;3260:84:13::2;3391:10;3379:23;::::0;;;:11:::2;:23;::::0;;;;;;;3403:13:::2;::::0;3379:38;;;;;;;:53;;;::::2;::::0;;3446:20:::2;:35:::0;;;::::2;::::0;;3501:34:::2;::::0;3421:11;3501:9:::2;:34::i;:::-;-1:-1:-1::0;;1701:1:2;2628:7;:22;-1:-1:-1;;;;2390:1152:13:o;4232:131::-;1108:6:0;;1248:23;1108:6;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14418:2:15;1240:68:0;;;14400:21:15;;;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;14548:18;;1240:68:0;14216:356:15;1240:68:0;4323:33:13::1;4333:9;4344:11;4323:9;:33::i;1918:198:0:-:0;1108:6;;1248:23;1108:6;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14418:2:15;1240:68:0;;;14400:21:15;;;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;14548:18;;1240:68:0;14216:356:15;1240:68:0;2006:22:::1;::::0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;11367:2:15;1998:73:0::1;::::0;::::1;11349:21:15::0;11406:2;11386:18;;;11379:30;11445:34;11425:18;;;11418:62;11516:8;11496:18;;;11489:36;11542:19;;1998:73:0::1;11165:402:15::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;5817:95:13:-:0;1108:6:0;;1248:23;1108:6;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14418:2:15;1240:68:0;;;14400:21:15;;;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;14548:18;;1240:68:0;14216:356:15;1240:68:0;5880:16:13::1;:25:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;5817:95::o;1408:213:6:-;1510:4;1533:41;;;1548:26;1533:41;;:81;;;1578:36;1602:11;1578:23;:36::i;2734:327::-;2461:5;2836:33;;;;;2828:88;;;;-1:-1:-1;;;2828:88:6;;16673:2:15;2828:88:6;;;16655:21:15;16712:2;16692:18;;;16685:30;16751:34;16731:18;;;16724:62;16822:12;16802:18;;;16795:40;16852:19;;2828:88:6;16471:406:15;2828:88:6;2934:22;;;2926:60;;;;-1:-1:-1;;;2926:60:6;;17444:2:15;2926:60:6;;;17426:21:15;17483:2;17463:18;;;17456:30;17522:27;17502:18;;;17495:55;17567:18;;2926:60:6;17242:349:15;2926:60:6;3019:35;;;;;;;;;;;;;;;;;;;;;;;;;;;2997:57;;;;;:19;:57;2734:327::o;10954:172:14:-;11011:4;11053:7;4497:1:13;11034:26:14;;:53;;;;;11074:13;;11064:7;:23;11034:53;:85;;;;-1:-1:-1;;11092:20:14;;;;:11;:20;;;;;:27;;;;;;11091:28;;10954:172::o;18894:189::-;19004:24;;;;:15;:24;;;;;;:29;;;;;;;;;;;;;;19048:28;;19004:24;;19048:28;;;;;;;18894:189;;;:::o;13964:2082::-;14074:35;14112:21;14125:7;14112:12;:21::i;:::-;14074:59;;14170:4;14148:26;;:13;:18;;;:26;;;14144:67;;14183:28;;;;;;;;;;;;;;14144:67;14222:22;719:10:8;14248:20:14;;;;;:72;;-1:-1:-1;14284:36:14;14301:4;719:10:8;9650:162:14;:::i;14284:36::-;14248:124;;;-1:-1:-1;719:10:8;14336:20:14;14348:7;14336:11;:20::i;:::-;:36;;;14248:124;14222:151;;14389:17;14384:66;;14415:35;;;;;;;;;;;;;;14384:66;14464:16;;;14460:52;;14489:23;;;;;;;;;;;;;;14460:52;14628:35;14645:1;14649:7;14658:4;14628:8;:35::i;:::-;14953:18;;;;;;;;:12;:18;;;;;;;;:31;;;;;;;;;;;;;;;;;;14998:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;14998:29:14;;;;;;;;;;;15076:20;;;:11;:20;;;;;;15110:18;;15142:49;;;;;;15175:15;15142:49;;;;;;;;;;15461:11;;15520:24;;;;;15562:13;;15076:20;;15520:24;;15562:13;15558:377;;15769:13;;15754:11;:28;15750:171;;15806:20;;15874:28;;;;15848:54;;;;;;;;15806:20;;;15848:54;;;;15750:171;14929:1016;;;15979:7;15975:2;15960:27;;15969:4;15960:27;;;;;;;;;;;;15997:42;14064:1982;;13964:2082;;;:::o;4511:420:13:-;4597:7;4616:15;4641:6;4714:92;4729:13;;4724:1;:18;4714:92;;4774:18;4793:1;4774:21;;;;;;;;:::i;:::-;;;;;;;4763:32;;;;;:::i;:::-;;-1:-1:-1;4744:3:13;;;;:::i;:::-;;;;4714:92;;;-1:-1:-1;4917:7:13;4511:420;-1:-1:-1;;4511:420:13:o;11132:102:14:-;11200:27;11210:2;11214:8;11200:27;;;;;;;;;;;;:9;:27::i;3538:381:6:-;2461:5;3685:33;;;;;3677:88;;;;-1:-1:-1;;;3677:88:6;;16673:2:15;3677:88:6;;;16655:21:15;16712:2;16692:18;;;16685:30;16751:34;16731:18;;;16724:62;16822:12;16802:18;;;16795:40;16852:19;;3677:88:6;16471:406:15;3677:88:6;3783:22;;;3775:62;;;;-1:-1:-1;;;3775:62:6;;15963:2:15;3775:62:6;;;15945:21:15;16002:2;15982:18;;;15975:30;16041:29;16021:18;;;16014:57;16088:18;;3775:62:6;15761:351:15;3775:62:6;3877:35;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3848:26:6;;;:17;:26;;;;;;:64;;;;;;;;;;;;;;3538:381::o;6253:1084:14:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;6363:7:14;;4497:1:13;6409:23:14;;:47;;;;;6443:13;;6436:4;:20;6409:47;6405:868;;;6476:31;6510:17;;;:11;:17;;;;;;;;;6476:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6545:714;;6594:14;;:28;;;6590:99;;6657:9;6253:1084;-1:-1:-1;;;6253:1084:14:o;6590:99::-;-1:-1:-1;7025:6:14;;7069:17;;;;:11;:17;;;;;;;;;7057:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7116:28;7112:107;;7183:9;6253:1084;-1:-1:-1;;;6253:1084:14:o;7112:107::-;6986:255;;;6458:815;6405:868;7299:31;;;;;;;;;;;;;;2270:187:0;2362:6;;;;2378:17;;;;;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;19564:650:14:-;19742:72;;;;;19722:4;;19742:36;;;;;;:72;;719:10:8;;19793:4:14;;19799:7;;19808:5;;19742:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19742:72:14;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;19738:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19973:13:14;;19969:229;;20018:40;;;;;;;;;;;;;;19969:229;20158:6;20152:13;20143:6;20139:2;20135:15;20128:38;19738:470;19860:55;;19870:45;19860:55;;-1:-1:-1;19738:470:14;19564:650;;;;;;:::o;8049:144:13:-;8143:13;8179:7;8172:14;;;;;:::i;328:703:9:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:9;;;;;;;;;;;;;;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:9;;-1:-1:-1;773:2:9;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:9;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:9;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;972:11:9;981:2;972:11;;:::i;:::-;;;844:150;;1154:184:10;1275:4;1327;1298:25;1311:5;1318:4;1298:12;:25::i;:::-;:33;;1154:184;-1:-1:-1;;;;1154:184:10:o;4551:300:14:-;4653:4;4688:40;;;4703:25;4688:40;;:104;;-1:-1:-1;4744:48:14;;;4759:33;4744:48;4688:104;:156;;;-1:-1:-1;952:25:11;937:40;;;;4808:36:14;829:155:11;11585:157:14;11703:32;11709:2;11713:8;11723:5;11730:4;11703:5;:32::i;1689:662:10:-;1772:7;1814:4;1772:7;1828:488;1852:5;:12;1848:1;:16;1828:488;;;1885:20;1908:5;1914:1;1908:8;;;;;;;;:::i;:::-;;;;;;;1885:31;;1950:12;1934;:28;1930:376;;2425:13;2473:15;;;2508:4;2501:15;;;2554:4;2538:21;;2060:57;;1930:376;;;2425:13;2473:15;;;2508:4;2501:15;;;2554:4;2538:21;;2234:57;;1930:376;-1:-1:-1;1866:3:10;;;;:::i;:::-;;;;1828:488;;;-1:-1:-1;2332:12:10;1689:662;-1:-1:-1;;;1689:662:10:o;11989:1733:14:-;12122:20;12145:13;12172:16;;;12168:48;;12197:19;;;;;;;;;;;;;;12168:48;12230:13;12226:44;;12252:18;;;;;;;;;;;;;;12226:44;12613:16;;;;;;;:12;:16;;;;;;;;:44;;12671:49;;;12613:44;;;;;;;;12671:49;;;;12613:44;;;;;;;12671:49;;;;;;;;;;;;;;;;12735:25;;;:11;:25;;;;;;:35;;12784:66;;;;;;12834:15;12784:66;;;;;;;;;;12735:25;12928:23;;;12970:4;:23;;;;-1:-1:-1;12978:13:14;;;1465:19:7;:23;;12978:15:14;12966:628;;;13013:309;13043:38;;13068:12;;13043:38;;;;13060:1;;13043:38;;13060:1;;13043:38;13108:69;13147:1;13151:2;13155:14;;;;;;13171:5;13108:30;:69::i;:::-;13103:172;;13212:40;;;;;;;;;;;;;;13103:172;13317:3;13301:12;:19;;13013:309;;13401:12;13384:13;;:29;13380:43;;13415:8;;;13380:43;12966:628;;;13462:118;13492:40;;13517:14;;;;;13492:40;;;;13509:1;;13492:40;;13509:1;;13492:40;13575:3;13559:12;:19;;13462:118;;12966:628;-1:-1:-1;13607:13:14;:28;13655:60;10349:359;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:690:15;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;289:2;283:9;355:2;343:15;;194:66;339:24;;;365:2;335:33;331:42;319:55;;;389:18;;;409:22;;;386:46;383:72;;;435:18;;:::i;:::-;475:10;471:2;464:22;504:6;495:15;;534:6;526;519:22;574:3;565:6;560:3;556:16;553:25;550:45;;;591:1;588;581:12;550:45;641:6;636:3;629:4;621:6;617:17;604:44;696:1;689:4;680:6;672;668:19;664:30;657:41;;;;14:690;;;;;:::o;709:196::-;777:20;;837:42;826:54;;816:65;;806:93;;895:1;892;885:12;806:93;709:196;;;:::o;910:160::-;975:20;;1031:13;;1024:21;1014:32;;1004:60;;1060:1;1057;1050:12;1075:163;1142:20;;1202:10;1191:22;;1181:33;;1171:61;;1228:1;1225;1218:12;1243:179;1310:20;;1370:26;1359:38;;1349:49;;1339:77;;1412:1;1409;1402:12;1427:186;1486:6;1539:2;1527:9;1518:7;1514:23;1510:32;1507:52;;;1555:1;1552;1545:12;1507:52;1578:29;1597:9;1578:29;:::i;:::-;1568:39;1427:186;-1:-1:-1;;;1427:186:15:o;1618:260::-;1686:6;1694;1747:2;1735:9;1726:7;1722:23;1718:32;1715:52;;;1763:1;1760;1753:12;1715:52;1786:29;1805:9;1786:29;:::i;:::-;1776:39;;1834:38;1868:2;1857:9;1853:18;1834:38;:::i;:::-;1824:48;;1618:260;;;;;:::o;1883:328::-;1960:6;1968;1976;2029:2;2017:9;2008:7;2004:23;2000:32;1997:52;;;2045:1;2042;2035:12;1997:52;2068:29;2087:9;2068:29;:::i;:::-;2058:39;;2116:38;2150:2;2139:9;2135:18;2116:38;:::i;:::-;2106:48;;2201:2;2190:9;2186:18;2173:32;2163:42;;1883:328;;;;;:::o;2216:666::-;2311:6;2319;2327;2335;2388:3;2376:9;2367:7;2363:23;2359:33;2356:53;;;2405:1;2402;2395:12;2356:53;2428:29;2447:9;2428:29;:::i;:::-;2418:39;;2476:38;2510:2;2499:9;2495:18;2476:38;:::i;:::-;2466:48;;2561:2;2550:9;2546:18;2533:32;2523:42;;2616:2;2605:9;2601:18;2588:32;2643:18;2635:6;2632:30;2629:50;;;2675:1;2672;2665:12;2629:50;2698:22;;2751:4;2743:13;;2739:27;-1:-1:-1;2729:55:15;;2780:1;2777;2770:12;2729:55;2803:73;2868:7;2863:2;2850:16;2845:2;2841;2837:11;2803:73;:::i;:::-;2793:83;;;2216:666;;;;;;;:::o;2887:254::-;2952:6;2960;3013:2;3001:9;2992:7;2988:23;2984:32;2981:52;;;3029:1;3026;3019:12;2981:52;3052:29;3071:9;3052:29;:::i;:::-;3042:39;;3100:35;3131:2;3120:9;3116:18;3100:35;:::i;3146:254::-;3214:6;3222;3275:2;3263:9;3254:7;3250:23;3246:32;3243:52;;;3291:1;3288;3281:12;3243:52;3314:29;3333:9;3314:29;:::i;:::-;3304:39;3390:2;3375:18;;;;3362:32;;-1:-1:-1;;;3146:254:15:o;3405:258::-;3472:6;3480;3533:2;3521:9;3512:7;3508:23;3504:32;3501:52;;;3549:1;3546;3539:12;3501:52;3572:29;3591:9;3572:29;:::i;:::-;3562:39;;3620:37;3653:2;3642:9;3638:18;3620:37;:::i;3668:180::-;3724:6;3777:2;3765:9;3756:7;3752:23;3748:32;3745:52;;;3793:1;3790;3783:12;3745:52;3816:26;3832:9;3816:26;:::i;3853:180::-;3912:6;3965:2;3953:9;3944:7;3940:23;3936:32;3933:52;;;3981:1;3978;3971:12;3933:52;-1:-1:-1;4004:23:15;;3853:180;-1:-1:-1;3853:180:15:o;4038:245::-;4096:6;4149:2;4137:9;4128:7;4124:23;4120:32;4117:52;;;4165:1;4162;4155:12;4117:52;4204:9;4191:23;4223:30;4247:5;4223:30;:::i;4288:249::-;4357:6;4410:2;4398:9;4389:7;4385:23;4381:32;4378:52;;;4426:1;4423;4416:12;4378:52;4458:9;4452:16;4477:30;4501:5;4477:30;:::i;4542:450::-;4611:6;4664:2;4652:9;4643:7;4639:23;4635:32;4632:52;;;4680:1;4677;4670:12;4632:52;4720:9;4707:23;4753:18;4745:6;4742:30;4739:50;;;4785:1;4782;4775:12;4739:50;4808:22;;4861:4;4853:13;;4849:27;-1:-1:-1;4839:55:15;;4890:1;4887;4880:12;4839:55;4913:73;4978:7;4973:2;4960:16;4955:2;4951;4947:11;4913:73;:::i;5182:254::-;5250:6;5258;5311:2;5299:9;5290:7;5286:23;5282:32;5279:52;;;5327:1;5324;5317:12;5279:52;5363:9;5350:23;5340:33;;5392:38;5426:2;5415:9;5411:18;5392:38;:::i;5441:326::-;5517:6;5525;5533;5586:2;5574:9;5565:7;5561:23;5557:32;5554:52;;;5602:1;5599;5592:12;5554:52;5638:9;5625:23;5615:33;;5667:38;5701:2;5690:9;5686:18;5667:38;:::i;:::-;5657:48;;5724:37;5757:2;5746:9;5742:18;5724:37;:::i;:::-;5714:47;;5441:326;;;;;:::o;5772:683::-;5867:6;5875;5883;5936:2;5924:9;5915:7;5911:23;5907:32;5904:52;;;5952:1;5949;5942:12;5904:52;5988:9;5975:23;5965:33;;6049:2;6038:9;6034:18;6021:32;6072:18;6113:2;6105:6;6102:14;6099:34;;;6129:1;6126;6119:12;6099:34;6167:6;6156:9;6152:22;6142:32;;6212:7;6205:4;6201:2;6197:13;6193:27;6183:55;;6234:1;6231;6224:12;6183:55;6274:2;6261:16;6300:2;6292:6;6289:14;6286:34;;;6316:1;6313;6306:12;6286:34;6369:7;6364:2;6354:6;6351:1;6347:14;6343:2;6339:23;6335:32;6332:45;6329:65;;;6390:1;6387;6380:12;6329:65;6421:2;6417;6413:11;6403:21;;6443:6;6433:16;;;;;5772:683;;;;;:::o;6460:340::-;6527:6;6535;6588:2;6576:9;6567:7;6563:23;6559:32;6556:52;;;6604:1;6601;6594:12;6556:52;6640:9;6627:23;6617:33;;6700:2;6689:9;6685:18;6672:32;6744:6;6737:5;6733:18;6726:5;6723:29;6713:57;;6766:1;6763;6756:12;6713:57;6789:5;6779:15;;;6460:340;;;;;:::o;6805:248::-;6873:6;6881;6934:2;6922:9;6913:7;6909:23;6905:32;6902:52;;;6950:1;6947;6940:12;6902:52;-1:-1:-1;;6973:23:15;;;7043:2;7028:18;;;7015:32;;-1:-1:-1;6805:248:15:o;7058:184::-;7116:6;7169:2;7157:9;7148:7;7144:23;7140:32;7137:52;;;7185:1;7182;7175:12;7137:52;7208:28;7226:9;7208:28;:::i;7247:397::-;7330:6;7338;7346;7354;7407:3;7395:9;7386:7;7382:23;7378:33;7375:53;;;7424:1;7421;7414:12;7375:53;7447:28;7465:9;7447:28;:::i;:::-;7437:38;;7494:37;7527:2;7516:9;7512:18;7494:37;:::i;:::-;7484:47;;7578:2;7567:9;7563:18;7550:32;7540:42;;7601:37;7634:2;7623:9;7619:18;7601:37;:::i;:::-;7591:47;;7247:397;;;;;;;:::o;7649:316::-;7690:3;7728:5;7722:12;7755:6;7750:3;7743:19;7771:63;7827:6;7820:4;7815:3;7811:14;7804:4;7797:5;7793:16;7771:63;:::i;:::-;7879:2;7867:15;7884:66;7863:88;7854:98;;;;7954:4;7850:109;;7649:316;-1:-1:-1;;7649:316:15:o;8239:637::-;8519:3;8557:6;8551:13;8573:53;8619:6;8614:3;8607:4;8599:6;8595:17;8573:53;:::i;:::-;8689:13;;8648:16;;;;8711:57;8689:13;8648:16;8745:4;8733:17;;8711:57;:::i;:::-;8833:7;8790:20;;8819:22;;;8868:1;8857:13;;8239:637;-1:-1:-1;;;;8239:637:15:o;9112:511::-;9306:4;9335:42;9416:2;9408:6;9404:15;9393:9;9386:34;9468:2;9460:6;9456:15;9451:2;9440:9;9436:18;9429:43;;9508:6;9503:2;9492:9;9488:18;9481:34;9551:3;9546:2;9535:9;9531:18;9524:31;9572:45;9612:3;9601:9;9597:19;9589:6;9572:45;:::i;:::-;9564:53;9112:511;-1:-1:-1;;;;;;9112:511:15:o;9930:632::-;10101:2;10153:21;;;10223:13;;10126:18;;;10245:22;;;10072:4;;10101:2;10324:15;;;;10298:2;10283:18;;;10072:4;10367:169;10381:6;10378:1;10375:13;10367:169;;;10442:13;;10430:26;;10511:15;;;;10476:12;;;;10403:1;10396:9;10367:169;;;-1:-1:-1;10553:3:15;;9930:632;-1:-1:-1;;;;;;9930:632:15:o;10941:219::-;11090:2;11079:9;11072:21;11053:4;11110:44;11150:2;11139:9;11135:18;11127:6;11110:44;:::i;18834:128::-;18874:3;18905:1;18901:6;18898:1;18895:13;18892:39;;;18911:18;;:::i;:::-;-1:-1:-1;18947:9:15;;18834:128::o;18967:120::-;19007:1;19033;19023:35;;19038:18;;:::i;:::-;-1:-1:-1;19072:9:15;;18967:120::o;19092:228::-;19132:7;19258:1;19190:66;19186:74;19183:1;19180:81;19175:1;19168:9;19161:17;19157:105;19154:131;;;19265:18;;:::i;:::-;-1:-1:-1;19305:9:15;;19092:228::o;19325:125::-;19365:4;19393:1;19390;19387:8;19384:34;;;19398:18;;:::i;:::-;-1:-1:-1;19435:9:15;;19325:125::o;19455:258::-;19527:1;19537:113;19551:6;19548:1;19545:13;19537:113;;;19627:11;;;19621:18;19608:11;;;19601:39;19573:2;19566:10;19537:113;;;19668:6;19665:1;19662:13;19659:48;;;-1:-1:-1;;19703:1:15;19685:16;;19678:27;19455:258::o;19718:437::-;19797:1;19793:12;;;;19840;;;19861:61;;19915:4;19907:6;19903:17;19893:27;;19861:61;19968:2;19960:6;19957:14;19937:18;19934:38;19931:218;;;20005:77;20002:1;19995:88;20106:4;20103:1;20096:15;20134:4;20131:1;20124:15;19931:218;;19718:437;;;:::o;20160:195::-;20199:3;20230:66;20223:5;20220:77;20217:103;;;20300:18;;:::i;:::-;-1:-1:-1;20347:1:15;20336:13;;20160:195::o;20360:112::-;20392:1;20418;20408:35;;20423:18;;:::i;:::-;-1:-1:-1;20457:9:15;;20360:112::o;20477:184::-;20529:77;20526:1;20519:88;20626:4;20623:1;20616:15;20650:4;20647:1;20640:15;20666:184;20718:77;20715:1;20708:88;20815:4;20812:1;20805:15;20839:4;20836:1;20829:15;20855:184;20907:77;20904:1;20897:88;21004:4;21001:1;20994:15;21028:4;21025:1;21018:15;21044:184;21096:77;21093:1;21086:88;21193:4;21190:1;21183:15;21217:4;21214:1;21207:15;21233:177;21318:66;21311:5;21307:78;21300:5;21297:89;21287:117;;21400:1;21397;21390:12

Swarm Source

ipfs://d04966df6f404b5a7ac9b4375ae0f5e842bafd806e5a55a59b810cdc310a3dc7
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.