ETH Price: $2,485.08 (-2.73%)

Token

Epic Squad Villas (ESV)
 

Overview

Max Total Supply

301 ESV

Holders

67

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cryptocaro.eth
Balance
2 ESV
0x45a333346ee351dd985aa6325cbd193be30a69fb
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Epicsquadvillas

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-30
*/

// SPDX-License-Identifier: MIT




pragma solidity ^0.8.0;

interface IERC165 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


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



pragma solidity ^0.8.0;

interface IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

pragma solidity ^0.8.0;

interface IERC721 is IERC165 {
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );
    event Approval(
        address indexed owner,
        address indexed approved,
        uint256 indexed tokenId
    );
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    function balanceOf(address owner) external view returns (uint256 balance);

    function ownerOf(uint256 tokenId) external view returns (address owner);

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    function approve(address to, uint256 tokenId) external;

    function getApproved(uint256 tokenId)
        external
        view
        returns (address operator);

    function setApprovalForAll(address operator, bool _approved) external;

    function isApprovedForAll(address owner, address operator)
        external
        view
        returns (bool);

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

pragma solidity ^0.8.0;

interface IERC721Metadata is IERC721 {
    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    function tokenURI(uint256 tokenId) external view returns (string memory);
}

pragma solidity ^0.8.0;

interface IERC721Enumerable is IERC721 {
    function totalSupply() external view returns (uint256);

    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256);

    function tokenByIndex(uint256 index) external view returns (uint256);
}

pragma solidity ^0.8.1;

library Address {
    function isContract(address account) internal view returns (bool) {
        return account.code.length > 0;
    }

    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"
        );
    }

    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    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"
            );
    }

    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);
    }

    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    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);
    }

    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    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);
    }

    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            if (returndata.length > 0) {
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

pragma solidity ^0.8.0;

abstract contract Ownable is Context {
    address private _owner;

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

    constructor() {
        _setOwner(_msgSender());
    }

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

    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _setOwner(newOwner);
    }

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

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    function toString(uint256 value) internal pure returns (string memory) {
        // 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);
    }

    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);
    }

    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);
    }
}

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;

