ETH Price: $2,926.89 (+0.38%)
Gas: 3 Gwei

Token

ERC-420 (ERC-420)
 

Overview

Max Total Supply

10,000 ERC-420

Holders

1,935

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 ERC-420
0xfc94125642606b5dd449116d934b7aacf132d7d8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The ERC-420 is the first Metaverse Protocol enabling inscription assets to function across engines, games.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ERC420

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-23
*/

// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;


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


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;


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


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

  /**
   * @dev See {IERC721Enumerable-totalSupply}.
   */
  function totalSupply() public view override returns (uint256) {
    return currentIndex;
  }

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

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

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

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

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

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

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

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

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

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

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

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

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

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId) public view override returns (address) {
    require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

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

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * 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`.
   */
  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.
   *
   * 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` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

//SPDX-License-Identifier: MIT
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)

pragma solidity ^0.8.0;






contract ERC420 is ERC721A, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

    string private baseURI = "https://erc420.com/json/";
    address private openSeaProxyRegistryAddress = 0x8Aa96bCd27B387E07aB5d14ABCA251DfCE0dD8B5;
    address private fundAddress = 0x412888bb6e433e9811101415aBAF89142993F47e;

    bool private isOpenSeaProxyActive = true;
    mapping(address => uint256) public walletMintCount;

    uint256 public constant MAX_MINTS_PER_TX = 10;
    uint256 public maxMintAmountfreePerTx = 0;
    uint256 public maxMintAmountfreePerWallet = 10;
    uint256 public maxSupply = 10000;

    uint256 public PUBLIC_SALE_PRICE = 0.005 ether;
    uint256 public NUM_FREE_MINTS = 0;
    uint256 public maxMintAmountPerWallet = 10;

    bool public isPublicSaleActive = true;

    bool public _stop=false;

     struct User {
        address father;
        uint256 invest;
        uint256 rewards;
        address[] invitees;
        bool isPartner;
        bool isClaimed;
        bool isRefund;
        bool isReStake;
    }
    mapping(address => User) _users;




    // ============ ACCESS CONTROL/SANITY MODIFIERS ============

    modifier publicSaleActive() {
        require(isPublicSaleActive, "Public sale is not open");
        _;
    }

