ETH Price: $2,972.02 (-1.60%)
Gas: 2 Gwei

Token

NotOkayMachineElves (NOME)
 

Overview

Max Total Supply

600 NOME

Holders

8

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 NOME
0x9da3f811143ed2208085f460754b32788913a788
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:
NotOkayMachineElves

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-19
*/

// File: @openzeppelin/contracts/utils/Strings.sol


// 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: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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: contracts/libs/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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: contracts/libs/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0)
            if (!_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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            if (to.code.length != 0) {
                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 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) 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev 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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__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 {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}
// File: contracts/Flatten.sol



pragma solidity ^0.8.4;




contract NotOkayMachineElves is ERC721A, Ownable  {
    using Strings for uint256;
    string public        prependURI = "ipfs://QmVNEsRcM3Xz7HtNmdkcaSDspDbemsHVTBiRwtj6uYMcmC/";
    string public        appendURI = ".json";
    uint public          price             = 0;
    uint public          maxPerTx          = 50;
    uint public          maxSupply         = 600;

  constructor() ERC721A("NotOkayMachineElves", "NOME"){}

  function mint(uint256 amt) external payable
  {
    require(msg.sender == tx.origin,"be yourself");
    require(msg.value == amt * price,"Please send the exact amount.");
    require(totalSupply() + amt < maxSupply + 1,"No more elves");
    require( amt < maxPerTx + 1, "Max per TX reached.");

    _safeMint(msg.sender, amt);
  }

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

  function tokenURI(uint _tokenId) public view override returns(string memory) {
    return string(abi.encodePacked(prependURI, _tokenId.toString(), appendURI));    
  }

  function setPrependURI(string memory _newValue) external onlyOwner {
    prependURI = _newValue;
  }

  function setAppendURI(string memory _newValue) external onlyOwner {
    appendURI = _newValue;
  }

  function setPrice(uint _newValue) external onlyOwner {
    price = _newValue;
  }

  function setMaxPerTx(uint _newValue) external onlyOwner {
    maxPerTx = _newValue;
  }
  
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"appendURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[],"name":"prependURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newValue","type":"string"}],"name":"setAppendURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newValue","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newValue","type":"string"}],"name":"setPrependURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newValue","type":"uint256"}],"name":"setPrice","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"}]

60e0604052603660808181529062001b0b60a0398051620000299160099160209091019062000159565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005891600a9162000159565b506000600b556032600c55610258600d553480156200007657600080fd5b50604080518082018252601381527f4e6f744f6b61794d616368696e65456c766573000000000000000000000000006020808301918252835180850190945260048452634e4f4d4560e01b908401528151919291620000d89160029162000159565b508051620000ee90600390602084019062000159565b5050600160005550620001013362000107565b6200023c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016790620001ff565b90600052602060002090601f0160209004810192826200018b5760008555620001d6565b82601f10620001a657805160ff1916838001178555620001d6565b82800160010185558215620001d6579182015b82811115620001d6578251825591602001919060010190620001b9565b50620001e4929150620001e8565b5090565b5b80821115620001e45760008155600101620001e9565b600181811c908216806200021457607f821691505b602082108114156200023657634e487b7160e01b600052602260045260246000fd5b50919050565b6118bf806200024c6000396000f3fe60806040526004361061019c5760003560e01c806395d89b41116100ec578063c6f6f2161161008a578063d923814f11610064578063d923814f1461046a578063e985e9c51461048a578063f2fde38b146104d3578063f968adbe146104f357600080fd5b8063c6f6f21614610414578063c87b56dd14610434578063d5abeb011461045457600080fd5b8063a22cb465116100c6578063a22cb465146103aa578063b3003cdd146103ca578063b58a7c68146103df578063b88d4fde146103f457600080fd5b806395d89b411461036c578063a035b1fe14610381578063a0712d681461039757600080fd5b806323b872dd1161015957806370a082311161013357806370a08231146102f9578063715018a6146103195780638da5cb5b1461032e57806391b7f5ed1461034c57600080fd5b806323b872dd1461029957806342842e0e146102b95780636352211e146102d957600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd146102525780631ff02eda14610279575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611509565b610509565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb61055b565b6040516101cd91906116db565b34801561020457600080fd5b5061021861021336600461158c565b6105ed565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b3660046114df565b610631565b005b34801561025e57600080fd5b5060015460005403600019015b6040519081526020016101cd565b34801561028557600080fd5b50610250610294366004611543565b610704565b3480156102a557600080fd5b506102506102b43660046113eb565b61074e565b3480156102c557600080fd5b506102506102d43660046113eb565b61075e565b3480156102e557600080fd5b506102186102f436600461158c565b610779565b34801561030557600080fd5b5061026b61031436600461139d565b610784565b34801561032557600080fd5b506102506107d3565b34801561033a57600080fd5b506008546001600160a01b0316610218565b34801561035857600080fd5b5061025061036736600461158c565b610809565b34801561037857600080fd5b506101eb610838565b34801561038d57600080fd5b5061026b600b5481565b6102506103a536600461158c565b610847565b3480156103b657600080fd5b506102506103c53660046114a3565b6109a1565b3480156103d657600080fd5b506101eb610a37565b3480156103eb57600080fd5b506101eb610ac5565b34801561040057600080fd5b5061025061040f366004611427565b610ad2565b34801561042057600080fd5b5061025061042f36600461158c565b610b1c565b34801561044057600080fd5b506101eb61044f36600461158c565b610b4b565b34801561046057600080fd5b5061026b600d5481565b34801561047657600080fd5b50610250610485366004611543565b610b82565b34801561049657600080fd5b506101c16104a53660046113b8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104df57600080fd5b506102506104ee36600461139d565b610bbf565b3480156104ff57600080fd5b5061026b600c5481565b60006301ffc9a760e01b6001600160e01b03198316148061053a57506380ac58cd60e01b6001600160e01b03198316145b806105555750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461056a906117b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610596906117b1565b80156105e35780601f106105b8576101008083540402835291602001916105e3565b820191906000526020600020905b8154815290600101906020018083116105c657829003601f168201915b5050505050905090565b60006105f882610c57565b610615576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061063c82610c8c565b9050806001600160a01b0316836001600160a01b031614156106715760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106a85761068b81336104a5565b6106a8576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146107375760405162461bcd60e51b815260040161072e906116ee565b60405180910390fd5b805161074a906009906020840190611272565b5050565b610759838383610cfc565b505050565b61075983838360405180602001604052806000815250610ad2565b600061055582610c8c565b60006001600160a01b0382166107ad576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146107fd5760405162461bcd60e51b815260040161072e906116ee565b6108076000610e9f565b565b6008546001600160a01b031633146108335760405162461bcd60e51b815260040161072e906116ee565b600b55565b60606003805461056a906117b1565b3332146108845760405162461bcd60e51b815260206004820152600b60248201526a3132903cb7bab939b2b63360a91b604482015260640161072e565b600b54610891908261174f565b34146108df5760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e000000604482015260640161072e565b600d546108ed906001611723565b60015460005483919003600019016109059190611723565b106109425760405162461bcd60e51b815260206004820152600d60248201526c4e6f206d6f726520656c76657360981b604482015260640161072e565b600c54610950906001611723565b81106109945760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b604482015260640161072e565b61099e3382610ef1565b50565b6001600160a01b0382163314156109cb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60098054610a44906117b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a70906117b1565b8015610abd5780601f10610a9257610100808354040283529160200191610abd565b820191906000526020600020905b815481529060010190602001808311610aa057829003601f168201915b505050505081565b600a8054610a44906117b1565b610add848484610cfc565b6001600160a01b0383163b15610b1657610af984848484610f0b565b610b16576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610b465760405162461bcd60e51b815260040161072e906116ee565b600c55565b60606009610b5883611003565b600a604051602001610b6c9392919061166b565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610bac5760405162461bcd60e51b815260040161072e906116ee565b805161074a90600a906020840190611272565b6008546001600160a01b03163314610be95760405162461bcd60e51b815260040161072e906116ee565b6001600160a01b038116610c4e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072e565b61099e81610e9f565b600081600111158015610c6b575060005482105b8015610555575050600090815260046020526040902054600160e01b161590565b60008180600111610ce357600054811015610ce357600081815260046020526040902054600160e01b8116610ce1575b80610cda575060001901600081815260046020526040902054610cbc565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610d0782610c8c565b9050836001600160a01b0316816001600160a01b031614610d3a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610d585750610d5885336104a5565b80610d73575033610d68846105ed565b6001600160a01b0316145b905080610d9357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610dba57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b861781179091558216610e575760018301600081815260046020526040902054610e55576000548114610e555760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61074a828260405180602001604052806000815250611101565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610f4090339089908890889060040161169e565b602060405180830381600087803b158015610f5a57600080fd5b505af1925050508015610f8a575060408051601f3d908101601f19168201909252610f8791810190611526565b60015b610fe5573d808015610fb8576040519150601f19603f3d011682016040523d82523d6000602084013e610fbd565b606091505b508051610fdd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816110275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611051578061103b816117ec565b915061104a9050600a8361173b565b915061102b565b60008167ffffffffffffffff81111561106c5761106c61185d565b6040519080825280601f01601f191660200182016040528015611096576020820181803683370190505b5090505b8415610ffb576110ab60018361176e565b91506110b8600a86611807565b6110c3906030611723565b60f81b8183815181106110d8576110d8611847565b60200101906001600160f81b031916908160001a9053506110fa600a8661173b565b945061109a565b6000546001600160a01b03841661112a57604051622e076360e81b815260040160405180910390fd5b826111485760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b1561121d575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46111e66000878480600101955087610f0b565b611203576040516368d2bf6b60e11b815260040160405180910390fd5b80821061119b57826000541461121857600080fd5b611262565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061121e575b506000908155610b169085838684565b82805461127e906117b1565b90600052602060002090601f0160209004810192826112a057600085556112e6565b82601f106112b957805160ff19168380011785556112e6565b828001600101855582156112e6579182015b828111156112e65782518255916020019190600101906112cb565b506112f29291506112f6565b5090565b5b808211156112f257600081556001016112f7565b600067ffffffffffffffff808411156113265761132661185d565b604051601f8501601f19908116603f0116810190828211818310171561134e5761134e61185d565b8160405280935085815286868601111561136757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461139857600080fd5b919050565b6000602082840312156113af57600080fd5b610cda82611381565b600080604083850312156113cb57600080fd5b6113d483611381565b91506113e260208401611381565b90509250929050565b60008060006060848603121561140057600080fd5b61140984611381565b925061141760208501611381565b9150604084013590509250925092565b6000806000806080858703121561143d57600080fd5b61144685611381565b935061145460208601611381565b925060408501359150606085013567ffffffffffffffff81111561147757600080fd5b8501601f8101871361148857600080fd5b6114978782356020840161130b565b91505092959194509250565b600080604083850312156114b657600080fd5b6114bf83611381565b9150602083013580151581146114d457600080fd5b809150509250929050565b600080604083850312156114f257600080fd5b6114fb83611381565b946020939093013593505050565b60006020828403121561151b57600080fd5b8135610cda81611873565b60006020828403121561153857600080fd5b8151610cda81611873565b60006020828403121561155557600080fd5b813567ffffffffffffffff81111561156c57600080fd5b8201601f8101841361157d57600080fd5b610ffb8482356020840161130b565b60006020828403121561159e57600080fd5b5035919050565b600081518084526115bd816020860160208601611785565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806115eb57607f831692505b602080841082141561160d57634e487b7160e01b600052602260045260246000fd5b81801561162157600181146116325761165f565b60ff1986168952848901965061165f565b60008881526020902060005b868110156116575781548b82015290850190830161163e565b505084890196505b50505050505092915050565b600061167782866115d1565b8451611687818360208901611785565b611693818301866115d1565b979650505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116d1908301846115a5565b9695505050505050565b602081526000610cda60208301846115a5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156117365761173661181b565b500190565b60008261174a5761174a611831565b500490565b60008160001904831182151516156117695761176961181b565b500290565b6000828210156117805761178061181b565b500390565b60005b838110156117a0578181015183820152602001611788565b83811115610b165750506000910152565b600181811c908216806117c557607f821691505b602082108114156117e657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156118005761180061181b565b5060010190565b60008261181657611816611831565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461099e57600080fdfea2646970667358221220f4f7d81d45659694d7ffbba1bbd3d1d40b7bf6da9ddca2d49eb5ff76f4d1ed9a64736f6c63430008070033697066733a2f2f516d564e457352634d33587a3748744e6d646b6361534473704462656d7348565442695277746a3675594d636d432f

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806395d89b41116100ec578063c6f6f2161161008a578063d923814f11610064578063d923814f1461046a578063e985e9c51461048a578063f2fde38b146104d3578063f968adbe146104f357600080fd5b8063c6f6f21614610414578063c87b56dd14610434578063d5abeb011461045457600080fd5b8063a22cb465116100c6578063a22cb465146103aa578063b3003cdd146103ca578063b58a7c68146103df578063b88d4fde146103f457600080fd5b806395d89b411461036c578063a035b1fe14610381578063a0712d681461039757600080fd5b806323b872dd1161015957806370a082311161013357806370a08231146102f9578063715018a6146103195780638da5cb5b1461032e57806391b7f5ed1461034c57600080fd5b806323b872dd1461029957806342842e0e146102b95780636352211e146102d957600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd146102525780631ff02eda14610279575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611509565b610509565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb61055b565b6040516101cd91906116db565b34801561020457600080fd5b5061021861021336600461158c565b6105ed565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b3660046114df565b610631565b005b34801561025e57600080fd5b5060015460005403600019015b6040519081526020016101cd565b34801561028557600080fd5b50610250610294366004611543565b610704565b3480156102a557600080fd5b506102506102b43660046113eb565b61074e565b3480156102c557600080fd5b506102506102d43660046113eb565b61075e565b3480156102e557600080fd5b506102186102f436600461158c565b610779565b34801561030557600080fd5b5061026b61031436600461139d565b610784565b34801561032557600080fd5b506102506107d3565b34801561033a57600080fd5b506008546001600160a01b0316610218565b34801561035857600080fd5b5061025061036736600461158c565b610809565b34801561037857600080fd5b506101eb610838565b34801561038d57600080fd5b5061026b600b5481565b6102506103a536600461158c565b610847565b3480156103b657600080fd5b506102506103c53660046114a3565b6109a1565b3480156103d657600080fd5b506101eb610a37565b3480156103eb57600080fd5b506101eb610ac5565b34801561040057600080fd5b5061025061040f366004611427565b610ad2565b34801561042057600080fd5b5061025061042f36600461158c565b610b1c565b34801561044057600080fd5b506101eb61044f36600461158c565b610b4b565b34801561046057600080fd5b5061026b600d5481565b34801561047657600080fd5b50610250610485366004611543565b610b82565b34801561049657600080fd5b506101c16104a53660046113b8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104df57600080fd5b506102506104ee36600461139d565b610bbf565b3480156104ff57600080fd5b5061026b600c5481565b60006301ffc9a760e01b6001600160e01b03198316148061053a57506380ac58cd60e01b6001600160e01b03198316145b806105555750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461056a906117b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610596906117b1565b80156105e35780601f106105b8576101008083540402835291602001916105e3565b820191906000526020600020905b8154815290600101906020018083116105c657829003601f168201915b5050505050905090565b60006105f882610c57565b610615576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061063c82610c8c565b9050806001600160a01b0316836001600160a01b031614156106715760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106a85761068b81336104a5565b6106a8576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146107375760405162461bcd60e51b815260040161072e906116ee565b60405180910390fd5b805161074a906009906020840190611272565b5050565b610759838383610cfc565b505050565b61075983838360405180602001604052806000815250610ad2565b600061055582610c8c565b60006001600160a01b0382166107ad576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146107fd5760405162461bcd60e51b815260040161072e906116ee565b6108076000610e9f565b565b6008546001600160a01b031633146108335760405162461bcd60e51b815260040161072e906116ee565b600b55565b60606003805461056a906117b1565b3332146108845760405162461bcd60e51b815260206004820152600b60248201526a3132903cb7bab939b2b63360a91b604482015260640161072e565b600b54610891908261174f565b34146108df5760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e000000604482015260640161072e565b600d546108ed906001611723565b60015460005483919003600019016109059190611723565b106109425760405162461bcd60e51b815260206004820152600d60248201526c4e6f206d6f726520656c76657360981b604482015260640161072e565b600c54610950906001611723565b81106109945760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b604482015260640161072e565b61099e3382610ef1565b50565b6001600160a01b0382163314156109cb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60098054610a44906117b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a70906117b1565b8015610abd5780601f10610a9257610100808354040283529160200191610abd565b820191906000526020600020905b815481529060010190602001808311610aa057829003601f168201915b505050505081565b600a8054610a44906117b1565b610add848484610cfc565b6001600160a01b0383163b15610b1657610af984848484610f0b565b610b16576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610b465760405162461bcd60e51b815260040161072e906116ee565b600c55565b60606009610b5883611003565b600a604051602001610b6c9392919061166b565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610bac5760405162461bcd60e51b815260040161072e906116ee565b805161074a90600a906020840190611272565b6008546001600160a01b03163314610be95760405162461bcd60e51b815260040161072e906116ee565b6001600160a01b038116610c4e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072e565b61099e81610e9f565b600081600111158015610c6b575060005482105b8015610555575050600090815260046020526040902054600160e01b161590565b60008180600111610ce357600054811015610ce357600081815260046020526040902054600160e01b8116610ce1575b80610cda575060001901600081815260046020526040902054610cbc565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610d0782610c8c565b9050836001600160a01b0316816001600160a01b031614610d3a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610d585750610d5885336104a5565b80610d73575033610d68846105ed565b6001600160a01b0316145b905080610d9357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610dba57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b861781179091558216610e575760018301600081815260046020526040902054610e55576000548114610e555760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61074a828260405180602001604052806000815250611101565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610f4090339089908890889060040161169e565b602060405180830381600087803b158015610f5a57600080fd5b505af1925050508015610f8a575060408051601f3d908101601f19168201909252610f8791810190611526565b60015b610fe5573d808015610fb8576040519150601f19603f3d011682016040523d82523d6000602084013e610fbd565b606091505b508051610fdd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816110275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611051578061103b816117ec565b915061104a9050600a8361173b565b915061102b565b60008167ffffffffffffffff81111561106c5761106c61185d565b6040519080825280601f01601f191660200182016040528015611096576020820181803683370190505b5090505b8415610ffb576110ab60018361176e565b91506110b8600a86611807565b6110c3906030611723565b60f81b8183815181106110d8576110d8611847565b60200101906001600160f81b031916908160001a9053506110fa600a8661173b565b945061109a565b6000546001600160a01b03841661112a57604051622e076360e81b815260040160405180910390fd5b826111485760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b1561121d575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46111e66000878480600101955087610f0b565b611203576040516368d2bf6b60e11b815260040160405180910390fd5b80821061119b57826000541461121857600080fd5b611262565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061121e575b506000908155610b169085838684565b82805461127e906117b1565b90600052602060002090601f0160209004810192826112a057600085556112e6565b82601f106112b957805160ff19168380011785556112e6565b828001600101855582156112e6579182015b828111156112e65782518255916020019190600101906112cb565b506112f29291506112f6565b5090565b5b808211156112f257600081556001016112f7565b600067ffffffffffffffff808411156113265761132661185d565b604051601f8501601f19908116603f0116810190828211818310171561134e5761134e61185d565b8160405280935085815286868601111561136757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461139857600080fd5b919050565b6000602082840312156113af57600080fd5b610cda82611381565b600080604083850312156113cb57600080fd5b6113d483611381565b91506113e260208401611381565b90509250929050565b60008060006060848603121561140057600080fd5b61140984611381565b925061141760208501611381565b9150604084013590509250925092565b6000806000806080858703121561143d57600080fd5b61144685611381565b935061145460208601611381565b925060408501359150606085013567ffffffffffffffff81111561147757600080fd5b8501601f8101871361148857600080fd5b6114978782356020840161130b565b91505092959194509250565b600080604083850312156114b657600080fd5b6114bf83611381565b9150602083013580151581146114d457600080fd5b809150509250929050565b600080604083850312156114f257600080fd5b6114fb83611381565b946020939093013593505050565b60006020828403121561151b57600080fd5b8135610cda81611873565b60006020828403121561153857600080fd5b8151610cda81611873565b60006020828403121561155557600080fd5b813567ffffffffffffffff81111561156c57600080fd5b8201601f8101841361157d57600080fd5b610ffb8482356020840161130b565b60006020828403121561159e57600080fd5b5035919050565b600081518084526115bd816020860160208601611785565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806115eb57607f831692505b602080841082141561160d57634e487b7160e01b600052602260045260246000fd5b81801561162157600181146116325761165f565b60ff1986168952848901965061165f565b60008881526020902060005b868110156116575781548b82015290850190830161163e565b505084890196505b50505050505092915050565b600061167782866115d1565b8451611687818360208901611785565b611693818301866115d1565b979650505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116d1908301846115a5565b9695505050505050565b602081526000610cda60208301846115a5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156117365761173661181b565b500190565b60008261174a5761174a611831565b500490565b60008160001904831182151516156117695761176961181b565b500290565b6000828210156117805761178061181b565b500390565b60005b838110156117a0578181015183820152602001611788565b83811115610b165750506000910152565b600181811c908216806117c557607f821691505b602082108114156117e657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156118005761180061181b565b5060010190565b60008261181657611816611831565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461099e57600080fdfea2646970667358221220f4f7d81d45659694d7ffbba1bbd3d1d40b7bf6da9ddca2d49eb5ff76f4d1ed9a64736f6c63430008070033

Deployed Bytecode Sourcemap

43955:1458:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18612:615;;;;;;;;;;-1:-1:-1;18612:615:0;;;;;:::i;:::-;;:::i;:::-;;;6610:14:1;;6603:22;6585:41;;6573:2;6558:18;18612:615:0;;;;;;;;23625:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25693:204::-;;;;;;;;;;-1:-1:-1;25693:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5908:32:1;;;5890:51;;5878:2;5863:18;25693:204:0;5744:203:1;25153:474:0;;;;;;;;;;-1:-1:-1;25153:474:0;;;;;:::i;:::-;;:::i;:::-;;17666:315;;;;;;;;;;-1:-1:-1;44826:1:0;17932:12;17719:7;17916:13;:28;-1:-1:-1;;17916:46:0;17666:315;;;9163:25:1;;;9151:2;9136:18;17666:315:0;9017:177:1;45014:102:0;;;;;;;;;;-1:-1:-1;45014:102:0;;;;;:::i;:::-;;:::i;26579:170::-;;;;;;;;;;-1:-1:-1;26579:170:0;;;;;:::i;:::-;;:::i;26820:185::-;;;;;;;;;;-1:-1:-1;26820:185:0;;;;;:::i;:::-;;:::i;23414:144::-;;;;;;;;;;-1:-1:-1;23414:144:0;;;;;:::i;:::-;;:::i;19291:224::-;;;;;;;;;;-1:-1:-1;19291:224:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;45228:83;;;;;;;;;;-1:-1:-1;45228:83:0;;;;;:::i;:::-;;:::i;23794:104::-;;;;;;;;;;;;;:::i;44188:42::-;;;;;;;;;;;;;;;;44398:338;;;;;;:::i;:::-;;:::i;25969:308::-;;;;;;;;;;-1:-1:-1;25969:308:0;;;;;:::i;:::-;;:::i;44044:90::-;;;;;;;;;;;;;:::i;44141:40::-;;;;;;;;;;;;;:::i;27076:396::-;;;;;;;;;;-1:-1:-1;27076:396:0;;;;;:::i;:::-;;:::i;45317:89::-;;;;;;;;;;-1:-1:-1;45317:89:0;;;;;:::i;:::-;;:::i;44839:169::-;;;;;;;;;;-1:-1:-1;44839:169:0;;;;;:::i;:::-;;:::i;44287:44::-;;;;;;;;;;;;;;;;45122:100;;;;;;;;;;-1:-1:-1;45122:100:0;;;;;:::i;:::-;;:::i;26348:164::-;;;;;;;;;;-1:-1:-1;26348:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26469:25:0;;;26445:4;26469:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26348:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;44237:43::-;;;;;;;;;;;;;;;;18612:615;18697:4;-1:-1:-1;;;;;;;;;18997:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;19074:25:0;;;18997:102;:179;;;-1:-1:-1;;;;;;;;;;19151:25:0;;;18997:179;18977:199;18612:615;-1:-1:-1;;18612:615:0:o;23625:100::-;23679:13;23712:5;23705:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23625:100;:::o;25693:204::-;25761:7;25786:16;25794:7;25786;:16::i;:::-;25781:64;;25811:34;;-1:-1:-1;;;25811:34:0;;;;;;;;;;;25781:64;-1:-1:-1;25865:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25865:24:0;;25693:204::o;25153:474::-;25226:13;25258:27;25277:7;25258:18;:27::i;:::-;25226:61;;25308:5;-1:-1:-1;;;;;25302:11:0;:2;-1:-1:-1;;;;;25302:11:0;;25298:48;;;25322:24;;-1:-1:-1;;;25322:24:0;;;;;;;;;;;25298:48;41796:10;-1:-1:-1;;;;;25363:28:0;;;25359:175;;25411:44;25428:5;41796:10;26348:164;:::i;25411:44::-;25406:128;;25483:35;;-1:-1:-1;;;25483:35:0;;;;;;;;;;;25406:128;25546:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;25546:29:0;-1:-1:-1;;;;;25546:29:0;;;;;;;;;25591:28;;25546:24;;25591:28;;;;;;;25215:412;25153:474;;:::o;45014:102::-;4152:6;;-1:-1:-1;;;;;4152:6:0;41796:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;45088:22;;::::1;::::0;:10:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45014:102:::0;:::o;26579:170::-;26713:28;26723:4;26729:2;26733:7;26713:9;:28::i;:::-;26579:170;;;:::o;26820:185::-;26958:39;26975:4;26981:2;26985:7;26958:39;;;;;;;;;;;;:16;:39::i;23414:144::-;23478:7;23521:27;23540:7;23521:18;:27::i;19291:224::-;19355:7;-1:-1:-1;;;;;19379:19:0;;19375:60;;19407:28;;-1:-1:-1;;;19407:28:0;;;;;;;;;;;19375:60;-1:-1:-1;;;;;;19453:25:0;;;;;:18;:25;;;;;;14630:13;19453:54;;19291:224::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;41796:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;45228:83::-;4152:6;;-1:-1:-1;;;;;4152:6:0;41796:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;45288:5:::1;:17:::0;45228:83::o;23794:104::-;23850:13;23883:7;23876:14;;;;;:::i;44398:338::-;44460:10;44474:9;44460:23;44452:46;;;;-1:-1:-1;;;44452:46:0;;7831:2:1;44452:46:0;;;7813:21:1;7870:2;7850:18;;;7843:30;-1:-1:-1;;;7889:18:1;;;7882:41;7940:18;;44452:46:0;7629:335:1;44452:46:0;44532:5;;44526:11;;:3;:11;:::i;:::-;44513:9;:24;44505:65;;;;-1:-1:-1;;;44505:65:0;;8171:2:1;44505:65:0;;;8153:21:1;8210:2;8190:18;;;8183:30;8249:31;8229:18;;;8222:59;8298:18;;44505:65:0;7969:353:1;44505:65:0;44607:9;;:13;;44619:1;44607:13;:::i;:::-;44826:1;17932:12;17719:7;17916:13;44601:3;;17916:28;;-1:-1:-1;;17916:46:0;44585:19;;;;:::i;:::-;:35;44577:60;;;;-1:-1:-1;;;44577:60:0;;8529:2:1;44577:60:0;;;8511:21:1;8568:2;8548:18;;;8541:30;-1:-1:-1;;;8587:18:1;;;8580:43;8640:18;;44577:60:0;8327:337:1;44577:60:0;44659:8;;:12;;44670:1;44659:12;:::i;:::-;44653:3;:18;44644:51;;;;-1:-1:-1;;;44644:51:0;;8871:2:1;44644:51:0;;;8853:21:1;8910:2;8890:18;;;8883:30;-1:-1:-1;;;8929:18:1;;;8922:49;8988:18;;44644:51:0;8669:343:1;44644:51:0;44704:26;44714:10;44726:3;44704:9;:26::i;:::-;44398:338;:::o;25969:308::-;-1:-1:-1;;;;;26068:31:0;;41796:10;26068:31;26064:61;;;26108:17;;-1:-1:-1;;;26108:17:0;;;;;;;;;;;26064:61;41796:10;26138:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26138:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26138:60:0;;;;;;;;;;26214:55;;6585:41:1;;;26138:49:0;;41796:10;26214:55;;6558:18:1;26214:55:0;;;;;;;25969:308;;:::o;44044:90::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44141:40::-;;;;;;;:::i;27076:396::-;27243:28;27253:4;27259:2;27263:7;27243:9;:28::i;:::-;-1:-1:-1;;;;;27286:14:0;;;:19;27282:183;;27325:56;27356:4;27362:2;27366:7;27375:5;27325:30;:56::i;:::-;27320:145;;27409:40;;-1:-1:-1;;;27409:40:0;;;;;;;;;;;27320:145;27076:396;;;;:::o;45317:89::-;4152:6;;-1:-1:-1;;;;;4152:6:0;41796:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;45380:8:::1;:20:::0;45317:89::o;44839:169::-;44901:13;44954:10;44966:19;:8;:17;:19::i;:::-;44987:9;44937:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44923:75;;44839:169;;;:::o;45122:100::-;4152:6;;-1:-1:-1;;;;;4152:6:0;41796:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;45195:21;;::::1;::::0;:9:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;4988:201::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;41796:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;7063:2:1;5069:73:0::1;::::0;::::1;7045:21:1::0;7102:2;7082:18;;;7075:30;7141:34;7121:18;;;7114:62;-1:-1:-1;;;7192:18:1;;;7185:36;7238:19;;5069:73:0::1;6861:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;27727:273::-:0;27784:4;27840:7;44826:1;27821:26;;:66;;;;;27874:13;;27864:7;:23;27821:66;:152;;;;-1:-1:-1;;27925:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27925:43:0;:48;;27727:273::o;20929:1129::-;20996:7;21031;;44826:1;21080:23;21076:915;;21133:13;;21126:4;:20;21122:869;;;21171:14;21188:23;;;:17;:23;;;;;;-1:-1:-1;;;21277:23:0;;21273:699;;21796:113;21803:11;21796:113;;-1:-1:-1;;;21874:6:0;21856:25;;;;:17;:25;;;;;;21796:113;;;21942:6;20929:1129;-1:-1:-1;;;20929:1129:0:o;21273:699::-;21148:843;21122:869;22019:31;;-1:-1:-1;;;22019:31:0;;;;;;;;;;;32966:2515;33081:27;33111;33130:7;33111:18;:27::i;:::-;33081:57;;33196:4;-1:-1:-1;;;;;33155:45:0;33171:19;-1:-1:-1;;;;;33155:45:0;;33151:86;;33209:28;;-1:-1:-1;;;33209:28:0;;;;;;;;;;;33151:86;33250:22;41796:10;-1:-1:-1;;;;;33276:27:0;;;;:87;;-1:-1:-1;33320:43:0;33337:4;41796:10;26348:164;:::i;33320:43::-;33276:147;;;-1:-1:-1;41796:10:0;33380:20;33392:7;33380:11;:20::i;:::-;-1:-1:-1;;;;;33380:43:0;;33276:147;33250:174;;33442:17;33437:66;;33468:35;;-1:-1:-1;;;33468:35:0;;;;;;;;;;;33437:66;-1:-1:-1;;;;;33518:16:0;;33514:52;;33543:23;;-1:-1:-1;;;33543:23:0;;;;;;;;;;;33514:52;33695:24;;;;:15;:24;;;;;;;;33688:31;;-1:-1:-1;;;;;;33688:31:0;;;-1:-1:-1;;;;;34087:24:0;;;;;:18;:24;;;;;34085:26;;-1:-1:-1;;34085:26:0;;;34156:22;;;;;;;34154:24;;-1:-1:-1;34154:24:0;;;34449:26;;;:17;:26;;;;;-1:-1:-1;;;34537:15:0;15284:3;34537:41;34495:84;;:128;;34449:174;;;34743:46;;34739:626;;34847:1;34837:11;;34815:19;34970:30;;;:17;:30;;;;;;34966:384;;35108:13;;35093:11;:28;35089:242;;35255:30;;;;:17;:30;;;;;:52;;;35089:242;34796:569;34739:626;35412:7;35408:2;-1:-1:-1;;;;;35393:27:0;35402:4;-1:-1:-1;;;;;35393:27:0;;;;;;;;;;;33070:2411;;32966:2515;;;:::o;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;28084:104::-;28153:27;28163:2;28167:8;28153:27;;;;;;;;;;;;:9;:27::i;39178:716::-;39362:88;;-1:-1:-1;;;39362:88:0;;39341:4;;-1:-1:-1;;;;;39362:45:0;;;;;:88;;41796:10;;39429:4;;39435:7;;39444:5;;39362:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39362:88:0;;;;;;;;-1:-1:-1;;39362:88:0;;;;;;;;;;;;:::i;:::-;;;39358:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39645:13:0;;39641:235;;39691:40;;-1:-1:-1;;;39691:40:0;;;;;;;;;;;39641:235;39834:6;39828:13;39819:6;39815:2;39811:15;39804:38;39358:529;-1:-1:-1;;;;;;39521:64:0;-1:-1:-1;;;39521:64:0;;-1:-1:-1;39358:529:0;39178:716;;;;;;:::o;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;28561:2236;28684:20;28707:13;-1:-1:-1;;;;;28735:16:0;;28731:48;;28760:19;;-1:-1:-1;;;28760:19:0;;;;;;;;;;;28731:48;28794:13;28790:44;;28816:18;;-1:-1:-1;;;28816:18:0;;;;;;;;;;;28790:44;-1:-1:-1;;;;;29383:22:0;;;;;;:18;:22;;;;14767:2;29383:22;;;:70;;29421:31;29409:44;;29383:70;;;29696:31;;;:17;:31;;;;;29789:15;15284:3;29789:41;29747:84;;-1:-1:-1;29867:13:0;;15547:3;29852:56;29747:162;29696:213;;:31;;29990:23;;;;30034:14;:19;30030:635;;30074:313;30105:38;;30130:12;;-1:-1:-1;;;;;30105:38:0;;;30122:1;;30105:38;;30122:1;;30105:38;30171:69;30210:1;30214:2;30218:14;;;;;;30234:5;30171:30;:69::i;:::-;30166:174;;30276:40;;-1:-1:-1;;;30276:40:0;;;;;;;;;;;30166:174;30382:3;30367:12;:18;30074:313;;30468:12;30451:13;;:29;30447:43;;30482:8;;;30447:43;30030:635;;;30531:119;30562:40;;30587:14;;;;;-1:-1:-1;;;;;30562:40:0;;;30579:1;;30562:40;;30579:1;;30562:40;30645:3;30630:12;:18;30531:119;;30030:635;-1:-1:-1;30679:13:0;:28;;;30729:60;;30762:2;30766:12;30780:8;30729:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:973::-;4390:12;;4355:3;;4445:1;4465:18;;;;4518;;;;4545:61;;4599:4;4591:6;4587:17;4577:27;;4545:61;4625:2;4673;4665:6;4662:14;4642:18;4639:38;4636:161;;;4719:10;4714:3;4710:20;4707:1;4700:31;4754:4;4751:1;4744:15;4782:4;4779:1;4772:15;4636:161;4813:18;4840:104;;;;4958:1;4953:319;;;;4806:466;;4840:104;-1:-1:-1;;4873:24:1;;4861:37;;4918:16;;;;-1:-1:-1;4840:104:1;;4953:319;9272:1;9265:14;;;9309:4;9296:18;;5047:1;5061:165;5075:6;5072:1;5069:13;5061:165;;;5153:14;;5140:11;;;5133:35;5196:16;;;;5090:10;;5061:165;;;5065:3;;5255:6;5250:3;5246:16;5239:23;;4806:466;;;;;;;4305:973;;;;:::o;5283:456::-;5504:3;5532:38;5566:3;5558:6;5532:38;:::i;:::-;5599:6;5593:13;5615:52;5660:6;5656:2;5649:4;5641:6;5637:17;5615:52;:::i;:::-;5683:50;5725:6;5721:2;5717:15;5709:6;5683:50;:::i;:::-;5676:57;5283:456;-1:-1:-1;;;;;;;5283:456:1:o;5952:488::-;-1:-1:-1;;;;;6221:15:1;;;6203:34;;6273:15;;6268:2;6253:18;;6246:43;6320:2;6305:18;;6298:34;;;6368:3;6363:2;6348:18;;6341:31;;;6146:4;;6389:45;;6414:19;;6406:6;6389:45;:::i;:::-;6381:53;5952:488;-1:-1:-1;;;;;;5952:488:1:o;6637:219::-;6786:2;6775:9;6768:21;6749:4;6806:44;6846:2;6835:9;6831:18;6823:6;6806:44;:::i;7268:356::-;7470:2;7452:21;;;7489:18;;;7482:30;7548:34;7543:2;7528:18;;7521:62;7615:2;7600:18;;7268:356::o;9325:128::-;9365:3;9396:1;9392:6;9389:1;9386:13;9383:39;;;9402:18;;:::i;:::-;-1:-1:-1;9438:9:1;;9325:128::o;9458:120::-;9498:1;9524;9514:35;;9529:18;;:::i;:::-;-1:-1:-1;9563:9:1;;9458:120::o;9583:168::-;9623:7;9689:1;9685;9681:6;9677:14;9674:1;9671:21;9666:1;9659:9;9652:17;9648:45;9645:71;;;9696:18;;:::i;:::-;-1:-1:-1;9736:9:1;;9583:168::o;9756:125::-;9796:4;9824:1;9821;9818:8;9815:34;;;9829:18;;:::i;:::-;-1:-1:-1;9866:9:1;;9756:125::o;9886:258::-;9958:1;9968:113;9982:6;9979:1;9976:13;9968:113;;;10058:11;;;10052:18;10039:11;;;10032:39;10004:2;9997:10;9968:113;;;10099:6;10096:1;10093:13;10090:48;;;-1:-1:-1;;10134:1:1;10116:16;;10109:27;9886:258::o;10149:380::-;10228:1;10224:12;;;;10271;;;10292:61;;10346:4;10338:6;10334:17;10324:27;;10292:61;10399:2;10391:6;10388:14;10368:18;10365:38;10362:161;;;10445:10;10440:3;10436:20;10433:1;10426:31;10480:4;10477:1;10470:15;10508:4;10505:1;10498:15;10362:161;;10149:380;;;:::o;10534:135::-;10573:3;-1:-1:-1;;10594:17:1;;10591:43;;;10614:18;;:::i;:::-;-1:-1:-1;10661:1:1;10650:13;;10534:135::o;10674:112::-;10706:1;10732;10722:35;;10737:18;;:::i;:::-;-1:-1:-1;10771:9:1;;10674:112::o;10791:127::-;10852:10;10847:3;10843:20;10840:1;10833:31;10883:4;10880:1;10873:15;10907:4;10904:1;10897:15;10923:127;10984:10;10979:3;10975:20;10972:1;10965:31;11015:4;11012:1;11005:15;11039:4;11036:1;11029:15;11055:127;11116:10;11111:3;11107:20;11104:1;11097:31;11147:4;11144:1;11137:15;11171:4;11168:1;11161:15;11187:127;11248:10;11243:3;11239:20;11236:1;11229:31;11279:4;11276:1;11269:15;11303:4;11300:1;11293:15;11319:131;-1:-1:-1;;;;;;11393:32:1;;11383:43;;11373:71;;11440:1;11437;11430:12

Swarm Source

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