ETH Price: $3,462.79 (+2.21%)
Gas: 13 Gwei

Token

RevX (REVX)
 

Overview

Max Total Supply

2,222 REVX

Holders

1,155

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 REVX
0x3b826a060319e5067883887153b88df04f2ff0d4
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:
RevX

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 13 : RevX.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.7.0 <0.9.0;

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


//  ██████╗░███████╗██╗░░░██╗██╗░░██╗
//  ██╔══██╗██╔════╝██║░░░██║╚██╗██╔╝
//  ██████╔╝█████╗░░╚██╗░██╔╝░╚███╔╝░
//  ██╔══██╗██╔══╝░░░╚████╔╝░░██╔██╗░
//  ██║░░██║███████╗░░╚██╔╝░░██╔╝╚██╗
//  ╚═╝░░╚═╝╚══════╝░░░╚═╝░░░╚═╝░░╚═╝
/// @author stonkmaster69

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

contract RevX is ERC721A, Ownable, ReentrancyGuard {

    /// ERRORS ///
    error ContractMint();
    error OutOfSupply();
    error ExceedsTxnLimit();
    error ExceedsWalletLimit();
    error InsufficientFunds();
    
    error MintPaused();
    error MintInactive();
    error InvalidProof();

    /// @dev For URI concatenation.
    using Strings for uint256;

    bytes32 public merkleRoot;

    string public baseURI;
    
    uint32 publicSaleStartTime;

    uint256 public PRICE = 0.0444 ether;
    uint256 public SUPPLY_MAX = 2222;
    uint256 public MAX_PER_TXN = 5;

    PresaleConfig public presaleConfig;

    bool public presalePaused;
    bool public publicSalePaused;
    bool public revealed;

    constructor(
        string memory _name,
        string memory _symbol
    ) ERC721A(_name, _symbol) payable {
        presaleConfig = PresaleConfig({
            startTime: 1651942800, // MAY 7 2022 5:00:00 PM GMT
            endTime: 1652029200,   // MAY 8 2022 5:00:00 PM GMT
            whitelistMintPerWalletMax: 3,
            whitelistPrice: 0.0333 ether
        });
        publicSaleStartTime = 1652029200; // MAY 8 2022 5:00:00 PM GMT
    }

    modifier mintCompliance(uint256 _mintAmount) {
        if (msg.sender != tx.origin) revert ContractMint();
        if ((totalSupply() + _mintAmount) > SUPPLY_MAX) revert OutOfSupply();
        if (_mintAmount > MAX_PER_TXN) revert ExceedsTxnLimit();
        _;
    }

    function presaleMint(uint256 _mintAmount, bytes32[] calldata _merkleProof)
        external
        payable
        nonReentrant
        mintCompliance(_mintAmount) 
    {
        PresaleConfig memory config_ = presaleConfig;
        
        if (presalePaused) revert MintPaused();
        if (block.timestamp < config_.startTime || block.timestamp > config_.endTime) revert MintInactive();
        if ((_numberMinted(msg.sender) + _mintAmount) > config_.whitelistMintPerWalletMax) revert ExceedsWalletLimit();
        if (msg.value < (config_.whitelistPrice * _mintAmount)) revert InsufficientFunds();
        
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        if (!MerkleProof.verify(_merkleProof, merkleRoot, leaf)) revert InvalidProof();

        _safeMint(msg.sender, _mintAmount);
    }

    function publicMint(uint256 _mintAmount)
        external
        payable
        nonReentrant
        mintCompliance(_mintAmount)
    {
        if (publicSalePaused) revert MintPaused();
        if (block.timestamp < publicSaleStartTime) revert MintInactive();
        if (msg.value < (PRICE * _mintAmount)) revert InsufficientFunds();

        _safeMint(msg.sender, _mintAmount);
    }
    
    /// @notice Airdrop for a single a wallet.
    function mintForAddress(uint256 _mintAmount, address _receiver) external onlyOwner {
        _safeMint(_receiver, _mintAmount);
    }

    /// @notice Airdrops to multiple wallets.
    function batchMintForAddress(address[] calldata addresses, uint256[] calldata quantities) external onlyOwner {
        uint32 i;
        for (i=0; i < addresses.length; ++i) {
            _safeMint(addresses[i], quantities[i]);
        }
    }

    /// @dev RevX tokens begin from 1, Not 0.
    function _startTokenId()
        internal
        view
        virtual
        override returns (uint256) 
    {
        return 1;
    }

    /// SETTERS ///

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

    function pausePublicSale(bool _state) public onlyOwner {
        publicSalePaused = _state;
    }

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

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

    function setPresaleStartTime(uint32 startTime_, uint32 endTime_) public onlyOwner {
        presaleConfig.startTime = startTime_;
        presaleConfig.endTime = endTime_;
    }

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

    function setPublicPrice(uint256 _price) public onlyOwner {
        PRICE = _price;
    }

    function setWhitelistPrice(uint256 _price) public onlyOwner {
        presaleConfig.whitelistPrice = _price;
    }

    function setMaxSupply(uint256 _supply) public onlyOwner {
        SUPPLY_MAX = _supply;
    }

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

    /// METADATA URI ///

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

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

    /// @dev Returning concatenated URI with .json as suffix on the tokenID when revealed.
    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 5 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractMint","type":"error"},{"inputs":[],"name":"ExceedsTxnLimit","type":"error"},{"inputs":[],"name":"ExceedsWalletLimit","type":"error"},{"inputs":[],"name":"InsufficientFunds","type":"error"},{"inputs":[],"name":"InvalidProof","type":"error"},{"inputs":[],"name":"MintInactive","type":"error"},{"inputs":[],"name":"MintPaused","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OutOfSupply","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"batchMintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pausePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pausePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presaleConfig","outputs":[{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint32","name":"endTime","type":"uint32"},{"internalType":"uint256","name":"whitelistMintPerWalletMax","type":"uint256"},{"internalType":"uint256","name":"whitelistPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"startTime_","type":"uint32"},{"internalType":"uint32","name":"endTime_","type":"uint32"}],"name":"setPresaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"startTime_","type":"uint32"}],"name":"setPublicSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setWhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052669dbd9094070000600d556108ae600e556005600f55604051620027db380380620027db8339810160408190526200003c91620002a2565b8151829082906200005590600290602085019062000145565b5080516200006b90600390602084019062000145565b50506001600055506200007e33620000f3565b5050600160095560408051608081018252636276a5908152636277f71060208201819052600392820183905266764e2c6f0540006060909201829052601080546001600160401b031916676277f7106276a590179055601192909255601255600c805463ffffffff191690911790556200035f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000153906200030c565b90600052602060002090601f016020900481019282620001775760008555620001c2565b82601f106200019257805160ff1916838001178555620001c2565b82800160010185558215620001c2579182015b82811115620001c2578251825591602001919060010190620001a5565b50620001d0929150620001d4565b5090565b5b80821115620001d05760008155600101620001d5565b600082601f830112620001fd57600080fd5b81516001600160401b03808211156200021a576200021a62000349565b604051601f8301601f19908116603f0116810190828211818310171562000245576200024562000349565b816040528381526020925086838588010111156200026257600080fd5b600091505b8382101562000286578582018301518183018401529082019062000267565b83821115620002985760008385830101525b9695505050505050565b60008060408385031215620002b657600080fd5b82516001600160401b0380821115620002ce57600080fd5b620002dc86838701620001eb565b93506020850151915080821115620002f357600080fd5b506200030285828601620001eb565b9150509250929050565b600181811c908216806200032157607f821691505b602082108114156200034357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61246c806200036f6000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063a79fdbb4116100b6578063de30dd341161007a578063de30dd341461066e578063e3e1e8ef1461068e578063e985e9c5146106a1578063efbd73f4146106ea578063f2fde38b1461070a578063fd88fa691461072a57600080fd5b8063a79fdbb4146105d4578063b88d4fde146105ee578063c62752551461060e578063c87b56dd1461062e578063d7299ef71461064e57600080fd5b80638d859f3e116100fd5780638d859f3e146105555780638da5cb5b1461056b578063958f6ed61461058957806395d89b411461059f578063a22cb465146105b457600080fd5b806370a08231146104c0578063715018a6146104e0578063717d57d3146104f55780637590485f146105155780637cb647591461053557600080fd5b80633ccfd60b116101c75780635c164b211161018b5780635c164b211461042b5780635fd84c281461044b5780636352211e1461046b5780636c0360eb1461048b5780636f8b44b0146104a057600080fd5b80633ccfd60b146103a057806342842e0e146103b557806351830227146103d557806351b96d92146103f557806355f804b31461040b57600080fd5b806318160ddd1161020e57806318160ddd1461031b57806323b872dd146103425780632db11544146103625780632eb4a7ab146103755780633bd649681461038b57600080fd5b806301ffc9a71461024b578063069cd5731461028057806306fdde031461029f578063081812fc146102c1578063095ea7b3146102f9575b600080fd5b34801561025757600080fd5b5061026b610266366004612087565b610783565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b5060135461026b90610100900460ff1681565b3480156102ab57600080fd5b506102b46107d5565b6040516102779190612264565b3480156102cd57600080fd5b506102e16102dc36600461206e565b610867565b6040516001600160a01b039091168152602001610277565b34801561030557600080fd5b50610319610314366004611fbe565b6108ab565b005b34801561032757600080fd5b5060015460005403600019015b604051908152602001610277565b34801561034e57600080fd5b5061031961035d366004611edd565b610939565b61031961037036600461206e565b610944565b34801561038157600080fd5b50610334600a5481565b34801561039757600080fd5b50610319610ab2565b3480156103ac57600080fd5b50610319610aef565b3480156103c157600080fd5b506103196103d0366004611edd565b610b55565b3480156103e157600080fd5b5060135461026b9062010000900460ff1681565b34801561040157600080fd5b50610334600f5481565b34801561041757600080fd5b506103196104263660046120c1565b610b70565b34801561043757600080fd5b50610319610446366004612192565b610bb1565b34801561045757600080fd5b50610319610466366004612177565b610c0b565b34801561047757600080fd5b506102e161048636600461206e565b610c51565b34801561049757600080fd5b506102b4610c63565b3480156104ac57600080fd5b506103196104bb36600461206e565b610cf1565b3480156104cc57600080fd5b506103346104db366004611e88565b610d20565b3480156104ec57600080fd5b50610319610d6e565b34801561050157600080fd5b5061031961051036600461206e565b610da4565b34801561052157600080fd5b50610319610530366004612053565b610dd3565b34801561054157600080fd5b5061031961055036600461206e565b610e17565b34801561056157600080fd5b50610334600d5481565b34801561057757600080fd5b506008546001600160a01b03166102e1565b34801561059557600080fd5b50610334600e5481565b3480156105ab57600080fd5b506102b4610e46565b3480156105c057600080fd5b506103196105cf366004611f94565b610e55565b3480156105e057600080fd5b5060135461026b9060ff1681565b3480156105fa57600080fd5b50610319610609366004611f19565b610eeb565b34801561061a57600080fd5b5061031961062936600461206e565b610f3c565b34801561063a57600080fd5b506102b461064936600461206e565b610f6b565b34801561065a57600080fd5b50610319610669366004612053565b61102a565b34801561067a57600080fd5b50610319610689366004611fe8565b611067565b61031961069c36600461212c565b61110d565b3480156106ad57600080fd5b5061026b6106bc366004611eaa565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106f657600080fd5b50610319610705366004612109565b6113aa565b34801561071657600080fd5b50610319610725366004611e88565b6113de565b34801561073657600080fd5b5060105460115460125461075b9263ffffffff80821693640100000000909204169184565b6040805163ffffffff9586168152949093166020850152918301526060820152608001610277565b60006001600160e01b031982166380ac58cd60e01b14806107b457506001600160e01b03198216635b5e139f60e01b145b806107cf57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107e49061233a565b80601f01602080910402602001604051908101604052809291908181526020018280546108109061233a565b801561085d5780601f106108325761010080835404028352916020019161085d565b820191906000526020600020905b81548152906001019060200180831161084057829003601f168201915b5050505050905090565b600061087282611476565b61088f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108b682610c51565b9050806001600160a01b0316836001600160a01b031614156108eb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061090b575061090981336106bc565b155b15610929576040516367d9dca160e11b815260040160405180910390fd5b6109348383836114af565b505050565b61093483838361150b565b6002600954141561099c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600955803332146109c2576040516372f67c2360e01b815260040160405180910390fd5b600e5460015460005483919003600019016109dd91906122ac565b11156109fc576040516309b741cf60e41b815260040160405180910390fd5b600f54811115610a1f57604051634017e3f360e11b815260040160405180910390fd5b601354610100900460ff1615610a4857604051636be9245d60e11b815260040160405180910390fd5b600c5463ffffffff16421015610a7157604051630d0ca57160e21b815260040160405180910390fd5b81600d54610a7f91906122d8565b341015610a9f5760405163356680b760e01b815260040160405180910390fd5b610aa933836116f6565b50506001600955565b6008546001600160a01b03163314610adc5760405162461bcd60e51b815260040161099390612277565b6013805462ff0000191662010000179055565b6008546001600160a01b03163314610b195760405162461bcd60e51b815260040161099390612277565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b52573d6000803e3d6000fd5b50565b61093483838360405180602001604052806000815250610eeb565b6008546001600160a01b03163314610b9a5760405162461bcd60e51b815260040161099390612277565b8051610bad90600b906020840190611cef565b5050565b6008546001600160a01b03163314610bdb5760405162461bcd60e51b815260040161099390612277565b6010805463ffffffff9283166401000000000267ffffffffffffffff199091169290931691909117919091179055565b6008546001600160a01b03163314610c355760405162461bcd60e51b815260040161099390612277565b600c805463ffffffff191663ffffffff92909216919091179055565b6000610c5c82611710565b5192915050565b600b8054610c709061233a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9c9061233a565b8015610ce95780601f10610cbe57610100808354040283529160200191610ce9565b820191906000526020600020905b815481529060010190602001808311610ccc57829003601f168201915b505050505081565b6008546001600160a01b03163314610d1b5760405162461bcd60e51b815260040161099390612277565b600e55565b60006001600160a01b038216610d49576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610d985760405162461bcd60e51b815260040161099390612277565b610da26000611837565b565b6008546001600160a01b03163314610dce5760405162461bcd60e51b815260040161099390612277565b601255565b6008546001600160a01b03163314610dfd5760405162461bcd60e51b815260040161099390612277565b601380549115156101000261ff0019909216919091179055565b6008546001600160a01b03163314610e415760405162461bcd60e51b815260040161099390612277565b600a55565b6060600380546107e49061233a565b6001600160a01b038216331415610e7f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ef684848461150b565b6001600160a01b0383163b15158015610f185750610f1684848484611889565b155b15610f36576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610f665760405162461bcd60e51b815260040161099390612277565b600d55565b6060610f7682611476565b610fda5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610993565b60135462010000900460ff16610ff2576107cf611981565b610ffa611981565b61100383611990565b6040516020016110149291906121e8565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146110545760405162461bcd60e51b815260040161099390612277565b6013805460ff1916911515919091179055565b6008546001600160a01b031633146110915760405162461bcd60e51b815260040161099390612277565b60005b63ffffffff8116841115611106576110f685858363ffffffff168181106110bd576110bd6123f4565b90506020020160208101906110d29190611e88565b84848463ffffffff168181106110ea576110ea6123f4565b905060200201356116f6565b6110ff81612390565b9050611094565b5050505050565b600260095414156111605760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610993565b600260095582333214611186576040516372f67c2360e01b815260040160405180910390fd5b600e5460015460005483919003600019016111a191906122ac565b11156111c0576040516309b741cf60e41b815260040160405180910390fd5b600f548111156111e357604051634017e3f360e11b815260040160405180910390fd5b6040805160808101825260105463ffffffff808216835264010000000090910416602082015260115491810191909152601254606082015260135460ff161561123f57604051636be9245d60e11b815260040160405180910390fd5b805163ffffffff1642108061125d5750806020015163ffffffff1642115b1561127b57604051630d0ca57160e21b815260040160405180910390fd5b604080820151336000908152600560205291909120548690600160401b90046001600160401b03166112ad91906122ac565b11156112cc57604051635107dbe760e01b815260040160405180910390fd5b8481606001516112dc91906122d8565b3410156112fc5760405163356680b760e01b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061137685858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611a8d565b611393576040516309bde33960e01b815260040160405180910390fd5b61139d33876116f6565b5050600160095550505050565b6008546001600160a01b031633146113d45760405162461bcd60e51b815260040161099390612277565b610bad81836116f6565b6008546001600160a01b031633146114085760405162461bcd60e51b815260040161099390612277565b6001600160a01b03811661146d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610993565b610b5281611837565b60008160011115801561148a575060005482105b80156107cf575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061151682611710565b9050836001600160a01b031681600001516001600160a01b03161461154d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061156b575061156b85336106bc565b8061158657503361157b84610867565b6001600160a01b0316145b9050806115a657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115cd57604051633a954ecd60e21b815260040160405180910390fd5b6115d9600084876114af565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166116ad5760005482146116ad57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611106565b610bad828260405180602001604052806000815250611aa3565b60408051606081018252600080825260208201819052918101919091528180600111158015611740575060005481105b1561181e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061181c5780516001600160a01b0316156117b3579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611817579392505050565b6117b3565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118be903390899088908890600401612227565b602060405180830381600087803b1580156118d857600080fd5b505af1925050508015611908575060408051601f3d908101601f19168201909252611905918101906120a4565b60015b611963573d808015611936576040519150601f19603f3d011682016040523d82523d6000602084013e61193b565b606091505b50805161195b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546107e49061233a565b6060816119b45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119de57806119c881612375565b91506119d79050600a836122c4565b91506119b8565b6000816001600160401b038111156119f8576119f861240a565b6040519080825280601f01601f191660200182016040528015611a22576020820181803683370190505b5090505b841561197957611a376001836122f7565b9150611a44600a866123b4565b611a4f9060306122ac565b60f81b818381518110611a6457611a646123f4565b60200101906001600160f81b031916908160001a905350611a86600a866122c4565b9450611a26565b600082611a9a8584611ab0565b14949350505050565b6109348383836001611b24565b600081815b8451811015611b1c576000858281518110611ad257611ad26123f4565b60200260200101519050808311611af85760008381526020829052604090209250611b09565b600081815260208490526040902092505b5080611b1481612375565b915050611ab5565b509392505050565b6000546001600160a01b038516611b4d57604051622e076360e81b815260040160405180910390fd5b83611b6b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c1757506001600160a01b0387163b15155b15611ca0575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c686000888480600101955088611889565b611c85576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611c1d578260005414611c9b57600080fd5b611ce6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611ca1575b50600055611106565b828054611cfb9061233a565b90600052602060002090601f016020900481019282611d1d5760008555611d63565b82601f10611d3657805160ff1916838001178555611d63565b82800160010185558215611d63579182015b82811115611d63578251825591602001919060010190611d48565b50611d6f929150611d73565b5090565b5b80821115611d6f5760008155600101611d74565b60006001600160401b0380841115611da257611da261240a565b604051601f8501601f19908116603f01168101908282118183101715611dca57611dca61240a565b81604052809350858152868686011115611de357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e1457600080fd5b919050565b60008083601f840112611e2b57600080fd5b5081356001600160401b03811115611e4257600080fd5b6020830191508360208260051b8501011115611e5d57600080fd5b9250929050565b80358015158114611e1457600080fd5b803563ffffffff81168114611e1457600080fd5b600060208284031215611e9a57600080fd5b611ea382611dfd565b9392505050565b60008060408385031215611ebd57600080fd5b611ec683611dfd565b9150611ed460208401611dfd565b90509250929050565b600080600060608486031215611ef257600080fd5b611efb84611dfd565b9250611f0960208501611dfd565b9150604084013590509250925092565b60008060008060808587031215611f2f57600080fd5b611f3885611dfd565b9350611f4660208601611dfd565b92506040850135915060608501356001600160401b03811115611f6857600080fd5b8501601f81018713611f7957600080fd5b611f8887823560208401611d88565b91505092959194509250565b60008060408385031215611fa757600080fd5b611fb083611dfd565b9150611ed460208401611e64565b60008060408385031215611fd157600080fd5b611fda83611dfd565b946020939093013593505050565b60008060008060408587031215611ffe57600080fd5b84356001600160401b038082111561201557600080fd5b61202188838901611e19565b9096509450602087013591508082111561203a57600080fd5b5061204787828801611e19565b95989497509550505050565b60006020828403121561206557600080fd5b611ea382611e64565b60006020828403121561208057600080fd5b5035919050565b60006020828403121561209957600080fd5b8135611ea381612420565b6000602082840312156120b657600080fd5b8151611ea381612420565b6000602082840312156120d357600080fd5b81356001600160401b038111156120e957600080fd5b8201601f810184136120fa57600080fd5b61197984823560208401611d88565b6000806040838503121561211c57600080fd5b82359150611ed460208401611dfd565b60008060006040848603121561214157600080fd5b8335925060208401356001600160401b0381111561215e57600080fd5b61216a86828701611e19565b9497909650939450505050565b60006020828403121561218957600080fd5b611ea382611e74565b600080604083850312156121a557600080fd5b6121ae83611e74565b9150611ed460208401611e74565b600081518084526121d481602086016020860161230e565b601f01601f19169290920160200192915050565b600083516121fa81846020880161230e565b83519083019061220e81836020880161230e565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061225a908301846121bc565b9695505050505050565b602081526000611ea360208301846121bc565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156122bf576122bf6123c8565b500190565b6000826122d3576122d36123de565b500490565b60008160001904831182151516156122f2576122f26123c8565b500290565b600082821015612309576123096123c8565b500390565b60005b83811015612329578181015183820152602001612311565b83811115610f365750506000910152565b600181811c9082168061234e57607f821691505b6020821081141561236f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612389576123896123c8565b5060010190565b600063ffffffff808316818114156123aa576123aa6123c8565b6001019392505050565b6000826123c3576123c36123de565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b5257600080fdfea2646970667358221220b241adeffa9ff89d3bd31af67d180a5b181c9459914469abc9dc634378000d7764736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000004526576580000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045245565800000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c806370a0823111610139578063a79fdbb4116100b6578063de30dd341161007a578063de30dd341461066e578063e3e1e8ef1461068e578063e985e9c5146106a1578063efbd73f4146106ea578063f2fde38b1461070a578063fd88fa691461072a57600080fd5b8063a79fdbb4146105d4578063b88d4fde146105ee578063c62752551461060e578063c87b56dd1461062e578063d7299ef71461064e57600080fd5b80638d859f3e116100fd5780638d859f3e146105555780638da5cb5b1461056b578063958f6ed61461058957806395d89b411461059f578063a22cb465146105b457600080fd5b806370a08231146104c0578063715018a6146104e0578063717d57d3146104f55780637590485f146105155780637cb647591461053557600080fd5b80633ccfd60b116101c75780635c164b211161018b5780635c164b211461042b5780635fd84c281461044b5780636352211e1461046b5780636c0360eb1461048b5780636f8b44b0146104a057600080fd5b80633ccfd60b146103a057806342842e0e146103b557806351830227146103d557806351b96d92146103f557806355f804b31461040b57600080fd5b806318160ddd1161020e57806318160ddd1461031b57806323b872dd146103425780632db11544146103625780632eb4a7ab146103755780633bd649681461038b57600080fd5b806301ffc9a71461024b578063069cd5731461028057806306fdde031461029f578063081812fc146102c1578063095ea7b3146102f9575b600080fd5b34801561025757600080fd5b5061026b610266366004612087565b610783565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b5060135461026b90610100900460ff1681565b3480156102ab57600080fd5b506102b46107d5565b6040516102779190612264565b3480156102cd57600080fd5b506102e16102dc36600461206e565b610867565b6040516001600160a01b039091168152602001610277565b34801561030557600080fd5b50610319610314366004611fbe565b6108ab565b005b34801561032757600080fd5b5060015460005403600019015b604051908152602001610277565b34801561034e57600080fd5b5061031961035d366004611edd565b610939565b61031961037036600461206e565b610944565b34801561038157600080fd5b50610334600a5481565b34801561039757600080fd5b50610319610ab2565b3480156103ac57600080fd5b50610319610aef565b3480156103c157600080fd5b506103196103d0366004611edd565b610b55565b3480156103e157600080fd5b5060135461026b9062010000900460ff1681565b34801561040157600080fd5b50610334600f5481565b34801561041757600080fd5b506103196104263660046120c1565b610b70565b34801561043757600080fd5b50610319610446366004612192565b610bb1565b34801561045757600080fd5b50610319610466366004612177565b610c0b565b34801561047757600080fd5b506102e161048636600461206e565b610c51565b34801561049757600080fd5b506102b4610c63565b3480156104ac57600080fd5b506103196104bb36600461206e565b610cf1565b3480156104cc57600080fd5b506103346104db366004611e88565b610d20565b3480156104ec57600080fd5b50610319610d6e565b34801561050157600080fd5b5061031961051036600461206e565b610da4565b34801561052157600080fd5b50610319610530366004612053565b610dd3565b34801561054157600080fd5b5061031961055036600461206e565b610e17565b34801561056157600080fd5b50610334600d5481565b34801561057757600080fd5b506008546001600160a01b03166102e1565b34801561059557600080fd5b50610334600e5481565b3480156105ab57600080fd5b506102b4610e46565b3480156105c057600080fd5b506103196105cf366004611f94565b610e55565b3480156105e057600080fd5b5060135461026b9060ff1681565b3480156105fa57600080fd5b50610319610609366004611f19565b610eeb565b34801561061a57600080fd5b5061031961062936600461206e565b610f3c565b34801561063a57600080fd5b506102b461064936600461206e565b610f6b565b34801561065a57600080fd5b50610319610669366004612053565b61102a565b34801561067a57600080fd5b50610319610689366004611fe8565b611067565b61031961069c36600461212c565b61110d565b3480156106ad57600080fd5b5061026b6106bc366004611eaa565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106f657600080fd5b50610319610705366004612109565b6113aa565b34801561071657600080fd5b50610319610725366004611e88565b6113de565b34801561073657600080fd5b5060105460115460125461075b9263ffffffff80821693640100000000909204169184565b6040805163ffffffff9586168152949093166020850152918301526060820152608001610277565b60006001600160e01b031982166380ac58cd60e01b14806107b457506001600160e01b03198216635b5e139f60e01b145b806107cf57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107e49061233a565b80601f01602080910402602001604051908101604052809291908181526020018280546108109061233a565b801561085d5780601f106108325761010080835404028352916020019161085d565b820191906000526020600020905b81548152906001019060200180831161084057829003601f168201915b5050505050905090565b600061087282611476565b61088f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108b682610c51565b9050806001600160a01b0316836001600160a01b031614156108eb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061090b575061090981336106bc565b155b15610929576040516367d9dca160e11b815260040160405180910390fd5b6109348383836114af565b505050565b61093483838361150b565b6002600954141561099c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600955803332146109c2576040516372f67c2360e01b815260040160405180910390fd5b600e5460015460005483919003600019016109dd91906122ac565b11156109fc576040516309b741cf60e41b815260040160405180910390fd5b600f54811115610a1f57604051634017e3f360e11b815260040160405180910390fd5b601354610100900460ff1615610a4857604051636be9245d60e11b815260040160405180910390fd5b600c5463ffffffff16421015610a7157604051630d0ca57160e21b815260040160405180910390fd5b81600d54610a7f91906122d8565b341015610a9f5760405163356680b760e01b815260040160405180910390fd5b610aa933836116f6565b50506001600955565b6008546001600160a01b03163314610adc5760405162461bcd60e51b815260040161099390612277565b6013805462ff0000191662010000179055565b6008546001600160a01b03163314610b195760405162461bcd60e51b815260040161099390612277565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b52573d6000803e3d6000fd5b50565b61093483838360405180602001604052806000815250610eeb565b6008546001600160a01b03163314610b9a5760405162461bcd60e51b815260040161099390612277565b8051610bad90600b906020840190611cef565b5050565b6008546001600160a01b03163314610bdb5760405162461bcd60e51b815260040161099390612277565b6010805463ffffffff9283166401000000000267ffffffffffffffff199091169290931691909117919091179055565b6008546001600160a01b03163314610c355760405162461bcd60e51b815260040161099390612277565b600c805463ffffffff191663ffffffff92909216919091179055565b6000610c5c82611710565b5192915050565b600b8054610c709061233a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9c9061233a565b8015610ce95780601f10610cbe57610100808354040283529160200191610ce9565b820191906000526020600020905b815481529060010190602001808311610ccc57829003601f168201915b505050505081565b6008546001600160a01b03163314610d1b5760405162461bcd60e51b815260040161099390612277565b600e55565b60006001600160a01b038216610d49576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610d985760405162461bcd60e51b815260040161099390612277565b610da26000611837565b565b6008546001600160a01b03163314610dce5760405162461bcd60e51b815260040161099390612277565b601255565b6008546001600160a01b03163314610dfd5760405162461bcd60e51b815260040161099390612277565b601380549115156101000261ff0019909216919091179055565b6008546001600160a01b03163314610e415760405162461bcd60e51b815260040161099390612277565b600a55565b6060600380546107e49061233a565b6001600160a01b038216331415610e7f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ef684848461150b565b6001600160a01b0383163b15158015610f185750610f1684848484611889565b155b15610f36576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610f665760405162461bcd60e51b815260040161099390612277565b600d55565b6060610f7682611476565b610fda5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610993565b60135462010000900460ff16610ff2576107cf611981565b610ffa611981565b61100383611990565b6040516020016110149291906121e8565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146110545760405162461bcd60e51b815260040161099390612277565b6013805460ff1916911515919091179055565b6008546001600160a01b031633146110915760405162461bcd60e51b815260040161099390612277565b60005b63ffffffff8116841115611106576110f685858363ffffffff168181106110bd576110bd6123f4565b90506020020160208101906110d29190611e88565b84848463ffffffff168181106110ea576110ea6123f4565b905060200201356116f6565b6110ff81612390565b9050611094565b5050505050565b600260095414156111605760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610993565b600260095582333214611186576040516372f67c2360e01b815260040160405180910390fd5b600e5460015460005483919003600019016111a191906122ac565b11156111c0576040516309b741cf60e41b815260040160405180910390fd5b600f548111156111e357604051634017e3f360e11b815260040160405180910390fd5b6040805160808101825260105463ffffffff808216835264010000000090910416602082015260115491810191909152601254606082015260135460ff161561123f57604051636be9245d60e11b815260040160405180910390fd5b805163ffffffff1642108061125d5750806020015163ffffffff1642115b1561127b57604051630d0ca57160e21b815260040160405180910390fd5b604080820151336000908152600560205291909120548690600160401b90046001600160401b03166112ad91906122ac565b11156112cc57604051635107dbe760e01b815260040160405180910390fd5b8481606001516112dc91906122d8565b3410156112fc5760405163356680b760e01b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061137685858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611a8d565b611393576040516309bde33960e01b815260040160405180910390fd5b61139d33876116f6565b5050600160095550505050565b6008546001600160a01b031633146113d45760405162461bcd60e51b815260040161099390612277565b610bad81836116f6565b6008546001600160a01b031633146114085760405162461bcd60e51b815260040161099390612277565b6001600160a01b03811661146d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610993565b610b5281611837565b60008160011115801561148a575060005482105b80156107cf575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061151682611710565b9050836001600160a01b031681600001516001600160a01b03161461154d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061156b575061156b85336106bc565b8061158657503361157b84610867565b6001600160a01b0316145b9050806115a657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115cd57604051633a954ecd60e21b815260040160405180910390fd5b6115d9600084876114af565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166116ad5760005482146116ad57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611106565b610bad828260405180602001604052806000815250611aa3565b60408051606081018252600080825260208201819052918101919091528180600111158015611740575060005481105b1561181e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061181c5780516001600160a01b0316156117b3579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611817579392505050565b6117b3565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118be903390899088908890600401612227565b602060405180830381600087803b1580156118d857600080fd5b505af1925050508015611908575060408051601f3d908101601f19168201909252611905918101906120a4565b60015b611963573d808015611936576040519150601f19603f3d011682016040523d82523d6000602084013e61193b565b606091505b50805161195b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546107e49061233a565b6060816119b45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119de57806119c881612375565b91506119d79050600a836122c4565b91506119b8565b6000816001600160401b038111156119f8576119f861240a565b6040519080825280601f01601f191660200182016040528015611a22576020820181803683370190505b5090505b841561197957611a376001836122f7565b9150611a44600a866123b4565b611a4f9060306122ac565b60f81b818381518110611a6457611a646123f4565b60200101906001600160f81b031916908160001a905350611a86600a866122c4565b9450611a26565b600082611a9a8584611ab0565b14949350505050565b6109348383836001611b24565b600081815b8451811015611b1c576000858281518110611ad257611ad26123f4565b60200260200101519050808311611af85760008381526020829052604090209250611b09565b600081815260208490526040902092505b5080611b1481612375565b915050611ab5565b509392505050565b6000546001600160a01b038516611b4d57604051622e076360e81b815260040160405180910390fd5b83611b6b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c1757506001600160a01b0387163b15155b15611ca0575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c686000888480600101955088611889565b611c85576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611c1d578260005414611c9b57600080fd5b611ce6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611ca1575b50600055611106565b828054611cfb9061233a565b90600052602060002090601f016020900481019282611d1d5760008555611d63565b82601f10611d3657805160ff1916838001178555611d63565b82800160010185558215611d63579182015b82811115611d63578251825591602001919060010190611d48565b50611d6f929150611d73565b5090565b5b80821115611d6f5760008155600101611d74565b60006001600160401b0380841115611da257611da261240a565b604051601f8501601f19908116603f01168101908282118183101715611dca57611dca61240a565b81604052809350858152868686011115611de357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e1457600080fd5b919050565b60008083601f840112611e2b57600080fd5b5081356001600160401b03811115611e4257600080fd5b6020830191508360208260051b8501011115611e5d57600080fd5b9250929050565b80358015158114611e1457600080fd5b803563ffffffff81168114611e1457600080fd5b600060208284031215611e9a57600080fd5b611ea382611dfd565b9392505050565b60008060408385031215611ebd57600080fd5b611ec683611dfd565b9150611ed460208401611dfd565b90509250929050565b600080600060608486031215611ef257600080fd5b611efb84611dfd565b9250611f0960208501611dfd565b9150604084013590509250925092565b60008060008060808587031215611f2f57600080fd5b611f3885611dfd565b9350611f4660208601611dfd565b92506040850135915060608501356001600160401b03811115611f6857600080fd5b8501601f81018713611f7957600080fd5b611f8887823560208401611d88565b91505092959194509250565b60008060408385031215611fa757600080fd5b611fb083611dfd565b9150611ed460208401611e64565b60008060408385031215611fd157600080fd5b611fda83611dfd565b946020939093013593505050565b60008060008060408587031215611ffe57600080fd5b84356001600160401b038082111561201557600080fd5b61202188838901611e19565b9096509450602087013591508082111561203a57600080fd5b5061204787828801611e19565b95989497509550505050565b60006020828403121561206557600080fd5b611ea382611e64565b60006020828403121561208057600080fd5b5035919050565b60006020828403121561209957600080fd5b8135611ea381612420565b6000602082840312156120b657600080fd5b8151611ea381612420565b6000602082840312156120d357600080fd5b81356001600160401b038111156120e957600080fd5b8201601f810184136120fa57600080fd5b61197984823560208401611d88565b6000806040838503121561211c57600080fd5b82359150611ed460208401611dfd565b60008060006040848603121561214157600080fd5b8335925060208401356001600160401b0381111561215e57600080fd5b61216a86828701611e19565b9497909650939450505050565b60006020828403121561218957600080fd5b611ea382611e74565b600080604083850312156121a557600080fd5b6121ae83611e74565b9150611ed460208401611e74565b600081518084526121d481602086016020860161230e565b601f01601f19169290920160200192915050565b600083516121fa81846020880161230e565b83519083019061220e81836020880161230e565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061225a908301846121bc565b9695505050505050565b602081526000611ea360208301846121bc565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156122bf576122bf6123c8565b500190565b6000826122d3576122d36123de565b500490565b60008160001904831182151516156122f2576122f26123c8565b500290565b600082821015612309576123096123c8565b500390565b60005b83811015612329578181015183820152602001612311565b83811115610f365750506000910152565b600181811c9082168061234e57607f821691505b6020821081141561236f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612389576123896123c8565b5060010190565b600063ffffffff808316818114156123aa576123aa6123c8565b6001019392505050565b6000826123c3576123c36123de565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b5257600080fdfea2646970667358221220b241adeffa9ff89d3bd31af67d180a5b181c9459914469abc9dc634378000d7764736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000004526576580000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045245565800000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): RevX