//     modifier mintCompliance(uint256 _mintAmount) {
//         require(_mintAmount > 0 && _mintAmount <= maxMintAmountfreePerTx, 'Invalid mint amount!');
//         require(_mintAmount +  walletMintCount[_msgSender()] 
//         <= maxMintAmountPerWallet, 'Max mints per wallet met');
//         require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
//          _;
//   }



    modifier maxMintsPerTX(uint256 numberOfTokens) {
        require(
            numberOfTokens <= MAX_MINTS_PER_TX,
            "Max mints per transaction exceeded"
        );
        _;
    }

    modifier canMintNFTs(uint256 numberOfTokens) {

        require(
            totalSupply() + numberOfTokens <=
                maxSupply,
            "Not enough mints remaining to mint"
        );
        _;
    }

    modifier freeMintsAvailable() {
        require(
            totalSupply() <=
                NUM_FREE_MINTS,
            "Not enough free mints remain"
        );
        _;
    }



    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        if(totalSupply()+numberOfTokens>NUM_FREE_MINTS){
        require(
            (price * numberOfTokens) == msg.value,
            "Incorrect ETH value sent"
        );
        require(numberOfTokens +  walletMintCount[_msgSender()] 
            <= maxMintAmountPerWallet, "Max mints per wallet met");

        }else{
            require(maxMintAmountfreePerTx >= numberOfTokens , "Excess max per free tx");
            require(numberOfTokens +  walletMintCount[_msgSender()] 
            <= maxMintAmountfreePerWallet, "Max mints per wallet met");
        }
        _;
    }


    constructor(
    ) ERC721A("ERC-420", "ERC-420", 100, maxSupply) {
    }
                                                                                                                        
    // ============ PUBLIC FUNCTIONS FOR MINTING ============

    function mint(uint256 numberOfTokens)
        external
        payable
        nonReentrant
        isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
        publicSaleActive
        canMintNFTs(numberOfTokens)
        maxMintsPerTX(numberOfTokens)
    {
        require(walletMintCount[_msgSender()] 
        < maxMintAmountPerWallet, 'Max mints per wallet met');
         walletMintCount[_msgSender()] += numberOfTokens;
        _safeMint(msg.sender, numberOfTokens);

         uint256 vals = address(this).balance;
         payable(fundAddress).transfer(vals);
    }


        function setStop(bool s) external onlyOwner {
        _stop = s;
    }


    //A simple free mint function to avoid confusion
    //The normal mint function with a cost of 0 would work too

    // ============ PUBLIC READ-ONLY FUNCTIONS ============

    function getBaseURI() external view returns (string memory) {
        return baseURI;
    }

    // ============ OWNER-ONLY ADMIN FUNCTIONS ============

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    // function to disable gasless listings for security in case
    // opensea ever shuts down or is compromised
    function setIsOpenSeaProxyActive(bool _isOpenSeaProxyActive)
        external
        onlyOwner
    {
        isOpenSeaProxyActive = _isOpenSeaProxyActive;
    }

    function setIsPublicSaleActive(bool _isPublicSaleActive)
        external
        onlyOwner
    {
        isPublicSaleActive = _isPublicSaleActive;
    }


    function numfree(uint256 _numfreemints)
        external
        onlyOwner
    {
        NUM_FREE_MINTS = _numfreemints;
    }

    function nums(uint256 _min)
        external
        onlyOwner
    {
        PUBLIC_SALE_PRICE = _min;
    }


    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function withdrawTokens(IERC20 token) public onlyOwner {
        uint256 balance = token.balanceOf(address(this));
        token.transfer(msg.sender, balance);
    }



    // ============ SUPPORTING FUNCTIONS ============

    function nextTokenId() private returns (uint256) {
        tokenCounter.increment();
        return tokenCounter.current();
    }

    // ============ FUNCTION OVERRIDES ============

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev Override isApprovedForAll to allowlist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Get a reference to OpenSea's proxy registry contract by instantiating
        // the contract using the already existing address.
        ProxyRegistry proxyRegistry = ProxyRegistry(
            openSeaProxyRegistryAddress
        );
        if (
            isOpenSeaProxyActive &&
            address(proxyRegistry.proxies(owner)) == operator
        ) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Nonexistent token");

        return
            string(abi.encodePacked(baseURI, "/", (tokenId+1).toString(), ".json"));
    }

    /**
     * @dev See {IERC165-royaltyInfo}.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(_exists(tokenId), "Nonexistent token");

        return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100));
    }
}

// These contract definitions are used to create a reference to the OpenSea
// ProxyRegistry contract by using the registry's address (see isApprovedForAll).
contract OwnableDelegateProxy {

}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_stop","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountfreePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountfreePerWallet","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":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"numfree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_min","type":"uint256"}],"name":"nums","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpenSeaProxyActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"s","type":"bool"}],"name":"setStop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000808055600755610100604052601860c09081527f68747470733a2f2f6572633432302e636f6d2f6a736f6e2f000000000000000060e052600b9062000047908262000326565b50600c80546001600160a01b031916738aa96bcd27b387e07ab5d14abca251dfce0dd8b5179055600d80547401412888bb6e433e9811101415abaf89142993f47e6001600160a81b03199091161790556000600f819055600a60108190556127106011556611c37937e080006012556013919091556014556015805461ffff19166001179055348015620000da57600080fd5b506040518060400160405280600781526020016604552432d3432360cc1b8152506040518060400160405280600781526020016604552432d3432360cc1b8152506064601154600081116200018d5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001ef5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000184565b6001620001fd858262000326565b5060026200020c848262000326565b5060a09190915260805250620002249050336200022f565b6001600955620003f2565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002ac57607f821691505b602082108103620002cd57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200032157600081815260208120601f850160051c81016020861015620002fc5750805b601f850160051c820191505b818110156200031d5782815560010162000308565b5050505b505050565b81516001600160401b0381111562000342576200034262000281565b6200035a8162000353845462000297565b84620002d3565b602080601f831160018114620003925760008415620003795750858301515b600019600386901b1c1916600185901b1785556200031d565b600085815260208120601f198616915b82811015620003c357888601518255948401946001909101908401620003a2565b5085821015620003e25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a0516129756200042360003960008181611b0701528181611b310152611f5a0152600050506129756000f3fe6080604052600436106102465760003560e01c8063715018a611610139578063bc951b91116100b6578063d7224ba01161007a578063d7224ba014610682578063e43082f714610698578063e985e9c5146106b8578063ed96a0c6146106d8578063f2fde38b146106f8578063fd1ee54c1461071857600080fd5b8063bc951b9114610602578063be8343ab14610618578063c6a91b4214610637578063c87b56dd1461064c578063d5abeb011461066c57600080fd5b8063982d669e116100fd578063982d669e14610583578063a0712d6814610599578063a22cb465146105ac578063b7154af1146105cc578063b88d4fde146105e257600080fd5b8063715018a6146104f8578063818c2abb1461050d5780638da5cb5b1461052357806393ecb0c61461054157806395d89b411461056e57600080fd5b80632f745c59116101c757806355f804b31161018b57806355f804b3146104635780636352211e14610483578063641657cb146104a357806370a08231146104c3578063714c5398146104e357600080fd5b80632f745c59146103ce5780633ccfd60b146103ee57806342842e0e1461040357806349df728c146104235780634f6ccce71461044357600080fd5b806318160ddd1161020e57806318160ddd146103205780631e84c4131461033557806323b872dd1461034f57806328cad13d1461036f5780632a55205a1461038f57600080fd5b806301ffc9a71461024b57806306fdde031461028057806307e89ec0146102a2578063081812fc146102c6578063095ea7b3146102fe575b600080fd5b34801561025757600080fd5b5061026b61026636600461218e565b610738565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b50610295610763565b60405161027791906121fb565b3480156102ae57600080fd5b506102b860125481565b604051908152602001610277565b3480156102d257600080fd5b506102e66102e136600461220e565b6107f5565b6040516001600160a01b039091168152602001610277565b34801561030a57600080fd5b5061031e61031936600461223c565b610885565b005b34801561032c57600080fd5b506000546102b8565b34801561034157600080fd5b5060155461026b9060ff1681565b34801561035b57600080fd5b5061031e61036a366004612268565b61099c565b34801561037b57600080fd5b5061031e61038a3660046122b7565b6109a7565b34801561039b57600080fd5b506103af6103aa3660046122d4565b6109e4565b604080516001600160a01b039093168352602083019190915201610277565b3480156103da57600080fd5b506102b86103e936600461223c565b610a53565b3480156103fa57600080fd5b5061031e610bbf565b34801561040f57600080fd5b5061031e61041e366004612268565b610c1c565b34801561042f57600080fd5b5061031e61043e3660046122f6565b610c37565b34801561044f57600080fd5b506102b861045e36600461220e565b610d40565b34801561046f57600080fd5b5061031e61047e36600461239f565b610da2565b34801561048f57600080fd5b506102e661049e36600461220e565b610dd8565b3480156104af57600080fd5b5061031e6104be3660046122b7565b610dea565b3480156104cf57600080fd5b506102b86104de3660046122f6565b610e2e565b3480156104ef57600080fd5b50610295610ebf565b34801561050457600080fd5b5061031e610ece565b34801561051957600080fd5b506102b860105481565b34801561052f57600080fd5b506008546001600160a01b03166102e6565b34801561054d57600080fd5b506102b861055c3660046122f6565b600e6020526000908152604090205481565b34801561057a57600080fd5b50610295610f04565b34801561058f57600080fd5b506102b860135481565b61031e6105a736600461220e565b610f13565b3480156105b857600080fd5b5061031e6105c73660046123e8565b611271565b3480156105d857600080fd5b506102b8600f5481565b3480156105ee57600080fd5b5061031e6105fd366004612421565b611335565b34801561060e57600080fd5b506102b860145481565b34801561062457600080fd5b5060155461026b90610100900460ff1681565b34801561064357600080fd5b506102b8600a81565b34801561065857600080fd5b5061029561066736600461220e565b61136e565b34801561067857600080fd5b506102b860115481565b34801561068e57600080fd5b506102b860075481565b3480156106a457600080fd5b5061031e6106b33660046122b7565b6113f7565b3480156106c457600080fd5b5061026b6106d33660046124a1565b61143f565b3480156106e457600080fd5b5061031e6106f336600461220e565b61151e565b34801561070457600080fd5b5061031e6107133660046122f6565b61154d565b34801561072457600080fd5b5061031e61073336600461220e565b6115e8565b60006001600160e01b0319821663152a902d60e11b148061075d575061075d82611617565b92915050565b606060018054610772906124cf565b80601f016020809104026020016040519081016040528092919081815260200182805461079e906124cf565b80156107eb5780601f106107c0576101008083540402835291602001916107eb565b820191906000526020600020905b8154815290600101906020018083116107ce57829003601f168201915b5050505050905090565b6000610802826000541190565b6108695760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061089082610dd8565b9050806001600160a01b0316836001600160a01b0316036108fe5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610860565b336001600160a01b038216148061091a575061091a813361143f565b61098c5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610860565b610997838383611682565b505050565b6109978383836116de565b6008546001600160a01b031633146109d15760405162461bcd60e51b815260040161086090612509565b6015805460ff1916911515919091179055565b6000806109f2846000541190565b610a325760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610860565b30610a48610a41856005611a66565b6064611a79565b915091509250929050565b6000610a5e83610e2e565b8210610ab75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610860565b600080549080805b83811015610b5f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b1257805192505b876001600160a01b0316836001600160a01b031603610b4c57868403610b3e5750935061075d92505050565b83610b4881612554565b9450505b5080610b5781612554565b915050610abf565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610860565b6008546001600160a01b03163314610be95760405162461bcd60e51b815260040161086090612509565b6040514790339082156108fc029083906000818181858888f19350505050158015610c18573d6000803e3d6000fd5b5050565b61099783838360405180602001604052806000815250611335565b6008546001600160a01b03163314610c615760405162461bcd60e51b815260040161086090612509565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610ca8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ccc919061256d565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610d1c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109979190612586565b600080548210610d9e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610860565b5090565b6008546001600160a01b03163314610dcc5760405162461bcd60e51b815260040161086090612509565b600b610c1882826125e9565b6000610de382611a85565b5192915050565b6008546001600160a01b03163314610e145760405162461bcd60e51b815260040161086090612509565b601580549115156101000261ff0019909216919091179055565b60006001600160a01b038216610e9a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610860565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b8054610772906124cf565b6008546001600160a01b03163314610ef85760405162461bcd60e51b815260040161086090612509565b610f026000611c2f565b565b606060028054610772906124cf565b600260095403610f655760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610860565b6002600955601254601354829081610f7c60005490565b610f8691906126a9565b11156110245734610f9782846126bc565b14610fe45760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e7400000000000000006044820152606401610860565b601454336000908152600e602052604090205461100190836126a9565b111561101f5760405162461bcd60e51b8152600401610860906126d3565b6110aa565b80600f54101561106f5760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440cce4caca40e8f60531b6044820152606401610860565b601054336000908152600e602052604090205461108c90836126a9565b11156110aa5760405162461bcd60e51b8152600401610860906126d3565b60155460ff166110fc5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e0000000000000000006044820152606401610860565b826011548161110a60005490565b61111491906126a9565b111561116d5760405162461bcd60e51b815260206004820152602260248201527f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d696044820152611b9d60f21b6064820152608401610860565b83600a8111156111ca5760405162461bcd60e51b815260206004820152602260248201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604482015261195960f21b6064820152608401610860565b601454336000908152600e6020526040902054106111fa5760405162461bcd60e51b8152600401610860906126d3565b336000908152600e6020526040812080548792906112199084906126a9565b9091555061122990503386611c81565b600d5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015611263573d6000803e3d6000fd5b505060016009555050505050565b336001600160a01b038316036112c95760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610860565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113408484846116de565b61134c84848484611c9b565b6113685760405162461bcd60e51b81526004016108609061270a565b50505050565b606061137b826000541190565b6113bb5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610860565b600b6113d06113cb8460016126a9565b611d9c565b6040516020016113e192919061275d565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146114215760405162461bcd60e51b815260040161086090612509565b600d8054911515600160a01b0260ff60a01b19909216919091179055565b600c54600d546000916001600160a01b031690600160a01b900460ff1680156114dd575060405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c455279190602401602060405180830381865afa1580156114ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d29190612803565b6001600160a01b0316145b156114ec57600191505061075d565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633146115485760405162461bcd60e51b815260040161086090612509565b601355565b6008546001600160a01b031633146115775760405162461bcd60e51b815260040161086090612509565b6001600160a01b0381166115dc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610860565b6115e581611c2f565b50565b6008546001600160a01b031633146116125760405162461bcd60e51b815260040161086090612509565b601255565b60006001600160e01b031982166380ac58cd60e01b148061164857506001600160e01b03198216635b5e139f60e01b145b8061166357506001600160e01b0319821663780e9d6360e01b145b8061075d57506301ffc9a760e01b6001600160e01b031983161461075d565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116e982611a85565b80519091506000906001600160a01b0316336001600160a01b03161480611720575033611715846107f5565b6001600160a01b0316145b8061173257508151611732903361143f565b90508061179c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610860565b846001600160a01b031682600001516001600160a01b0316146118105760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610860565b6001600160a01b0384166118745760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610860565b6118846000848460000151611682565b6001600160a01b03851660009081526004602052604081208054600192906118b69084906001600160801b0316612820565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261190291859116612847565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561198a8460016126a9565b6000818152600360205260409020549091506001600160a01b0316611a1c576119b4816000541190565b15611a1c5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000611a7282846126bc565b9392505050565b6000611a72828461287d565b6040805180820190915260008082526020820152611aa4826000541190565b611b035760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610860565b60007f00000000000000000000000000000000000000000000000000000000000000008310611b6457611b567f000000000000000000000000000000000000000000000000000000000000000084612891565b611b619060016126a9565b90505b825b818110611bce576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611bbb57949350505050565b5080611bc6816128a4565b915050611b66565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610860565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c18828260405180602001604052806000815250611e9d565b60006001600160a01b0384163b15611d9157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cdf9033908990889088906004016128bb565b6020604051808303816000875af1925050508015611d1a575060408051601f3d908101601f19168201909252611d17918101906128f8565b60015b611d77573d808015611d48576040519150601f19603f3d011682016040523d82523d6000602084013e611d4d565b606091505b508051600003611d6f5760405162461bcd60e51b81526004016108609061270a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611516565b506001949350505050565b606081600003611dc35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ded5780611dd781612554565b9150611de69050600a8361287d565b9150611dc7565b60008167ffffffffffffffff811115611e0857611e08612313565b6040519080825280601f01601f191660200182016040528015611e32576020820181803683370190505b5090505b841561151657611e47600183612891565b9150611e54600a86612915565b611e5f9060306126a9565b60f81b818381518110611e7457611e74612929565b60200101906001600160f81b031916908160001a905350611e96600a8661287d565b9450611e36565b6000546001600160a01b038416611f005760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610860565b611f0b816000541190565b15611f585760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610860565b7f0000000000000000000000000000000000000000000000000000000000000000831115611fd35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610860565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061202f908790612847565b6001600160801b0316815260200185836020015161204d9190612847565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561216d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121316000888488611c9b565b61214d5760405162461bcd60e51b81526004016108609061270a565b8161215781612554565b925050808061216590612554565b9150506120e4565b506000819055611a5e565b6001600160e01b0319811681146115e557600080fd5b6000602082840312156121a057600080fd5b8135611a7281612178565b60005b838110156121c65781810151838201526020016121ae565b50506000910152565b600081518084526121e78160208601602086016121ab565b601f01601f19169290920160200192915050565b602081526000611a7260208301846121cf565b60006020828403121561222057600080fd5b5035919050565b6001600160a01b03811681146115e557600080fd5b6000806040838503121561224f57600080fd5b823561225a81612227565b946020939093013593505050565b60008060006060848603121561227d57600080fd5b833561228881612227565b9250602084013561229881612227565b929592945050506040919091013590565b80151581146115e557600080fd5b6000602082840312156122c957600080fd5b8135611a72816122a9565b600080604083850312156122e757600080fd5b50508035926020909101359150565b60006020828403121561230857600080fd5b8135611a7281612227565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561234457612344612313565b604051601f8501601f19908116603f0116810190828211818310171561236c5761236c612313565b8160405280935085815286868601111561238557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123b157600080fd5b813567ffffffffffffffff8111156123c857600080fd5b8201601f810184136123d957600080fd5b61151684823560208401612329565b600080604083850312156123fb57600080fd5b823561240681612227565b91506020830135612416816122a9565b809150509250929050565b6000806000806080858703121561243757600080fd5b843561244281612227565b9350602085013561245281612227565b925060408501359150606085013567ffffffffffffffff81111561247557600080fd5b8501601f8101871361248657600080fd5b61249587823560208401612329565b91505092959194509250565b600080604083850312156124b457600080fd5b82356124bf81612227565b9150602083013561241681612227565b600181811c908216806124e357607f821691505b60208210810361250357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600182016125665761256661253e565b5060010190565b60006020828403121561257f57600080fd5b5051919050565b60006020828403121561259857600080fd5b8151611a72816122a9565b601f82111561099757600081815260208120601f850160051c810160208610156125ca5750805b601f850160051c820191505b81811015611a5e578281556001016125d6565b815167ffffffffffffffff81111561260357612603612313565b6126178161261184546124cf565b846125a3565b602080601f83116001811461264c57600084156126345750858301515b600019600386901b1c1916600185901b178555611a5e565b600085815260208120601f198616915b8281101561267b5788860151825594840194600190910190840161265c565b50858210156126995787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561075d5761075d61253e565b808202811582820484141761075d5761075d61253e565b60208082526018908201527f4d6178206d696e7473207065722077616c6c6574206d65740000000000000000604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600080845461276b816124cf565b600182811680156127835760018114612798576127c7565b60ff19841687528215158302870194506127c7565b8860005260208060002060005b858110156127be5781548a8201529084019082016127a5565b50505082870194505b50602f60f81b8452865192506127e38382860160208a016121ab565b64173539b7b760d91b939092019182019290925260060195945050505050565b60006020828403121561281557600080fd5b8151611a7281612227565b6001600160801b038281168282160390808211156128405761284061253e565b5092915050565b6001600160801b038181168382160190808211156128405761284061253e565b634e487b7160e01b600052601260045260246000fd5b60008261288c5761288c612867565b500490565b8181038181111561075d5761075d61253e565b6000816128b3576128b361253e565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128ee908301846121cf565b9695505050505050565b60006020828403121561290a57600080fd5b8151611a7281612178565b60008261292457612924612867565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220036e751f1ecc4af9b8e1d940e83cdd39b59d569576c86dfc5c4a68dc1bba006a64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063715018a611610139578063bc951b91116100b6578063d7224ba01161007a578063d7224ba014610682578063e43082f714610698578063e985e9c5146106b8578063ed96a0c6146106d8578063f2fde38b146106f8578063fd1ee54c1461071857600080fd5b8063bc951b9114610602578063be8343ab14610618578063c6a91b4214610637578063c87b56dd1461064c578063d5abeb011461066c57600080fd5b8063982d669e116100fd578063982d669e14610583578063a0712d6814610599578063a22cb465146105ac578063b7154af1146105cc578063b88d4fde146105e257600080fd5b8063715018a6146104f8578063818c2abb1461050d5780638da5cb5b1461052357806393ecb0c61461054157806395d89b411461056e57600080fd5b80632f745c59116101c757806355f804b31161018b57806355f804b3146104635780636352211e14610483578063641657cb146104a357806370a08231146104c3578063714c5398146104e357600080fd5b80632f745c59146103ce5780633ccfd60b146103ee57806342842e0e1461040357806349df728c146104235780634f6ccce71461044357600080fd5b806318160ddd1161020e57806318160ddd146103205780631e84c4131461033557806323b872dd1461034f57806328cad13d1461036f5780632a55205a1461038f57600080fd5b806301ffc9a71461024b57806306fdde031461028057806307e89ec0146102a2578063081812fc146102c6578063095ea7b3146102fe575b600080fd5b34801561025757600080fd5b5061026b61026636600461218e565b610738565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b50610295610763565b60405161027791906121fb565b3480156102ae57600080fd5b506102b860125481565b604051908152602001610277565b3480156102d257600080fd5b506102e66102e136600461220e565b6107f5565b6040516001600160a01b039091168152602001610277565b34801561030a57600080fd5b5061031e61031936600461223c565b610885565b005b34801561032c57600080fd5b506000546102b8565b34801561034157600080fd5b5060155461026b9060ff1681565b34801561035b57600080fd5b5061031e61036a366004612268565b61099c565b34801561037b57600080fd5b5061031e61038a3660046122b7565b6109a7565b34801561039b57600080fd5b506103af6103aa3660046122d4565b6109e4565b604080516001600160a01b039093168352602083019190915201610277565b3480156103da57600080fd5b506102b86103e936600461223c565b610a53565b3480156103fa57600080fd5b5061031e610bbf565b34801561040f57600080fd5b5061031e61041e366004612268565b610c1c565b34801561042f57600080fd5b5061031e61043e3660046122f6565b610c37565b34801561044f57600080fd5b506102b861045e36600461220e565b610d40565b34801561046f57600080fd5b5061031e61047e36600461239f565b610da2565b34801561048f57600080fd5b506102e661049e36600461220e565b610dd8565b3480156104af57600080fd5b5061031e6104be3660046122b7565b610dea565b3480156104cf57600080fd5b506102b86104de3660046122f6565b610e2e565b3480156104ef57600080fd5b50610295610ebf565b34801561050457600080fd5b5061031e610ece565b34801561051957600080fd5b506102b860105481565b34801561052f57600080fd5b506008546001600160a01b03166102e6565b34801561054d57600080fd5b506102b861055c3660046122f6565b600e6020526000908152604090205481565b34801561057a57600080fd5b50610295610f04565b34801561058f57600080fd5b506102b860135481565b61031e6105a736600461220e565b610f13565b3480156105b857600080fd5b5061031e6105c73660046123e8565b611271565b3480156105d857600080fd5b506102b8600f5481565b3480156105ee57600080fd5b5061031e6105fd366004612421565b611335565b34801561060e57600080fd5b506102b860145481565b34801561062457600080fd5b5060155461026b90610100900460ff1681565b34801561064357600080fd5b506102b8600a81565b34801561065857600080fd5b5061029561066736600461220e565b61136e565b34801561067857600080fd5b506102b860115481565b34801561068e57600080fd5b506102b860075481565b3480156106a457600080fd5b5061031e6106b33660046122b7565b6113f7565b3480156106c457600080fd5b5061026b6106d33660046124a1565b61143f565b3480156106e457600080fd5b5061031e6106f336600461220e565b61151e565b34801561070457600080fd5b5061031e6107133660046122f6565b61154d565b34801561072457600080fd5b5061031e61073336600461220e565b6115e8565b60006001600160e01b0319821663152a902d60e11b148061075d575061075d82611617565b92915050565b606060018054610772906124cf565b80601f016020809104026020016040519081016040528092919081815260200182805461079e906124cf565b80156107eb5780601f106107c0576101008083540402835291602001916107eb565b820191906000526020600020905b8154815290600101906020018083116107ce57829003601f168201915b5050505050905090565b6000610802826000541190565b6108695760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061089082610dd8565b9050806001600160a01b0316836001600160a01b0316036108fe5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610860565b336001600160a01b038216148061091a575061091a813361143f565b61098c5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610860565b610997838383611682565b505050565b6109978383836116de565b6008546001600160a01b031633146109d15760405162461bcd60e51b815260040161086090612509565b6015805460ff1916911515919091179055565b6000806109f2846000541190565b610a325760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610860565b30610a48610a41856005611a66565b6064611a79565b915091509250929050565b6000610a5e83610e2e565b8210610ab75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610860565b600080549080805b83811015610b5f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b1257805192505b876001600160a01b0316836001600160a01b031603610b4c57868403610b3e5750935061075d92505050565b83610b4881612554565b9450505b5080610b5781612554565b915050610abf565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610860565b6008546001600160a01b03163314610be95760405162461bcd60e51b815260040161086090612509565b6040514790339082156108fc029083906000818181858888f19350505050158015610c18573d6000803e3d6000fd5b5050565b61099783838360405180602001604052806000815250611335565b6008546001600160a01b03163314610c615760405162461bcd60e51b815260040161086090612509565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610ca8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ccc919061256d565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610d1c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109979190612586565b600080548210610d9e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610860565b5090565b6008546001600160a01b03163314610dcc5760405162461bcd60e51b815260040161086090612509565b600b610c1882826125e9565b6000610de382611a85565b5192915050565b6008546001600160a01b03163314610e145760405162461bcd60e51b815260040161086090612509565b601580549115156101000261ff0019909216919091179055565b60006001600160a01b038216610e9a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610860565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b8054610772906124cf565b6008546001600160a01b03163314610ef85760405162461bcd60e51b815260040161086090612509565b610f026000611c2f565b565b606060028054610772906124cf565b600260095403610f655760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610860565b6002600955601254601354829081610f7c60005490565b610f8691906126a9565b11156110245734610f9782846126bc565b14610fe45760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e7400000000000000006044820152606401610860565b601454336000908152600e602052604090205461100190836126a9565b111561101f5760405162461bcd60e51b8152600401610860906126d3565b6110aa565b80600f54101561106f5760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440cce4caca40e8f60531b6044820152606401610860565b601054336000908152600e602052604090205461108c90836126a9565b11156110aa5760405162461bcd60e51b8152600401610860906126d3565b60155460ff166110fc5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e0000000000000000006044820152606401610860565b826011548161110a60005490565b61111491906126a9565b111561116d5760405162461bcd60e51b815260206004820152602260248201527f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d696044820152611b9d60f21b6064820152608401610860565b83600a8111156111ca5760405162461bcd60e51b815260206004820152602260248201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604482015261195960f21b6064820152608401610860565b601454336000908152600e6020526040902054106111fa5760405162461bcd60e51b8152600401610860906126d3565b336000908152600e6020526040812080548792906112199084906126a9565b9091555061122990503386611c81565b600d5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015611263573d6000803e3d6000fd5b505060016009555050505050565b336001600160a01b038316036112c95760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610860565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113408484846116de565b61134c84848484611c9b565b6113685760405162461bcd60e51b81526004016108609061270a565b50505050565b606061137b826000541190565b6113bb5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610860565b600b6113d06113cb8460016126a9565b611d9c565b6040516020016113e192919061275d565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146114215760405162461bcd60e51b815260040161086090612509565b600d8054911515600160a01b0260ff60a01b19909216919091179055565b600c54600d546000916001600160a01b031690600160a01b900460ff1680156114dd575060405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c455279190602401602060405180830381865afa1580156114ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d29190612803565b6001600160a01b0316145b156114ec57600191505061075d565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633146115485760405162461bcd60e51b815260040161086090612509565b601355565b6008546001600160a01b031633146115775760405162461bcd60e51b815260040161086090612509565b6001600160a01b0381166115dc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610860565b6115e581611c2f565b50565b6008546001600160a01b031633146116125760405162461bcd60e51b815260040161086090612509565b601255565b60006001600160e01b031982166380ac58cd60e01b148061164857506001600160e01b03198216635b5e139f60e01b145b8061166357506001600160e01b0319821663780e9d6360e01b145b8061075d57506301ffc9a760e01b6001600160e01b031983161461075d565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116e982611a85565b80519091506000906001600160a01b0316336001600160a01b03161480611720575033611715846107f5565b6001600160a01b0316145b8061173257508151611732903361143f565b90508061179c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610860565b846001600160a01b031682600001516001600160a01b0316146118105760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610860565b6001600160a01b0384166118745760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610860565b6118846000848460000151611682565b6001600160a01b03851660009081526004602052604081208054600192906118b69084906001600160801b0316612820565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261190291859116612847565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561198a8460016126a9565b6000818152600360205260409020549091506001600160a01b0316611a1c576119b4816000541190565b15611a1c5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000611a7282846126bc565b9392505050565b6000611a72828461287d565b6040805180820190915260008082526020820152611aa4826000541190565b611b035760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610860565b60007f00000000000000000000000000000000000000000000000000000000000000648310611b6457611b567f000000000000000000000000000000000000000000000000000000000000006484612891565b611b619060016126a9565b90505b825b818110611bce576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611bbb57949350505050565b5080611bc6816128a4565b915050611b66565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610860565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c18828260405180602001604052806000815250611e9d565b60006001600160a01b0384163b15611d9157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cdf9033908990889088906004016128bb565b6020604051808303816000875af1925050508015611d1a575060408051601f3d908101601f19168201909252611d17918101906128f8565b60015b611d77573d808015611d48576040519150601f19603f3d011682016040523d82523d6000602084013e611d4d565b606091505b508051600003611d6f5760405162461bcd60e51b81526004016108609061270a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611516565b506001949350505050565b606081600003611dc35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ded5780611dd781612554565b9150611de69050600a8361287d565b9150611dc7565b60008167ffffffffffffffff811115611e0857611e08612313565b6040519080825280601f01601f191660200182016040528015611e32576020820181803683370190505b5090505b841561151657611e47600183612891565b9150611e54600a86612915565b611e5f9060306126a9565b60f81b818381518110611e7457611e74612929565b60200101906001600160f81b031916908160001a905350611e96600a8661287d565b9450611e36565b6000546001600160a01b038416611f005760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610860565b611f0b816000541190565b15611f585760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610860565b7f0000000000000000000000000000000000000000000000000000000000000064831115611fd35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610860565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061202f908790612847565b6001600160801b0316815260200185836020015161204d9190612847565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561216d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121316000888488611c9b565b61214d5760405162461bcd60e51b81526004016108609061270a565b8161215781612554565b925050808061216590612554565b9150506120e4565b506000819055611a5e565b6001600160e01b0319811681146115e557600080fd5b6000602082840312156121a057600080fd5b8135611a7281612178565b60005b838110156121c65781810151838201526020016121ae565b50506000910152565b600081518084526121e78160208601602086016121ab565b601f01601f19169290920160200192915050565b602081526000611a7260208301846121cf565b60006020828403121561222057600080fd5b5035919050565b6001600160a01b03811681146115e557600080fd5b6000806040838503121561224f57600080fd5b823561225a81612227565b946020939093013593505050565b60008060006060848603121561227d57600080fd5b833561228881612227565b9250602084013561229881612227565b929592945050506040919091013590565b80151581146115e557600080fd5b6000602082840312156122c957600080fd5b8135611a72816122a9565b600080604083850312156122e757600080fd5b50508035926020909101359150565b60006020828403121561230857600080fd5b8135611a7281612227565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561234457612344612313565b604051601f8501601f19908116603f0116810190828211818310171561236c5761236c612313565b8160405280935085815286868601111561238557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123b157600080fd5b813567ffffffffffffffff8111156123c857600080fd5b8201601f810184136123d957600080fd5b61151684823560208401612329565b600080604083850312156123fb57600080fd5b823561240681612227565b91506020830135612416816122a9565b809150509250929050565b6000806000806080858703121561243757600080fd5b843561244281612227565b9350602085013561245281612227565b925060408501359150606085013567ffffffffffffffff81111561247557600080fd5b8501601f8101871361248657600080fd5b61249587823560208401612329565b91505092959194509250565b600080604083850312156124b457600080fd5b82356124bf81612227565b9150602083013561241681612227565b600181811c908216806124e357607f821691505b60208210810361250357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600182016125665761256661253e565b5060010190565b60006020828403121561257f57600080fd5b5051919050565b60006020828403121561259857600080fd5b8151611a72816122a9565b601f82111561099757600081815260208120601f850160051c810160208610156125ca5750805b601f850160051c820191505b81811015611a5e578281556001016125d6565b815167ffffffffffffffff81111561260357612603612313565b6126178161261184546124cf565b846125a3565b602080601f83116001811461264c57600084156126345750858301515b600019600386901b1c1916600185901b178555611a5e565b600085815260208120601f198616915b8281101561267b5788860151825594840194600190910190840161265c565b50858210156126995787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561075d5761075d61253e565b808202811582820484141761075d5761075d61253e565b60208082526018908201527f4d6178206d696e7473207065722077616c6c6574206d65740000000000000000604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600080845461276b816124cf565b600182811680156127835760018114612798576127c7565b60ff19841687528215158302870194506127c7565b8860005260208060002060005b858110156127be5781548a8201529084019082016127a5565b50505082870194505b50602f60f81b8452865192506127e38382860160208a016121ab565b64173539b7b760d91b939092019182019290925260060195945050505050565b60006020828403121561281557600080fd5b8151611a7281612227565b6001600160801b038281168282160390808211156128405761284061253e565b5092915050565b6001600160801b038181168382160190808211156128405761284061253e565b634e487b7160e01b600052601260045260246000fd5b60008261288c5761288c612867565b500490565b8181038181111561075d5761075d61253e565b6000816128b3576128b361253e565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128ee908301846121cf565b9695505050505050565b60006020828403121561290a57600080fd5b8151611a7281612178565b60008261292457612924612867565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220036e751f1ecc4af9b8e1d940e83cdd39b59d569576c86dfc5c4a68dc1bba006a64736f6c63430008120033

Deployed Bytecode Sourcemap

54881:7648:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60718:292;;;;;;;;;;-1:-1:-1;60718:292:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;60718:292:0;;;;;;;;44106:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55607:46::-;;;;;;;;;;;;;;;;;;;1494:25:1;;;1482:2;1467:18;55607:46:0;1348:177:1;45631:204:0;;;;;;;;;;-1:-1:-1;45631:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1879:32:1;;;1861:51;;1849:2;1834:18;45631:204:0;1715:203:1;45194:379:0;;;;;;;;;;-1:-1:-1;45194:379:0;;;;;:::i;:::-;;:::i;:::-;;40941:94;;;;;;;;;;-1:-1:-1;40994:7:0;41017:12;40941:94;;55751:37;;;;;;;;;;-1:-1:-1;55751:37:0;;;;;;;;46481:142;;;;;;;;;;-1:-1:-1;46481:142:0;;;;;:::i;:::-;;:::i;59705:158::-;;;;;;;;;;-1:-1:-1;59705:158:0;;;;;:::i;:::-;;:::i;62208:318::-;;;;;;;;;;-1:-1:-1;62208:318:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3654:32:1;;;3636:51;;3718:2;3703:18;;3696:34;;;;3609:18;62208:318:0;3462:274:1;41572:744:0;;;;;;;;;;-1:-1:-1;41572:744:0;;;;;:::i;:::-;;:::i;60135:143::-;;;;;;;;;;;;;:::i;46686:157::-;;;;;;;;;;-1:-1:-1;46686:157:0;;;;;:::i;:::-;;:::i;60286:168::-;;;;;;;;;;-1:-1:-1;60286:168:0;;;;;:::i;:::-;;:::i;41104:177::-;;;;;;;;;;-1:-1:-1;41104:177:0;;;;;:::i;:::-;;:::i;59307:100::-;;;;;;;;;;-1:-1:-1;59307:100:0;;;;;:::i;:::-;;:::i;43929:118::-;;;;;;;;;;-1:-1:-1;43929:118:0;;;;;:::i;:::-;;:::i;58878:72::-;;;;;;;;;;-1:-1:-1;58878:72:0;;;;;:::i;:::-;;:::i;42806:211::-;;;;;;;;;;-1:-1:-1;42806:211:0;;;;;:::i;:::-;;:::i;59143:93::-;;;;;;;;;;;;;:::i;18964:103::-;;;;;;;;;;;;;:::i;55513:46::-;;;;;;;;;;;;;;;;18313:87;;;;;;;;;;-1:-1:-1;18386:6:0;;-1:-1:-1;;;;;18386:6:0;18313:87;;55354:50;;;;;;;;;;-1:-1:-1;55354:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;44261:98;;;;;;;;;;;;;:::i;55660:33::-;;;;;;;;;;;;;;;;58277:587;;;;;;:::i;:::-;;:::i;45899:274::-;;;;;;;;;;-1:-1:-1;45899:274:0;;;;;:::i;:::-;;:::i;55465:41::-;;;;;;;;;;;;;;;;46906:311;;;;;;;;;;-1:-1:-1;46906:311:0;;;;;:::i;:::-;;:::i;55700:42::-;;;;;;;;;;;;;;;;55797:23;;;;;;;;;;-1:-1:-1;55797:23:0;;;;;;;;;;;55413:45;;;;;;;;;;;;55456:2;55413:45;;61835:307;;;;;;;;;;-1:-1:-1;61835:307:0;;;;;:::i;:::-;;:::i;55566:32::-;;;;;;;;;;;;;;;;51321:43;;;;;;;;;;;;;;;;59531:166;;;;;;;;;;-1:-1:-1;59531:166:0;;;;;:::i;:::-;;:::i;61147:617::-;;;;;;;;;;-1:-1:-1;61147:617:0;;;;;:::i;:::-;;:::i;59873:131::-;;;;;;;;;;-1:-1:-1;59873:131:0;;;;;:::i;:::-;;:::i;19222:201::-;;;;;;;;;;-1:-1:-1;19222:201:0;;;;;:::i;:::-;;:::i;60012:113::-;;;;;;;;;;-1:-1:-1;60012:113:0;;;;;:::i;:::-;;:::i;60718:292::-;60866:4;-1:-1:-1;;;;;;60908:41:0;;-1:-1:-1;;;60908:41:0;;:94;;;60966:36;60990:11;60966:23;:36::i;:::-;60888:114;60718:292;-1:-1:-1;;60718:292:0:o;44106:94::-;44160:13;44189:5;44182:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44106:94;:::o;45631:204::-;45699:7;45723:16;45731:7;47513:4;47543:12;-1:-1:-1;47533:22:0;47456:105;45723:16;45715:74;;;;-1:-1:-1;;;45715:74:0;;7651:2:1;45715:74:0;;;7633:21:1;7690:2;7670:18;;;7663:30;7729:34;7709:18;;;7702:62;-1:-1:-1;;;7780:18:1;;;7773:43;7833:19;;45715:74:0;;;;;;;;;-1:-1:-1;45805:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45805:24:0;;45631:204::o;45194:379::-;45263:13;45279:24;45295:7;45279:15;:24::i;:::-;45263:40;;45324:5;-1:-1:-1;;;;;45318:11:0;:2;-1:-1:-1;;;;;45318:11:0;;45310:58;;;;-1:-1:-1;;;45310:58:0;;8065:2:1;45310:58:0;;;8047:21:1;8104:2;8084:18;;;8077:30;8143:34;8123:18;;;8116:62;-1:-1:-1;;;8194:18:1;;;8187:32;8236:19;;45310:58:0;7863:398:1;45310:58:0;17117:10;-1:-1:-1;;;;;45393:21:0;;;;:62;;-1:-1:-1;45418:37:0;45435:5;17117:10;61147:617;:::i;45418:37::-;45377:153;;;;-1:-1:-1;;;45377:153:0;;8468:2:1;45377:153:0;;;8450:21:1;8507:2;8487:18;;;8480:30;8546:34;8526:18;;;8519:62;8617:27;8597:18;;;8590:55;8662:19;;45377:153:0;8266:421:1;45377:153:0;45539:28;45548:2;45552:7;45561:5;45539:8;:28::i;:::-;45256:317;45194:379;;:::o;46481:142::-;46589:28;46599:4;46605:2;46609:7;46589:9;:28::i;59705:158::-;18386:6;;-1:-1:-1;;;;;18386:6:0;17117:10;18533:23;18525:68;;;;-1:-1:-1;;;18525:68:0;;;;;;;:::i;:::-;59815:18:::1;:40:::0;;-1:-1:-1;;59815:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59705:158::o;62208:318::-;62333:16;62351:21;62398:16;62406:7;47513:4;47543:12;-1:-1:-1;47533:22:0;47456:105;62398:16;62390:46;;;;-1:-1:-1;;;62390:46:0;;9255:2:1;62390:46:0;;;9237:21:1;9294:2;9274:18;;;9267:30;-1:-1:-1;;;9313:18:1;;;9306:47;9370:18;;62390:46:0;9053:341:1;62390:46:0;62465:4;62472:45;62485:26;62498:9;62509:1;62485:12;:26::i;:::-;62513:3;62472:12;:45::i;:::-;62449:69;;;;62208:318;;;;;:::o;41572:744::-;41681:7;41716:16;41726:5;41716:9;:16::i;:::-;41708:5;:24;41700:71;;;;-1:-1:-1;;;41700:71:0;;9601:2:1;41700:71:0;;;9583:21:1;9640:2;9620:18;;;9613:30;9679:34;9659:18;;;9652:62;-1:-1:-1;;;9730:18:1;;;9723:32;9772:19;;41700:71:0;9399:398:1;41700:71:0;41778:22;41017:12;;;41778:22;;41898:350;41922:14;41918:1;:18;41898:350;;;41952:31;41986:14;;;:11;:14;;;;;;;;;41952:48;;;;;;;;;-1:-1:-1;;;;;41952:48:0;;;;;-1:-1:-1;;;41952:48:0;;;;;;;;;;;;42013:28;42009:89;;42074:14;;;-1:-1:-1;42009:89:0;42131:5;-1:-1:-1;;;;;42110:26:0;:17;-1:-1:-1;;;;;42110:26:0;;42106:135;;42168:5;42153:11;:20;42149:59;;-1:-1:-1;42195:1:0;-1:-1:-1;42188:8:0;;-1:-1:-1;;;42188:8:0;42149:59;42218:13;;;;:::i;:::-;;;;42106:135;-1:-1:-1;41938:3:0;;;;:::i;:::-;;;;41898:350;;;-1:-1:-1;42254:56:0;;-1:-1:-1;;;42254:56:0;;10276:2:1;42254:56:0;;;10258:21:1;10315:2;10295:18;;;10288:30;10354:34;10334:18;;;10327:62;-1:-1:-1;;;10405:18:1;;;10398:44;10459:19;;42254:56:0;10074:410:1;60135:143:0;18386:6;;-1:-1:-1;;;;;18386:6:0;17117:10;18533:23;18525:68;;;;-1:-1:-1;;;18525:68:0;;;;;;;:::i;:::-;60233:37:::1;::::0;60201:21:::1;::::0;60241:10:::1;::::0;60233:37;::::1;;;::::0;60201:21;;60183:15:::1;60233:37:::0;60183:15;60233:37;60201:21;60241:10;60233:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;60172:106;60135:143::o:0;46686:157::-;46798:39;46815:4;46821:2;46825:7;46798:39;;;;;;;;;;;;:16;:39::i;60286:168::-;18386:6;;-1:-1:-1;;;;;18386:6:0;17117:10;18533:23;18525:68;;;;-1:-1:-1;;;18525:68:0;;;;;;;:::i;:::-;60370:30:::1;::::0;-1:-1:-1;;;60370:30:0;;60394:4:::1;60370:30;::::0;::::1;1861:51:1::0;60352:15:0::1;::::0;-1:-1:-1;;;;;60370:15:0;::::1;::::0;::::1;::::0;1834:18:1;;60370:30:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60411:35;::::0;-1:-1:-1;;;60411:35:0;;60426:10:::1;60411:35;::::0;::::1;3636:51:1::0;3703:18;;;3696:34;;;60352:48:0;;-1:-1:-1;;;;;;60411:14:0;::::1;::::0;::::1;::::0;3609:18:1;;60411:35:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;41104:177::-:0;41171:7;41017:12;;41195:5;:21;41187:69;;;;-1:-1:-1;;;41187:69:0;;11130:2:1;41187:69:0;;;11112:21:1;11169:2;11149:18;;;11142:30;11208:34;11188:18;;;11181:62;-1:-1:-1;;;11259:18:1;;;11252:33;11302:19;;41187:69:0;10928:399:1;41187:69:0;-1:-1:-1;41270:5:0;41104:177::o;59307:100::-;18386:6;;-1:-1:-1;;;;;18386:6:0;17117:10;18533:23;18525:68;;;;-1:-1:-1;;;18525:68:0;;;;;;;:::i;:::-;59381:7:::1;:18;59391:8:::0;59381:7;:18:::1;:::i;43929:118::-:0;43993:7;44016:20;44028:7;44016:11;:20::i;:::-;:25;;43929:118;-1:-1:-1;;43929:118:0:o;58878:72::-;18386:6;;-1:-1:-1;;;;;18386:6:0;17117:10;18533:23;18525:68;;;;-1:-1:-1;;;18525:68:0;;;;;;;:::i;:::-;58933:5:::1;:9:::0;;;::::1;;;;-1:-1:-1::0;;58933:9:0;;::::1;::::0;;;::::1;::::0;;58878:72::o;42806:211::-;42870:7;-1:-1:-1;;;;;42894:19:0;;42886:75;;;;-1:-1:-1;;;42886:75:0;;13738:2:1;42886:75:0;;;13720:21:1;13777:2;13757:18;;;13750:30;13816:34;13796:18;;;13789:62;-1:-1:-1;;;13867:18:1;;;13860:41;13918:19;;42886:75:0;13536:407:1;42886:75:0;-1:-1:-1;;;;;;42983:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;42983:27:0;;42806:211::o;59143:93::-;59188:13;59221:7;59214:14;;;;;:::i;18964:103::-;18386:6;;-1:-1:-1;;;;;18386:6:0;17117:10;18533:23;18525:68;;;;-1:-1:-1;;;18525:68:0;;;;;;;:::i;:::-;19029:30:::1;19056:1;19029:18;:30::i;:::-;18964:103::o:0;44261:98::-;44317:13;44346:7;44339:14;;;;;:::i;58277:587::-;10242:1;10840:7;;:19;10832:63;;;;-1:-1:-1;;;10832:63:0;;14150:2:1;10832:63:0;;;14132:21:1;14189:2;14169:18;;;14162:30;14228:33;14208:18;;;14201:61;14279:18;;10832:63:0;13948:355:1;10832:63:0;10242:1;10973:7;:18;58398:17:::1;::::0;57445:14:::1;::::0;58417;;;57416:13:::1;40994:7:::0;41017:12;;40941:94;57416:13:::1;:28;;;;:::i;:::-;:43;57413:568;;;57521:9;57494:22;57502:14:::0;57494:5;:22:::1;:::i;:::-;57493:37;57471:111;;;::::0;-1:-1:-1;;;57471:111:0;;14813:2:1;57471:111:0::1;::::0;::::1;14795:21:1::0;14852:2;14832:18;;;14825:30;14891:26;14871:18;;;14864:54;14935:18;;57471:111:0::1;14611:348:1::0;57471:111:0::1;57666:22;::::0;17117:10;57619:29:::1;::::0;;;:15:::1;:29;::::0;;;;;57601:47:::1;::::0;:14;:47:::1;:::i;:::-;:87;;57593:124;;;;-1:-1:-1::0;;;57593:124:0::1;;;;;;;:::i;:::-;57413:568;;;57784:14;57758:22;;:40;;57750:76;;;::::0;-1:-1:-1;;;57750:76:0;;15519:2:1;57750:76:0::1;::::0;::::1;15501:21:1::0;15558:2;15538:18;;;15531:30;-1:-1:-1;;;15577:18:1;;;15570:52;15639:18;;57750:76:0::1;15317:346:1::0;57750:76:0::1;57914:26;::::0;17117:10;57867:29:::1;::::0;;;:15:::1;:29;::::0;;;;;57849:47:::1;::::0;:14;:47:::1;:::i;:::-;:91;;57841:128;;;;-1:-1:-1::0;;;57841:128:0::1;;;;;;;:::i;:::-;56221:18:::2;::::0;::::2;;56213:54;;;::::0;-1:-1:-1;;;56213:54:0;;15870:2:1;56213:54:0::2;::::0;::::2;15852:21:1::0;15909:2;15889:18;;;15882:30;15948:25;15928:18;;;15921:53;15991:18;;56213:54:0::2;15668:347:1::0;56213:54:0::2;58480:14:::3;57039:9;;57004:14;56988:13;40994:7:::0;41017:12;;40941:94;56988:13:::3;:30;;;;:::i;:::-;:60;;56966:144;;;::::0;-1:-1:-1;;;56966:144:0;;16222:2:1;56966:144:0::3;::::0;::::3;16204:21:1::0;16261:2;16241:18;;;16234:30;16300:34;16280:18;;;16273:62;-1:-1:-1;;;16351:18:1;;;16344:32;16393:19;;56966:144:0::3;16020:398:1::0;56966:144:0::3;58519:14:::4;55456:2;56784:14;:34;;56762:118;;;::::0;-1:-1:-1;;;56762:118:0;;16625:2:1;56762:118:0::4;::::0;::::4;16607:21:1::0;16664:2;16644:18;;;16637:30;16703:34;16683:18;;;16676:62;-1:-1:-1;;;16754:18:1;;;16747:32;16796:19;;56762:118:0::4;16423:398:1::0;56762:118:0::4;58601:22:::5;::::0;17117:10;58559:29:::5;::::0;;;:15:::5;:29;::::0;;;;;:64:::5;58551:101;;;;-1:-1:-1::0;;;58551:101:0::5;;;;;;;:::i;:::-;17117:10:::0;58664:29:::5;::::0;;;:15:::5;:29;::::0;;;;:47;;58697:14;;58664:29;:47:::5;::::0;58697:14;;58664:47:::5;:::i;:::-;::::0;;;-1:-1:-1;58722:37:0::5;::::0;-1:-1:-1;58732:10:0::5;58744:14:::0;58722:9:::5;:37::i;:::-;58829:11;::::0;58821:35:::5;::::0;58788:21:::5;::::0;-1:-1:-1;;;;;58829:11:0::5;::::0;58821:35;::::5;;;::::0;58788:21;;58773:12:::5;58821:35:::0;58773:12;58821:35;58788:21;58829:11;58821:35;::::5;;;;;;;;;;;;;::::0;::::5;;;;;-1:-1:-1::0;;10198:1:0;11152:7;:22;-1:-1:-1;;;;;58277:587:0:o;45899:274::-;17117:10;-1:-1:-1;;;;;45990:24:0;;;45982:63;;;;-1:-1:-1;;;45982:63:0;;17028:2:1;45982:63:0;;;17010:21:1;17067:2;17047:18;;;17040:30;17106:28;17086:18;;;17079:56;17152:18;;45982:63:0;16826:350:1;45982:63:0;17117:10;46054:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;46054:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;46054:53:0;;;;;;;;;;46119:48;;540:41:1;;;46054:42:0;;17117:10;46119:48;;513:18:1;46119:48:0;;;;;;;45899:274;;:::o;46906:311::-;47043:28;47053:4;47059:2;47063:7;47043:9;:28::i;:::-;47094:48;47117:4;47123:2;47127:7;47136:5;47094:22;:48::i;:::-;47078:133;;;;-1:-1:-1;;;47078:133:0;;;;;;;:::i;:::-;46906:311;;;;:::o;61835:307::-;61953:13;61992:16;62000:7;47513:4;47543:12;-1:-1:-1;47533:22:0;47456:105;61992:16;61984:46;;;;-1:-1:-1;;;61984:46:0;;9255:2:1;61984:46:0;;;9237:21:1;9294:2;9274:18;;;9267:30;-1:-1:-1;;;9313:18:1;;;9306:47;9370:18;;61984:46:0;9053:341:1;61984:46:0;62087:7;62101:22;62102:9;:7;62110:1;62102:9;:::i;:::-;62101:20;:22::i;:::-;62070:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62043:91;;61835:307;;;:::o;59531:166::-;18386:6;;-1:-1:-1;;;;;18386:6:0;17117:10;18533:23;18525:68;;;;-1:-1:-1;;;18525:68:0;;;;;;;:::i;:::-;59645:20:::1;:44:::0;;;::::1;;-1:-1:-1::0;;;59645:44:0::1;-1:-1:-1::0;;;;59645:44:0;;::::1;::::0;;;::::1;::::0;;59531:166::o;61147:617::-;61495:27;;61562:20;;61272:4;;-1:-1:-1;;;;;61495:27:0;;-1:-1:-1;;;61562:20:0;;;;:86;;;;-1:-1:-1;61607:28:0;;-1:-1:-1;;;61607:28:0;;-1:-1:-1;;;;;1879:32:1;;;61607:28:0;;;1861:51:1;61599:49:0;;;;61607:21;;;;;;1834:18:1;;61607:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;61599:49:0;;61562:86;61544:154;;;61682:4;61675:11;;;;;61544:154;-1:-1:-1;;;;;46381:25:0;;;46358:4;46381:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;61717:39;61710:46;61147:617;-1:-1:-1;;;;61147:617:0:o;59873:131::-;18386:6;;-1:-1:-1;;;;;18386:6:0;17117:10;18533:23;18525:68;;;;-1:-1:-1;;;18525:68:0;;;;;;;:::i;:::-;59966:14:::1;:30:::0;59873:131::o;19222:201::-;18386:6;;-1:-1:-1;;;;;18386:6:0;17117:10;18533:23;18525:68;;;;-1:-1:-1;;;18525:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19311:22:0;::::1;19303:73;;;::::0;-1:-1:-1;;;19303:73:0;;19415:2:1;19303:73:0::1;::::0;::::1;19397:21:1::0;19454:2;19434:18;;;19427:30;19493:34;19473:18;;;19466:62;-1:-1:-1;;;19544:18:1;;;19537:36;19590:19;;19303:73:0::1;19213:402:1::0;19303:73:0::1;19387:28;19406:8;19387:18;:28::i;:::-;19222:201:::0;:::o;60012:113::-;18386:6;;-1:-1:-1;;;;;18386:6:0;17117:10;18533:23;18525:68;;;;-1:-1:-1;;;18525:68:0;;;;;;;:::i;:::-;60093:17:::1;:24:::0;60012:113::o;42380:370::-;42507:4;-1:-1:-1;;;;;;42537:40:0;;-1:-1:-1;;;42537:40:0;;:99;;-1:-1:-1;;;;;;;42588:48:0;;-1:-1:-1;;;42588:48:0;42537:99;:160;;;-1:-1:-1;;;;;;;42647:50:0;;-1:-1:-1;;;42647:50:0;42537:160;:207;;;-1:-1:-1;;;;;;;;;;31822:40:0;;;42708:36;31713:157;51143:172;51240:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;51240:29:0;-1:-1:-1;;;;;51240:29:0;;;;;;;;;51281:28;;51240:24;;51281:28;;;;;;;51143:172;;;:::o;49508:1529::-;49605:35;49643:20;49655:7;49643:11;:20::i;:::-;49714:18;;49605:58;;-1:-1:-1;49672:22:0;;-1:-1:-1;;;;;49698:34:0;17117:10;-1:-1:-1;;;;;49698:34:0;;:81;;;-1:-1:-1;17117:10:0;49743:20;49755:7;49743:11;:20::i;:::-;-1:-1:-1;;;;;49743:36:0;;49698:81;:142;;;-1:-1:-1;49807:18:0;;49790:50;;17117:10;61147:617;:::i;49790:50::-;49672:169;;49866:17;49850:101;;;;-1:-1:-1;;;49850:101:0;;19822:2:1;49850:101:0;;;19804:21:1;19861:2;19841:18;;;19834:30;19900:34;19880:18;;;19873:62;-1:-1:-1;;;19951:18:1;;;19944:48;20009:19;;49850:101:0;19620:414:1;49850:101:0;49998:4;-1:-1:-1;;;;;49976:26:0;:13;:18;;;-1:-1:-1;;;;;49976:26:0;;49960:98;;;;-1:-1:-1;;;49960:98:0;;20241:2:1;49960:98:0;;;20223:21:1;20280:2;20260:18;;;20253:30;20319:34;20299:18;;;20292:62;-1:-1:-1;;;20370:18:1;;;20363:36;20416:19;;49960:98:0;20039:402:1;49960:98:0;-1:-1:-1;;;;;50073:16:0;;50065:66;;;;-1:-1:-1;;;50065:66:0;;20648:2:1;50065:66:0;;;20630:21:1;20687:2;20667:18;;;20660:30;20726:34;20706:18;;;20699:62;-1:-1:-1;;;20777:18:1;;;20770:35;20822:19;;50065:66:0;20446:401:1;50065:66:0;50240:49;50257:1;50261:7;50270:13;:18;;;50240:8;:49::i;:::-;-1:-1:-1;;;;;50298:18:0;;;;;;:12;:18;;;;;:31;;50328:1;;50298:18;:31;;50328:1;;-1:-1:-1;;;;;50298:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;50298:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;50336:16:0;;-1:-1:-1;50336:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;50336:16:0;;:29;;-1:-1:-1;;50336:29:0;;:::i;:::-;;;-1:-1:-1;;;;;50336:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50395:43:0;;;;;;;;-1:-1:-1;;;;;50395:43:0;;;;;;50421:15;50395:43;;;;;;;;;-1:-1:-1;50372:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;50372:66:0;-1:-1:-1;;;;;;50372:66:0;;;;;;;;;;;50688:11;50384:7;-1:-1:-1;50688:11:0;:::i;:::-;50751:1;50710:24;;;:11;:24;;;;;:29;50666:33;;-1:-1:-1;;;;;;50710:29:0;50706:236;;50768:20;50776:11;47513:4;47543:12;-1:-1:-1;47533:22:0;47456:105;50768:20;50764:171;;;50828:97;;;;;;;;50855:18;;-1:-1:-1;;;;;50828:97:0;;;;;;50886:28;;;;50828:97;;;;;;;;;;-1:-1:-1;50801:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;50801:124:0;-1:-1:-1;;;;;;50801:124:0;;;;;;;;;;;;50764:171;50974:7;50970:2;-1:-1:-1;;;;;50955:27:0;50964:4;-1:-1:-1;;;;;50955:27:0;;;;;;;;;;;50989:42;49598:1439;;;49508:1529;;;:::o;3538:98::-;3596:7;3623:5;3627:1;3623;:5;:::i;:::-;3616:12;3538:98;-1:-1:-1;;;3538:98:0:o;3937:::-;3995:7;4022:5;4026:1;4022;:5;:::i;43269:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;43386:16:0;43394:7;47513:4;47543:12;-1:-1:-1;47533:22:0;47456:105;43386:16;43378:71;;;;-1:-1:-1;;;43378:71:0;;21718:2:1;43378:71:0;;;21700:21:1;21757:2;21737:18;;;21730:30;21796:34;21776:18;;;21769:62;-1:-1:-1;;;21847:18:1;;;21840:40;21897:19;;43378:71:0;21516:406:1;43378:71:0;43458:26;43506:12;43495:7;:23;43491:93;;43550:22;43560:12;43550:7;:22;:::i;:::-;:26;;43575:1;43550:26;:::i;:::-;43529:47;;43491:93;43612:7;43592:212;43629:18;43621:4;:26;43592:212;;43666:31;43700:17;;;:11;:17;;;;;;;;;43666:51;;;;;;;;;-1:-1:-1;;;;;43666:51:0;;;;;-1:-1:-1;;;43666:51:0;;;;;;;;;;;;43730:28;43726:71;;43778:9;43269:606;-1:-1:-1;;;;43269:606:0:o;43726:71::-;-1:-1:-1;43649:6:0;;;;:::i;:::-;;;;43592:212;;;-1:-1:-1;43812:57:0;;-1:-1:-1;;;43812:57:0;;22403:2:1;43812:57:0;;;22385:21:1;22442:2;22422:18;;;22415:30;22481:34;22461:18;;;22454:62;-1:-1:-1;;;22532:18:1;;;22525:45;22587:19;;43812:57:0;22201:411:1;19583:191:0;19676:6;;;-1:-1:-1;;;;;19693:17:0;;;-1:-1:-1;;;;;;19693:17:0;;;;;;;19726:40;;19676:6;;;19693:17;19676:6;;19726:40;;19657:16;;19726:40;19646:128;19583:191;:::o;47567:98::-;47632:27;47642:2;47646:8;47632:27;;;;;;;;;;;;:9;:27::i;52858:690::-;52995:4;-1:-1:-1;;;;;53012:13:0;;20924:20;20972:8;53008:535;;53051:72;;-1:-1:-1;;;53051:72:0;;-1:-1:-1;;;;;53051:36:0;;;;;:72;;17117:10;;53102:4;;53108:7;;53117:5;;53051:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53051:72:0;;;;;;;;-1:-1:-1;;53051:72:0;;;;;;;;;;;;:::i;:::-;;;53038:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53282:6;:13;53299:1;53282:18;53278:215;;53315:61;;-1:-1:-1;;;53315:61:0;;;;;;;:::i;53278:215::-;53461:6;53455:13;53446:6;53442:2;53438:15;53431:38;53038:464;-1:-1:-1;;;;;;53173:55:0;-1:-1:-1;;;53173:55:0;;-1:-1:-1;53166:62:0;;53008:535;-1:-1:-1;53531:4:0;52858:690;;;;;;:::o;14599:723::-;14655:13;14876:5;14885:1;14876:10;14872:53;;-1:-1:-1;;14903:10:0;;;;;;;;;;;;-1:-1:-1;;;14903:10:0;;;;;14599:723::o;14872:53::-;14950:5;14935:12;14991:78;14998:9;;14991:78;;15024:8;;;;:::i;:::-;;-1:-1:-1;15047:10:0;;-1:-1:-1;15055:2:0;15047:10;;:::i;:::-;;;14991:78;;;15079:19;15111:6;15101:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15101:17:0;;15079:39;;15129:154;15136:10;;15129:154;;15163:11;15173:1;15163:11;;:::i;:::-;;-1:-1:-1;15232:10:0;15240:2;15232:5;:10;:::i;:::-;15219:24;;:2;:24;:::i;:::-;15206:39;;15189:6;15196;15189:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;15189:56:0;;;;;;;;-1:-1:-1;15260:11:0;15269:2;15260:11;;:::i;:::-;;;15129:154;;48004:1272;48109:20;48132:12;-1:-1:-1;;;;;48159:16:0;;48151:62;;;;-1:-1:-1;;;48151:62:0;;23816:2:1;48151:62:0;;;23798:21:1;23855:2;23835:18;;;23828:30;23894:34;23874:18;;;23867:62;-1:-1:-1;;;23945:18:1;;;23938:31;23986:19;;48151:62:0;23614:397:1;48151:62:0;48350:21;48358:12;47513:4;47543:12;-1:-1:-1;47533:22:0;47456:105;48350:21;48349:22;48341:64;;;;-1:-1:-1;;;48341:64:0;;24218:2:1;48341:64:0;;;24200:21:1;24257:2;24237:18;;;24230:30;24296:31;24276:18;;;24269:59;24345:18;;48341:64:0;24016:353:1;48341:64:0;48432:12;48420:8;:24;;48412:71;;;;-1:-1:-1;;;48412:71:0;;24576:2:1;48412:71:0;;;24558:21:1;24615:2;24595:18;;;24588:30;24654:34;24634:18;;;24627:62;-1:-1:-1;;;24705:18:1;;;24698:32;24747:19;;48412:71:0;24374:398:1;48412:71:0;-1:-1:-1;;;;;48595:16:0;;48562:30;48595:16;;;:12;:16;;;;;;;;;48562:49;;;;;;;;;-1:-1:-1;;;;;48562:49:0;;;;;-1:-1:-1;;;48562:49:0;;;;;;;;;;;48637:119;;;;;;;;48657:19;;48562:49;;48637:119;;;48657:39;;48687:8;;48657:39;:::i;:::-;-1:-1:-1;;;;;48637:119:0;;;;;48740:8;48705:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;48637:119:0;;;;;;-1:-1:-1;;;;;48618:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;48618:138:0;;;;;;;;;;;;48791:43;;;;;;;;;;;48817:15;48791:43;;;;;;;;48763:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;48763:71:0;-1:-1:-1;;;;;;48763:71:0;;;;;;;;;;;;;;;;;;48775:12;;48887:281;48911:8;48907:1;:12;48887:281;;;48940:38;;48965:12;;-1:-1:-1;;;;;48940:38:0;;;48957:1;;48940:38;;48957:1;;48940:38;49005:59;49036:1;49040:2;49044:12;49058:5;49005:22;:59::i;:::-;48987:150;;;;-1:-1:-1;;;48987:150:0;;;;;;;:::i;:::-;49146:14;;;;:::i;:::-;;;;48921:3;;;;;:::i;:::-;;;;48887:281;;;-1:-1:-1;49176:12:0;:27;;;49210:60;46906:311;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1530:180::-;1589:6;1642:2;1630:9;1621:7;1617:23;1613:32;1610:52;;;1658:1;1655;1648:12;1610:52;-1:-1:-1;1681:23:1;;1530:180;-1:-1:-1;1530:180:1:o;1923:131::-;-1:-1:-1;;;;;1998:31:1;;1988:42;;1978:70;;2044:1;2041;2034:12;2059:315;2127:6;2135;2188:2;2176:9;2167:7;2163:23;2159:32;2156:52;;;2204:1;2201;2194:12;2156:52;2243:9;2230:23;2262:31;2287:5;2262:31;:::i;:::-;2312:5;2364:2;2349:18;;;;2336:32;;-1:-1:-1;;;2059:315:1:o;2379:456::-;2456:6;2464;2472;2525:2;2513:9;2504:7;2500:23;2496:32;2493:52;;;2541:1;2538;2531:12;2493:52;2580:9;2567:23;2599:31;2624:5;2599:31;:::i;:::-;2649:5;-1:-1:-1;2706:2:1;2691:18;;2678:32;2719:33;2678:32;2719:33;:::i;:::-;2379:456;;2771:7;;-1:-1:-1;;;2825:2:1;2810:18;;;;2797:32;;2379:456::o;2840:118::-;2926:5;2919:13;2912:21;2905:5;2902:32;2892:60;;2948:1;2945;2938:12;2963:241;3019:6;3072:2;3060:9;3051:7;3047:23;3043:32;3040:52;;;3088:1;3085;3078:12;3040:52;3127:9;3114:23;3146:28;3168:5;3146:28;:::i;3209:248::-;3277:6;3285;3338:2;3326:9;3317:7;3313:23;3309:32;3306:52;;;3354:1;3351;3344:12;3306:52;-1:-1:-1;;3377:23:1;;;3447:2;3432:18;;;3419:32;;-1:-1:-1;3209:248:1:o;3741:261::-;3814:6;3867:2;3855:9;3846:7;3842:23;3838:32;3835:52;;;3883:1;3880;3873:12;3835:52;3922:9;3909:23;3941:31;3966:5;3941:31;:::i;4007:127::-;4068:10;4063:3;4059:20;4056:1;4049:31;4099:4;4096:1;4089:15;4123:4;4120:1;4113:15;4139:632;4204:5;4234:18;4275:2;4267:6;4264:14;4261:40;;;4281:18;;:::i;:::-;4356:2;4350:9;4324:2;4410:15;;-1:-1:-1;;4406:24:1;;;4432:2;4402:33;4398:42;4386:55;;;4456:18;;;4476:22;;;4453:46;4450:72;;;4502:18;;:::i;:::-;4542:10;4538:2;4531:22;4571:6;4562:15;;4601:6;4593;4586:22;4641:3;4632:6;4627:3;4623:16;4620:25;4617:45;;;4658:1;4655;4648:12;4617:45;4708:6;4703:3;4696:4;4688:6;4684:17;4671:44;4763:1;4756:4;4747:6;4739;4735:19;4731:30;4724:41;;;;4139:632;;;;;:::o;4776:451::-;4845:6;4898:2;4886:9;4877:7;4873:23;4869:32;4866:52;;;4914:1;4911;4904:12;4866:52;4954:9;4941:23;4987:18;4979:6;4976:30;4973:50;;;5019:1;5016;5009:12;4973:50;5042:22;;5095:4;5087:13;;5083:27;-1:-1:-1;5073:55:1;;5124:1;5121;5114:12;5073:55;5147:74;5213:7;5208:2;5195:16;5190:2;5186;5182:11;5147:74;:::i;5484:382::-;5549:6;5557;5610:2;5598:9;5589:7;5585:23;5581:32;5578:52;;;5626:1;5623;5616:12;5578:52;5665:9;5652:23;5684:31;5709:5;5684:31;:::i;:::-;5734:5;-1:-1:-1;5791:2:1;5776:18;;5763:32;5804:30;5763:32;5804:30;:::i;:::-;5853:7;5843:17;;;5484:382;;;;;:::o;5871:795::-;5966:6;5974;5982;5990;6043:3;6031:9;6022:7;6018:23;6014:33;6011:53;;;6060:1;6057;6050:12;6011:53;6099:9;6086:23;6118:31;6143:5;6118:31;:::i;:::-;6168:5;-1:-1:-1;6225:2:1;6210:18;;6197:32;6238:33;6197:32;6238:33;:::i;:::-;6290:7;-1:-1:-1;6344:2:1;6329:18;;6316:32;;-1:-1:-1;6399:2:1;6384:18;;6371:32;6426:18;6415:30;;6412:50;;;6458:1;6455;6448:12;6412:50;6481:22;;6534:4;6526:13;;6522:27;-1:-1:-1;6512:55:1;;6563:1;6560;6553:12;6512:55;6586:74;6652:7;6647:2;6634:16;6629:2;6625;6621:11;6586:74;:::i;:::-;6576:84;;;5871:795;;;;;;;:::o;6671:388::-;6739:6;6747;6800:2;6788:9;6779:7;6775:23;6771:32;6768:52;;;6816:1;6813;6806:12;6768:52;6855:9;6842:23;6874:31;6899:5;6874:31;:::i;:::-;6924:5;-1:-1:-1;6981:2:1;6966:18;;6953:32;6994:33;6953:32;6994:33;:::i;7064:380::-;7143:1;7139:12;;;;7186;;;7207:61;;7261:4;7253:6;7249:17;7239:27;;7207:61;7314:2;7306:6;7303:14;7283:18;7280:38;7277:161;;7360:10;7355:3;7351:20;7348:1;7341:31;7395:4;7392:1;7385:15;7423:4;7420:1;7413:15;7277:161;;7064:380;;;:::o;8692:356::-;8894:2;8876:21;;;8913:18;;;8906:30;8972:34;8967:2;8952:18;;8945:62;9039:2;9024:18;;8692:356::o;9802:127::-;9863:10;9858:3;9854:20;9851:1;9844:31;9894:4;9891:1;9884:15;9918:4;9915:1;9908:15;9934:135;9973:3;9994:17;;;9991:43;;10014:18;;:::i;:::-;-1:-1:-1;10061:1:1;10050:13;;9934:135::o;10489:184::-;10559:6;10612:2;10600:9;10591:7;10587:23;10583:32;10580:52;;;10628:1;10625;10618:12;10580:52;-1:-1:-1;10651:16:1;;10489:184;-1:-1:-1;10489:184:1:o;10678:245::-;10745:6;10798:2;10786:9;10777:7;10773:23;10769:32;10766:52;;;10814:1;10811;10804:12;10766:52;10846:9;10840:16;10865:28;10887:5;10865:28;:::i;11458:545::-;11560:2;11555:3;11552:11;11549:448;;;11596:1;11621:5;11617:2;11610:17;11666:4;11662:2;11652:19;11736:2;11724:10;11720:19;11717:1;11713:27;11707:4;11703:38;11772:4;11760:10;11757:20;11754:47;;;-1:-1:-1;11795:4:1;11754:47;11850:2;11845:3;11841:12;11838:1;11834:20;11828:4;11824:31;11814:41;;11905:82;11923:2;11916:5;11913:13;11905:82;;;11968:17;;;11949:1;11938:13;11905:82;;12179:1352;12305:3;12299:10;12332:18;12324:6;12321:30;12318:56;;;12354:18;;:::i;:::-;12383:97;12473:6;12433:38;12465:4;12459:11;12433:38;:::i;:::-;12427:4;12383:97;:::i;:::-;12535:4;;12599:2;12588:14;;12616:1;12611:663;;;;13318:1;13335:6;13332:89;;;-1:-1:-1;13387:19:1;;;13381:26;13332:89;-1:-1:-1;;12136:1:1;12132:11;;;12128:24;12124:29;12114:40;12160:1;12156:11;;;12111:57;13434:81;;12581:944;;12611:663;11405:1;11398:14;;;11442:4;11429:18;;-1:-1:-1;;12647:20:1;;;12765:236;12779:7;12776:1;12773:14;12765:236;;;12868:19;;;12862:26;12847:42;;12960:27;;;;12928:1;12916:14;;;;12795:19;;12765:236;;;12769:3;13029:6;13020:7;13017:19;13014:201;;;13090:19;;;13084:26;-1:-1:-1;;13173:1:1;13169:14;;;13185:3;13165:24;13161:37;13157:42;13142:58;13127:74;;13014:201;-1:-1:-1;;;;;13261:1:1;13245:14;;;13241:22;13228:36;;-1:-1:-1;12179:1352:1:o;14308:125::-;14373:9;;;14394:10;;;14391:36;;;14407:18;;:::i;14438:168::-;14511:9;;;14542;;14559:15;;;14553:22;;14539:37;14529:71;;14580:18;;:::i;14964:348::-;15166:2;15148:21;;;15205:2;15185:18;;;15178:30;15244:26;15239:2;15224:18;;15217:54;15303:2;15288:18;;14964:348::o;17181:415::-;17383:2;17365:21;;;17422:2;17402:18;;;17395:30;17461:34;17456:2;17441:18;;17434:62;-1:-1:-1;;;17527:2:1;17512:18;;17505:49;17586:3;17571:19;;17181:415::o;17601:1322::-;17979:3;18008:1;18041:6;18035:13;18071:36;18097:9;18071:36;:::i;:::-;18126:1;18143:18;;;18170:133;;;;18317:1;18312:356;;;;18136:532;;18170:133;-1:-1:-1;;18203:24:1;;18191:37;;18276:14;;18269:22;18257:35;;18248:45;;;-1:-1:-1;18170:133:1;;18312:356;18343:6;18340:1;18333:17;18373:4;18418:2;18415:1;18405:16;18443:1;18457:165;18471:6;18468:1;18465:13;18457:165;;;18549:14;;18536:11;;;18529:35;18592:16;;;;18486:10;;18457:165;;;18461:3;;;18651:6;18646:3;18642:16;18635:23;;18136:532;;-1:-1:-1;;;18684:3:1;18677:16;18724:6;18718:13;18702:29;;18740:77;18808:8;18803:2;18798:3;18794:12;18787:4;18779:6;18775:17;18740:77;:::i;:::-;-1:-1:-1;;;18836:18:1;;;;18870:11;;;18863:28;;;;18915:1;18907:10;;17601:1322;-1:-1:-1;;;;;17601:1322:1:o;18928:280::-;19027:6;19080:2;19068:9;19059:7;19055:23;19051:32;19048:52;;;19096:1;19093;19086:12;19048:52;19128:9;19122:16;19147:31;19172:5;19147:31;:::i;20852:200::-;-1:-1:-1;;;;;20988:10:1;;;20976;;;20972:27;;21011:12;;;21008:38;;;21026:18;;:::i;:::-;21008:38;20852:200;;;;:::o;21057:197::-;-1:-1:-1;;;;;21179:10:1;;;21191;;;21175:27;;21214:11;;;21211:37;;;21228:18;;:::i;21259:127::-;21320:10;21315:3;21311:20;21308:1;21301:31;21351:4;21348:1;21341:15;21375:4;21372:1;21365:15;21391:120;21431:1;21457;21447:35;;21462:18;;:::i;:::-;-1:-1:-1;21496:9:1;;21391:120::o;21927:128::-;21994:9;;;22015:11;;;22012:37;;;22029:18;;:::i;22060:136::-;22099:3;22127:5;22117:39;;22136:18;;:::i;:::-;-1:-1:-1;;;22172:18:1;;22060:136::o;22617:489::-;-1:-1:-1;;;;;22886:15:1;;;22868:34;;22938:15;;22933:2;22918:18;;22911:43;22985:2;22970:18;;22963:34;;;23033:3;23028:2;23013:18;;23006:31;;;22811:4;;23054:46;;23080:19;;23072:6;23054:46;:::i;:::-;23046:54;22617:489;-1:-1:-1;;;;;;22617:489:1:o;23111:249::-;23180:6;23233:2;23221:9;23212:7;23208:23;23204:32;23201:52;;;23249:1;23246;23239:12;23201:52;23281:9;23275:16;23300:30;23324:5;23300:30;:::i;23365:112::-;23397:1;23423;23413:35;;23428:18;;:::i;:::-;-1:-1:-1;23462:9:1;;23365:112::o;23482:127::-;23543:10;23538:3;23534:20;23531:1;23524:31;23574:4;23571:1;23564:15;23598:4;23595:1;23588:15

Swarm Source

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