abstract contract ERC165 is IERC165 {
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

pragma solidity ^0.8.0;

abstract contract ReentrancyGuard {
    // word because each write operation emits an extra SLOAD to first read the
    // back. This is the compiler's defense against contract upgrades and

    // but in exchange the refund on every call to nonReentrant will be lower in
    // transaction's gas, it is best to keep them low in cases like this one, to
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    modifier nonReentrant() {
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
        _status = _ENTERED;

        _;
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @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:
     *
     * - `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];
    }
}

pragma solidity ^0.8.0;

contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable collectionSize;
    uint256 internal immutable maxBatchSize;
    string private _name;
    string private _symbol;
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) private _ownerships;
    mapping(address => AddressData) private _addressData;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_,
        uint256 collectionSize_
    ) {
        require(
            collectionSize_ > 0,
            "ERC721A: collection must have a nonzero supply"
        );
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
        collectionSize = collectionSize_;
    }

    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    function tokenByIndex(uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < totalSupply(), "ERC721A: global index out of bounds");
        return index;
    }

    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function balanceOf(address owner) public view override returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: balance query for the zero address"
        );
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

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

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

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

    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

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

        _approve(to, tokenId, owner);
    }

    function getApproved(uint256 tokenId)
        public
        view
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721A: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    function setApprovalForAll(address operator, bool approved)
        public
        override
    {
        require(operator != _msgSender(), "ERC721A: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        _transfer(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        safeTransferFrom(from, to, tokenId, "");
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);
        _approve(address(0), tokenId, prevOwnership.addr);

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

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

    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    uint256 public nextOwnerToExplicitlySet = 0;

    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > collectionSize - 1) {
            endIndex = collectionSize - 1;
        }
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(
                    ownership.addr,
                    ownership.startTimestamp
                );
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract Epicsquadvillas is Ownable, ERC721A, ERC2981, ReentrancyGuard {
    using Strings for uint256;
    address public ElephantContract;

    string public uriPrefix = "";

    string public uriSuffix = ".json";
    string public hiddenMetadataUri;

    uint256 public cost = 0.03 ether;
    uint256 public maxSupply = 300;
    uint256 public maxMintAmountPerTx = 20;

    bool public publicMint = true; // By default public minting is paused
    bool public publicClaim = true; // By default claim villa NFTs is paused
    bool public revealed = false; //  By default NFTs is in hidden state

    mapping(uint256 => bool) public claimedepicvilla;

    constructor(address payable royaltiesReceiver, address _contract) ERC721A("Epic Squad Villas", "ESV", 1000, maxSupply) {
        ElephantContract = _contract; // Epic Elephant Squad Contract Address
        setRoyaltyInfo(royaltiesReceiver, 1000);
    }

    modifier mintCompliance(uint256 _mintAmount) {
        require(
            _mintAmount > 0 && _mintAmount <= maxMintAmountPerTx,
            "Invalid mint amount!"
        );
        require(
            totalSupply() + _mintAmount <= maxSupply,
            "Max supply exceeded!"
        );
        _;
    }

    function mint(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
    {
        require(!publicMint, "The contract is paused!");
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");
        _safeMint(msg.sender, _mintAmount);
    }

    function claimepicvilla()
        public
    {
        require(!publicClaim, "The contract is paused!");
        uint256 elephantsOwned = IERC721(ElephantContract).balanceOf(msg.sender);
        require(elephantsOwned > 0, "No Elephants owned!");

        uint256 claimAmount = 0;
        uint256 lastClaimableToken = 0;
        for (uint256 i = 0; i < elephantsOwned; i++) {
            uint256 tokenId = IERC721Enumerable(ElephantContract).tokenOfOwnerByIndex(msg.sender, i);
            if (!claimedepicvilla[tokenId]) { 
                claimAmount++;
                claimedepicvilla[tokenId] = true;
                lastClaimableToken = tokenId;
            }
        }

        if (claimAmount % 5 == 1) {
            claimAmount--;
            delete claimedepicvilla[lastClaimableToken];
        }

        require(claimAmount > 0, "No reedemable Elephants!");
        _safeMint(msg.sender, claimAmount / 5);
    }

    function claimableElephantsCount(address _owner)
        public
        view
        returns (uint256)
    {
        uint256 elephantsOwned = IERC721(ElephantContract).balanceOf(_owner);

        uint256 claimAmount = 0;
        uint256 lastClaimableToken = 0;
        for (uint256 i = 0; i < elephantsOwned; i++) {
            uint256 tokenId = IERC721Enumerable(ElephantContract).tokenOfOwnerByIndex(_owner, i);
            if (!claimedepicvilla[tokenId]) { 
                claimAmount++;
                lastClaimableToken = tokenId;
            }
        }

        if (claimAmount % 5 == 1) {
            claimAmount--;
        }

        return (claimAmount / 5);
    }

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }

    function mintForAddress(address _address, uint256 quantity)
        external
        onlyOwner
    {
        require(
            totalSupply() + quantity <= maxSupply,
            "NOT_ENOUGH_SUPPLY_TO_GIVEAWAY_DESIRED_AMOUNT"
        );
        _safeMint(_address, quantity);
    }

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

        while (
            ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply
        ) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;

                ownedTokenIndex++;
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

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

        if (revealed == false) {
            return hiddenMetadataUri;
        }

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

    function setRevealed() public onlyOwner {
        revealed = !revealed;
    }

    function setCost(uint256 _cost) public onlyOwner {
        cost = _cost;
    }

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx)
        public
        onlyOwner
    {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri)
        public
        onlyOwner
    {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function setPublicMint() public onlyOwner {
        publicMint = !publicMint;
    }

    function setPublicClaim() public onlyOwner {
        publicClaim = !publicClaim;
    }

    function setElephantContract(address _address) public onlyOwner {
        ElephantContract = _address;
    }

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

    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
    
    // IERC2981

    function setRoyaltyInfo(address payable receiver, uint96 numerator) public onlyOwner {
        _setDefaultRoyalty(receiver, numerator);
    }
    //
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) {
        return ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"royaltiesReceiver","type":"address"},{"internalType":"address","name":"_contract","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"ElephantContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"claimableElephantsCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimedepicvilla","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimepicvilla","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"publicClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setElephantContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"receiver","type":"address"},{"internalType":"uint96","name":"numerator","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60006001819055600881905560e0604081905260c08290526200002691600d91906200040f565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005591600e916200040f565b50666a94d74f43000060105561012c60115560146012556013805462ffffff19166101011790553480156200008957600080fd5b506040516200362e3803806200362e833981016040819052620000ac91620004b5565b60405180604001604052806011815260200170457069632053717561642056696c6c617360781b8152506040518060400160405280600381526020016222a9ab60e91b8152506103e8601154620001126200010c6200024e60201b60201c565b62000252565b600081116200017f5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001e15760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000176565b8351620001f69060029060208701906200040f565b5082516200020c9060039060208601906200040f565b5060a09190915260805250506001600b55600c80546001600160a01b0319166001600160a01b03831617905562000246826103e8620002a2565b50506200054a565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620002fe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000176565b6200030a82826200030e565b5050565b6127106001600160601b03821611156200037e5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840162000176565b6001600160a01b038216620003d65760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000176565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b8280546200041d90620004f4565b90600052602060002090601f0160209004810192826200044157600085556200048c565b82601f106200045c57805160ff19168380011785556200048c565b828001600101855582156200048c579182015b828111156200048c5782518255916020019190600101906200046f565b506200049a9291506200049e565b5090565b5b808211156200049a57600081556001016200049f565b60008060408385031215620004c957600080fd5b8251620004d68162000531565b6020840151909250620004e98162000531565b809150509250929050565b600181811c908216806200050957607f821691505b602082108114156200052b57634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b03811681146200054757600080fd5b50565b60805160a0516130b36200057b60003960008181612277015281816122a101526126e10152600050506130b36000f3fe6080604052600436106102ae5760003560e01c80635503a0e811610175578063a22cb465116100dc578063d5abeb0111610095578063e985e9c51161006f578063e985e9c514610850578063f254933d14610899578063f2fde38b146108b9578063fd4363ae146108d957600080fd5b8063d5abeb011461080f578063d7224ba014610825578063dd4fc04a1461083b57600080fd5b8063a22cb4651461075a578063a45ba8e71461077a578063b071401b1461078f578063b88d4fde146107af578063bdc3926d146107cf578063c87b56dd146107ef57600080fd5b80637f04116a1161012e5780637f04116a146106905780638da5cb5b146106b05780639231ab2a146106ce57806394354fd01461071c57806395d89b4114610732578063a0712d681461074757600080fd5b80635503a0e8146105f157806362b99ad4146106065780636352211e1461061b57806370a082311461063b578063715018a61461065b5780637ec4a6591461067057600080fd5b806323b872dd1161021957806342842e0e116101d257806342842e0e14610524578063438b63001461054457806344a0d68a146105715780634f6ccce7146105915780634fdd43cb146105b157806351830227146105d157600080fd5b806323b872dd1461046157806326092b83146104815780632a55205a1461049b5780632f745c59146104da5780633bd64968146104fa5780633ccfd60b1461050f57600080fd5b806313bfe8ad1161026b57806313bfe8ad1461039957806313faede6146103b957806316ba10e0146103dd57806318160ddd146103fd5780631b4152391461041257806321a1688e1461043157600080fd5b806301ffc9a7146102b357806302456aa2146102e857806302fa7c47146102ff57806306fdde031461031f578063081812fc14610341578063095ea7b314610379575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612bb5565b6108ee565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd61090e565b005b34801561030b57600080fd5b506102fd61031a366004612a22565b610955565b34801561032b57600080fd5b5061033461098d565b6040516102df9190612dfd565b34801561034d57600080fd5b5061036161035c366004612c38565b610a1f565b6040516001600160a01b0390911681526020016102df565b34801561038557600080fd5b506102fd610394366004612b89565b610aaa565b3480156103a557600080fd5b506102fd6103b4366004612a05565b610bc2565b3480156103c557600080fd5b506103cf60105481565b6040519081526020016102df565b3480156103e957600080fd5b506102fd6103f8366004612bef565b610c0e565b34801561040957600080fd5b506001546103cf565b34801561041e57600080fd5b506013546102d390610100900460ff1681565b34801561043d57600080fd5b506102d361044c366004612c38565b60146020526000908152604090205460ff1681565b34801561046d57600080fd5b506102fd61047c366004612a95565b610c4b565b34801561048d57600080fd5b506013546102d39060ff1681565b3480156104a757600080fd5b506104bb6104b6366004612c6a565b610c56565b604080516001600160a01b0390931683526020830191909152016102df565b3480156104e657600080fd5b506103cf6104f5366004612b89565b610d02565b34801561050657600080fd5b506102fd610e7b565b34801561051b57600080fd5b506102fd610ec4565b34801561053057600080fd5b506102fd61053f366004612a95565b610f1d565b34801561055057600080fd5b5061056461055f366004612a05565b610f38565b6040516102df9190612db9565b34801561057d57600080fd5b506102fd61058c366004612c38565b611019565b34801561059d57600080fd5b506103cf6105ac366004612c38565b611048565b3480156105bd57600080fd5b506102fd6105cc366004612bef565b6110b1565b3480156105dd57600080fd5b506013546102d39062010000900460ff1681565b3480156105fd57600080fd5b506103346110ee565b34801561061257600080fd5b5061033461117c565b34801561062757600080fd5b50610361610636366004612c38565b611189565b34801561064757600080fd5b506103cf610656366004612a05565b61119b565b34801561066757600080fd5b506102fd61122c565b34801561067c57600080fd5b506102fd61068b366004612bef565b611262565b34801561069c57600080fd5b50600c54610361906001600160a01b031681565b3480156106bc57600080fd5b506000546001600160a01b0316610361565b3480156106da57600080fd5b506106ee6106e9366004612c38565b61129f565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016102df565b34801561072857600080fd5b506103cf60125481565b34801561073e57600080fd5b506103346112bc565b6102fd610755366004612c38565b6112cb565b34801561076657600080fd5b506102fd610775366004612b56565b611427565b34801561078657600080fd5b506103346114ec565b34801561079b57600080fd5b506102fd6107aa366004612c38565b6114f9565b3480156107bb57600080fd5b506102fd6107ca366004612ad6565b611528565b3480156107db57600080fd5b506103cf6107ea366004612a05565b611561565b3480156107fb57600080fd5b5061033461080a366004612c38565b6116ea565b34801561081b57600080fd5b506103cf60115481565b34801561083157600080fd5b506103cf60085481565b34801561084757600080fd5b506102fd61185c565b34801561085c57600080fd5b506102d361086b366004612a67565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108a557600080fd5b506102fd6108b4366004612b89565b6118a3565b3480156108c557600080fd5b506102fd6108d4366004612a05565b611951565b3480156108e557600080fd5b506102fd6119e9565b60006108f982611c84565b80610908575061090882611cef565b92915050565b6000546001600160a01b031633146109415760405162461bcd60e51b815260040161093890612e10565b60405180910390fd5b6013805460ff19811660ff90911615179055565b6000546001600160a01b0316331461097f5760405162461bcd60e51b815260040161093890612e10565b6109898282611d14565b5050565b60606002805461099c90612f90565b80601f01602080910402602001604051908101604052809291908181526020018280546109c890612f90565b8015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b5050505050905090565b6000610a2c826001541190565b610a8e5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610938565b506000908152600660205260409020546001600160a01b031690565b6000610ab582611189565b9050806001600160a01b0316836001600160a01b03161415610b245760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610938565b336001600160a01b0382161480610b405750610b40813361086b565b610bb25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610938565b610bbd838383611e11565b505050565b6000546001600160a01b03163314610bec5760405162461bcd60e51b815260040161093890612e10565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610c385760405162461bcd60e51b815260040161093890612e10565b805161098990600e9060208401906128ff565b610bbd838383611e6d565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610ccb5750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610cea906001600160601b031687612eef565b610cf49190612edb565b915196919550909350505050565b6000610d0d8361119b565b8210610d665760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610938565b6000610d7160015490565b905060008060005b83811015610e1b576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610dcc57805192505b876001600160a01b0316836001600160a01b03161415610e085786841415610dfa5750935061090892505050565b83610e0481612fcb565b9450505b5080610e1381612fcb565b915050610d79565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610938565b6000546001600160a01b03163314610ea55760405162461bcd60e51b815260040161093890612e10565b6013805462ff0000198116620100009182900460ff1615909102179055565b6000546001600160a01b03163314610eee5760405162461bcd60e51b815260040161093890612e10565b60405133904780156108fc02916000818181858888f19350505050158015610f1a573d6000803e3d6000fd5b50565b610bbd83838360405180602001604052806000815250611528565b60606000610f458361119b565b905060008167ffffffffffffffff811115610f6257610f6261303c565b604051908082528060200260200182016040528015610f8b578160200160208202803683370190505b509050600160005b8381108015610fa457506011548211155b1561100f576000610fb483611189565b9050866001600160a01b0316816001600160a01b03161415610ffc5782848381518110610fe357610fe3613026565b602090810291909101015281610ff881612fcb565b9250505b8261100681612fcb565b93505050610f93565b5090949350505050565b6000546001600160a01b031633146110435760405162461bcd60e51b815260040161093890612e10565b601055565b600061105360015490565b82106110ad5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610938565b5090565b6000546001600160a01b031633146110db5760405162461bcd60e51b815260040161093890612e10565b805161098990600f9060208401906128ff565b600e80546110fb90612f90565b80601f016020809104026020016040519081016040528092919081815260200182805461112790612f90565b80156111745780601f1061114957610100808354040283529160200191611174565b820191906000526020600020905b81548152906001019060200180831161115757829003601f168201915b505050505081565b600d80546110fb90612f90565b6000611194826121f5565b5192915050565b60006001600160a01b0382166112075760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610938565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146112565760405162461bcd60e51b815260040161093890612e10565b611260600061239f565b565b6000546001600160a01b0316331461128c5760405162461bcd60e51b815260040161093890612e10565b805161098990600d9060208401906128ff565b6040805180820190915260008082526020820152610908826121f5565b60606003805461099c90612f90565b806000811180156112de57506012548111155b6113215760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610938565b6011548161132e60015490565b6113389190612ec3565b111561137d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610938565b60135460ff16156113ca5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610938565b816010546113d89190612eef565b34101561141d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610938565b61098933836123ef565b6001600160a01b0382163314156114805760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610938565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600f80546110fb90612f90565b6000546001600160a01b031633146115235760405162461bcd60e51b815260040161093890612e10565b601255565b611533848484611e6d565b61153f84848484612409565b61155b5760405162461bcd60e51b815260040161093890612e45565b50505050565b600c546040516370a0823160e01b81526001600160a01b03838116600483015260009283929116906370a082319060240160206040518083038186803b1580156115aa57600080fd5b505afa1580156115be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e29190612c51565b905060008060005b838110156116b457600c54604051632f745c5960e01b81526001600160a01b038881166004830152602482018490526000921690632f745c599060440160206040518083038186803b15801561163f57600080fd5b505afa158015611653573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116779190612c51565b60008181526014602052604090205490915060ff166116a1578361169a81612fcb565b9450508092505b50806116ac81612fcb565b9150506115ea565b506116c0600583612fe6565b600114156116d657816116d281612f79565b9250505b6116e1600583612edb565b95945050505050565b60606116f7826001541190565b61175b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610938565b60135462010000900460ff166117fd57600f805461177890612f90565b80601f01602080910402602001604051908101604052809291908181526020018280546117a490612f90565b80156117f15780601f106117c6576101008083540402835291602001916117f1565b820191906000526020600020905b8154815290600101906020018083116117d457829003601f168201915b50505050509050919050565b6000611807612517565b905060008151116118275760405180602001604052806000815250611855565b8061183184612526565b600e60405160200161184593929190612cb8565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146118865760405162461bcd60e51b815260040161093890612e10565b6013805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b031633146118cd5760405162461bcd60e51b815260040161093890612e10565b601154816118da60015490565b6118e49190612ec3565b11156119475760405162461bcd60e51b815260206004820152602c60248201527f4e4f545f454e4f5547485f535550504c595f544f5f47495645415741595f444560448201526b14d254915117d05353d5539560a21b6064820152608401610938565b61098982826123ef565b6000546001600160a01b0316331461197b5760405162461bcd60e51b815260040161093890612e10565b6001600160a01b0381166119e05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610938565b610f1a8161239f565b601354610100900460ff1615611a3b5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610938565b600c546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015611a7f57600080fd5b505afa158015611a93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab79190612c51565b905060008111611aff5760405162461bcd60e51b81526020600482015260136024820152724e6f20456c657068616e7473206f776e65642160681b6044820152606401610938565b60008060005b83811015611be857600c54604051632f745c5960e01b8152336004820152602481018390526000916001600160a01b031690632f745c599060440160206040518083038186803b158015611b5857600080fd5b505afa158015611b6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b909190612c51565b60008181526014602052604090205490915060ff16611bd55783611bb381612fcb565b6000838152601460205260409020805460ff1916600117905594509092508290505b5080611be081612fcb565b915050611b05565b50611bf4600583612fe6565b60011415611c205781611c0681612f79565b6000838152601460205260409020805460ff191690559250505b60008211611c705760405162461bcd60e51b815260206004820152601860248201527f4e6f2072656564656d61626c6520456c657068616e74732100000000000000006044820152606401610938565b610bbd33611c7f600585612edb565b6123ef565b60006001600160e01b031982166380ac58cd60e01b1480611cb557506001600160e01b03198216635b5e139f60e01b145b80611cd057506001600160e01b0319821663780e9d6360e01b145b8061090857506301ffc9a760e01b6001600160e01b0319831614610908565b60006001600160e01b0319821663152a902d60e11b1480610908575061090882611c84565b6127106001600160601b0382161115611d825760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610938565b6001600160a01b038216611dd85760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610938565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611e78826121f5565b80519091506000906001600160a01b0316336001600160a01b03161480611eaf575033611ea484610a1f565b6001600160a01b0316145b80611ec157508151611ec1903361086b565b905080611f2b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610938565b846001600160a01b031682600001516001600160a01b031614611f9f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610938565b6001600160a01b0384166120035760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610938565b6120136000848460000151611e11565b6001600160a01b03851660009081526005602052604081208054600192906120459084906001600160801b0316612f0e565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261209191859116612e98565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612119846001612ec3565b6000818152600460205260409020549091506001600160a01b03166121ab57612143816001541190565b156121ab5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152612214826001541190565b6122735760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610938565b60007f000000000000000000000000000000000000000000000000000000000000000083106122d4576122c67f000000000000000000000000000000000000000000000000000000000000000084612f36565b6122d1906001612ec3565b90505b825b81811061233e576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561232b57949350505050565b508061233681612f79565b9150506122d6565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610938565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610989828260405180602001604052806000815250612624565b60006001600160a01b0384163b1561250b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061244d903390899088908890600401612d7c565b602060405180830381600087803b15801561246757600080fd5b505af1925050508015612497575060408051601f3d908101601f1916820190925261249491810190612bd2565b60015b6124f1573d8080156124c5576040519150601f19603f3d011682016040523d82523d6000602084013e6124ca565b606091505b5080516124e95760405162461bcd60e51b815260040161093890612e45565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061250f565b5060015b949350505050565b6060600d805461099c90612f90565b60608161254a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612574578061255e81612fcb565b915061256d9050600a83612edb565b915061254e565b60008167ffffffffffffffff81111561258f5761258f61303c565b6040519080825280601f01601f1916602001820160405280156125b9576020820181803683370190505b5090505b841561250f576125ce600183612f36565b91506125db600a86612fe6565b6125e6906030612ec3565b60f81b8183815181106125fb576125fb613026565b60200101906001600160f81b031916908160001a90535061261d600a86612edb565b94506125bd565b6001546001600160a01b0384166126875760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610938565b612692816001541190565b156126df5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610938565b7f000000000000000000000000000000000000000000000000000000000000000083111561275a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610938565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906127b6908790612e98565b6001600160801b031681526020018583602001516127d49190612e98565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156128f45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46128b86000888488612409565b6128d45760405162461bcd60e51b815260040161093890612e45565b816128de81612fcb565b92505080806128ec90612fcb565b91505061286b565b5060018190556121ed565b82805461290b90612f90565b90600052602060002090601f01602090048101928261292d5760008555612973565b82601f1061294657805160ff1916838001178555612973565b82800160010185558215612973579182015b82811115612973578251825591602001919060010190612958565b506110ad9291505b808211156110ad576000815560010161297b565b600067ffffffffffffffff808411156129aa576129aa61303c565b604051601f8501601f19908116603f011681019082821181831017156129d2576129d261303c565b816040528093508581528686860111156129eb57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612a1757600080fd5b813561185581613052565b60008060408385031215612a3557600080fd5b8235612a4081613052565b915060208301356001600160601b0381168114612a5c57600080fd5b809150509250929050565b60008060408385031215612a7a57600080fd5b8235612a8581613052565b91506020830135612a5c81613052565b600080600060608486031215612aaa57600080fd5b8335612ab581613052565b92506020840135612ac581613052565b929592945050506040919091013590565b60008060008060808587031215612aec57600080fd5b8435612af781613052565b93506020850135612b0781613052565b925060408501359150606085013567ffffffffffffffff811115612b2a57600080fd5b8501601f81018713612b3b57600080fd5b612b4a8782356020840161298f565b91505092959194509250565b60008060408385031215612b6957600080fd5b8235612b7481613052565b915060208301358015158114612a5c57600080fd5b60008060408385031215612b9c57600080fd5b8235612ba781613052565b946020939093013593505050565b600060208284031215612bc757600080fd5b813561185581613067565b600060208284031215612be457600080fd5b815161185581613067565b600060208284031215612c0157600080fd5b813567ffffffffffffffff811115612c1857600080fd5b8201601f81018413612c2957600080fd5b61250f8482356020840161298f565b600060208284031215612c4a57600080fd5b5035919050565b600060208284031215612c6357600080fd5b5051919050565b60008060408385031215612c7d57600080fd5b50508035926020909101359150565b60008151808452612ca4816020860160208601612f4d565b601f01601f19169290920160200192915050565b600084516020612ccb8285838a01612f4d565b855191840191612cde8184848a01612f4d565b8554920191600090600181811c9080831680612cfb57607f831692505b858310811415612d1957634e487b7160e01b85526022600452602485fd5b808015612d2d5760018114612d3e57612d6b565b60ff19851688528388019550612d6b565b60008b81526020902060005b85811015612d635781548a820152908401908801612d4a565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612daf90830184612c8c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612df157835183529284019291840191600101612dd5565b50909695505050505050565b6020815260006118556020830184612c8c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612eba57612eba612ffa565b01949350505050565b60008219821115612ed657612ed6612ffa565b500190565b600082612eea57612eea613010565b500490565b6000816000190483118215151615612f0957612f09612ffa565b500290565b60006001600160801b0383811690831681811015612f2e57612f2e612ffa565b039392505050565b600082821015612f4857612f48612ffa565b500390565b60005b83811015612f68578181015183820152602001612f50565b8381111561155b5750506000910152565b600081612f8857612f88612ffa565b506000190190565b600181811c90821680612fa457607f821691505b60208210811415612fc557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fdf57612fdf612ffa565b5060010190565b600082612ff557612ff5613010565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f1a57600080fd5b6001600160e01b031981168114610f1a57600080fdfea2646970667358221220ba80e8f41b7d58d8722b81851bf015e399eaeed1fdc23d6295403e32283dd2e664736f6c6343000807003300000000000000000000000017de109b7418cd143e45f6068828b9a6b1a172b6000000000000000000000000e2ead7593cc0702f4681bb802ef09d417e744b5d

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80635503a0e811610175578063a22cb465116100dc578063d5abeb0111610095578063e985e9c51161006f578063e985e9c514610850578063f254933d14610899578063f2fde38b146108b9578063fd4363ae146108d957600080fd5b8063d5abeb011461080f578063d7224ba014610825578063dd4fc04a1461083b57600080fd5b8063a22cb4651461075a578063a45ba8e71461077a578063b071401b1461078f578063b88d4fde146107af578063bdc3926d146107cf578063c87b56dd146107ef57600080fd5b80637f04116a1161012e5780637f04116a146106905780638da5cb5b146106b05780639231ab2a146106ce57806394354fd01461071c57806395d89b4114610732578063a0712d681461074757600080fd5b80635503a0e8146105f157806362b99ad4146106065780636352211e1461061b57806370a082311461063b578063715018a61461065b5780637ec4a6591461067057600080fd5b806323b872dd1161021957806342842e0e116101d257806342842e0e14610524578063438b63001461054457806344a0d68a146105715780634f6ccce7146105915780634fdd43cb146105b157806351830227146105d157600080fd5b806323b872dd1461046157806326092b83146104815780632a55205a1461049b5780632f745c59146104da5780633bd64968146104fa5780633ccfd60b1461050f57600080fd5b806313bfe8ad1161026b57806313bfe8ad1461039957806313faede6146103b957806316ba10e0146103dd57806318160ddd146103fd5780631b4152391461041257806321a1688e1461043157600080fd5b806301ffc9a7146102b357806302456aa2146102e857806302fa7c47146102ff57806306fdde031461031f578063081812fc14610341578063095ea7b314610379575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612bb5565b6108ee565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd61090e565b005b34801561030b57600080fd5b506102fd61031a366004612a22565b610955565b34801561032b57600080fd5b5061033461098d565b6040516102df9190612dfd565b34801561034d57600080fd5b5061036161035c366004612c38565b610a1f565b6040516001600160a01b0390911681526020016102df565b34801561038557600080fd5b506102fd610394366004612b89565b610aaa565b3480156103a557600080fd5b506102fd6103b4366004612a05565b610bc2565b3480156103c557600080fd5b506103cf60105481565b6040519081526020016102df565b3480156103e957600080fd5b506102fd6103f8366004612bef565b610c0e565b34801561040957600080fd5b506001546103cf565b34801561041e57600080fd5b506013546102d390610100900460ff1681565b34801561043d57600080fd5b506102d361044c366004612c38565b60146020526000908152604090205460ff1681565b34801561046d57600080fd5b506102fd61047c366004612a95565b610c4b565b34801561048d57600080fd5b506013546102d39060ff1681565b3480156104a757600080fd5b506104bb6104b6366004612c6a565b610c56565b604080516001600160a01b0390931683526020830191909152016102df565b3480156104e657600080fd5b506103cf6104f5366004612b89565b610d02565b34801561050657600080fd5b506102fd610e7b565b34801561051b57600080fd5b506102fd610ec4565b34801561053057600080fd5b506102fd61053f366004612a95565b610f1d565b34801561055057600080fd5b5061056461055f366004612a05565b610f38565b6040516102df9190612db9565b34801561057d57600080fd5b506102fd61058c366004612c38565b611019565b34801561059d57600080fd5b506103cf6105ac366004612c38565b611048565b3480156105bd57600080fd5b506102fd6105cc366004612bef565b6110b1565b3480156105dd57600080fd5b506013546102d39062010000900460ff1681565b3480156105fd57600080fd5b506103346110ee565b34801561061257600080fd5b5061033461117c565b34801561062757600080fd5b50610361610636366004612c38565b611189565b34801561064757600080fd5b506103cf610656366004612a05565b61119b565b34801561066757600080fd5b506102fd61122c565b34801561067c57600080fd5b506102fd61068b366004612bef565b611262565b34801561069c57600080fd5b50600c54610361906001600160a01b031681565b3480156106bc57600080fd5b506000546001600160a01b0316610361565b3480156106da57600080fd5b506106ee6106e9366004612c38565b61129f565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016102df565b34801561072857600080fd5b506103cf60125481565b34801561073e57600080fd5b506103346112bc565b6102fd610755366004612c38565b6112cb565b34801561076657600080fd5b506102fd610775366004612b56565b611427565b34801561078657600080fd5b506103346114ec565b34801561079b57600080fd5b506102fd6107aa366004612c38565b6114f9565b3480156107bb57600080fd5b506102fd6107ca366004612ad6565b611528565b3480156107db57600080fd5b506103cf6107ea366004612a05565b611561565b3480156107fb57600080fd5b5061033461080a366004612c38565b6116ea565b34801561081b57600080fd5b506103cf60115481565b34801561083157600080fd5b506103cf60085481565b34801561084757600080fd5b506102fd61185c565b34801561085c57600080fd5b506102d361086b366004612a67565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108a557600080fd5b506102fd6108b4366004612b89565b6118a3565b3480156108c557600080fd5b506102fd6108d4366004612a05565b611951565b3480156108e557600080fd5b506102fd6119e9565b60006108f982611c84565b80610908575061090882611cef565b92915050565b6000546001600160a01b031633146109415760405162461bcd60e51b815260040161093890612e10565b60405180910390fd5b6013805460ff19811660ff90911615179055565b6000546001600160a01b0316331461097f5760405162461bcd60e51b815260040161093890612e10565b6109898282611d14565b5050565b60606002805461099c90612f90565b80601f01602080910402602001604051908101604052809291908181526020018280546109c890612f90565b8015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b5050505050905090565b6000610a2c826001541190565b610a8e5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610938565b506000908152600660205260409020546001600160a01b031690565b6000610ab582611189565b9050806001600160a01b0316836001600160a01b03161415610b245760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610938565b336001600160a01b0382161480610b405750610b40813361086b565b610bb25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610938565b610bbd838383611e11565b505050565b6000546001600160a01b03163314610bec5760405162461bcd60e51b815260040161093890612e10565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610c385760405162461bcd60e51b815260040161093890612e10565b805161098990600e9060208401906128ff565b610bbd838383611e6d565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610ccb5750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610cea906001600160601b031687612eef565b610cf49190612edb565b915196919550909350505050565b6000610d0d8361119b565b8210610d665760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610938565b6000610d7160015490565b905060008060005b83811015610e1b576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610dcc57805192505b876001600160a01b0316836001600160a01b03161415610e085786841415610dfa5750935061090892505050565b83610e0481612fcb565b9450505b5080610e1381612fcb565b915050610d79565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610938565b6000546001600160a01b03163314610ea55760405162461bcd60e51b815260040161093890612e10565b6013805462ff0000198116620100009182900460ff1615909102179055565b6000546001600160a01b03163314610eee5760405162461bcd60e51b815260040161093890612e10565b60405133904780156108fc02916000818181858888f19350505050158015610f1a573d6000803e3d6000fd5b50565b610bbd83838360405180602001604052806000815250611528565b60606000610f458361119b565b905060008167ffffffffffffffff811115610f6257610f6261303c565b604051908082528060200260200182016040528015610f8b578160200160208202803683370190505b509050600160005b8381108015610fa457506011548211155b1561100f576000610fb483611189565b9050866001600160a01b0316816001600160a01b03161415610ffc5782848381518110610fe357610fe3613026565b602090810291909101015281610ff881612fcb565b9250505b8261100681612fcb565b93505050610f93565b5090949350505050565b6000546001600160a01b031633146110435760405162461bcd60e51b815260040161093890612e10565b601055565b600061105360015490565b82106110ad5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610938565b5090565b6000546001600160a01b031633146110db5760405162461bcd60e51b815260040161093890612e10565b805161098990600f9060208401906128ff565b600e80546110fb90612f90565b80601f016020809104026020016040519081016040528092919081815260200182805461112790612f90565b80156111745780601f1061114957610100808354040283529160200191611174565b820191906000526020600020905b81548152906001019060200180831161115757829003601f168201915b505050505081565b600d80546110fb90612f90565b6000611194826121f5565b5192915050565b60006001600160a01b0382166112075760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610938565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146112565760405162461bcd60e51b815260040161093890612e10565b611260600061239f565b565b6000546001600160a01b0316331461128c5760405162461bcd60e51b815260040161093890612e10565b805161098990600d9060208401906128ff565b6040805180820190915260008082526020820152610908826121f5565b60606003805461099c90612f90565b806000811180156112de57506012548111155b6113215760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610938565b6011548161132e60015490565b6113389190612ec3565b111561137d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610938565b60135460ff16156113ca5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610938565b816010546113d89190612eef565b34101561141d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610938565b61098933836123ef565b6001600160a01b0382163314156114805760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610938565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600f80546110fb90612f90565b6000546001600160a01b031633146115235760405162461bcd60e51b815260040161093890612e10565b601255565b611533848484611e6d565b61153f84848484612409565b61155b5760405162461bcd60e51b815260040161093890612e45565b50505050565b600c546040516370a0823160e01b81526001600160a01b03838116600483015260009283929116906370a082319060240160206040518083038186803b1580156115aa57600080fd5b505afa1580156115be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e29190612c51565b905060008060005b838110156116b457600c54604051632f745c5960e01b81526001600160a01b038881166004830152602482018490526000921690632f745c599060440160206040518083038186803b15801561163f57600080fd5b505afa158015611653573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116779190612c51565b60008181526014602052604090205490915060ff166116a1578361169a81612fcb565b9450508092505b50806116ac81612fcb565b9150506115ea565b506116c0600583612fe6565b600114156116d657816116d281612f79565b9250505b6116e1600583612edb565b95945050505050565b60606116f7826001541190565b61175b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610938565b60135462010000900460ff166117fd57600f805461177890612f90565b80601f01602080910402602001604051908101604052809291908181526020018280546117a490612f90565b80156117f15780601f106117c6576101008083540402835291602001916117f1565b820191906000526020600020905b8154815290600101906020018083116117d457829003601f168201915b50505050509050919050565b6000611807612517565b905060008151116118275760405180602001604052806000815250611855565b8061183184612526565b600e60405160200161184593929190612cb8565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146118865760405162461bcd60e51b815260040161093890612e10565b6013805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b031633146118cd5760405162461bcd60e51b815260040161093890612e10565b601154816118da60015490565b6118e49190612ec3565b11156119475760405162461bcd60e51b815260206004820152602c60248201527f4e4f545f454e4f5547485f535550504c595f544f5f47495645415741595f444560448201526b14d254915117d05353d5539560a21b6064820152608401610938565b61098982826123ef565b6000546001600160a01b0316331461197b5760405162461bcd60e51b815260040161093890612e10565b6001600160a01b0381166119e05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610938565b610f1a8161239f565b601354610100900460ff1615611a3b5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610938565b600c546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015611a7f57600080fd5b505afa158015611a93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab79190612c51565b905060008111611aff5760405162461bcd60e51b81526020600482015260136024820152724e6f20456c657068616e7473206f776e65642160681b6044820152606401610938565b60008060005b83811015611be857600c54604051632f745c5960e01b8152336004820152602481018390526000916001600160a01b031690632f745c599060440160206040518083038186803b158015611b5857600080fd5b505afa158015611b6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b909190612c51565b60008181526014602052604090205490915060ff16611bd55783611bb381612fcb565b6000838152601460205260409020805460ff1916600117905594509092508290505b5080611be081612fcb565b915050611b05565b50611bf4600583612fe6565b60011415611c205781611c0681612f79565b6000838152601460205260409020805460ff191690559250505b60008211611c705760405162461bcd60e51b815260206004820152601860248201527f4e6f2072656564656d61626c6520456c657068616e74732100000000000000006044820152606401610938565b610bbd33611c7f600585612edb565b6123ef565b60006001600160e01b031982166380ac58cd60e01b1480611cb557506001600160e01b03198216635b5e139f60e01b145b80611cd057506001600160e01b0319821663780e9d6360e01b145b8061090857506301ffc9a760e01b6001600160e01b0319831614610908565b60006001600160e01b0319821663152a902d60e11b1480610908575061090882611c84565b6127106001600160601b0382161115611d825760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610938565b6001600160a01b038216611dd85760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610938565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611e78826121f5565b80519091506000906001600160a01b0316336001600160a01b03161480611eaf575033611ea484610a1f565b6001600160a01b0316145b80611ec157508151611ec1903361086b565b905080611f2b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610938565b846001600160a01b031682600001516001600160a01b031614611f9f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610938565b6001600160a01b0384166120035760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610938565b6120136000848460000151611e11565b6001600160a01b03851660009081526005602052604081208054600192906120459084906001600160801b0316612f0e565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261209191859116612e98565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612119846001612ec3565b6000818152600460205260409020549091506001600160a01b03166121ab57612143816001541190565b156121ab5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152612214826001541190565b6122735760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610938565b60007f00000000000000000000000000000000000000000000000000000000000003e883106122d4576122c67f00000000000000000000000000000000000000000000000000000000000003e884612f36565b6122d1906001612ec3565b90505b825b81811061233e576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561232b57949350505050565b508061233681612f79565b9150506122d6565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610938565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610989828260405180602001604052806000815250612624565b60006001600160a01b0384163b1561250b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061244d903390899088908890600401612d7c565b602060405180830381600087803b15801561246757600080fd5b505af1925050508015612497575060408051601f3d908101601f1916820190925261249491810190612bd2565b60015b6124f1573d8080156124c5576040519150601f19603f3d011682016040523d82523d6000602084013e6124ca565b606091505b5080516124e95760405162461bcd60e51b815260040161093890612e45565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061250f565b5060015b949350505050565b6060600d805461099c90612f90565b60608161254a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612574578061255e81612fcb565b915061256d9050600a83612edb565b915061254e565b60008167ffffffffffffffff81111561258f5761258f61303c565b6040519080825280601f01601f1916602001820160405280156125b9576020820181803683370190505b5090505b841561250f576125ce600183612f36565b91506125db600a86612fe6565b6125e6906030612ec3565b60f81b8183815181106125fb576125fb613026565b60200101906001600160f81b031916908160001a90535061261d600a86612edb565b94506125bd565b6001546001600160a01b0384166126875760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610938565b612692816001541190565b156126df5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610938565b7f00000000000000000000000000000000000000000000000000000000000003e883111561275a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610938565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906127b6908790612e98565b6001600160801b031681526020018583602001516127d49190612e98565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156128f45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46128b86000888488612409565b6128d45760405162461bcd60e51b815260040161093890612e45565b816128de81612fcb565b92505080806128ec90612fcb565b91505061286b565b5060018190556121ed565b82805461290b90612f90565b90600052602060002090601f01602090048101928261292d5760008555612973565b82601f1061294657805160ff1916838001178555612973565b82800160010185558215612973579182015b82811115612973578251825591602001919060010190612958565b506110ad9291505b808211156110ad576000815560010161297b565b600067ffffffffffffffff808411156129aa576129aa61303c565b604051601f8501601f19908116603f011681019082821181831017156129d2576129d261303c565b816040528093508581528686860111156129eb57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612a1757600080fd5b813561185581613052565b60008060408385031215612a3557600080fd5b8235612a4081613052565b915060208301356001600160601b0381168114612a5c57600080fd5b809150509250929050565b60008060408385031215612a7a57600080fd5b8235612a8581613052565b91506020830135612a5c81613052565b600080600060608486031215612aaa57600080fd5b8335612ab581613052565b92506020840135612ac581613052565b929592945050506040919091013590565b60008060008060808587031215612aec57600080fd5b8435612af781613052565b93506020850135612b0781613052565b925060408501359150606085013567ffffffffffffffff811115612b2a57600080fd5b8501601f81018713612b3b57600080fd5b612b4a8782356020840161298f565b91505092959194509250565b60008060408385031215612b6957600080fd5b8235612b7481613052565b915060208301358015158114612a5c57600080fd5b60008060408385031215612b9c57600080fd5b8235612ba781613052565b946020939093013593505050565b600060208284031215612bc757600080fd5b813561185581613067565b600060208284031215612be457600080fd5b815161185581613067565b600060208284031215612c0157600080fd5b813567ffffffffffffffff811115612c1857600080fd5b8201601f81018413612c2957600080fd5b61250f8482356020840161298f565b600060208284031215612c4a57600080fd5b5035919050565b600060208284031215612c6357600080fd5b5051919050565b60008060408385031215612c7d57600080fd5b50508035926020909101359150565b60008151808452612ca4816020860160208601612f4d565b601f01601f19169290920160200192915050565b600084516020612ccb8285838a01612f4d565b855191840191612cde8184848a01612f4d565b8554920191600090600181811c9080831680612cfb57607f831692505b858310811415612d1957634e487b7160e01b85526022600452602485fd5b808015612d2d5760018114612d3e57612d6b565b60ff19851688528388019550612d6b565b60008b81526020902060005b85811015612d635781548a820152908401908801612d4a565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612daf90830184612c8c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612df157835183529284019291840191600101612dd5565b50909695505050505050565b6020815260006118556020830184612c8c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612eba57612eba612ffa565b01949350505050565b60008219821115612ed657612ed6612ffa565b500190565b600082612eea57612eea613010565b500490565b6000816000190483118215151615612f0957612f09612ffa565b500290565b60006001600160801b0383811690831681811015612f2e57612f2e612ffa565b039392505050565b600082821015612f4857612f48612ffa565b500390565b60005b83811015612f68578181015183820152602001612f50565b8381111561155b5750506000910152565b600081612f8857612f88612ffa565b506000190190565b600181811c90821680612fa457607f821691505b60208210811415612fc557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fdf57612fdf612ffa565b5060010190565b600082612ff557612ff5613010565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f1a57600080fd5b6001600160e01b031981168114610f1a57600080fdfea2646970667358221220ba80e8f41b7d58d8722b81851bf015e399eaeed1fdc23d6295403e32283dd2e664736f6c63430008070033

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

00000000000000000000000017de109b7418cd143e45f6068828b9a6b1a172b6000000000000000000000000e2ead7593cc0702f4681bb802ef09d417e744b5d

-----Decoded View---------------
Arg [0] : royaltiesReceiver (address): 0x17De109B7418cd143E45f6068828B9A6b1a172B6
Arg [1] : _contract (address): 0xE2EaD7593Cc0702F4681Bb802ef09d417e744B5d

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000017de109b7418cd143e45f6068828b9a6b1a172b6
Arg [1] : 000000000000000000000000e2ead7593cc0702f4681bb802ef09d417e744b5d


Deployed Bytecode Sourcemap

28344:6872:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34998:215;;;;;;;;;;-1:-1:-1;34998:215:0;;;;;:::i;:::-;;:::i;:::-;;;8906:14:1;;8899:22;8881:41;;8869:2;8854:18;34998:215:0;;;;;;;;34276:85;;;;;;;;;;;;;:::i;:::-;;34841:143;;;;;;;;;;-1:-1:-1;34841:143:0;;;;;:::i;:::-;;:::i;20070:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;21289:292::-;;;;;;;;;;-1:-1:-1;21289:292:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7288:32:1;;;7270:51;;7258:2;7243:18;21289:292:0;7124:203:1;20868:413:0;;;;;;;;;;-1:-1:-1;20868:413:0;;;;;:::i;:::-;;:::i;34465:110::-;;;;;;;;;;-1:-1:-1;34465:110:0;;;;;:::i;:::-;;:::i;28611:32::-;;;;;;;;;;;;;;;;;;;21005:25:1;;;20993:2;20978:18;28611:32:0;20859:177:1;34162:106:0;;;;;;;;;;-1:-1:-1;34162:106:0;;;;;:::i;:::-;;:::i;17062:100::-;;;;;;;;;;-1:-1:-1;17142:12:0;;17062:100;;28809:30;;;;;;;;;;-1:-1:-1;28809:30:0;;;;;;;;;;;28963:48;;;;;;;;;;-1:-1:-1;28963:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;22130:162;;;;;;;;;;-1:-1:-1;22130:162:0;;;;;:::i;:::-;;:::i;28734:29::-;;;;;;;;;;-1:-1:-1;28734:29:0;;;;;;;;13099:442;;;;;;;;;;-1:-1:-1;13099:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;8017:32:1;;;7999:51;;8081:2;8066:18;;8059:34;;;;7972:18;13099:442:0;7825:274:1;17406:864:0;;;;;;;;;;-1:-1:-1;17406:864:0;;;;;:::i;:::-;;:::i;33537:79::-;;;;;;;;;;;;;:::i;34701:109::-;;;;;;;;;;;;;:::i;22300:177::-;;;;;;;;;;-1:-1:-1;22300:177:0;;;;;:::i;:::-;;:::i;32051:743::-;;;;;;;;;;-1:-1:-1;32051:743:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;33624:80::-;;;;;;;;;;-1:-1:-1;33624:80:0;;;;;:::i;:::-;;:::i;17170:228::-;;;;;;;;;;-1:-1:-1;17170:228:0;;;;;:::i;:::-;;:::i;33879:161::-;;;;;;;;;;-1:-1:-1;33879:161:0;;;;;:::i;:::-;;:::i;28887:28::-;;;;;;;;;;-1:-1:-1;28887:28:0;;;;;;;;;;;28531:33;;;;;;;;;;;;;:::i;28494:28::-;;;;;;;;;;;;;:::i;19938:124::-;;;;;;;;;;-1:-1:-1;19938:124:0;;;;;:::i;:::-;;:::i;18708:258::-;;;;;;;;;;-1:-1:-1;18708:258:0;;;;;:::i;:::-;;:::i;8079:94::-;;;;;;;;;;;;;:::i;34048:106::-;;;;;;;;;;-1:-1:-1;34048:106:0;;;;;:::i;:::-;;:::i;28454:31::-;;;;;;;;;;-1:-1:-1;28454:31:0;;;;-1:-1:-1;;;;;28454:31:0;;;7856:87;;;;;;;;;;-1:-1:-1;7902:7:0;7929:6;-1:-1:-1;;;;;7929:6:0;7856:87;;31576:167;;;;;;;;;;-1:-1:-1;31576:167:0;;;;;:::i;:::-;;:::i;:::-;;;;20724:13:1;;-1:-1:-1;;;;;20720:39:1;20702:58;;20820:4;20808:17;;;20802:24;20828:18;20798:49;20776:20;;;20769:79;;;;20675:18;31576:167:0;20492:362:1;28687:38:0;;;;;;;;;;;;;;;;20178:104;;;;;;;;;;;;;:::i;29611:295::-;;;;;;:::i;:::-;;:::i;21589:311::-;;;;;;;;;;-1:-1:-1;21589:311:0;;;;;:::i;:::-;;:::i;28571:31::-;;;;;;;;;;;;;:::i;33712:159::-;;;;;;;;;;-1:-1:-1;33712:159:0;;;;;:::i;:::-;;:::i;22485:355::-;;;;;;;;;;-1:-1:-1;22485:355:0;;;;;:::i;:::-;;:::i;30870:698::-;;;;;;;;;;-1:-1:-1;30870:698:0;;;;;:::i;:::-;;:::i;32802:727::-;;;;;;;;;;-1:-1:-1;32802:727:0;;;;;:::i;:::-;;:::i;28650:30::-;;;;;;;;;;;;;;;;26114:43;;;;;;;;;;;;;;;;34369:88;;;;;;;;;;;;;:::i;21908:214::-;;;;;;;;;;-1:-1:-1;21908:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;22079:25:0;;;22050:4;22079:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;21908:214;31751:292;;;;;;;;;;-1:-1:-1;31751:292:0;;;;;:::i;:::-;;:::i;8181:229::-;;;;;;;;;;-1:-1:-1;8181:229:0;;;;;:::i;:::-;;:::i;29914:948::-;;;;;;;;;;;;;:::i;34998:215::-;35101:4;35125:38;35151:11;35125:25;:38::i;:::-;:80;;;;35167:38;35193:11;35167:25;:38::i;:::-;35118:87;34998:215;-1:-1:-1;;34998:215:0:o;34276:85::-;7902:7;7929:6;-1:-1:-1;;;;;7929:6:0;7439:10;7991:23;7983:68;;;;-1:-1:-1;;;7983:68:0;;;;;;;:::i;:::-;;;;;;;;;34343:10:::1;::::0;;-1:-1:-1;;34329:24:0;::::1;34343:10;::::0;;::::1;34342:11;34329:24;::::0;;34276:85::o;34841:143::-;7902:7;7929:6;-1:-1:-1;;;;;7929:6:0;7439:10;7991:23;7983:68;;;;-1:-1:-1;;;7983:68:0;;;;;;;:::i;:::-;34937:39:::1;34956:8;34966:9;34937:18;:39::i;:::-;34841:143:::0;;:::o;20070:100::-;20124:13;20157:5;20150:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20070:100;:::o;21289:292::-;21393:7;21440:16;21448:7;22939:12;;-1:-1:-1;22929:22:0;22848:111;21440:16;21418:111;;;;-1:-1:-1;;;21418:111:0;;19175:2:1;21418:111:0;;;19157:21:1;19214:2;19194:18;;;19187:30;19253:34;19233:18;;;19226:62;-1:-1:-1;;;19304:18:1;;;19297:43;19357:19;;21418:111:0;18973:409:1;21418:111:0;-1:-1:-1;21549:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;21549:24:0;;21289:292::o;20868:413::-;20941:13;20957:24;20973:7;20957:15;:24::i;:::-;20941:40;;21006:5;-1:-1:-1;;;;;21000:11:0;:2;-1:-1:-1;;;;;21000:11:0;;;20992:58;;;;-1:-1:-1;;;20992:58:0;;14887:2:1;20992:58:0;;;14869:21:1;14926:2;14906:18;;;14899:30;14965:34;14945:18;;;14938:62;-1:-1:-1;;;15016:18:1;;;15009:32;15058:19;;20992:58:0;14685:398:1;20992:58:0;7439:10;-1:-1:-1;;;;;21085:21:0;;;;:62;;-1:-1:-1;21110:37:0;21127:5;7439:10;21908:214;:::i;21110:37::-;21063:169;;;;-1:-1:-1;;;21063:169:0;;11739:2:1;21063:169:0;;;11721:21:1;11778:2;11758:18;;;11751:30;11817:34;11797:18;;;11790:62;11888:27;11868:18;;;11861:55;11933:19;;21063:169:0;11537:421:1;21063:169:0;21245:28;21254:2;21258:7;21267:5;21245:8;:28::i;:::-;20930:351;20868:413;;:::o;34465:110::-;7902:7;7929:6;-1:-1:-1;;;;;7929:6:0;7439:10;7991:23;7983:68;;;;-1:-1:-1;;;7983:68:0;;;;;;;:::i;:::-;34540:16:::1;:27:::0;;-1:-1:-1;;;;;;34540:27:0::1;-1:-1:-1::0;;;;;34540:27:0;;;::::1;::::0;;;::::1;::::0;;34465:110::o;34162:106::-;7902:7;7929:6;-1:-1:-1;;;;;7929:6:0;7439:10;7991:23;7983:68;;;;-1:-1:-1;;;7983:68:0;;;;;;;:::i;:::-;34238:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;22130:162::-:0;22256:28;22266:4;22272:2;22276:7;22256:9;:28::i;13099:442::-;13196:7;13254:27;;;:17;:27;;;;;;;;13225:56;;;;;;;;;-1:-1:-1;;;;;13225:56:0;;;;;-1:-1:-1;;;13225:56:0;;;-1:-1:-1;;;;;13225:56:0;;;;;;;;13196:7;;13294:92;;-1:-1:-1;13345:29:0;;;;;;;;;13355:19;13345:29;-1:-1:-1;;;;;13345:29:0;;;;-1:-1:-1;;;13345:29:0;;-1:-1:-1;;;;;13345:29:0;;;;;13294:92;13436:23;;;;13398:21;;13907:5;;13423:36;;-1:-1:-1;;;;;13423:36:0;:10;:36;:::i;:::-;13422:58;;;;:::i;:::-;13501:16;;;;;-1:-1:-1;13099:442:0;;-1:-1:-1;;;;13099:442:0:o;17406:864::-;17531:7;17572:16;17582:5;17572:9;:16::i;:::-;17564:5;:24;17556:71;;;;-1:-1:-1;;;17556:71:0;;9359:2:1;17556:71:0;;;9341:21:1;9398:2;9378:18;;;9371:30;9437:34;9417:18;;;9410:62;-1:-1:-1;;;9488:18:1;;;9481:32;9530:19;;17556:71:0;9157:398:1;17556:71:0;17638:22;17663:13;17142:12;;;17062:100;17663:13;17638:38;;17687:19;17721:25;17775:9;17770:426;17794:14;17790:1;:18;17770:426;;;17830:31;17864:14;;;:11;:14;;;;;;;;;17830:48;;;;;;;;;-1:-1:-1;;;;;17830:48:0;;;;;-1:-1:-1;;;17830:48:0;;;;;;;;;;;;17897:28;17893:103;;17966:14;;;-1:-1:-1;17893:103:0;18035:5;-1:-1:-1;;;;;18014:26:0;:17;-1:-1:-1;;;;;18014:26:0;;18010:175;;;18080:5;18065:11;:20;18061:77;;;-1:-1:-1;18117:1:0;-1:-1:-1;18110:8:0;;-1:-1:-1;;;18110:8:0;18061:77;18156:13;;;;:::i;:::-;;;;18010:175;-1:-1:-1;17810:3:0;;;;:::i;:::-;;;;17770:426;;;-1:-1:-1;18206:56:0;;-1:-1:-1;;;18206:56:0;;17991:2:1;18206:56:0;;;17973:21:1;18030:2;18010:18;;;18003:30;18069:34;18049:18;;;18042:62;-1:-1:-1;;;18120:18:1;;;18113:44;18174:19;;18206:56:0;17789:410:1;33537:79:0;7902:7;7929:6;-1:-1:-1;;;;;7929:6:0;7439:10;7991:23;7983:68;;;;-1:-1:-1;;;7983:68:0;;;;;;;:::i;:::-;33600:8:::1;::::0;;-1:-1:-1;;33588:20:0;::::1;33600:8:::0;;;;::::1;;;33599:9;33588:20:::0;;::::1;;::::0;;33537:79::o;34701:109::-;7902:7;7929:6;-1:-1:-1;;;;;7929:6:0;7439:10;7991:23;7983:68;;;;-1:-1:-1;;;7983:68:0;;;;;;;:::i;:::-;34751:51:::1;::::0;34759:10:::1;::::0;34780:21:::1;34751:51:::0;::::1;;;::::0;::::1;::::0;;;34780:21;34759:10;34751:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;34701:109::o:0;22300:177::-;22430:39;22447:4;22453:2;22457:7;22430:39;;;;;;;;;;;;:16;:39::i;32051:743::-;32138:16;32172:23;32198:17;32208:6;32198:9;:17::i;:::-;32172:43;;32226:30;32273:15;32259:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32259:30:0;-1:-1:-1;32226:63:0;-1:-1:-1;32325:1:0;32300:22;32377:377;32416:15;32398;:33;:64;;;;;32453:9;;32435:14;:27;;32398:64;32377:377;;;32489:25;32517:23;32525:14;32517:7;:23::i;:::-;32489:51;;32582:6;-1:-1:-1;;;;;32561:27:0;:17;-1:-1:-1;;;;;32561:27:0;;32557:153;;;32642:14;32609:13;32623:15;32609:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;32677:17;;;;:::i;:::-;;;;32557:153;32726:16;;;;:::i;:::-;;;;32474:280;32377:377;;;-1:-1:-1;32773:13:0;;32051:743;-1:-1:-1;;;;32051:743:0:o;33624:80::-;7902:7;7929:6;-1:-1:-1;;;;;7929:6:0;7439:10;7991:23;7983:68;;;;-1:-1:-1;;;7983:68:0;;;;;;;:::i;:::-;33684:4:::1;:12:::0;33624:80::o;17170:228::-;17273:7;17314:13;17142:12;;;17062:100;17314:13;17306:5;:21;17298:69;;;;-1:-1:-1;;;17298:69:0;;10929:2:1;17298:69:0;;;10911:21:1;10968:2;10948:18;;;10941:30;11007:34;10987:18;;;10980:62;-1:-1:-1;;;11058:18:1;;;11051:33;11101:19;;17298:69:0;10727:399:1;17298:69:0;-1:-1:-1;17385:5:0;17170:228::o;33879:161::-;7902:7;7929:6;-1:-1:-1;;;;;7929:6:0;7439:10;7991:23;7983:68;;;;-1:-1:-1;;;7983:68:0;;;;;;;:::i;:::-;33994:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;28531:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28494:28::-;;;;;;;:::i;19938:124::-;20002:7;20029:20;20041:7;20029:11;:20::i;:::-;:25;;19938:124;-1:-1:-1;;19938:124:0:o;18708:258::-;18772:7;-1:-1:-1;;;;;18814:19:0;;18792:112;;;;-1:-1:-1;;;18792:112:0;;12165:2:1;18792:112:0;;;12147:21:1;12204:2;12184:18;;;12177:30;12243:34;12223:18;;;12216:62;-1:-1:-1;;;12294:18:1;;;12287:41;12345:19;;18792:112:0;11963:407:1;18792:112:0;-1:-1:-1;;;;;;18930:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;18930:27:0;;18708:258::o;8079:94::-;7902:7;7929:6;-1:-1:-1;;;;;7929:6:0;7439:10;7991:23;7983:68;;;;-1:-1:-1;;;7983:68:0;;;;;;;:::i;:::-;8144:21:::1;8162:1;8144:9;:21::i;:::-;8079:94::o:0;34048:106::-;7902:7;7929:6;-1:-1:-1;;;;;7929:6:0;7439:10;7991:23;7983:68;;;;-1:-1:-1;;;7983:68:0;;;;;;;:::i;:::-;34124:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;31576:167::-:0;-1:-1:-1;;;;;;;;;;;;;;;;;31715:20:0;31727:7;31715:11;:20::i;20178:104::-;20234:13;20267:7;20260:14;;;;;:::i;29611:295::-;29703:11;29376:1;29362:11;:15;:52;;;;;29396:18;;29381:11;:33;;29362:52;29340:122;;;;-1:-1:-1;;;29340:122:0;;10580:2:1;29340:122:0;;;10562:21:1;10619:2;10599:18;;;10592:30;-1:-1:-1;;;10638:18:1;;;10631:50;10698:18;;29340:122:0;10378:344:1;29340:122:0;29526:9;;29511:11;29495:13;17142:12;;;17062:100;29495:13;:27;;;;:::i;:::-;:40;;29473:110;;;;-1:-1:-1;;;29473:110:0;;15290:2:1;29473:110:0;;;15272:21:1;15329:2;15309:18;;;15302:30;-1:-1:-1;;;15348:18:1;;;15341:50;15408:18;;29473:110:0;15088:344:1;29473:110:0;29741:10:::1;::::0;::::1;;29740:11;29732:47;;;::::0;-1:-1:-1;;;29732:47:0;;13345:2:1;29732:47:0::1;::::0;::::1;13327:21:1::0;13384:2;13364:18;;;13357:30;-1:-1:-1;;;13403:18:1;;;13396:53;13466:18;;29732:47:0::1;13143:347:1::0;29732:47:0::1;29818:11;29811:4;;:18;;;;:::i;:::-;29798:9;:31;;29790:63;;;::::0;-1:-1:-1;;;29790:63:0;;20346:2:1;29790:63:0::1;::::0;::::1;20328:21:1::0;20385:2;20365:18;;;20358:30;-1:-1:-1;;;20404:18:1;;;20397:49;20463:18;;29790:63:0::1;20144:343:1::0;29790:63:0::1;29864:34;29874:10;29886:11;29864:9;:34::i;21589:311::-:0;-1:-1:-1;;;;;21707:24:0;;7439:10;21707:24;;21699:63;;;;-1:-1:-1;;;21699:63:0;;14113:2:1;21699:63:0;;;14095:21:1;14152:2;14132:18;;;14125:30;14191:28;14171:18;;;14164:56;14237:18;;21699:63:0;13911:350:1;21699:63:0;7439:10;21775:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;21775:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;21775:53:0;;;;;;;;;;21844:48;;8881:41:1;;;21775:42:0;;7439:10;21844:48;;8854:18:1;21844:48:0;;;;;;;21589:311;;:::o;28571:31::-;;;;;;;:::i;33712:159::-;7902:7;7929:6;-1:-1:-1;;;;;7929:6:0;7439:10;7991:23;7983:68;;;;-1:-1:-1;;;7983:68:0;;;;;;;:::i;:::-;33823:18:::1;:40:::0;33712:159::o;22485:355::-;22644:28;22654:4;22660:2;22664:7;22644:9;:28::i;:::-;22705:48;22728:4;22734:2;22738:7;22747:5;22705:22;:48::i;:::-;22683:149;;;;-1:-1:-1;;;22683:149:0;;;;;;;:::i;:::-;22485:355;;;;:::o;30870:698::-;31025:16;;31017:43;;-1:-1:-1;;;31017:43:0;;-1:-1:-1;;;;;7288:32:1;;;31017:43:0;;;7270:51:1;30967:7:0;;;;31025:16;;;31017:35;;7243:18:1;;31017:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30992:68;;31073:19;31107:26;31153:9;31148:298;31172:14;31168:1;:18;31148:298;;;31244:16;;31226:66;;-1:-1:-1;;;31226:66:0;;-1:-1:-1;;;;;8017:32:1;;;31226:66:0;;;7999:51:1;8066:18;;;8059:34;;;31208:15:0;;31244:16;;31226:55;;7972:18:1;;31226:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31312:25;;;;:16;:25;;;;;;31208:84;;-1:-1:-1;31312:25:0;;31307:128;;31359:13;;;;:::i;:::-;;;;31412:7;31391:28;;31307:128;-1:-1:-1;31188:3:0;;;;:::i;:::-;;;;31148:298;;;-1:-1:-1;31462:15:0;31476:1;31462:11;:15;:::i;:::-;31481:1;31462:20;31458:66;;;31499:13;;;;:::i;:::-;;;;31458:66;31544:15;31558:1;31544:11;:15;:::i;:::-;31536:24;30870:698;-1:-1:-1;;;;;30870:698:0:o;32802:727::-;32921:13;32974:17;32982:8;22939:12;;-1:-1:-1;22929:22:0;22848:111;32974:17;32952:114;;;;-1:-1:-1;;;32952:114:0;;13697:2:1;32952:114:0;;;13679:21:1;13736:2;13716:18;;;13709:30;13775:34;13755:18;;;13748:62;-1:-1:-1;;;13826:18:1;;;13819:45;13881:19;;32952:114:0;13495:411:1;32952:114:0;33083:8;;;;;;;33079:74;;33124:17;33117:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32802:727;;;:::o;33079:74::-;33165:28;33196:10;:8;:10::i;:::-;33165:41;;33268:1;33243:14;33237:28;:32;:284;;;;;;;;;;;;;;;;;33361:14;33402:19;:8;:17;:19::i;:::-;33448:9;33318:162;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33237:284;33217:304;32802:727;-1:-1:-1;;;32802:727:0:o;34369:88::-;7902:7;7929:6;-1:-1:-1;;;;;7929:6:0;7439:10;7991:23;7983:68;;;;-1:-1:-1;;;7983:68:0;;;;;;;:::i;:::-;34438:11:::1;::::0;;-1:-1:-1;;34423:26:0;::::1;34438:11;::::0;;;::::1;;;34437:12;34423:26:::0;;::::1;;::::0;;34369:88::o;31751:292::-;7902:7;7929:6;-1:-1:-1;;;;;7929:6:0;7439:10;7991:23;7983:68;;;;-1:-1:-1;;;7983:68:0;;;;;;;:::i;:::-;31914:9:::1;;31902:8;31886:13;17142:12:::0;;;17062:100;31886:13:::1;:24;;;;:::i;:::-;:37;;31864:131;;;::::0;-1:-1:-1;;;31864:131:0;;17578:2:1;31864:131:0::1;::::0;::::1;17560:21:1::0;17617:2;17597:18;;;17590:30;17656:34;17636:18;;;17629:62;-1:-1:-1;;;17707:18:1;;;17700:42;17759:19;;31864:131:0::1;17376:408:1::0;31864:131:0::1;32006:29;32016:8;32026;32006:9;:29::i;8181:229::-:0;7902:7;7929:6;-1:-1:-1;;;;;7929:6:0;7439:10;7991:23;7983:68;;;;-1:-1:-1;;;7983:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8284:22:0;::::1;8262:110;;;::::0;-1:-1:-1;;;8262:110:0;;9762:2:1;8262:110:0::1;::::0;::::1;9744:21:1::0;9801:2;9781:18;;;9774:30;9840:34;9820:18;;;9813:62;-1:-1:-1;;;9891:18:1;;;9884:36;9937:19;;8262:110:0::1;9560:402:1::0;8262:110:0::1;8383:19;8393:8;8383:9;:19::i;29914:948::-:0;29981:11;;;;;;;29980:12;29972:48;;;;-1:-1:-1;;;29972:48:0;;13345:2:1;29972:48:0;;;13327:21:1;13384:2;13364:18;;;13357:30;-1:-1:-1;;;13403:18:1;;;13396:53;13466:18;;29972:48:0;13143:347:1;29972:48:0;30064:16;;30056:47;;-1:-1:-1;;;30056:47:0;;30092:10;30056:47;;;7270:51:1;30031:22:0;;-1:-1:-1;;;;;30064:16:0;;30056:35;;7243:18:1;;30056:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30031:72;;30139:1;30122:14;:18;30114:50;;;;-1:-1:-1;;;30114:50:0;;16819:2:1;30114:50:0;;;16801:21:1;16858:2;16838:18;;;16831:30;-1:-1:-1;;;16877:18:1;;;16870:49;16936:18;;30114:50:0;16617:343:1;30114:50:0;30177:19;30211:26;30257:9;30252:353;30276:14;30272:1;:18;30252:353;;;30348:16;;30330:70;;-1:-1:-1;;;30330:70:0;;30386:10;30330:70;;;7999:51:1;8066:18;;;8059:34;;;30312:15:0;;-1:-1:-1;;;;;30348:16:0;;30330:55;;7972:18:1;;30330:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30420:25;;;;:16;:25;;;;;;30312:88;;-1:-1:-1;30420:25:0;;30415:179;;30467:13;;;;:::i;:::-;30499:25;;;;:16;:25;;;;;:32;;-1:-1:-1;;30499:32:0;30527:4;30499:32;;;30467:13;-1:-1:-1;30516:7:0;;-1:-1:-1;30516:7:0;;-1:-1:-1;30415:179:0;-1:-1:-1;30292:3:0;;;;:::i;:::-;;;;30252:353;;;-1:-1:-1;30621:15:0;30635:1;30621:11;:15;:::i;:::-;30640:1;30621:20;30617:124;;;30658:13;;;;:::i;:::-;30693:36;;;;:16;:36;;;;;30686:43;;-1:-1:-1;;30686:43:0;;;30658:13;-1:-1:-1;;30617:124:0;30775:1;30761:11;:15;30753:52;;;;-1:-1:-1;;;30753:52:0;;18406:2:1;30753:52:0;;;18388:21:1;18445:2;18425:18;;;18418:30;18484:26;18464:18;;;18457:54;18528:18;;30753:52:0;18204:348:1;30753:52:0;30816:38;30826:10;30838:15;30852:1;30838:11;:15;:::i;:::-;30816:9;:38::i;18278:422::-;18425:4;-1:-1:-1;;;;;;18467:40:0;;-1:-1:-1;;;18467:40:0;;:105;;-1:-1:-1;;;;;;;18524:48:0;;-1:-1:-1;;;18524:48:0;18467:105;:172;;;-1:-1:-1;;;;;;;18589:50:0;;-1:-1:-1;;;18589:50:0;18467:172;:225;;;-1:-1:-1;;;;;;;;;;10567:40:0;;;18656:36;10408:207;12829:215;12931:4;-1:-1:-1;;;;;;12955:41:0;;-1:-1:-1;;;12955:41:0;;:81;;;13000:36;13024:11;13000:23;:36::i;14191:332::-;13907:5;-1:-1:-1;;;;;14294:33:0;;;;14286:88;;;;-1:-1:-1;;;14286:88:0;;17167:2:1;14286:88:0;;;17149:21:1;17206:2;17186:18;;;17179:30;17245:34;17225:18;;;17218:62;-1:-1:-1;;;17296:18:1;;;17289:40;17346:19;;14286:88:0;16965:406:1;14286:88:0;-1:-1:-1;;;;;14393:22:0;;14385:60;;;;-1:-1:-1;;;14385:60:0;;19589:2:1;14385:60:0;;;19571:21:1;19628:2;19608:18;;;19601:30;19667:27;19647:18;;;19640:55;19712:18;;14385:60:0;19387:349:1;14385:60:0;14480:35;;;;;;;;;-1:-1:-1;;;;;14480:35:0;;;;;;-1:-1:-1;;;;;14480:35:0;;;;;;;;;;-1:-1:-1;;;14458:57:0;;;;:19;:57;14191:332::o;25910:196::-;26025:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;26025:29:0;-1:-1:-1;;;;;26025:29:0;;;;;;;;;26070:28;;26025:24;;26070:28;;;;;;;25910:196;;;:::o;24362:1540::-;24477:35;24515:20;24527:7;24515:11;:20::i;:::-;24590:18;;24477:58;;-1:-1:-1;24548:22:0;;-1:-1:-1;;;;;24574:34:0;7439:10;-1:-1:-1;;;;;24574:34:0;;:87;;;-1:-1:-1;7439:10:0;24625:20;24637:7;24625:11;:20::i;:::-;-1:-1:-1;;;;;24625:36:0;;24574:87;:154;;;-1:-1:-1;24695:18:0;;24678:50;;7439:10;21908:214;:::i;24678:50::-;24548:181;;24764:17;24742:117;;;;-1:-1:-1;;;24742:117:0;;14468:2:1;24742:117:0;;;14450:21:1;14507:2;14487:18;;;14480:30;14546:34;14526:18;;;14519:62;-1:-1:-1;;;14597:18:1;;;14590:48;14655:19;;24742:117:0;14266:414:1;24742:117:0;24916:4;-1:-1:-1;;;;;24894:26:0;:13;:18;;;-1:-1:-1;;;;;24894:26:0;;24872:114;;;;-1:-1:-1;;;24872:114:0;;12577:2:1;24872:114:0;;;12559:21:1;12616:2;12596:18;;;12589:30;12655:34;12635:18;;;12628:62;-1:-1:-1;;;12706:18:1;;;12699:36;12752:19;;24872:114:0;12375:402:1;24872:114:0;-1:-1:-1;;;;;25005:16:0;;24997:66;;;;-1:-1:-1;;;24997:66:0;;11333:2:1;24997:66:0;;;11315:21:1;11372:2;11352:18;;;11345:30;11411:34;11391:18;;;11384:62;-1:-1:-1;;;11462:18:1;;;11455:35;11507:19;;24997:66:0;11131:401:1;24997:66:0;25130:49;25147:1;25151:7;25160:13;:18;;;25130:8;:49::i;:::-;-1:-1:-1;;;;;25192:18:0;;;;;;:12;:18;;;;;:31;;25222:1;;25192:18;:31;;25222:1;;-1:-1:-1;;;;;25192:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;25192:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25234:16:0;;-1:-1:-1;25234:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;25234:16:0;;:29;;-1:-1:-1;;25234:29:0;;:::i;:::-;;;-1:-1:-1;;;;;25234:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25297:43:0;;;;;;;;-1:-1:-1;;;;;25297:43:0;;;;;;25323:15;25297:43;;;;;;;;;-1:-1:-1;25274:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;25274:66:0;-1:-1:-1;;;;;;25274:66:0;;;;;;;;;;;25487:11;25286:7;-1:-1:-1;25487:11:0;:::i;:::-;25554:1;25513:24;;;:11;:24;;;;;:29;25465:33;;-1:-1:-1;;;;;;25513:29:0;25509:288;;25577:20;25585:11;22939:12;;-1:-1:-1;22929:22:0;22848:111;25577:20;25573:213;;;25645:125;;;;;;;;25682:18;;-1:-1:-1;;;;;25645:125:0;;;;;;25723:28;;;;25645:125;;;;;;;;;;-1:-1:-1;25618:24:0;;;:11;:24;;;;;;;:152;;;;;;;;;-1:-1:-1;;;25618:152:0;-1:-1:-1;;;;;;25618:152:0;;;;;;;;;;;;25573:213;25833:7;25829:2;-1:-1:-1;;;;;25814:27:0;25823:4;-1:-1:-1;;;;;25814:27:0;;;;;;;;;;;25852:42;24466:1436;;;24362:1540;;;:::o;19248:682::-;-1:-1:-1;;;;;;;;;;;;;;;;;19383:16:0;19391:7;22939:12;;-1:-1:-1;22929:22:0;22848:111;19383:16;19375:71;;;;-1:-1:-1;;;19375:71:0;;10169:2:1;19375:71:0;;;10151:21:1;10208:2;10188:18;;;10181:30;10247:34;10227:18;;;10220:62;-1:-1:-1;;;10298:18:1;;;10291:40;10348:19;;19375:71:0;9967:406:1;19375:71:0;19459:26;19511:12;19500:7;:23;19496:103;;19561:22;19571:12;19561:7;:22;:::i;:::-;:26;;19586:1;19561:26;:::i;:::-;19540:47;;19496:103;19631:7;19611:242;19648:18;19640:4;:26;19611:242;;19691:31;19725:17;;;:11;:17;;;;;;;;;19691:51;;;;;;;;;-1:-1:-1;;;;;19691:51:0;;;;;-1:-1:-1;;;19691:51:0;;;;;;;;;;;;19761:28;19757:85;;19817:9;19248:682;-1:-1:-1;;;;19248:682:0:o;19757:85::-;-1:-1:-1;19668:6:0;;;;:::i;:::-;;;;19611:242;;;-1:-1:-1;19865:57:0;;-1:-1:-1;;;19865:57:0;;18759:2:1;19865:57:0;;;18741:21:1;18798:2;18778:18;;;18771:30;18837:34;18817:18;;;18810:62;-1:-1:-1;;;18888:18:1;;;18881:45;18943:19;;19865:57:0;18557:411:1;8418:173:0;8474:16;8493:6;;-1:-1:-1;;;;;8510:17:0;;;-1:-1:-1;;;;;;8510:17:0;;;;;;8543:40;;8493:6;;;;;;;8543:40;;8474:16;8543:40;8463:128;8418:173;:::o;22967:104::-;23036:27;23046:2;23050:8;23036:27;;;;;;;;;;;;:9;:27::i;27019:985::-;27174:4;-1:-1:-1;;;;;27195:13:0;;3429:19;:23;27191:806;;27248:175;;-1:-1:-1;;;27248:175:0;;-1:-1:-1;;;;;27248:36:0;;;;;:175;;7439:10;;27342:4;;27369:7;;27399:5;;27248:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27248:175:0;;;;;;;;-1:-1:-1;;27248:175:0;;;;;;;;;;;;:::i;:::-;;;27227:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27610:13:0;;27606:321;;27653:109;;-1:-1:-1;;;27653:109:0;;;;;;;:::i;27606:321::-;27877:6;27871:13;27862:6;27858:2;27854:15;27847:38;27227:715;-1:-1:-1;;;;;;27487:55:0;-1:-1:-1;;;27487:55:0;;-1:-1:-1;27480:62:0;;27191:806;-1:-1:-1;27981:4:0;27191:806;27019:985;;;;;;:::o;34583:110::-;34643:13;34676:9;34669:16;;;;;:::i;8769:656::-;8825:13;8979:10;8975:53;;-1:-1:-1;;9006:10:0;;;;;;;;;;;;-1:-1:-1;;;9006:10:0;;;;;8769:656::o;8975:53::-;9053:5;9038:12;9094:78;9101:9;;9094:78;;9127:8;;;;:::i;:::-;;-1:-1:-1;9150:10:0;;-1:-1:-1;9158:2:0;9150:10;;:::i;:::-;;;9094:78;;;9182:19;9214:6;9204:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9204:17:0;;9182:39;;9232:154;9239:10;;9232:154;;9266:11;9276:1;9266:11;;:::i;:::-;;-1:-1:-1;9335:10:0;9343:2;9335:5;:10;:::i;:::-;9322:24;;:2;:24;:::i;:::-;9309:39;;9292:6;9299;9292:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9292:56:0;;;;;;;;-1:-1:-1;9363:11:0;9372:2;9363:11;;:::i;:::-;;;9232:154;;23079:1275;23225:12;;-1:-1:-1;;;;;23256:16:0;;23248:62;;;;-1:-1:-1;;;23248:62:0;;16417:2:1;23248:62:0;;;16399:21:1;16456:2;16436:18;;;16429:30;16495:34;16475:18;;;16468:62;-1:-1:-1;;;16546:18:1;;;16539:31;16587:19;;23248:62:0;16215:397:1;23248:62:0;23330:21;23338:12;22939;;-1:-1:-1;22929:22:0;22848:111;23330:21;23329:22;23321:64;;;;-1:-1:-1;;;23321:64:0;;16059:2:1;23321:64:0;;;16041:21:1;16098:2;16078:18;;;16071:30;16137:31;16117:18;;;16110:59;16186:18;;23321:64:0;15857:353:1;23321:64:0;23416:12;23404:8;:24;;23396:71;;;;-1:-1:-1;;;23396:71:0;;19943:2:1;23396:71:0;;;19925:21:1;19982:2;19962:18;;;19955:30;20021:34;20001:18;;;19994:62;-1:-1:-1;;;20072:18:1;;;20065:32;20114:19;;23396:71:0;19741:398:1;23396:71:0;-1:-1:-1;;;;;23587:16:0;;23554:30;23587:16;;;:12;:16;;;;;;;;;23554:49;;;;;;;;;-1:-1:-1;;;;;23554:49:0;;;;;-1:-1:-1;;;23554:49:0;;;;;;;;;;;23633:135;;;;;;;;23659:19;;23554:49;;23633:135;;;23659:39;;23689:8;;23659:39;:::i;:::-;-1:-1:-1;;;;;23633:135:0;;;;;23748:8;23713:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;23633:135:0;;;;;;-1:-1:-1;;;;;23614:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;23614:154:0;;;;;;;;;;;;23807:43;;;;;;;;;;;23833:15;23807:43;;;;;;;;23779:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;23779:71:0;-1:-1:-1;;;;;;23779:71:0;;;;;;;;;;;;;;;;;;23791:12;;23911:325;23935:8;23931:1;:12;23911:325;;;23970:38;;23995:12;;-1:-1:-1;;;;;23970:38:0;;;23987:1;;23970:38;;23987:1;;23970:38;24049:59;24080:1;24084:2;24088:12;24102:5;24049:22;:59::i;:::-;24023:172;;;;-1:-1:-1;;;24023:172:0;;;;;;;:::i;:::-;24210:14;;;;:::i;:::-;;;;23945:3;;;;;:::i;:::-;;;;23911:325;;;-1:-1:-1;24248:12:0;:27;;;24286:60;22485:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;902:443::-;977:6;985;1038:2;1026:9;1017:7;1013:23;1009:32;1006:52;;;1054:1;1051;1044:12;1006:52;1093:9;1080:23;1112:31;1137:5;1112:31;:::i;:::-;1162:5;-1:-1:-1;1219:2:1;1204:18;;1191:32;-1:-1:-1;;;;;1254:40:1;;1242:53;;1232:81;;1309:1;1306;1299:12;1232:81;1332:7;1322:17;;;902:443;;;;;:::o;1350:388::-;1418:6;1426;1479:2;1467:9;1458:7;1454:23;1450:32;1447:52;;;1495:1;1492;1485:12;1447:52;1534:9;1521:23;1553:31;1578:5;1553:31;:::i;:::-;1603:5;-1:-1:-1;1660:2:1;1645:18;;1632:32;1673:33;1632:32;1673:33;:::i;1743:456::-;1820:6;1828;1836;1889:2;1877:9;1868:7;1864:23;1860:32;1857:52;;;1905:1;1902;1895:12;1857:52;1944:9;1931:23;1963:31;1988:5;1963:31;:::i;:::-;2013:5;-1:-1:-1;2070:2:1;2055:18;;2042:32;2083:33;2042:32;2083:33;:::i;:::-;1743:456;;2135:7;;-1:-1:-1;;;2189:2:1;2174:18;;;;2161:32;;1743:456::o;2204:794::-;2299:6;2307;2315;2323;2376:3;2364:9;2355:7;2351:23;2347:33;2344:53;;;2393:1;2390;2383:12;2344:53;2432:9;2419:23;2451:31;2476:5;2451:31;:::i;:::-;2501:5;-1:-1:-1;2558:2:1;2543:18;;2530:32;2571:33;2530:32;2571:33;:::i;:::-;2623:7;-1:-1:-1;2677:2:1;2662:18;;2649:32;;-1:-1:-1;2732:2:1;2717:18;;2704:32;2759:18;2748:30;;2745:50;;;2791:1;2788;2781:12;2745:50;2814:22;;2867:4;2859:13;;2855:27;-1:-1:-1;2845:55:1;;2896:1;2893;2886:12;2845:55;2919:73;2984:7;2979:2;2966:16;2961:2;2957;2953:11;2919:73;:::i;:::-;2909:83;;;2204:794;;;;;;;:::o;3003:416::-;3068:6;3076;3129:2;3117:9;3108:7;3104:23;3100:32;3097:52;;;3145:1;3142;3135:12;3097:52;3184:9;3171:23;3203:31;3228:5;3203:31;:::i;:::-;3253:5;-1:-1:-1;3310:2:1;3295:18;;3282:32;3352:15;;3345:23;3333:36;;3323:64;;3383:1;3380;3373:12;3424:315;3492:6;3500;3553:2;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;3608:9;3595:23;3627:31;3652:5;3627:31;:::i;:::-;3677:5;3729:2;3714:18;;;;3701:32;;-1:-1:-1;;;3424:315:1:o;3744:245::-;3802:6;3855:2;3843:9;3834:7;3830:23;3826:32;3823:52;;;3871:1;3868;3861:12;3823:52;3910:9;3897:23;3929:30;3953:5;3929:30;:::i;3994:249::-;4063:6;4116:2;4104:9;4095:7;4091:23;4087:32;4084:52;;;4132:1;4129;4122:12;4084:52;4164:9;4158:16;4183:30;4207:5;4183:30;:::i;4248:450::-;4317:6;4370:2;4358:9;4349:7;4345:23;4341:32;4338:52;;;4386:1;4383;4376:12;4338:52;4426:9;4413:23;4459:18;4451:6;4448:30;4445:50;;;4491:1;4488;4481:12;4445:50;4514:22;;4567:4;4559:13;;4555:27;-1:-1:-1;4545:55:1;;4596:1;4593;4586:12;4545:55;4619:73;4684:7;4679:2;4666:16;4661:2;4657;4653:11;4619:73;:::i;4703:180::-;4762:6;4815:2;4803:9;4794:7;4790:23;4786:32;4783:52;;;4831:1;4828;4821:12;4783:52;-1:-1:-1;4854:23:1;;4703:180;-1:-1:-1;4703:180:1:o;4888:184::-;4958:6;5011:2;4999:9;4990:7;4986:23;4982:32;4979:52;;;5027:1;5024;5017:12;4979:52;-1:-1:-1;5050:16:1;;4888:184;-1:-1:-1;4888:184:1:o;5077:248::-;5145:6;5153;5206:2;5194:9;5185:7;5181:23;5177:32;5174:52;;;5222:1;5219;5212:12;5174:52;-1:-1:-1;;5245:23:1;;;5315:2;5300:18;;;5287:32;;-1:-1:-1;5077:248:1:o;5330:257::-;5371:3;5409:5;5403:12;5436:6;5431:3;5424:19;5452:63;5508:6;5501:4;5496:3;5492:14;5485:4;5478:5;5474:16;5452:63;:::i;:::-;5569:2;5548:15;-1:-1:-1;;5544:29:1;5535:39;;;;5576:4;5531:50;;5330:257;-1:-1:-1;;5330:257:1:o;5592:1527::-;5816:3;5854:6;5848:13;5880:4;5893:51;5937:6;5932:3;5927:2;5919:6;5915:15;5893:51;:::i;:::-;6007:13;;5966:16;;;;6029:55;6007:13;5966:16;6051:15;;;6029:55;:::i;:::-;6173:13;;6106:20;;;6146:1;;6233;6255:18;;;;6308;;;;6335:93;;6413:4;6403:8;6399:19;6387:31;;6335:93;6476:2;6466:8;6463:16;6443:18;6440:40;6437:167;;;-1:-1:-1;;;6503:33:1;;6559:4;6556:1;6549:15;6589:4;6510:3;6577:17;6437:167;6620:18;6647:110;;;;6771:1;6766:328;;;;6613:481;;6647:110;-1:-1:-1;;6682:24:1;;6668:39;;6727:20;;;;-1:-1:-1;6647:110:1;;6766:328;21114:1;21107:14;;;21151:4;21138:18;;6861:1;6875:169;6889:8;6886:1;6883:15;6875:169;;;6971:14;;6956:13;;;6949:37;7014:16;;;;6906:10;;6875:169;;;6879:3;;7075:8;7068:5;7064:20;7057:27;;6613:481;-1:-1:-1;7110:3:1;;5592:1527;-1:-1:-1;;;;;;;;;;;5592:1527:1:o;7332:488::-;-1:-1:-1;;;;;7601:15:1;;;7583:34;;7653:15;;7648:2;7633:18;;7626:43;7700:2;7685:18;;7678:34;;;7748:3;7743:2;7728:18;;7721:31;;;7526:4;;7769:45;;7794:19;;7786:6;7769:45;:::i;:::-;7761:53;7332:488;-1:-1:-1;;;;;;7332:488:1:o;8104:632::-;8275:2;8327:21;;;8397:13;;8300:18;;;8419:22;;;8246:4;;8275:2;8498:15;;;;8472:2;8457:18;;;8246:4;8541:169;8555:6;8552:1;8549:13;8541:169;;;8616:13;;8604:26;;8685:15;;;;8650:12;;;;8577:1;8570:9;8541:169;;;-1:-1:-1;8727:3:1;;8104:632;-1:-1:-1;;;;;;8104:632:1:o;8933:219::-;9082:2;9071:9;9064:21;9045:4;9102:44;9142:2;9131:9;9127:18;9119:6;9102:44;:::i;12782:356::-;12984:2;12966:21;;;13003:18;;;12996:30;13062:34;13057:2;13042:18;;13035:62;13129:2;13114:18;;12782:356::o;15437:415::-;15639:2;15621:21;;;15678:2;15658:18;;;15651:30;15717:34;15712:2;15697:18;;15690:62;-1:-1:-1;;;15783:2:1;15768:18;;15761:49;15842:3;15827:19;;15437:415::o;21167:253::-;21207:3;-1:-1:-1;;;;;21296:2:1;21293:1;21289:10;21326:2;21323:1;21319:10;21357:3;21353:2;21349:12;21344:3;21341:21;21338:47;;;21365:18;;:::i;:::-;21401:13;;21167:253;-1:-1:-1;;;;21167:253:1:o;21425:128::-;21465:3;21496:1;21492:6;21489:1;21486:13;21483:39;;;21502:18;;:::i;:::-;-1:-1:-1;21538:9:1;;21425:128::o;21558:120::-;21598:1;21624;21614:35;;21629:18;;:::i;:::-;-1:-1:-1;21663:9:1;;21558:120::o;21683:168::-;21723:7;21789:1;21785;21781:6;21777:14;21774:1;21771:21;21766:1;21759:9;21752:17;21748:45;21745:71;;;21796:18;;:::i;:::-;-1:-1:-1;21836:9:1;;21683:168::o;21856:246::-;21896:4;-1:-1:-1;;;;;22009:10:1;;;;21979;;22031:12;;;22028:38;;;22046:18;;:::i;:::-;22083:13;;21856:246;-1:-1:-1;;;21856:246:1:o;22107:125::-;22147:4;22175:1;22172;22169:8;22166:34;;;22180:18;;:::i;:::-;-1:-1:-1;22217:9:1;;22107:125::o;22237:258::-;22309:1;22319:113;22333:6;22330:1;22327:13;22319:113;;;22409:11;;;22403:18;22390:11;;;22383:39;22355:2;22348:10;22319:113;;;22450:6;22447:1;22444:13;22441:48;;;-1:-1:-1;;22485:1:1;22467:16;;22460:27;22237:258::o;22500:136::-;22539:3;22567:5;22557:39;;22576:18;;:::i;:::-;-1:-1:-1;;;22612:18:1;;22500:136::o;22641:380::-;22720:1;22716:12;;;;22763;;;22784:61;;22838:4;22830:6;22826:17;22816:27;;22784:61;22891:2;22883:6;22880:14;22860:18;22857:38;22854:161;;;22937:10;22932:3;22928:20;22925:1;22918:31;22972:4;22969:1;22962:15;23000:4;22997:1;22990:15;22854:161;;22641:380;;;:::o;23026:135::-;23065:3;-1:-1:-1;;23086:17:1;;23083:43;;;23106:18;;:::i;:::-;-1:-1:-1;23153:1:1;23142:13;;23026:135::o;23166:112::-;23198:1;23224;23214:35;;23229:18;;:::i;:::-;-1:-1:-1;23263:9:1;;23166:112::o;23283:127::-;23344:10;23339:3;23335:20;23332:1;23325:31;23375:4;23372:1;23365:15;23399:4;23396:1;23389:15;23415:127;23476:10;23471:3;23467:20;23464:1;23457:31;23507:4;23504:1;23497:15;23531:4;23528:1;23521:15;23547:127;23608:10;23603:3;23599:20;23596:1;23589:31;23639:4;23636:1;23629:15;23663:4;23660:1;23653:15;23679:127;23740:10;23735:3;23731:20;23728:1;23721:31;23771:4;23768:1;23761:15;23795:4;23792:1;23785:15;23811:131;-1:-1:-1;;;;;23886:31:1;;23876:42;;23866:70;;23932:1;23929;23922:12;23947:131;-1:-1:-1;;;;;;24021:32:1;;24011:43;;24001:71;;24068:1;24065;24058:12

Swarm Source

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