Arg [1] : _symbol (string): REVX

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 5265765800000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 5245565800000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

1094:5413:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4551:300:12;;;;;;;;;;-1:-1:-1;4551:300:12;;;;;:::i;:::-;;:::i;:::-;;;9026:14:13;;9019:22;9001:41;;8989:2;8974:18;4551:300:12;;;;;;;;1778:28:11;;;;;;;;;;-1:-1:-1;1778:28:11;;;;;;;;;;;7579:98:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9035:200::-;;;;;;;;;;-1:-1:-1;9035:200:12;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8324:32:13;;;8306:51;;8294:2;8279:18;9035:200:12;8160:203:13;8612:362:12;;;;;;;;;;-1:-1:-1;8612:362:12;;;;;:::i;:::-;;:::i;:::-;;3822:297;;;;;;;;;;-1:-1:-1;4516:1:11;4072:12:12;3866:7;4056:13;:28;-1:-1:-1;;4056:46:12;3822:297;;;9199:25:13;;;9187:2;9172:18;3822:297:12;9053:177:13;9874:164:12;;;;;;;;;;-1:-1:-1;9874:164:12;;;;;:::i;:::-;;:::i;3431:398:11:-;;;;;;:::i;:::-;;:::i;1480:25::-;;;;;;;;;;;;;;;;4556:74;;;;;;;;;;;;;:::i;5598:104::-;;;;;;;;;;;;;:::i;10104:179:12:-;;;;;;;;;;-1:-1:-1;10104:179:12;;;;;:::i;:::-;;:::i;1813:20:11:-;;;;;;;;;;-1:-1:-1;1813:20:11;;;;;;;;;;;1664:30;;;;;;;;;;;;;;;;5897:104;;;;;;;;;;-1:-1:-1;5897:104:11;;;;;:::i;:::-;;:::i;4973:180::-;;;;;;;;;;-1:-1:-1;4973:180:11;;;;;:::i;:::-;;:::i;4846:119::-;;;;;;;;;;-1:-1:-1;4846:119:11;;;;;:::i;:::-;;:::i;7394:123:12:-;;;;;;;;;;-1:-1:-1;7394:123:12;;;;;:::i;:::-;;:::i;1514:21:11:-;;;;;;;;;;;;;:::i;5495:95::-;;;;;;;;;;-1:-1:-1;5495:95:11;;;;;:::i;:::-;;:::i;4910:203:12:-;;;;;;;;;;-1:-1:-1;4910:203:12;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;5371:116:11:-;;;;;;;;;;-1:-1:-1;5371:116:11;;;;;:::i;:::-;;:::i;4638:99::-;;;;;;;;;;-1:-1:-1;4638:99:11;;;;;:::i;:::-;;:::i;5161:104::-;;;;;;;;;;-1:-1:-1;5161:104:11;;;;;:::i;:::-;;:::i;1583:35::-;;;;;;;;;;;;;;;;1036:85:0;;;;;;;;;;-1:-1:-1;1108:6:0;;-1:-1:-1;;;;;1108:6:0;1036:85;;1625:32:11;;;;;;;;;;;;;;;;7741:102:12;;;;;;;;;;;;;:::i;9302:282::-;;;;;;;;;;-1:-1:-1;9302:282:12;;;;;:::i;:::-;;:::i;1746:25:11:-;;;;;;;;;;-1:-1:-1;1746:25:11;;;;;;;;10349:359:12;;;;;;;;;;-1:-1:-1;10349:359:12;;;;;:::i;:::-;;:::i;5273:90:11:-;;;;;;;;;;-1:-1:-1;5273:90:11;;;;;:::i;:::-;;:::i;6101:401::-;;;;;;;;;;-1:-1:-1;6101:401:11;;;;;:::i;:::-;;:::i;4745:93::-;;;;;;;;;;-1:-1:-1;4745:93:11;;;;;:::i;:::-;;:::i;4079:248::-;;;;;;;;;;-1:-1:-1;4079:248:11;;;;;:::i;:::-;;:::i;2591:832::-;;;;;;:::i;:::-;;:::i;9650:162:12:-;;;;;;;;;;-1:-1:-1;9650:162:12;;;;;:::i;:::-;-1:-1:-1;;;;;9770:25:12;;;9747:4;9770:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;9650:162;3889:135:11;;;;;;;;;;-1:-1:-1;3889:135:11;;;;;:::i;:::-;;:::i;1918:198:0:-;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;1703:34:11:-;;;;;;;;;;-1:-1:-1;1703:34:11;;;;;;;;;;;;;;;;;;;;;;;;;11422:10:13;11459:15;;;11441:34;;11511:15;;;;11506:2;11491:18;;11484:43;11543:18;;;11536:34;11601:2;11586:18;;11579:34;11399:3;11384:19;1703:34:11;11185:434:13;4551:300:12;4653:4;-1:-1:-1;;;;;;4688:40:12;;-1:-1:-1;;;4688:40:12;;:104;;-1:-1:-1;;;;;;;4744:48:12;;-1:-1:-1;;;4744:48:12;4688:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:9;;;4808:36:12;4669:175;4551:300;-1:-1:-1;;4551:300:12:o;7579:98::-;7633:13;7665:5;7658:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7579:98;:::o;9035:200::-;9103:7;9127:16;9135:7;9127;:16::i;:::-;9122:64;;9152:34;;-1:-1:-1;;;9152:34:12;;;;;;;;;;;9122:64;-1:-1:-1;9204:24:12;;;;:15;:24;;;;;;-1:-1:-1;;;;;9204:24:12;;9035:200::o;8612:362::-;8684:13;8700:24;8716:7;8700:15;:24::i;:::-;8684:40;;8744:5;-1:-1:-1;;;;;8738:11:12;:2;-1:-1:-1;;;;;8738:11:12;;8734:48;;;8758:24;;-1:-1:-1;;;8758:24:12;;;;;;;;;;;8734:48;719:10:6;-1:-1:-1;;;;;8797:21:12;;;;;;:63;;-1:-1:-1;8823:37:12;8840:5;719:10:6;9650:162:12;:::i;8823:37::-;8822:38;8797:63;8793:136;;;8883:35;;-1:-1:-1;;;8883:35:12;;;;;;;;;;;8793:136;8939:28;8948:2;8952:7;8961:5;8939:8;:28::i;:::-;8674:300;8612:362;;:::o;9874:164::-;10003:28;10013:4;10019:2;10023:7;10003:9;:28::i;3431:398:11:-;1744:1:1;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:1;;10845:2:13;2317:63:1;;;10827:21:13;10884:2;10864:18;;;10857:30;10923:33;10903:18;;;10896:61;10974:18;;2317:63:1;;;;;;;;;1744:1;2455:7;:18;3553:11:11;2372:10:::1;2386:9;2372:23;2368:50;;2404:14;;-1:-1:-1::0;;;2404:14:11::1;;;;;;;;;;;2368:50;2465:10;::::0;4516:1;4072:12:12;3866:7;4056:13;2450:11:11;;4056:28:12;;-1:-1:-1;;4056:46:12;2434:27:11::1;;;;:::i;:::-;2433:42;2429:68;;;2484:13;;-1:-1:-1::0;;;2484:13:11::1;;;;;;;;;;;2429:68;2526:11;;2512;:25;2508:55;;;2546:17;;-1:-1:-1::0;;;2546:17:11::1;;;;;;;;;;;2508:55;3586:16:::2;::::0;::::2;::::0;::::2;;;3582:41;;;3611:12;;-1:-1:-1::0;;;3611:12:11::2;;;;;;;;;;;3582:41;3656:19;::::0;::::2;;3638:15;:37;3634:64;;;3684:14;;-1:-1:-1::0;;;3684:14:11::2;;;;;;;;;;;3634:64;3734:11;3726:5;;:19;;;;:::i;:::-;3713:9;:33;3709:65;;;3755:19;;-1:-1:-1::0;;;3755:19:11::2;;;;;;;;;;;3709:65;3787:34;3797:10;3809:11;3787:9;:34::i;:::-;-1:-1:-1::0;;1701:1:1;2628:7;:22;3431:398:11:o;4556:74::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4607:8:11::1;:15:::0;;-1:-1:-1;;4607:15:11::1;::::0;::::1;::::0;;4556:74::o;5598:104::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1108:6;;5646:48:11::1;::::0;-1:-1:-1;;;;;1108:6:0;;;;5672:21:11::1;5646:48:::0;::::1;;;::::0;::::1;::::0;;;5672:21;1108:6:0;5646:48:11;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;5598:104::o:0;10104:179:12:-;10237:39;10254:4;10260:2;10264:7;10237:39;;;;;;;;;;;;:16;:39::i;5897:104:11:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;5972:21:11;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;5897:104:::0;:::o;4973:180::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;5066:13:11::1;:36:::0;;::::1;5113:32:::0;;::::1;::::0;::::1;-1:-1:-1::0;;5113:32:11;;;5066:36;;;::::1;5113:32:::0;;;;;;;::::1;::::0;;4973:180::o;4846:119::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4925:19:11::1;:32:::0;;-1:-1:-1;;4925:32:11::1;;::::0;;;::::1;::::0;;;::::1;::::0;;4846:119::o;7394:123:12:-;7458:7;7484:21;7497:7;7484:12;:21::i;:::-;:26;;7394:123;-1:-1:-1;;7394:123:12:o;1514:21:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5495:95::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;5562:10:11::1;:20:::0;5495:95::o;4910:203:12:-;4974:7;-1:-1:-1;;;;;4997:19:12;;4993:60;;5025:28;;-1:-1:-1;;;5025:28:12;;;;;;;;;;;4993:60;-1:-1:-1;;;;;;5078:19:12;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;5078:27:12;;4910:203::o;1668:101:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;5371:116:11:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;5442:28:11;:37;5371:116::o;4638:99::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4704:16:11::1;:25:::0;;;::::1;;;;-1:-1:-1::0;;4704:25:11;;::::1;::::0;;;::::1;::::0;;4638:99::o;5161:104::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;5233:10:11::1;:24:::0;5161:104::o;7741:102:12:-;7797:13;7829:7;7822:14;;;;;:::i;9302:282::-;-1:-1:-1;;;;;9400:24:12;;719:10:6;9400:24:12;9396:54;;;9433:17;;-1:-1:-1;;;9433:17:12;;;;;;;;;;;9396:54;719:10:6;9461:32:12;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;9461:42:12;;;;;;;;;;;;:53;;-1:-1:-1;;9461:53:12;;;;;;;;;;9529:48;;9001:41:13;;;9461:42:12;;719:10:6;9529:48:12;;8974:18:13;9529:48:12;;;;;;;9302:282;;:::o;10349:359::-;10510:28;10520:4;10526:2;10530:7;10510:9;:28::i;:::-;-1:-1:-1;;;;;10552:13:12;;1465:19:5;:23;;10552:76:12;;;;;10572:56;10603:4;10609:2;10613:7;10622:5;10572:30;:56::i;:::-;10571:57;10552:76;10548:154;;;10651:40;;-1:-1:-1;;;10651:40:12;;;;;;;;;;;10548:154;10349:359;;;;:::o;5273:90:11:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;5341:5:11::1;:14:::0;5273:90::o;6101:401::-;6220:13;6273:17;6281:8;6273:7;:17::i;:::-;6251:114;;;;-1:-1:-1;;;6251:114:11;;10429:2:13;6251:114:11;;;10411:21:13;10468:2;10448:18;;;10441:30;10507:34;10487:18;;;10480:62;-1:-1:-1;;;10558:18:13;;;10551:45;10613:19;;6251:114:11;10227:411:13;6251:114:11;6383:8;;;;;;;6378:32;;6400:10;:8;:10::i;6378:32::-;6452:10;:8;:10::i;:::-;6464:19;:8;:17;:19::i;:::-;6435:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6421:73;;6101:401;;;:::o;4745:93::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4808:13:11::1;:22:::0;;-1:-1:-1;;4808:22:11::1;::::0;::::1;;::::0;;;::::1;::::0;;4745:93::o;4079:248::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4199:8:11::1;4218:102;4228:20;::::0;::::1;::::0;-1:-1:-1;4218:102:11::1;;;4270:38;4280:9;;4290:1;4280:12;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;4294:10;;4305:1;4294:13;;;;;;;;;:::i;:::-;;;;;;;4270:9;:38::i;:::-;4250:3;::::0;::::1;:::i;:::-;;;4218:102;;;4188:139;4079:248:::0;;;;:::o;2591:832::-;1744:1:1;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:1;;10845:2:13;2317:63:1;;;10827:21:13;10884:2;10864:18;;;10857:30;10923:33;10903:18;;;10896:61;10974:18;;2317:63:1;10643:355:13;2317:63:1;1744:1;2455:7;:18;2747:11:11;2372:10:::1;2386:9;2372:23;2368:50;;2404:14;;-1:-1:-1::0;;;2404:14:11::1;;;;;;;;;;;2368:50;2465:10;::::0;4516:1;4072:12:12;3866:7;4056:13;2450:11:11;;4056:28:12;;-1:-1:-1;;4056:46:12;2434:27:11::1;;;;:::i;:::-;2433:42;2429:68;;;2484:13;;-1:-1:-1::0;;;2484:13:11::1;;;;;;;;;;;2429:68;2526:11;;2512;:25;2508:55;;;2546:17;;-1:-1:-1::0;;;2546:17:11::1;;;;;;;;;;;2508:55;2777:44:::2;::::0;;::::2;::::0;::::2;::::0;;2808:13:::2;2777:44:::0;::::2;::::0;;::::2;::::0;;;;;::::2;;;::::0;::::2;::::0;;;;;;;;;;;;;;;;2846:13:::2;::::0;::::2;;2842:38;;;2868:12;;-1:-1:-1::0;;;2868:12:11::2;;;;;;;;;;;2842:38;2913:17:::0;;2895:35:::2;;:15;:35;::::0;:72:::2;;;2952:7;:15;;;2934:33;;:15;:33;2895:72;2891:99;;;2976:14;;-1:-1:-1::0;;;2976:14:11::2;;;;;;;;;;;2891:99;3049:33;::::0;;::::2;::::0;3020:10:::2;5251:7:12::0;5285:19;;;:12;:19;;;;;;:32;3034:11:11;;-1:-1:-1;;;5285:32:12;;-1:-1:-1;;;;;5285:32:12;3006:39:11::2;;;;:::i;:::-;3005:77;3001:110;;;3091:20;;-1:-1:-1::0;;;3091:20:11::2;;;;;;;;;;;3001:110;3164:11;3139:7;:22;;;:36;;;;:::i;:::-;3126:9;:50;3122:82;;;3185:19;;-1:-1:-1::0;;;3185:19:11::2;;;;;;;;;;;3122:82;3250:28;::::0;-1:-1:-1;;3267:10:11::2;7433:2:13::0;7429:15;7425:53;3250:28:11::2;::::0;::::2;7413:66:13::0;3225:12:11::2;::::0;7495::13;;3250:28:11::2;;;;;;;;;;;;3240:39;;;;;;3225:54;;3295:50;3314:12;;3295:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;3328:10:11::2;::::0;;-1:-1:-1;3340:4:11;;-1:-1:-1;3295:18:11::2;:50::i;:::-;3290:78;;3354:14;;-1:-1:-1::0;;;3354:14:11::2;;;;;;;;;;;3290:78;3381:34;3391:10;3403:11;3381:9;:34::i;:::-;-1:-1:-1::0;;1701:1:1;2628:7;:22;-1:-1:-1;;;;2591:832:11:o;3889:135::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3983:33:11::1;3993:9;4004:11;3983:9;:33::i;1918:198:0:-:0;1108:6;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;9661:2:13;1998:73:0::1;::::0;::::1;9643:21:13::0;9700:2;9680:18;;;9673:30;9739:34;9719:18;;;9712:62;-1:-1:-1;;;9790:18:13;;;9783:36;9836:19;;1998:73:0::1;9459:402:13::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;10954:184:12:-:0;11011:4;11053:7;4516:1:11;11034:26:12;;:53;;;;;11074:13;;11064:7;:23;11034:53;:97;;;;-1:-1:-1;;11104:20:12;;;;:11;:20;;;;;:27;-1:-1:-1;;;11104:27:12;;;;11103:28;;10954:184::o;18906:189::-;19016:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19016:29:12;-1:-1:-1;;;;;19016:29:12;;;;;;;;;19060:28;;19016:24;;19060:28;;;;;;;18906:189;;;:::o;13976:2082::-;14086:35;14124:21;14137:7;14124:12;:21::i;:::-;14086:59;;14182:4;-1:-1:-1;;;;;14160:26:12;:13;:18;;;-1:-1:-1;;;;;14160:26:12;;14156:67;;14195:28;;-1:-1:-1;;;14195:28:12;;;;;;;;;;;14156:67;14234:22;719:10:6;-1:-1:-1;;;;;14260:20:12;;;;:72;;-1:-1:-1;14296:36:12;14313:4;719:10:6;9650:162:12;:::i;14296:36::-;14260:124;;;-1:-1:-1;719:10:6;14348:20:12;14360:7;14348:11;:20::i;:::-;-1:-1:-1;;;;;14348:36:12;;14260:124;14234:151;;14401:17;14396:66;;14427:35;;-1:-1:-1;;;14427:35:12;;;;;;;;;;;14396:66;-1:-1:-1;;;;;14476:16:12;;14472:52;;14501:23;;-1:-1:-1;;;14501:23:12;;;;;;;;;;;14472:52;14640:35;14657:1;14661:7;14670:4;14640:8;:35::i;:::-;-1:-1:-1;;;;;14965:18:12;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;14965:31:12;;;-1:-1:-1;;;;;14965:31:12;;;-1:-1:-1;;14965:31:12;;;;;;;15010:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;15010:29:12;;;;;;;;;;;15088:20;;;:11;:20;;;;;;15122:18;;-1:-1:-1;;;;;;15154:49:12;;;;-1:-1:-1;;;15187:15:12;15154:49;;;;;;;;;;15473:11;;15532:24;;;;;15574:13;;15088:20;;15532:24;;15574:13;15570:377;;15781:13;;15766:11;:28;15762:171;;15818:20;;15886:28;;;;-1:-1:-1;;;;;15860:54:12;-1:-1:-1;;;15860:54:12;-1:-1:-1;;;;;;15860:54:12;;;-1:-1:-1;;;;;15818:20:12;;15860:54;;;;15762:171;14941:1016;;;15991:7;15987:2;-1:-1:-1;;;;;15972:27:12;15981:4;-1:-1:-1;;;;;15972:27:12;;;;;;;;;;;16009:42;10349:359;11144:102;11212:27;11222:2;11226:8;11212:27;;;;;;;;;;;;:9;:27::i;6253:1084::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;6363:7:12;;4516:1:11;6409:23:12;;:47;;;;;6443:13;;6436:4;:20;6409:47;6405:868;;;6476:31;6510:17;;;:11;:17;;;;;;;;;6476:51;;;;;;;;;-1:-1:-1;;;;;6476:51:12;;;;-1:-1:-1;;;6476:51:12;;-1:-1:-1;;;;;6476:51:12;;;;;;;;-1:-1:-1;;;6476:51:12;;;;;;;;;;;;;;6545:714;;6594:14;;-1:-1:-1;;;;;6594:28:12;;6590:99;;6657:9;6253:1084;-1:-1:-1;;;6253:1084:12:o;6590:99::-;-1:-1:-1;;;7025:6:12;7069:17;;;;:11;:17;;;;;;;;;7057:29;;;;;;;;;-1:-1:-1;;;;;7057:29:12;;;;;-1:-1:-1;;;7057:29:12;;-1:-1:-1;;;;;7057:29:12;;;;;;;;-1:-1:-1;;;7057:29:12;;;;;;;;;;;;;7116:28;7112:107;;7183:9;6253:1084;-1:-1:-1;;;6253:1084:12:o;7112:107::-;6986:255;;;6458:815;6405:868;7299:31;;-1:-1:-1;;;7299:31:12;;;;;;;;;;;2270:187:0;2362:6;;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;19576:650:12:-;19754:72;;-1:-1:-1;;;19754:72:12;;19734:4;;-1:-1:-1;;;;;19754:36:12;;;;;:72;;719:10:6;;19805:4:12;;19811:7;;19820:5;;19754:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19754:72:12;;;;;;;;-1:-1:-1;;19754:72:12;;;;;;;;;;;;:::i;:::-;;;19750:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19985:13:12;;19981:229;;20030:40;;-1:-1:-1;;;20030:40:12;;;;;;;;;;;19981:229;20170:6;20164:13;20155:6;20151:2;20147:15;20140:38;19750:470;-1:-1:-1;;;;;;19872:55:12;-1:-1:-1;;;19872:55:12;;-1:-1:-1;19750:470:12;19576:650;;;;;;:::o;5738:151:11:-;5836:13;5874:7;5867:14;;;;;:::i;328:703:7:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:7;;;;;;;;;;;;-1:-1:-1;;;627:10:7;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:7;;-1:-1:-1;773:2:7;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;-1:-1:-1;;;;;817:17:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:7;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:7;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:7;;;;;;;;-1:-1:-1;972:11:7;981:2;972:11;;:::i;:::-;;;844:150;;862:184:8;983:4;1035;1006:25;1019:5;1026:4;1006:12;:25::i;:::-;:33;;862:184;-1:-1:-1;;;;862:184:8:o;11597:157:12:-;11715:32;11721:2;11725:8;11735:5;11742:4;11715:5;:32::i;1398:662:8:-;1481:7;1523:4;1481:7;1537:488;1561:5;:12;1557:1;:16;1537:488;;;1594:20;1617:5;1623:1;1617:8;;;;;;;;:::i;:::-;;;;;;;1594:31;;1659:12;1643;:28;1639:376;;2134:13;2182:15;;;2217:4;2210:15;;;2263:4;2247:21;;1769:57;;1639:376;;;2134:13;2182:15;;;2217:4;2210:15;;;2263:4;2247:21;;1943:57;;1639:376;-1:-1:-1;1575:3:8;;;;:::i;:::-;;;;1537:488;;;-1:-1:-1;2041:12:8;1398:662;-1:-1:-1;;;1398:662:8:o;12001:1733:12:-;12134:20;12157:13;-1:-1:-1;;;;;12184:16:12;;12180:48;;12209:19;;-1:-1:-1;;;12209:19:12;;;;;;;;;;;12180:48;12242:13;12238:44;;12264:18;;-1:-1:-1;;;12264:18:12;;;;;;;;;;;12238:44;-1:-1:-1;;;;;12625:16:12;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;12683:49:12;;-1:-1:-1;;;;;12625:44:12;;;;;;;12683:49;;;-1:-1:-1;;;;;12625:44:12;;;;;;12683:49;;;;;;;;;;;;;;;;12747:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;12796:66:12;;;;-1:-1:-1;;;12846:15:12;12796:66;;;;;;;;;;12747:25;12940:23;;;12982:4;:23;;;;-1:-1:-1;;;;;;12990:13:12;;1465:19:5;:23;;12990:15:12;12978:628;;;13025:309;13055:38;;13080:12;;-1:-1:-1;;;;;13055:38:12;;;13072:1;;13055:38;;13072:1;;13055:38;13120:69;13159:1;13163:2;13167:14;;;;;;13183:5;13120:30;:69::i;:::-;13115:172;;13224:40;;-1:-1:-1;;;13224:40:12;;;;;;;;;;;13115:172;13329:3;13313:12;:19;;13025:309;;13413:12;13396:13;;:29;13392:43;;13427:8;;;13392:43;12978:628;;;13474:118;13504:40;;13529:14;;;;;-1:-1:-1;;;;;13504:40:12;;;13521:1;;13504:40;;13521:1;;13504:40;13587:3;13571:12;:19;;13474:118;;12978:628;-1:-1:-1;13619:13:12;:28;13667:60;10349:359;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:13;78:5;-1:-1:-1;;;;;149:2:13;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:13;;;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:173::-;718:20;;-1:-1:-1;;;;;767:31:13;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:13;;-1:-1:-1;;;;;1028:30:13;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:160::-;1265:20;;1321:13;;1314:21;1304:32;;1294:60;;1350:1;1347;1340:12;1365:163;1432:20;;1492:10;1481:22;;1471:33;;1461:61;;1518:1;1515;1508:12;1533:186;1592:6;1645:2;1633:9;1624:7;1620:23;1616:32;1613:52;;;1661:1;1658;1651:12;1613:52;1684:29;1703:9;1684:29;:::i;:::-;1674:39;1533:186;-1:-1:-1;;;1533:186:13:o;1724:260::-;1792:6;1800;1853:2;1841:9;1832:7;1828:23;1824:32;1821:52;;;1869:1;1866;1859:12;1821:52;1892:29;1911:9;1892:29;:::i;:::-;1882:39;;1940:38;1974:2;1963:9;1959:18;1940:38;:::i;:::-;1930:48;;1724:260;;;;;:::o;1989:328::-;2066:6;2074;2082;2135:2;2123:9;2114:7;2110:23;2106:32;2103:52;;;2151:1;2148;2141:12;2103:52;2174:29;2193:9;2174:29;:::i;:::-;2164:39;;2222:38;2256:2;2245:9;2241:18;2222:38;:::i;:::-;2212:48;;2307:2;2296:9;2292:18;2279:32;2269:42;;1989:328;;;;;:::o;2322:666::-;2417:6;2425;2433;2441;2494:3;2482:9;2473:7;2469:23;2465:33;2462:53;;;2511:1;2508;2501:12;2462:53;2534:29;2553:9;2534:29;:::i;:::-;2524:39;;2582:38;2616:2;2605:9;2601:18;2582:38;:::i;:::-;2572:48;;2667:2;2656:9;2652:18;2639:32;2629:42;;2722:2;2711:9;2707:18;2694:32;-1:-1:-1;;;;;2741:6:13;2738:30;2735:50;;;2781:1;2778;2771:12;2735:50;2804:22;;2857:4;2849:13;;2845:27;-1:-1:-1;2835:55:13;;2886:1;2883;2876:12;2835:55;2909:73;2974:7;2969:2;2956:16;2951:2;2947;2943:11;2909:73;:::i;:::-;2899:83;;;2322:666;;;;;;;:::o;2993:254::-;3058:6;3066;3119:2;3107:9;3098:7;3094:23;3090:32;3087:52;;;3135:1;3132;3125:12;3087:52;3158:29;3177:9;3158:29;:::i;:::-;3148:39;;3206:35;3237:2;3226:9;3222:18;3206:35;:::i;3252:254::-;3320:6;3328;3381:2;3369:9;3360:7;3356:23;3352:32;3349:52;;;3397:1;3394;3387:12;3349:52;3420:29;3439:9;3420:29;:::i;:::-;3410:39;3496:2;3481:18;;;;3468:32;;-1:-1:-1;;;3252:254:13:o;3511:773::-;3633:6;3641;3649;3657;3710:2;3698:9;3689:7;3685:23;3681:32;3678:52;;;3726:1;3723;3716:12;3678:52;3766:9;3753:23;-1:-1:-1;;;;;3836:2:13;3828:6;3825:14;3822:34;;;3852:1;3849;3842:12;3822:34;3891:70;3953:7;3944:6;3933:9;3929:22;3891:70;:::i;:::-;3980:8;;-1:-1:-1;3865:96:13;-1:-1:-1;4068:2:13;4053:18;;4040:32;;-1:-1:-1;4084:16:13;;;4081:36;;;4113:1;4110;4103:12;4081:36;;4152:72;4216:7;4205:8;4194:9;4190:24;4152:72;:::i;:::-;3511:773;;;;-1:-1:-1;4243:8:13;-1:-1:-1;;;;3511:773:13:o;4289:180::-;4345:6;4398:2;4386:9;4377:7;4373:23;4369:32;4366:52;;;4414:1;4411;4404:12;4366:52;4437:26;4453:9;4437:26;:::i;4474:180::-;4533:6;4586:2;4574:9;4565:7;4561:23;4557:32;4554:52;;;4602:1;4599;4592:12;4554:52;-1:-1:-1;4625:23:13;;4474:180;-1:-1:-1;4474:180:13:o;4659:245::-;4717:6;4770:2;4758:9;4749:7;4745:23;4741:32;4738:52;;;4786:1;4783;4776:12;4738:52;4825:9;4812:23;4844:30;4868:5;4844:30;:::i;4909:249::-;4978:6;5031:2;5019:9;5010:7;5006:23;5002:32;4999:52;;;5047:1;5044;5037:12;4999:52;5079:9;5073:16;5098:30;5122:5;5098:30;:::i;5163:450::-;5232:6;5285:2;5273:9;5264:7;5260:23;5256:32;5253:52;;;5301:1;5298;5291:12;5253:52;5341:9;5328:23;-1:-1:-1;;;;;5366:6:13;5363:30;5360:50;;;5406:1;5403;5396:12;5360:50;5429:22;;5482:4;5474:13;;5470:27;-1:-1:-1;5460:55:13;;5511:1;5508;5501:12;5460:55;5534:73;5599:7;5594:2;5581:16;5576:2;5572;5568:11;5534:73;:::i;5803:254::-;5871:6;5879;5932:2;5920:9;5911:7;5907:23;5903:32;5900:52;;;5948:1;5945;5938:12;5900:52;5984:9;5971:23;5961:33;;6013:38;6047:2;6036:9;6032:18;6013:38;:::i;6062:505::-;6157:6;6165;6173;6226:2;6214:9;6205:7;6201:23;6197:32;6194:52;;;6242:1;6239;6232:12;6194:52;6278:9;6265:23;6255:33;;6339:2;6328:9;6324:18;6311:32;-1:-1:-1;;;;;6358:6:13;6355:30;6352:50;;;6398:1;6395;6388:12;6352:50;6437:70;6499:7;6490:6;6479:9;6475:22;6437:70;:::i;:::-;6062:505;;6526:8;;-1:-1:-1;6411:96:13;;-1:-1:-1;;;;6062:505:13:o;6572:184::-;6630:6;6683:2;6671:9;6662:7;6658:23;6654:32;6651:52;;;6699:1;6696;6689:12;6651:52;6722:28;6740:9;6722:28;:::i;6761:256::-;6827:6;6835;6888:2;6876:9;6867:7;6863:23;6859:32;6856:52;;;6904:1;6901;6894:12;6856:52;6927:28;6945:9;6927:28;:::i;:::-;6917:38;;6974:37;7007:2;6996:9;6992:18;6974:37;:::i;7022:257::-;7063:3;7101:5;7095:12;7128:6;7123:3;7116:19;7144:63;7200:6;7193:4;7188:3;7184:14;7177:4;7170:5;7166:16;7144:63;:::i;:::-;7261:2;7240:15;-1:-1:-1;;7236:29:13;7227:39;;;;7268:4;7223:50;;7022:257;-1:-1:-1;;7022:257:13:o;7518:637::-;7798:3;7836:6;7830:13;7852:53;7898:6;7893:3;7886:4;7878:6;7874:17;7852:53;:::i;:::-;7968:13;;7927:16;;;;7990:57;7968:13;7927:16;8024:4;8012:17;;7990:57;:::i;:::-;-1:-1:-1;;;8069:20:13;;8098:22;;;8147:1;8136:13;;7518:637;-1:-1:-1;;;;7518:637:13:o;8368:488::-;-1:-1:-1;;;;;8637:15:13;;;8619:34;;8689:15;;8684:2;8669:18;;8662:43;8736:2;8721:18;;8714:34;;;8784:3;8779:2;8764:18;;8757:31;;;8562:4;;8805:45;;8830:19;;8822:6;8805:45;:::i;:::-;8797:53;8368:488;-1:-1:-1;;;;;;8368:488:13:o;9235:219::-;9384:2;9373:9;9366:21;9347:4;9404:44;9444:2;9433:9;9429:18;9421:6;9404:44;:::i;9866:356::-;10068:2;10050:21;;;10087:18;;;10080:30;10146:34;10141:2;10126:18;;10119:62;10213:2;10198:18;;9866:356::o;11624:128::-;11664:3;11695:1;11691:6;11688:1;11685:13;11682:39;;;11701:18;;:::i;:::-;-1:-1:-1;11737:9:13;;11624:128::o;11757:120::-;11797:1;11823;11813:35;;11828:18;;:::i;:::-;-1:-1:-1;11862:9:13;;11757:120::o;11882:168::-;11922:7;11988:1;11984;11980:6;11976:14;11973:1;11970:21;11965:1;11958:9;11951:17;11947:45;11944:71;;;11995:18;;:::i;:::-;-1:-1:-1;12035:9:13;;11882:168::o;12055:125::-;12095:4;12123:1;12120;12117:8;12114:34;;;12128:18;;:::i;:::-;-1:-1:-1;12165:9:13;;12055:125::o;12185:258::-;12257:1;12267:113;12281:6;12278:1;12275:13;12267:113;;;12357:11;;;12351:18;12338:11;;;12331:39;12303:2;12296:10;12267:113;;;12398:6;12395:1;12392:13;12389:48;;;-1:-1:-1;;12433:1:13;12415:16;;12408:27;12185:258::o;12448:380::-;12527:1;12523:12;;;;12570;;;12591:61;;12645:4;12637:6;12633:17;12623:27;;12591:61;12698:2;12690:6;12687:14;12667:18;12664:38;12661:161;;;12744:10;12739:3;12735:20;12732:1;12725:31;12779:4;12776:1;12769:15;12807:4;12804:1;12797:15;12661:161;;12448:380;;;:::o;12833:135::-;12872:3;-1:-1:-1;;12893:17:13;;12890:43;;;12913:18;;:::i;:::-;-1:-1:-1;12960:1:13;12949:13;;12833:135::o;12973:201::-;13011:3;13039:10;13084:2;13077:5;13073:14;13111:2;13102:7;13099:15;13096:41;;;13117:18;;:::i;:::-;13166:1;13153:15;;12973:201;-1:-1:-1;;;12973:201:13:o;13179:112::-;13211:1;13237;13227:35;;13242:18;;:::i;:::-;-1:-1:-1;13276:9:13;;13179:112::o;13296:127::-;13357:10;13352:3;13348:20;13345:1;13338:31;13388:4;13385:1;13378:15;13412:4;13409:1;13402:15;13428:127;13489:10;13484:3;13480:20;13477:1;13470:31;13520:4;13517:1;13510:15;13544:4;13541:1;13534:15;13560:127;13621:10;13616:3;13612:20;13609:1;13602:31;13652:4;13649:1;13642:15;13676:4;13673:1;13666:15;13692:127;13753:10;13748:3;13744:20;13741:1;13734:31;13784:4;13781:1;13774:15;13808:4;13805:1;13798:15;13824:131;-1:-1:-1;;;;;;13898:32:13;;13888:43;;13878:71;;13945:1;13942;13935:12

Swarm Source

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