ETH Price: $2,945.93 (-5.90%)
Gas: 8 Gwei

Token

8HANABI (8HANA)
 

Overview

Max Total Supply

376 8HANA

Holders

164

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 8HANA
0xB8775a036A6c29955A1685194f545035f9754e1F
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
EIGHTHANABI

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (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 subtraction 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/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/cryptography/ECDSA.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// 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 (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (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);

    /**
     * @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: https://github.com/chiru-labs/ERC721A/blob/v2.2.0/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata 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 that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). 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 tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). 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) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(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 ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 TransferToNonERC721ReceiverImplementer();
                } 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.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

// File: contracts/8HANABI.sol


pragma solidity ^0.8.6;





contract EIGHTHANABI is ERC721A, Ownable {
    using ECDSA for bytes32;
    using Strings for uint256;
    using SafeMath for uint256;

    
    address private ethSigner;
    string private prefix = "Allowlist 1";
    
    uint256 public startingPrice = 388000000000000000; // 0.388 eth
    uint256 public decreaseInterval = 300; // 5 minutes
    uint256 public decreasePerInterval = 12000000000000000; // 0.012 eth
    uint256 public endingPrice = 88000000000000000; // 0.088 eth
    uint256 public startingBlock;
    uint256 public totalInterval =
        (startingPrice - endingPrice) / decreasePerInterval;
    
    uint256 public allowlistPrice = 88000000000000000; // 0.088 eth
    uint256 public allowlistMaxMintAmount = 3; // Max per transaction
    mapping(address => uint256) private _allowlistClaimed;
    
    uint256 public maxSupply = 8888;
    uint256 public maxMintAmount = 10; // Max per transaction
    uint256 public currentSupply = 0;
    string private _tokenBaseURI = "";
    
    bool public _paused = false;
    bool public _allowlistPaused = true;

    constructor(address _ethSigner) ERC721A("8HANABI", "8HANA") {
        ethSigner = _ethSigner;
    }

    function setStartingBlock(uint256 _startingBlock) public onlyOwner {
        startingBlock = _startingBlock;
    }

    function getCurrentPrice() public view returns (uint256) {
        uint256 passed_intervals = (block.timestamp.sub(startingBlock)).div(
            decreaseInterval
        );
        if (passed_intervals > totalInterval) {
            return endingPrice;
        }
        return startingPrice.sub(passed_intervals.mul(decreasePerInterval));
    }

    //Minting
    function allowlistMint(bytes memory sig, uint256 _mintAmount)
        public
        payable
    {
        require(!_paused, "8HANABI:: Contract is paused.");
        require(!_allowlistPaused, "8HANABI:: Allowlist is paused.");
        require(_mintAmount > 0, "8HANABI:: Mint amount must be at least 1");
        require(isMessageValid(sig), "Error, address is not on allowlist");
        uint256 supply = currentSupply;
        require(
            supply + _mintAmount <= maxSupply,
            "8HANABI:: Unable to mint amount, will exceed max supply. Try decreasing the quantity."
        );
        require(
            _mintAmount <= allowlistMaxMintAmount,
            "8HANABI:: Unable to mint amount, will exceed allowlist limit."
        );
        require(
            _allowlistClaimed[msg.sender] < 3,
            "8HANABI:: Unable to mint amount, will exceed allowlist limit."
        );
        require(
            msg.value >= allowlistPrice * _mintAmount,
            "8HANABI:: Insufficient funds."
        );
        _allowlistClaimed[msg.sender] += _mintAmount;
        currentSupply += _mintAmount;
        _safeMint(msg.sender, _mintAmount);
    }

    function mint(uint256 _mintAmount) public payable {
        uint256 supply = currentSupply;
        require(_mintAmount > 0, "8HANABI:: Mint amount must be at least 1");
        require(
            supply + _mintAmount <= maxSupply,
            "8HANABI:: Unable to mint amount, will exceed max supply. Try decreasing the quantity."
        );
        if (msg.sender != owner()) {
            require(!_paused, "8HANABI:: Contract is paused.");
            require(_allowlistPaused, "8HANABI:: Allowlist sale is ongoing.");
            require(startingBlock > 0, "8HANABI:: Public sale start time has not been set.");
            require(startingBlock < block.timestamp, "8HANABI:: Public sale has not started.");
            require(
                _mintAmount <= maxMintAmount,
                "8HANABI:: Unable to mint amount, will exceed minting limit."
            );
            require(
                msg.value >= getCurrentPrice() * _mintAmount,
                "8HANABI:: Insufficient funds."
            );
        }
        _safeMint(msg.sender, _mintAmount);
        currentSupply += _mintAmount;
    }

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

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

    function pause(bool val) public onlyOwner {
        _paused = val;
    }

    function IntervalCount() public view returns (uint256) {
        uint256 passed_intervals = (block.timestamp.sub(startingBlock)).div(
            decreaseInterval
        );
        return passed_intervals;
    }

    function ALpause(bool val) public onlyOwner {
        _allowlistPaused = val;
    }

    function withdrawAll() public onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString()))
                : "";
    }

    //Verification
    function isMessageValid(bytes memory _signature)
        public
        view
        returns (bool)
    {
        bytes32 messagehash = keccak256(abi.encodePacked(prefix, msg.sender));
        address signer = messagehash.toEthSignedMessageHash().recover(
            _signature
        );
        return ethSigner == signer;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_ethSigner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"ALpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"IntervalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_allowlistPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistMaxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"allowlistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decreaseInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decreasePerInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endingPrice","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":"getCurrentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"isMessageValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"uint256","name":"_startingBlock","type":"uint256"}],"name":"setStartingBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"totalInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600b60808190526a416c6c6f776c697374203160a81b60a09081526200002e9160099190620001f8565b5067056273f1bcda0000600a5561012c600b55662aa1efb94e0000600c55670138a388a43c0000600d55600c54600d54600a546200006d9190620002f3565b620000799190620002d0565b600f55670138a388a43c000060105560036011556122b8601355600a60145560006015819055604080516020810191829052829052620000bd9160169190620001f8565b506017805461ffff1916610100179055348015620000da57600080fd5b5060405162002c7e38038062002c7e833981016040819052620000fd916200029e565b60408051808201825260078152663848414e41424960c81b6020808301918252835180850190945260058452643848414e4160d81b9084015281519192916200014991600191620001f8565b5080516200015f906002906020840190620001f8565b5050506200017c62000176620001a260201b60201c565b620001a6565b600880546001600160a01b0319166001600160a01b039290921691909117905562000356565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002069062000319565b90600052602060002090601f0160209004810192826200022a576000855562000275565b82601f106200024557805160ff191683800117855562000275565b8280016001018555821562000275579182015b828111156200027557825182559160200191906001019062000258565b506200028392915062000287565b5090565b5b8082111562000283576000815560010162000288565b600060208284031215620002b157600080fd5b81516001600160a01b0381168114620002c957600080fd5b9392505050565b600082620002ee57634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156200031457634e487b7160e01b600052601160045260246000fd5b500390565b600181811c908216806200032e57607f821691505b602082108114156200035057634e487b7160e01b600052602260045260246000fd5b50919050565b61291880620003666000396000f3fe6080604052600436106102515760003560e01c8063715018a611610139578063b88d4fde116100b6578063decf4e981161007a578063decf4e9814610674578063e7e9360b14610687578063e985e9c5146106a7578063eb91d37e146106f0578063ec17b20e14610705578063f2fde38b1461072557600080fd5b8063b88d4fde146105f2578063c87b56dd14610612578063d5abeb0114610632578063d6fbf20214610648578063d91c98d31461065e57600080fd5b806395d89b41116100fd57806395d89b411461057457806399ece3c0146105895780639d00ffa51461059f578063a0712d68146105bf578063a22cb465146105d257600080fd5b8063715018a614610500578063771282f614610515578063853828b61461052b5780638da5cb5b1461054057806390967a521461055e57600080fd5b80633d910ed6116101d257806354d782911161019657806354d782911461045557806355f804b31461046b578063577036141461048b5780635a67a20d146104aa5780636352211e146104c057806370a08231146104e057600080fd5b80633d910ed6146103d457806342842e0e146103e95780634f6ccce714610409578063500ee709146104295780635191e58d1461043f57600080fd5b806316c61ccc1161021957806316c61ccc1461032757806318160ddd14610341578063239c70ae1461037e57806323b872dd146103945780632f745c59146103b457600080fd5b806301ffc9a71461025657806302329a291461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b50610276610271366004612399565b610745565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a636600461237e565b6107b2565b005b3480156102b957600080fd5b506102c26107f8565b60405161028291906125fe565b3480156102db57600080fd5b506102ef6102ea366004612493565b61088a565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab610322366004612354565b6108ce565b34801561033357600080fd5b506017546102769060ff1681565b34801561034d57600080fd5b506103706000546001600160801b03600160801b82048116918116919091031690565b604051908152602001610282565b34801561038a57600080fd5b5061037060145481565b3480156103a057600080fd5b506102ab6103af366004612287565b61095c565b3480156103c057600080fd5b506103706103cf366004612354565b610967565b3480156103e057600080fd5b50610370610a63565b3480156103f557600080fd5b506102ab610404366004612287565b610a87565b34801561041557600080fd5b50610370610424366004612493565b610aa2565b34801561043557600080fd5b5061037060115481565b34801561044b57600080fd5b50610370600c5481565b34801561046157600080fd5b50610370600b5481565b34801561047757600080fd5b506102ab61048636600461244b565b610b4c565b34801561049757600080fd5b5060175461027690610100900460ff1681565b3480156104b657600080fd5b50610370600d5481565b3480156104cc57600080fd5b506102ef6104db366004612493565b610b8d565b3480156104ec57600080fd5b506103706104fb366004612239565b610b9f565b34801561050c57600080fd5b506102ab610bed565b34801561052157600080fd5b5061037060155481565b34801561053757600080fd5b506102ab610c23565b34801561054c57600080fd5b506007546001600160a01b03166102ef565b34801561056a57600080fd5b5061037060105481565b34801561058057600080fd5b506102c2610c71565b34801561059557600080fd5b50610370600f5481565b3480156105ab57600080fd5b506102766105ba3660046123d3565b610c80565b6102ab6105cd366004612493565b610d2b565b3480156105de57600080fd5b506102ab6105ed36600461232a565b61100a565b3480156105fe57600080fd5b506102ab61060d3660046122c3565b6110a0565b34801561061e57600080fd5b506102c261062d366004612493565b6110da565b34801561063e57600080fd5b5061037060135481565b34801561065457600080fd5b50610370600a5481565b34801561066a57600080fd5b50610370600e5481565b6102ab610682366004612407565b6111a5565b34801561069357600080fd5b506102ab6106a236600461237e565b6113f4565b3480156106b357600080fd5b506102766106c2366004612254565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106fc57600080fd5b50610370611438565b34801561071157600080fd5b506102ab610720366004612493565b611491565b34801561073157600080fd5b506102ab610740366004612239565b6114c0565b60006001600160e01b031982166380ac58cd60e01b148061077657506001600160e01b03198216635b5e139f60e01b145b8061079157506001600160e01b0319821663780e9d6360e01b145b806107ac57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146107e55760405162461bcd60e51b81526004016107dc90612659565b60405180910390fd5b6017805460ff1916911515919091179055565b606060018054610807906127f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610833906127f4565b80156108805780601f1061085557610100808354040283529160200191610880565b820191906000526020600020905b81548152906001019060200180831161086357829003601f168201915b5050505050905090565b60006108958261155b565b6108b2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108d982610b8d565b9050806001600160a01b0316836001600160a01b0316141561090e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061092e575061092c81336106c2565b155b1561094c576040516367d9dca160e11b815260040160405180910390fd5b61095783838361158f565b505050565b6109578383836115eb565b600061097283610b9f565b8210610991576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610a5d57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610a095750610a55565b80516001600160a01b031615610a1e57805192505b876001600160a01b0316836001600160a01b03161415610a535786841415610a4c575093506107ac92505050565b6001909301925b505b6001016109a2565b50600080fd5b6000806107ac600b54610a81600e544261180890919063ffffffff16565b90611814565b610957838383604051806020016040528060008152506110a0565b600080546001600160801b031681805b82811015610b3257600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610b295785831415610b225750949350505050565b6001909201915b50600101610ab2565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610b765760405162461bcd60e51b81526004016107dc90612659565b8051610b899060169060208401906120df565b5050565b6000610b9882611820565b5192915050565b60006001600160a01b038216610bc8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610c175760405162461bcd60e51b81526004016107dc90612659565b610c216000611942565b565b6007546001600160a01b03163314610c4d5760405162461bcd60e51b81526004016107dc90612659565b60405133904780156108fc02916000818181858888f19350505050610c2157600080fd5b606060028054610807906127f4565b600080600933604051602001610c97929190612507565b6040516020818303038152906040528051906020012090506000610d1284610d0c846040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b90611994565b6008546001600160a01b03908116911614949350505050565b60155481610d4b5760405162461bcd60e51b81526004016107dc90612611565b601354610d588383612766565b1115610d765760405162461bcd60e51b81526004016107dc9061268e565b6007546001600160a01b03163314610fe55760175460ff1615610ddb5760405162461bcd60e51b815260206004820152601d60248201527f3848414e4142493a3a20436f6e7472616374206973207061757365642e00000060448201526064016107dc565b601754610100900460ff16610e3e5760405162461bcd60e51b8152602060048201526024808201527f3848414e4142493a3a20416c6c6f776c6973742073616c65206973206f6e676f60448201526334b7339760e11b60648201526084016107dc565b6000600e5411610eab5760405162461bcd60e51b815260206004820152603260248201527f3848414e4142493a3a205075626c69632073616c652073746172742074696d65604482015271103430b9903737ba103132b2b71039b2ba1760711b60648201526084016107dc565b42600e5410610f0b5760405162461bcd60e51b815260206004820152602660248201527f3848414e4142493a3a205075626c69632073616c6520686173206e6f7420737460448201526530b93a32b21760d11b60648201526084016107dc565b601454821115610f835760405162461bcd60e51b815260206004820152603b60248201527f3848414e4142493a3a20556e61626c6520746f206d696e7420616d6f756e742c60448201527f2077696c6c20657863656564206d696e74696e67206c696d69742e000000000060648201526084016107dc565b81610f8c611438565b610f969190612792565b341015610fe55760405162461bcd60e51b815260206004820152601d60248201527f3848414e4142493a3a20496e73756666696369656e742066756e64732e00000060448201526064016107dc565b610fef33836119b8565b81601560008282546110019190612766565b90915550505050565b6001600160a01b0382163314156110345760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110ab8484846115eb565b6110b7848484846119d2565b6110d4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110e58261155b565b6111495760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107dc565b6000611153611ae1565b90506000815111611173576040518060200160405280600081525061119e565b8061117d84611af0565b60405160200161118e9291906124d8565b6040516020818303038152906040525b9392505050565b60175460ff16156111f85760405162461bcd60e51b815260206004820152601d60248201527f3848414e4142493a3a20436f6e7472616374206973207061757365642e00000060448201526064016107dc565b601754610100900460ff16156112505760405162461bcd60e51b815260206004820152601e60248201527f3848414e4142493a3a20416c6c6f776c697374206973207061757365642e000060448201526064016107dc565b600081116112705760405162461bcd60e51b81526004016107dc90612611565b61127982610c80565b6112d05760405162461bcd60e51b815260206004820152602260248201527f4572726f722c2061646472657373206973206e6f74206f6e20616c6c6f776c696044820152611cdd60f21b60648201526084016107dc565b6015546013546112e08383612766565b11156112fe5760405162461bcd60e51b81526004016107dc9061268e565b6011548211156113205760405162461bcd60e51b81526004016107dc90612709565b3360009081526012602052604090205460031161134f5760405162461bcd60e51b81526004016107dc90612709565b8160105461135d9190612792565b3410156113ac5760405162461bcd60e51b815260206004820152601d60248201527f3848414e4142493a3a20496e73756666696369656e742066756e64732e00000060448201526064016107dc565b33600090815260126020526040812080548492906113cb908490612766565b9250508190555081601560008282546113e49190612766565b90915550610957905033836119b8565b6007546001600160a01b0316331461141e5760405162461bcd60e51b81526004016107dc90612659565b601780549115156101000261ff0019909216919091179055565b600080611456600b54610a81600e544261180890919063ffffffff16565b9050600f5481111561146a575050600d5490565b61148b611482600c5483611bed90919063ffffffff16565b600a5490611808565b91505090565b6007546001600160a01b031633146114bb5760405162461bcd60e51b81526004016107dc90612659565b600e55565b6007546001600160a01b031633146114ea5760405162461bcd60e51b81526004016107dc90612659565b6001600160a01b03811661154f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107dc565b61155881611942565b50565b600080546001600160801b0316821080156107ac575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115f682611820565b80519091506000906001600160a01b0316336001600160a01b031614806116245750815161162490336106c2565b8061163f5750336116348461088a565b6001600160a01b0316145b90508061165f57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146116945760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166116bb57604051633a954ecd60e21b815260040160405180910390fd5b6116cb600084846000015161158f565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166117be576000546001600160801b03168110156117be57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600061119e82846127b1565b600061119e828461277e565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561192957600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119275780516001600160a01b0316156118be579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611922579392505050565b6118be565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008060006119a38585611bf9565b915091506119b081611c69565b509392505050565b610b89828260405180602001604052806000815250611e24565b60006001600160a01b0384163b15611ad557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a169033908990889088906004016125c1565b602060405180830381600087803b158015611a3057600080fd5b505af1925050508015611a60575060408051601f3d908101601f19168201909252611a5d918101906123b6565b60015b611abb573d808015611a8e576040519150601f19603f3d011682016040523d82523d6000602084013e611a93565b606091505b508051611ab3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ad9565b5060015b949350505050565b606060168054610807906127f4565b606081611b145750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b3e5780611b288161282f565b9150611b379050600a8361277e565b9150611b18565b6000816001600160401b03811115611b5857611b586128b6565b6040519080825280601f01601f191660200182016040528015611b82576020820181803683370190505b5090505b8415611ad957611b976001836127b1565b9150611ba4600a8661284a565b611baf906030612766565b60f81b818381518110611bc457611bc46128a0565b60200101906001600160f81b031916908160001a905350611be6600a8661277e565b9450611b86565b600061119e8284612792565b600080825160411415611c305760208301516040840151606085015160001a611c2487828585611e31565b94509450505050611c62565b825160401415611c5a5760208301516040840151611c4f868383611f1e565b935093505050611c62565b506000905060025b9250929050565b6000816004811115611c7d57611c7d61288a565b1415611c865750565b6001816004811115611c9a57611c9a61288a565b1415611ce85760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016107dc565b6002816004811115611cfc57611cfc61288a565b1415611d4a5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016107dc565b6003816004811115611d5e57611d5e61288a565b1415611db75760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016107dc565b6004816004811115611dcb57611dcb61288a565b14156115585760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016107dc565b6109578383836001611f57565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611e685750600090506003611f15565b8460ff16601b14158015611e8057508460ff16601c14155b15611e915750600090506004611f15565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611ee5573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611f0e57600060019250925050611f15565b9150600090505b94509492505050565b6000806001600160ff1b03831681611f3b60ff86901c601b612766565b9050611f4987828885611e31565b935093505050935093915050565b6000546001600160801b03166001600160a01b038516611f8957604051622e076360e81b815260040160405180910390fd5b83611fa75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156120b95760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561208f575061208d60008884886119d2565b155b156120ad576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101612038565b50600080546001600160801b0319166001600160801b0392909216919091179055611801565b8280546120eb906127f4565b90600052602060002090601f01602090048101928261210d5760008555612153565b82601f1061212657805160ff1916838001178555612153565b82800160010185558215612153579182015b82811115612153578251825591602001919060010190612138565b5061215f929150612163565b5090565b5b8082111561215f5760008155600101612164565b60006001600160401b0380841115612192576121926128b6565b604051601f8501601f19908116603f011681019082821181831017156121ba576121ba6128b6565b816040528093508581528686860111156121d357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461220457600080fd5b919050565b8035801515811461220457600080fd5b600082601f83011261222a57600080fd5b61119e83833560208501612178565b60006020828403121561224b57600080fd5b61119e826121ed565b6000806040838503121561226757600080fd5b612270836121ed565b915061227e602084016121ed565b90509250929050565b60008060006060848603121561229c57600080fd5b6122a5846121ed565b92506122b3602085016121ed565b9150604084013590509250925092565b600080600080608085870312156122d957600080fd5b6122e2856121ed565b93506122f0602086016121ed565b92506040850135915060608501356001600160401b0381111561231257600080fd5b61231e87828801612219565b91505092959194509250565b6000806040838503121561233d57600080fd5b612346836121ed565b915061227e60208401612209565b6000806040838503121561236757600080fd5b612370836121ed565b946020939093013593505050565b60006020828403121561239057600080fd5b61119e82612209565b6000602082840312156123ab57600080fd5b813561119e816128cc565b6000602082840312156123c857600080fd5b815161119e816128cc565b6000602082840312156123e557600080fd5b81356001600160401b038111156123fb57600080fd5b611ad984828501612219565b6000806040838503121561241a57600080fd5b82356001600160401b0381111561243057600080fd5b61243c85828601612219565b95602094909401359450505050565b60006020828403121561245d57600080fd5b81356001600160401b0381111561247357600080fd5b8201601f8101841361248457600080fd5b611ad984823560208401612178565b6000602082840312156124a557600080fd5b5035919050565b600081518084526124c48160208601602086016127c8565b601f01601f19169290920160200192915050565b600083516124ea8184602088016127c8565b8351908301906124fe8183602088016127c8565b01949350505050565b600080845481600182811c91508083168061252357607f831692505b602080841082141561254357634e487b7160e01b86526022600452602486fd5b818015612557576001811461256857612595565b60ff19861689528489019650612595565b60008b81526020902060005b8681101561258d5781548b820152908501908301612574565b505084890196505b5050505050506125b6818560601b6bffffffffffffffffffffffff19169052565b601401949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125f4908301846124ac565b9695505050505050565b60208152600061119e60208301846124ac565b60208082526028908201527f3848414e4142493a3a204d696e7420616d6f756e74206d757374206265206174604082015267206c65617374203160c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526055908201527f3848414e4142493a3a20556e61626c6520746f206d696e7420616d6f756e742c60408201527f2077696c6c20657863656564206d617820737570706c792e20547279206465636060820152743932b0b9b4b733903a34329038bab0b73a34ba3c9760591b608082015260a00190565b6020808252603d908201527f3848414e4142493a3a20556e61626c6520746f206d696e7420616d6f756e742c60408201527f2077696c6c2065786365656420616c6c6f776c697374206c696d69742e000000606082015260800190565b600082198211156127795761277961285e565b500190565b60008261278d5761278d612874565b500490565b60008160001904831182151516156127ac576127ac61285e565b500290565b6000828210156127c3576127c361285e565b500390565b60005b838110156127e35781810151838201526020016127cb565b838111156110d45750506000910152565b600181811c9082168061280857607f821691505b6020821081141561282957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128435761284361285e565b5060010190565b60008261285957612859612874565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461155857600080fdfea26469706673582212202b9f8645be1b378063fc3910a9232c9c3f7599d7ccead28ca72ddbb25e22d66e64736f6c634300080700330000000000000000000000000cecd96249ba92fb8fd2f25898818b58c66c6f86

Deployed Bytecode

0x6080604052600436106102515760003560e01c8063715018a611610139578063b88d4fde116100b6578063decf4e981161007a578063decf4e9814610674578063e7e9360b14610687578063e985e9c5146106a7578063eb91d37e146106f0578063ec17b20e14610705578063f2fde38b1461072557600080fd5b8063b88d4fde146105f2578063c87b56dd14610612578063d5abeb0114610632578063d6fbf20214610648578063d91c98d31461065e57600080fd5b806395d89b41116100fd57806395d89b411461057457806399ece3c0146105895780639d00ffa51461059f578063a0712d68146105bf578063a22cb465146105d257600080fd5b8063715018a614610500578063771282f614610515578063853828b61461052b5780638da5cb5b1461054057806390967a521461055e57600080fd5b80633d910ed6116101d257806354d782911161019657806354d782911461045557806355f804b31461046b578063577036141461048b5780635a67a20d146104aa5780636352211e146104c057806370a08231146104e057600080fd5b80633d910ed6146103d457806342842e0e146103e95780634f6ccce714610409578063500ee709146104295780635191e58d1461043f57600080fd5b806316c61ccc1161021957806316c61ccc1461032757806318160ddd14610341578063239c70ae1461037e57806323b872dd146103945780632f745c59146103b457600080fd5b806301ffc9a71461025657806302329a291461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b50610276610271366004612399565b610745565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a636600461237e565b6107b2565b005b3480156102b957600080fd5b506102c26107f8565b60405161028291906125fe565b3480156102db57600080fd5b506102ef6102ea366004612493565b61088a565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab610322366004612354565b6108ce565b34801561033357600080fd5b506017546102769060ff1681565b34801561034d57600080fd5b506103706000546001600160801b03600160801b82048116918116919091031690565b604051908152602001610282565b34801561038a57600080fd5b5061037060145481565b3480156103a057600080fd5b506102ab6103af366004612287565b61095c565b3480156103c057600080fd5b506103706103cf366004612354565b610967565b3480156103e057600080fd5b50610370610a63565b3480156103f557600080fd5b506102ab610404366004612287565b610a87565b34801561041557600080fd5b50610370610424366004612493565b610aa2565b34801561043557600080fd5b5061037060115481565b34801561044b57600080fd5b50610370600c5481565b34801561046157600080fd5b50610370600b5481565b34801561047757600080fd5b506102ab61048636600461244b565b610b4c565b34801561049757600080fd5b5060175461027690610100900460ff1681565b3480156104b657600080fd5b50610370600d5481565b3480156104cc57600080fd5b506102ef6104db366004612493565b610b8d565b3480156104ec57600080fd5b506103706104fb366004612239565b610b9f565b34801561050c57600080fd5b506102ab610bed565b34801561052157600080fd5b5061037060155481565b34801561053757600080fd5b506102ab610c23565b34801561054c57600080fd5b506007546001600160a01b03166102ef565b34801561056a57600080fd5b5061037060105481565b34801561058057600080fd5b506102c2610c71565b34801561059557600080fd5b50610370600f5481565b3480156105ab57600080fd5b506102766105ba3660046123d3565b610c80565b6102ab6105cd366004612493565b610d2b565b3480156105de57600080fd5b506102ab6105ed36600461232a565b61100a565b3480156105fe57600080fd5b506102ab61060d3660046122c3565b6110a0565b34801561061e57600080fd5b506102c261062d366004612493565b6110da565b34801561063e57600080fd5b5061037060135481565b34801561065457600080fd5b50610370600a5481565b34801561066a57600080fd5b50610370600e5481565b6102ab610682366004612407565b6111a5565b34801561069357600080fd5b506102ab6106a236600461237e565b6113f4565b3480156106b357600080fd5b506102766106c2366004612254565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106fc57600080fd5b50610370611438565b34801561071157600080fd5b506102ab610720366004612493565b611491565b34801561073157600080fd5b506102ab610740366004612239565b6114c0565b60006001600160e01b031982166380ac58cd60e01b148061077657506001600160e01b03198216635b5e139f60e01b145b8061079157506001600160e01b0319821663780e9d6360e01b145b806107ac57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146107e55760405162461bcd60e51b81526004016107dc90612659565b60405180910390fd5b6017805460ff1916911515919091179055565b606060018054610807906127f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610833906127f4565b80156108805780601f1061085557610100808354040283529160200191610880565b820191906000526020600020905b81548152906001019060200180831161086357829003601f168201915b5050505050905090565b60006108958261155b565b6108b2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108d982610b8d565b9050806001600160a01b0316836001600160a01b0316141561090e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061092e575061092c81336106c2565b155b1561094c576040516367d9dca160e11b815260040160405180910390fd5b61095783838361158f565b505050565b6109578383836115eb565b600061097283610b9f565b8210610991576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610a5d57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610a095750610a55565b80516001600160a01b031615610a1e57805192505b876001600160a01b0316836001600160a01b03161415610a535786841415610a4c575093506107ac92505050565b6001909301925b505b6001016109a2565b50600080fd5b6000806107ac600b54610a81600e544261180890919063ffffffff16565b90611814565b610957838383604051806020016040528060008152506110a0565b600080546001600160801b031681805b82811015610b3257600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610b295785831415610b225750949350505050565b6001909201915b50600101610ab2565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610b765760405162461bcd60e51b81526004016107dc90612659565b8051610b899060169060208401906120df565b5050565b6000610b9882611820565b5192915050565b60006001600160a01b038216610bc8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610c175760405162461bcd60e51b81526004016107dc90612659565b610c216000611942565b565b6007546001600160a01b03163314610c4d5760405162461bcd60e51b81526004016107dc90612659565b60405133904780156108fc02916000818181858888f19350505050610c2157600080fd5b606060028054610807906127f4565b600080600933604051602001610c97929190612507565b6040516020818303038152906040528051906020012090506000610d1284610d0c846040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b90611994565b6008546001600160a01b03908116911614949350505050565b60155481610d4b5760405162461bcd60e51b81526004016107dc90612611565b601354610d588383612766565b1115610d765760405162461bcd60e51b81526004016107dc9061268e565b6007546001600160a01b03163314610fe55760175460ff1615610ddb5760405162461bcd60e51b815260206004820152601d60248201527f3848414e4142493a3a20436f6e7472616374206973207061757365642e00000060448201526064016107dc565b601754610100900460ff16610e3e5760405162461bcd60e51b8152602060048201526024808201527f3848414e4142493a3a20416c6c6f776c6973742073616c65206973206f6e676f60448201526334b7339760e11b60648201526084016107dc565b6000600e5411610eab5760405162461bcd60e51b815260206004820152603260248201527f3848414e4142493a3a205075626c69632073616c652073746172742074696d65604482015271103430b9903737ba103132b2b71039b2ba1760711b60648201526084016107dc565b42600e5410610f0b5760405162461bcd60e51b815260206004820152602660248201527f3848414e4142493a3a205075626c69632073616c6520686173206e6f7420737460448201526530b93a32b21760d11b60648201526084016107dc565b601454821115610f835760405162461bcd60e51b815260206004820152603b60248201527f3848414e4142493a3a20556e61626c6520746f206d696e7420616d6f756e742c60448201527f2077696c6c20657863656564206d696e74696e67206c696d69742e000000000060648201526084016107dc565b81610f8c611438565b610f969190612792565b341015610fe55760405162461bcd60e51b815260206004820152601d60248201527f3848414e4142493a3a20496e73756666696369656e742066756e64732e00000060448201526064016107dc565b610fef33836119b8565b81601560008282546110019190612766565b90915550505050565b6001600160a01b0382163314156110345760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110ab8484846115eb565b6110b7848484846119d2565b6110d4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110e58261155b565b6111495760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107dc565b6000611153611ae1565b90506000815111611173576040518060200160405280600081525061119e565b8061117d84611af0565b60405160200161118e9291906124d8565b6040516020818303038152906040525b9392505050565b60175460ff16156111f85760405162461bcd60e51b815260206004820152601d60248201527f3848414e4142493a3a20436f6e7472616374206973207061757365642e00000060448201526064016107dc565b601754610100900460ff16156112505760405162461bcd60e51b815260206004820152601e60248201527f3848414e4142493a3a20416c6c6f776c697374206973207061757365642e000060448201526064016107dc565b600081116112705760405162461bcd60e51b81526004016107dc90612611565b61127982610c80565b6112d05760405162461bcd60e51b815260206004820152602260248201527f4572726f722c2061646472657373206973206e6f74206f6e20616c6c6f776c696044820152611cdd60f21b60648201526084016107dc565b6015546013546112e08383612766565b11156112fe5760405162461bcd60e51b81526004016107dc9061268e565b6011548211156113205760405162461bcd60e51b81526004016107dc90612709565b3360009081526012602052604090205460031161134f5760405162461bcd60e51b81526004016107dc90612709565b8160105461135d9190612792565b3410156113ac5760405162461bcd60e51b815260206004820152601d60248201527f3848414e4142493a3a20496e73756666696369656e742066756e64732e00000060448201526064016107dc565b33600090815260126020526040812080548492906113cb908490612766565b9250508190555081601560008282546113e49190612766565b90915550610957905033836119b8565b6007546001600160a01b0316331461141e5760405162461bcd60e51b81526004016107dc90612659565b601780549115156101000261ff0019909216919091179055565b600080611456600b54610a81600e544261180890919063ffffffff16565b9050600f5481111561146a575050600d5490565b61148b611482600c5483611bed90919063ffffffff16565b600a5490611808565b91505090565b6007546001600160a01b031633146114bb5760405162461bcd60e51b81526004016107dc90612659565b600e55565b6007546001600160a01b031633146114ea5760405162461bcd60e51b81526004016107dc90612659565b6001600160a01b03811661154f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107dc565b61155881611942565b50565b600080546001600160801b0316821080156107ac575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115f682611820565b80519091506000906001600160a01b0316336001600160a01b031614806116245750815161162490336106c2565b8061163f5750336116348461088a565b6001600160a01b0316145b90508061165f57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146116945760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166116bb57604051633a954ecd60e21b815260040160405180910390fd5b6116cb600084846000015161158f565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166117be576000546001600160801b03168110156117be57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600061119e82846127b1565b600061119e828461277e565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561192957600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119275780516001600160a01b0316156118be579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611922579392505050565b6118be565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008060006119a38585611bf9565b915091506119b081611c69565b509392505050565b610b89828260405180602001604052806000815250611e24565b60006001600160a01b0384163b15611ad557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a169033908990889088906004016125c1565b602060405180830381600087803b158015611a3057600080fd5b505af1925050508015611a60575060408051601f3d908101601f19168201909252611a5d918101906123b6565b60015b611abb573d808015611a8e576040519150601f19603f3d011682016040523d82523d6000602084013e611a93565b606091505b508051611ab3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ad9565b5060015b949350505050565b606060168054610807906127f4565b606081611b145750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b3e5780611b288161282f565b9150611b379050600a8361277e565b9150611b18565b6000816001600160401b03811115611b5857611b586128b6565b6040519080825280601f01601f191660200182016040528015611b82576020820181803683370190505b5090505b8415611ad957611b976001836127b1565b9150611ba4600a8661284a565b611baf906030612766565b60f81b818381518110611bc457611bc46128a0565b60200101906001600160f81b031916908160001a905350611be6600a8661277e565b9450611b86565b600061119e8284612792565b600080825160411415611c305760208301516040840151606085015160001a611c2487828585611e31565b94509450505050611c62565b825160401415611c5a5760208301516040840151611c4f868383611f1e565b935093505050611c62565b506000905060025b9250929050565b6000816004811115611c7d57611c7d61288a565b1415611c865750565b6001816004811115611c9a57611c9a61288a565b1415611ce85760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016107dc565b6002816004811115611cfc57611cfc61288a565b1415611d4a5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016107dc565b6003816004811115611d5e57611d5e61288a565b1415611db75760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016107dc565b6004816004811115611dcb57611dcb61288a565b14156115585760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016107dc565b6109578383836001611f57565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611e685750600090506003611f15565b8460ff16601b14158015611e8057508460ff16601c14155b15611e915750600090506004611f15565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611ee5573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611f0e57600060019250925050611f15565b9150600090505b94509492505050565b6000806001600160ff1b03831681611f3b60ff86901c601b612766565b9050611f4987828885611e31565b935093505050935093915050565b6000546001600160801b03166001600160a01b038516611f8957604051622e076360e81b815260040160405180910390fd5b83611fa75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156120b95760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561208f575061208d60008884886119d2565b155b156120ad576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101612038565b50600080546001600160801b0319166001600160801b0392909216919091179055611801565b8280546120eb906127f4565b90600052602060002090601f01602090048101928261210d5760008555612153565b82601f1061212657805160ff1916838001178555612153565b82800160010185558215612153579182015b82811115612153578251825591602001919060010190612138565b5061215f929150612163565b5090565b5b8082111561215f5760008155600101612164565b60006001600160401b0380841115612192576121926128b6565b604051601f8501601f19908116603f011681019082821181831017156121ba576121ba6128b6565b816040528093508581528686860111156121d357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461220457600080fd5b919050565b8035801515811461220457600080fd5b600082601f83011261222a57600080fd5b61119e83833560208501612178565b60006020828403121561224b57600080fd5b61119e826121ed565b6000806040838503121561226757600080fd5b612270836121ed565b915061227e602084016121ed565b90509250929050565b60008060006060848603121561229c57600080fd5b6122a5846121ed565b92506122b3602085016121ed565b9150604084013590509250925092565b600080600080608085870312156122d957600080fd5b6122e2856121ed565b93506122f0602086016121ed565b92506040850135915060608501356001600160401b0381111561231257600080fd5b61231e87828801612219565b91505092959194509250565b6000806040838503121561233d57600080fd5b612346836121ed565b915061227e60208401612209565b6000806040838503121561236757600080fd5b612370836121ed565b946020939093013593505050565b60006020828403121561239057600080fd5b61119e82612209565b6000602082840312156123ab57600080fd5b813561119e816128cc565b6000602082840312156123c857600080fd5b815161119e816128cc565b6000602082840312156123e557600080fd5b81356001600160401b038111156123fb57600080fd5b611ad984828501612219565b6000806040838503121561241a57600080fd5b82356001600160401b0381111561243057600080fd5b61243c85828601612219565b95602094909401359450505050565b60006020828403121561245d57600080fd5b81356001600160401b0381111561247357600080fd5b8201601f8101841361248457600080fd5b611ad984823560208401612178565b6000602082840312156124a557600080fd5b5035919050565b600081518084526124c48160208601602086016127c8565b601f01601f19169290920160200192915050565b600083516124ea8184602088016127c8565b8351908301906124fe8183602088016127c8565b01949350505050565b600080845481600182811c91508083168061252357607f831692505b602080841082141561254357634e487b7160e01b86526022600452602486fd5b818015612557576001811461256857612595565b60ff19861689528489019650612595565b60008b81526020902060005b8681101561258d5781548b820152908501908301612574565b505084890196505b5050505050506125b6818560601b6bffffffffffffffffffffffff19169052565b601401949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125f4908301846124ac565b9695505050505050565b60208152600061119e60208301846124ac565b60208082526028908201527f3848414e4142493a3a204d696e7420616d6f756e74206d757374206265206174604082015267206c65617374203160c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526055908201527f3848414e4142493a3a20556e61626c6520746f206d696e7420616d6f756e742c60408201527f2077696c6c20657863656564206d617820737570706c792e20547279206465636060820152743932b0b9b4b733903a34329038bab0b73a34ba3c9760591b608082015260a00190565b6020808252603d908201527f3848414e4142493a3a20556e61626c6520746f206d696e7420616d6f756e742c60408201527f2077696c6c2065786365656420616c6c6f776c697374206c696d69742e000000606082015260800190565b600082198211156127795761277961285e565b500190565b60008261278d5761278d612874565b500490565b60008160001904831182151516156127ac576127ac61285e565b500290565b6000828210156127c3576127c361285e565b500390565b60005b838110156127e35781810151838201526020016127cb565b838111156110d45750506000910152565b600181811c9082168061280857607f821691505b6020821081141561282957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128435761284361285e565b5060010190565b60008261285957612859612874565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461155857600080fdfea26469706673582212202b9f8645be1b378063fc3910a9232c9c3f7599d7ccead28ca72ddbb25e22d66e64736f6c63430008070033

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

0000000000000000000000000cecd96249ba92fb8fd2f25898818b58c66c6f86

-----Decoded View---------------
Arg [0] : _ethSigner (address): 0x0ceCd96249BA92fb8FD2f25898818B58C66c6f86

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000cecd96249ba92fb8fd2f25898818b58c66c6f86


Deployed Bytecode Sourcemap

63032:5691:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46499:372;;;;;;;;;;-1:-1:-1;46499:372:0;;;;;:::i;:::-;;:::i;:::-;;;8413:14:1;;8406:22;8388:41;;8376:2;8361:18;46499:372:0;;;;;;;;67341:74;;;;;;;;;;-1:-1:-1;67341:74:0;;;;;:::i;:::-;;:::i;:::-;;49109:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;50612:204::-;;;;;;;;;;-1:-1:-1;50612:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7711:32:1;;;7693:51;;7681:2;7666:18;50612:204:0;7547:203:1;50175:371:0;;;;;;;;;;-1:-1:-1;50175:371:0;;;;;:::i;:::-;;:::i;64062:27::-;;;;;;;;;;-1:-1:-1;64062:27:0;;;;;;;;43736:280;;;;;;;;;;;;43789:7;43981:12;-1:-1:-1;;;;;;;;43981:12:0;;;;43965:13;;;:28;;;;43958:35;;43736:280;;;;16386:25:1;;;16374:2;16359:18;43736:280:0;16240:177:1;63914:33:0;;;;;;;;;;;;;;;;51469:170;;;;;;;;;;-1:-1:-1;51469:170:0;;;;;:::i;:::-;;:::i;45322:1105::-;;;;;;;;;;-1:-1:-1;45322:1105:0;;;;;:::i;:::-;;:::i;67423:217::-;;;;;;;;;;;;;:::i;51710:185::-;;;;;;;;;;-1:-1:-1;51710:185:0;;;;;:::i;:::-;;:::i;44309:713::-;;;;;;;;;;-1:-1:-1;44309:713:0;;;;;:::i;:::-;;:::i;63739:41::-;;;;;;;;;;;;;;;;63391:54;;;;;;;;;;;;;;;;63334:37;;;;;;;;;;;;;;;;67231:102;;;;;;;;;;-1:-1:-1;67231:102:0;;;;;:::i;:::-;;:::i;64096:35::-;;;;;;;;;;-1:-1:-1;64096:35:0;;;;;;;;;;;63465:46;;;;;;;;;;;;;;;;48918:124;;;;;;;;;;-1:-1:-1;48918:124:0;;;;;:::i;:::-;;:::i;46935:206::-;;;;;;;;;;-1:-1:-1;46935:206:0;;;;;:::i;:::-;;:::i;21340:103::-;;;;;;;;;;;;;:::i;63977:32::-;;;;;;;;;;;;;;;;67741:115;;;;;;;;;;;;;:::i;20689:87::-;;;;;;;;;;-1:-1:-1;20762:6:0;;-1:-1:-1;;;;;20762:6:0;20689:87;;63670:49;;;;;;;;;;;;;;;;49278:104;;;;;;;;;;;;;:::i;63566:91::-;;;;;;;;;;;;;;;;68379:341;;;;;;;;;;-1:-1:-1;68379:341:0;;;;;:::i;:::-;;:::i;65960:1141::-;;;;;;:::i;:::-;;:::i;50888:279::-;;;;;;;;;;-1:-1:-1;50888:279:0;;;;;:::i;:::-;;:::i;51966:342::-;;;;;;;;;;-1:-1:-1;51966:342:0;;;;;:::i;:::-;;:::i;67864:487::-;;;;;;;;;;-1:-1:-1;67864:487:0;;;;;:::i;:::-;;:::i;63876:31::-;;;;;;;;;;;;;;;;63265:49;;;;;;;;;;;;;;;;63531:28;;;;;;;;;;;;;;;;64752:1200;;;;;;:::i;:::-;;:::i;67648:85::-;;;;;;;;;;-1:-1:-1;67648:85:0;;;;;:::i;:::-;;:::i;51238:164::-;;;;;;;;;;-1:-1:-1;51238:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;51359:25:0;;;51335:4;51359:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;51238:164;64373:356;;;;;;;;;;;;;:::i;64249:116::-;;;;;;;;;;-1:-1:-1;64249:116:0;;;;;:::i;:::-;;:::i;21598:201::-;;;;;;;;;;-1:-1:-1;21598:201:0;;;;;:::i;:::-;;:::i;46499:372::-;46601:4;-1:-1:-1;;;;;;46638:40:0;;-1:-1:-1;;;46638:40:0;;:105;;-1:-1:-1;;;;;;;46695:48:0;;-1:-1:-1;;;46695:48:0;46638:105;:172;;;-1:-1:-1;;;;;;;46760:50:0;;-1:-1:-1;;;46760:50:0;46638:172;:225;;;-1:-1:-1;;;;;;;;;;33605:40:0;;;46827:36;46618:245;46499:372;-1:-1:-1;;46499:372:0:o;67341:74::-;20762:6;;-1:-1:-1;;;;;20762:6:0;19493:10;20909:23;20901:68;;;;-1:-1:-1;;;20901:68:0;;;;;;;:::i;:::-;;;;;;;;;67394:7:::1;:13:::0;;-1:-1:-1;;67394:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;67341:74::o;49109:100::-;49163:13;49196:5;49189:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49109:100;:::o;50612:204::-;50680:7;50705:16;50713:7;50705;:16::i;:::-;50700:64;;50730:34;;-1:-1:-1;;;50730:34:0;;;;;;;;;;;50700:64;-1:-1:-1;50784:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;50784:24:0;;50612:204::o;50175:371::-;50248:13;50264:24;50280:7;50264:15;:24::i;:::-;50248:40;;50309:5;-1:-1:-1;;;;;50303:11:0;:2;-1:-1:-1;;;;;50303:11:0;;50299:48;;;50323:24;;-1:-1:-1;;;50323:24:0;;;;;;;;;;;50299:48;19493:10;-1:-1:-1;;;;;50364:21:0;;;;;;:63;;-1:-1:-1;50390:37:0;50407:5;19493:10;51238:164;:::i;50390:37::-;50389:38;50364:63;50360:138;;;50451:35;;-1:-1:-1;;;50451:35:0;;;;;;;;;;;50360:138;50510:28;50519:2;50523:7;50532:5;50510:8;:28::i;:::-;50237:309;50175:371;;:::o;51469:170::-;51603:28;51613:4;51619:2;51623:7;51603:9;:28::i;45322:1105::-;45411:7;45444:16;45454:5;45444:9;:16::i;:::-;45435:5;:25;45431:61;;45469:23;;-1:-1:-1;;;45469:23:0;;;;;;;;;;;45431:61;45503:22;45528:13;;-1:-1:-1;;;;;45528:13:0;;45503:22;;45778:557;45798:14;45794:1;:18;45778:557;;;45838:31;45872:14;;;:11;:14;;;;;;;;;45838:48;;;;;;;;;-1:-1:-1;;;;;45838:48:0;;;;-1:-1:-1;;;45838:48:0;;-1:-1:-1;;;;;45838:48:0;;;;;;;;-1:-1:-1;;;45838:48:0;;;;;;;;;;;;;;;;45905:73;;45950:8;;;45905:73;46000:14;;-1:-1:-1;;;;;46000:28:0;;45996:111;;46073:14;;;-1:-1:-1;45996:111:0;46150:5;-1:-1:-1;;;;;46129:26:0;:17;-1:-1:-1;;;;;46129:26:0;;46125:195;;;46199:5;46184:11;:20;46180:85;;;-1:-1:-1;46240:1:0;-1:-1:-1;46233:8:0;;-1:-1:-1;;;46233:8:0;46180:85;46287:13;;;;;46125:195;45819:516;45778:557;45814:3;;45778:557;;;;46411:8;;;67423:217;67469:7;67489:24;67516:82;67571:16;;67517:34;67537:13;;67517:15;:19;;:34;;;;:::i;:::-;67516:40;;:82::i;51710:185::-;51848:39;51865:4;51871:2;51875:7;51848:39;;;;;;;;;;;;:16;:39::i;44309:713::-;44376:7;44421:13;;-1:-1:-1;;;;;44421:13:0;44376:7;;44635:328;44655:14;44651:1;:18;44635:328;;;44695:31;44729:14;;;:11;:14;;;;;;;;;44695:48;;;;;;;;;-1:-1:-1;;;;;44695:48:0;;;;-1:-1:-1;;;44695:48:0;;-1:-1:-1;;;;;44695:48:0;;;;;;;;-1:-1:-1;;;44695:48:0;;;;;;;;;;;;;;44762:186;;44827:5;44812:11;:20;44808:85;;;-1:-1:-1;44868:1:0;44309:713;-1:-1:-1;;;;44309:713:0:o;44808:85::-;44915:13;;;;;44762:186;-1:-1:-1;44671:3:0;;44635:328;;;;44991:23;;-1:-1:-1;;;44991:23:0;;;;;;;;;;;67231:102;20762:6;;-1:-1:-1;;;;;20762:6:0;19493:10;20909:23;20901:68;;;;-1:-1:-1;;;20901:68:0;;;;;;;:::i;:::-;67302:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;67231:102:::0;:::o;48918:124::-;48982:7;49009:20;49021:7;49009:11;:20::i;:::-;:25;;48918:124;-1:-1:-1;;48918:124:0:o;46935:206::-;46999:7;-1:-1:-1;;;;;47023:19:0;;47019:60;;47051:28;;-1:-1:-1;;;47051:28:0;;;;;;;;;;;47019:60;-1:-1:-1;;;;;;47105:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;47105:27:0;;46935:206::o;21340:103::-;20762:6;;-1:-1:-1;;;;;20762:6:0;19493:10;20909:23;20901:68;;;;-1:-1:-1;;;20901:68:0;;;;;;;:::i;:::-;21405:30:::1;21432:1;21405:18;:30::i;:::-;21340:103::o:0;67741:115::-;20762:6;;-1:-1:-1;;;;;20762:6:0;19493:10;20909:23;20901:68;;;;-1:-1:-1;;;20901:68:0;;;;;;;:::i;:::-;67800:47:::1;::::0;67808:10:::1;::::0;67825:21:::1;67800:47:::0;::::1;;;::::0;::::1;::::0;;;67825:21;67808:10;67800:47;::::1;;;;;;67792:56;;;::::0;::::1;49278:104:::0;49334:13;49367:7;49360:14;;;;;:::i;68379:341::-;68476:4;68498:19;68547:6;68555:10;68530:36;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68520:47;;;;;;68498:69;;68578:14;68595:80;68654:10;68595:36;:11;17621:58;;7404:66:1;17621:58:0;;;7392:79:1;7487:12;;;7480:28;;;17488:7:0;;7524:12:1;;17621:58:0;;;;;;;;;;;;17611:69;;;;;;17604:76;;17419:269;;;;68595:36;:44;;:80::i;:::-;68693:9;;-1:-1:-1;;;;;68693:9:0;;;:19;;;;68379:341;-1:-1:-1;;;;68379:341:0:o;65960:1141::-;66038:13;;66070:15;66062:68;;;;-1:-1:-1;;;66062:68:0;;;;;;;:::i;:::-;66187:9;;66163:20;66172:11;66163:6;:20;:::i;:::-;:33;;66141:168;;;;-1:-1:-1;;;66141:168:0;;;;;;;:::i;:::-;20762:6;;-1:-1:-1;;;;;20762:6:0;66324:10;:21;66320:690;;66371:7;;;;66370:8;66362:50;;;;-1:-1:-1;;;66362:50:0;;14425:2:1;66362:50:0;;;14407:21:1;14464:2;14444:18;;;14437:30;14503:31;14483:18;;;14476:59;14552:18;;66362:50:0;14223:353:1;66362:50:0;66435:16;;;;;;;66427:65;;;;-1:-1:-1;;;66427:65:0;;9982:2:1;66427:65:0;;;9964:21:1;10021:2;10001:18;;;9994:30;10060:34;10040:18;;;10033:62;-1:-1:-1;;;10111:18:1;;;10104:34;10155:19;;66427:65:0;9780:400:1;66427:65:0;66531:1;66515:13;;:17;66507:80;;;;-1:-1:-1;;;66507:80:0;;15593:2:1;66507:80:0;;;15575:21:1;15632:2;15612:18;;;15605:30;15671:34;15651:18;;;15644:62;-1:-1:-1;;;15722:18:1;;;15715:48;15780:19;;66507:80:0;15391:414:1;66507:80:0;66626:15;66610:13;;:31;66602:82;;;;-1:-1:-1;;;66602:82:0;;15186:2:1;66602:82:0;;;15168:21:1;15225:2;15205:18;;;15198:30;15264:34;15244:18;;;15237:62;-1:-1:-1;;;15315:18:1;;;15308:36;15361:19;;66602:82:0;14984:402:1;66602:82:0;66740:13;;66725:11;:28;;66699:149;;;;-1:-1:-1;;;66699:149:0;;11914:2:1;66699:149:0;;;11896:21:1;11953:2;11933:18;;;11926:30;11992:34;11972:18;;;11965:62;12063:29;12043:18;;;12036:57;12110:19;;66699:149:0;11712:423:1;66699:149:0;66922:11;66902:17;:15;:17::i;:::-;:31;;;;:::i;:::-;66889:9;:44;;66863:135;;;;-1:-1:-1;;;66863:135:0;;11153:2:1;66863:135:0;;;11135:21:1;11192:2;11172:18;;;11165:30;11231:31;11211:18;;;11204:59;11280:18;;66863:135:0;10951:353:1;66863:135:0;67020:34;67030:10;67042:11;67020:9;:34::i;:::-;67082:11;67065:13;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;65960:1141:0:o;50888:279::-;-1:-1:-1;;;;;50979:24:0;;19493:10;50979:24;50975:54;;;51012:17;;-1:-1:-1;;;51012:17:0;;;;;;;;;;;50975:54;19493:10;51042:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;51042:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;51042:53:0;;;;;;;;;;51111:48;;8388:41:1;;;51042:42:0;;19493:10;51111:48;;8361:18:1;51111:48:0;;;;;;;50888:279;;:::o;51966:342::-;52133:28;52143:4;52149:2;52153:7;52133:9;:28::i;:::-;52177:48;52200:4;52206:2;52210:7;52219:5;52177:22;:48::i;:::-;52172:129;;52249:40;;-1:-1:-1;;;52249:40:0;;;;;;;;;;;52172:129;51966:342;;;;:::o;67864:487::-;67982:13;68035:16;68043:7;68035;:16::i;:::-;68013:113;;;;-1:-1:-1;;;68013:113:0;;13515:2:1;68013:113:0;;;13497:21:1;13554:2;13534:18;;;13527:30;13593:34;13573:18;;;13566:62;-1:-1:-1;;;13644:18:1;;;13637:45;13699:19;;68013:113:0;13313:411:1;68013:113:0;68137:28;68168:10;:8;:10::i;:::-;68137:41;;68240:1;68215:14;68209:28;:32;:134;;;;;;;;;;;;;;;;;68285:14;68301:18;:7;:16;:18::i;:::-;68268:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68209:134;68189:154;67864:487;-1:-1:-1;;;67864:487:0:o;64752:1200::-;64872:7;;;;64871:8;64863:50;;;;-1:-1:-1;;;64863:50:0;;14425:2:1;64863:50:0;;;14407:21:1;14464:2;14444:18;;;14437:30;14503:31;14483:18;;;14476:59;14552:18;;64863:50:0;14223:353:1;64863:50:0;64933:16;;;;;;;64932:17;64924:60;;;;-1:-1:-1;;;64924:60:0;;10794:2:1;64924:60:0;;;10776:21:1;10833:2;10813:18;;;10806:30;10872:32;10852:18;;;10845:60;10922:18;;64924:60:0;10592:354:1;64924:60:0;65017:1;65003:11;:15;64995:68;;;;-1:-1:-1;;;64995:68:0;;;;;;;:::i;:::-;65082:19;65097:3;65082:14;:19::i;:::-;65074:66;;;;-1:-1:-1;;;65074:66:0;;14783:2:1;65074:66:0;;;14765:21:1;14822:2;14802:18;;;14795:30;14861:34;14841:18;;;14834:62;-1:-1:-1;;;14912:18:1;;;14905:32;14954:19;;65074:66:0;14581:398:1;65074:66:0;65168:13;;65238:9;;65214:20;65223:11;65168:13;65214:20;:::i;:::-;:33;;65192:168;;;;-1:-1:-1;;;65192:168:0;;;;;;;:::i;:::-;65408:22;;65393:11;:37;;65371:148;;;;-1:-1:-1;;;65371:148:0;;;;;;;:::i;:::-;65570:10;65552:29;;;;:17;:29;;;;;;65584:1;-1:-1:-1;65530:144:0;;;;-1:-1:-1;;;65530:144:0;;;;;;;:::i;:::-;65737:11;65720:14;;:28;;;;:::i;:::-;65707:9;:41;;65685:120;;;;-1:-1:-1;;;65685:120:0;;11153:2:1;65685:120:0;;;11135:21:1;11192:2;11172:18;;;11165:30;11231:31;11211:18;;;11204:59;11280:18;;65685:120:0;10951:353:1;65685:120:0;65834:10;65816:29;;;;:17;:29;;;;;:44;;65849:11;;65816:29;:44;;65849:11;;65816:44;:::i;:::-;;;;;;;;65888:11;65871:13;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;65910:34:0;;-1:-1:-1;65920:10:0;65932:11;65910:9;:34::i;67648:85::-;20762:6;;-1:-1:-1;;;;;20762:6:0;19493:10;20909:23;20901:68;;;;-1:-1:-1;;;20901:68:0;;;;;;;:::i;:::-;67703:16:::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;67703:22:0;;::::1;::::0;;;::::1;::::0;;67648:85::o;64373:356::-;64421:7;64441:24;64468:82;64523:16;;64469:34;64489:13;;64469:15;:19;;:34;;;;:::i;64468:82::-;64441:109;;64584:13;;64565:16;:32;64561:83;;;-1:-1:-1;;64621:11:0;;;64373:356::o;64561:83::-;64661:60;64679:41;64700:19;;64679:16;:20;;:41;;;;:::i;:::-;64661:13;;;:17;:60::i;:::-;64654:67;;;64373:356;:::o;64249:116::-;20762:6;;-1:-1:-1;;;;;20762:6:0;19493:10;20909:23;20901:68;;;;-1:-1:-1;;;20901:68:0;;;;;;;:::i;:::-;64327:13:::1;:30:::0;64249:116::o;21598:201::-;20762:6;;-1:-1:-1;;;;;20762:6:0;19493:10;20909:23;20901:68;;;;-1:-1:-1;;;20901:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21687:22:0;::::1;21679:73;;;::::0;-1:-1:-1;;;21679:73:0;;10387:2:1;21679:73:0::1;::::0;::::1;10369:21:1::0;10426:2;10406:18;;;10399:30;10465:34;10445:18;;;10438:62;-1:-1:-1;;;10516:18:1;;;10509:36;10562:19;;21679:73:0::1;10185:402:1::0;21679:73:0::1;21763:28;21782:8;21763:18;:28::i;:::-;21598:201:::0;:::o;52563:144::-;52620:4;52654:13;;-1:-1:-1;;;;;52654:13:0;52644:23;;:55;;;;-1:-1:-1;;52672:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;52672:27:0;;;;52671:28;;52563:144::o;59779:196::-;59894:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;59894:29:0;-1:-1:-1;;;;;59894:29:0;;;;;;;;;59939:28;;59894:24;;59939:28;;;;;;;59779:196;;;:::o;55280:2112::-;55395:35;55433:20;55445:7;55433:11;:20::i;:::-;55508:18;;55395:58;;-1:-1:-1;55466:22:0;;-1:-1:-1;;;;;55492:34:0;19493:10;-1:-1:-1;;;;;55492:34:0;;:101;;;-1:-1:-1;55560:18:0;;55543:50;;19493:10;51238:164;:::i;55543:50::-;55492:154;;;-1:-1:-1;19493:10:0;55610:20;55622:7;55610:11;:20::i;:::-;-1:-1:-1;;;;;55610:36:0;;55492:154;55466:181;;55665:17;55660:66;;55691:35;;-1:-1:-1;;;55691:35:0;;;;;;;;;;;55660:66;55763:4;-1:-1:-1;;;;;55741:26:0;:13;:18;;;-1:-1:-1;;;;;55741:26:0;;55737:67;;55776:28;;-1:-1:-1;;;55776:28:0;;;;;;;;;;;55737:67;-1:-1:-1;;;;;55819:16:0;;55815:52;;55844:23;;-1:-1:-1;;;55844:23:0;;;;;;;;;;;55815:52;55988:49;56005:1;56009:7;56018:13;:18;;;55988:8;:49::i;:::-;-1:-1:-1;;;;;56333:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;56333:31:0;;;-1:-1:-1;;;;;56333:31:0;;;-1:-1:-1;;56333:31:0;;;;;;;56379:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;56379:29:0;;;;;;;;;;;56425:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;56470:61:0;;;;-1:-1:-1;;;56515:15:0;56470:61;;;;;;;;;;;56805:11;;;56835:24;;;;;:29;56805:11;;56835:29;56831:445;;57060:13;;-1:-1:-1;;;;;57060:13:0;57046:27;;57042:219;;;57130:18;;;57098:24;;;:11;:24;;;;;;;;:50;;57213:28;;;;-1:-1:-1;;;;;57171:70:0;-1:-1:-1;;;57171:70:0;-1:-1:-1;;;;;;57171:70:0;;;-1:-1:-1;;;;;57098:50:0;;;57171:70;;;;;;;57042:219;56308:979;57323:7;57319:2;-1:-1:-1;;;;;57304:27:0;57313:4;-1:-1:-1;;;;;57304:27:0;;;;;;;;;;;57342:42;55384:2008;;55280:2112;;;:::o;3292:98::-;3350:7;3377:5;3381:1;3377;:5;:::i;4048:98::-;4106:7;4133:5;4137:1;4133;:5;:::i;47773:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;47939:13:0;;47883:7;;-1:-1:-1;;;;;47939:13:0;47932:20;;47928:861;;;47973:31;48007:17;;;:11;:17;;;;;;;;;47973:51;;;;;;;;;-1:-1:-1;;;;;47973:51:0;;;;-1:-1:-1;;;47973:51:0;;-1:-1:-1;;;;;47973:51:0;;;;;;;;-1:-1:-1;;;47973:51:0;;;;;;;;;;;;;;48043:731;;48093:14;;-1:-1:-1;;;;;48093:28:0;;48089:101;;48157:9;47773:1083;-1:-1:-1;;;47773:1083:0:o;48089:101::-;-1:-1:-1;;;48534:6:0;48579:17;;;;:11;:17;;;;;;;;;48567:29;;;;;;;;;-1:-1:-1;;;;;48567:29:0;;;;;-1:-1:-1;;;48567:29:0;;-1:-1:-1;;;;;48567:29:0;;;;;;;;-1:-1:-1;;;48567:29:0;;;;;;;;;;;;;48627:28;48623:109;;48695:9;47773:1083;-1:-1:-1;;;47773:1083:0:o;48623:109::-;48494:261;;;47954:835;47928:861;48817:31;;-1:-1:-1;;;48817:31:0;;;;;;;;;;;21959:191;22052:6;;;-1:-1:-1;;;;;22069:17:0;;;-1:-1:-1;;;;;;22069:17:0;;;;;;;22102:40;;22052:6;;;22069:17;22052:6;;22102:40;;22033:16;;22102:40;22022:128;21959:191;:::o;13617:231::-;13695:7;13716:17;13735:18;13757:27;13768:4;13774:9;13757:10;:27::i;:::-;13715:69;;;;13795:18;13807:5;13795:11;:18::i;:::-;-1:-1:-1;13831:9:0;13617:231;-1:-1:-1;;;13617:231:0:o;52715:104::-;52784:27;52794:2;52798:8;52784:27;;;;;;;;;;;;:9;:27::i;60540:790::-;60695:4;-1:-1:-1;;;;;60716:13:0;;23685:19;:23;60712:611;;60752:72;;-1:-1:-1;;;60752:72:0;;-1:-1:-1;;;;;60752:36:0;;;;;:72;;19493:10;;60803:4;;60809:7;;60818:5;;60752:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60752:72:0;;;;;;;;-1:-1:-1;;60752:72:0;;;;;;;;;;;;:::i;:::-;;;60748:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60998:13:0;;60994:259;;61048:40;;-1:-1:-1;;;61048:40:0;;;;;;;;;;;60994:259;61203:6;61197:13;61188:6;61184:2;61180:15;61173:38;60748:520;-1:-1:-1;;;;;;60875:55:0;-1:-1:-1;;;60875:55:0;;-1:-1:-1;60868:62:0;;60712:611;-1:-1:-1;61307:4:0;60712:611;60540:790;;;;;;:::o;67109:114::-;67169:13;67202;67195:20;;;;;:::i;7441:723::-;7497:13;7718:10;7714:53;;-1:-1:-1;;7745:10:0;;;;;;;;;;;;-1:-1:-1;;;7745:10:0;;;;;7441:723::o;7714:53::-;7792:5;7777:12;7833:78;7840:9;;7833:78;;7866:8;;;;:::i;:::-;;-1:-1:-1;7889:10:0;;-1:-1:-1;7897:2:0;7889:10;;:::i;:::-;;;7833:78;;;7921:19;7953:6;-1:-1:-1;;;;;7943:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7943:17:0;;7921:39;;7971:154;7978:10;;7971:154;;8005:11;8015:1;8005:11;;:::i;:::-;;-1:-1:-1;8074:10:0;8082:2;8074:5;:10;:::i;:::-;8061:24;;:2;:24;:::i;:::-;8048:39;;8031:6;8038;8031:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8031:56:0;;;;;;;;-1:-1:-1;8102:11:0;8111:2;8102:11;;:::i;:::-;;;7971:154;;3649:98;3707:7;3734:5;3738:1;3734;:5;:::i;11507:1308::-;11588:7;11597:12;11822:9;:16;11842:2;11822:22;11818:990;;;12118:4;12103:20;;12097:27;12168:4;12153:20;;12147:27;12226:4;12211:20;;12205:27;11861:9;12197:36;12269:25;12280:4;12197:36;12097:27;12147;12269:10;:25::i;:::-;12262:32;;;;;;;;;11818:990;12316:9;:16;12336:2;12316:22;12312:496;;;12591:4;12576:20;;12570:27;12642:4;12627:20;;12621:27;12684:23;12695:4;12570:27;12621;12684:10;:23::i;:::-;12677:30;;;;;;;;12312:496;-1:-1:-1;12756:1:0;;-1:-1:-1;12760:35:0;12312:496;11507:1308;;;;;:::o;9778:643::-;9856:20;9847:5;:29;;;;;;;;:::i;:::-;;9843:571;;;9778:643;:::o;9843:571::-;9954:29;9945:5;:38;;;;;;;;:::i;:::-;;9941:473;;;10000:34;;-1:-1:-1;;;10000:34:0;;9269:2:1;10000:34:0;;;9251:21:1;9308:2;9288:18;;;9281:30;9347:26;9327:18;;;9320:54;9391:18;;10000:34:0;9067:348:1;9941:473:0;10065:35;10056:5;:44;;;;;;;;:::i;:::-;;10052:362;;;10117:41;;-1:-1:-1;;;10117:41:0;;9622:2:1;10117:41:0;;;9604:21:1;9661:2;9641:18;;;9634:30;9700:33;9680:18;;;9673:61;9751:18;;10117:41:0;9420:355:1;10052:362:0;10189:30;10180:5;:39;;;;;;;;:::i;:::-;;10176:238;;;10236:44;;-1:-1:-1;;;10236:44:0;;11511:2:1;10236:44:0;;;11493:21:1;11550:2;11530:18;;;11523:30;11589:34;11569:18;;;11562:62;-1:-1:-1;;;11640:18:1;;;11633:32;11682:19;;10236:44:0;11309:398:1;10176:238:0;10311:30;10302:5;:39;;;;;;;;:::i;:::-;;10298:116;;;10358:44;;-1:-1:-1;;;10358:44:0;;12342:2:1;10358:44:0;;;12324:21:1;12381:2;12361:18;;;12354:30;12420:34;12400:18;;;12393:62;-1:-1:-1;;;12471:18:1;;;12464:32;12513:19;;10358:44:0;12140:398:1;53182:163:0;53305:32;53311:2;53315:8;53325:5;53332:4;53305:5;:32::i;15069:1632::-;15200:7;;16134:66;16121:79;;16117:163;;;-1:-1:-1;16233:1:0;;-1:-1:-1;16237:30:0;16217:51;;16117:163;16294:1;:7;;16299:2;16294:7;;:18;;;;;16305:1;:7;;16310:2;16305:7;;16294:18;16290:102;;;-1:-1:-1;16345:1:0;;-1:-1:-1;16349:30:0;16329:51;;16290:102;16506:24;;;16489:14;16506:24;;;;;;;;;8667:25:1;;;8740:4;8728:17;;8708:18;;;8701:45;;;;8762:18;;;8755:34;;;8805:18;;;8798:34;;;16506:24:0;;8639:19:1;;16506:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;16506:24:0;;-1:-1:-1;;16506:24:0;;;-1:-1:-1;;;;;;;16545:20:0;;16541:103;;16598:1;16602:29;16582:50;;;;;;;16541:103;16664:6;-1:-1:-1;16672:20:0;;-1:-1:-1;15069:1632:0;;;;;;;;:::o;14111:344::-;14225:7;;-1:-1:-1;;;;;14271:80:0;;14225:7;14378:25;14394:3;14379:18;;;14401:2;14378:25;:::i;:::-;14362:42;;14422:25;14433:4;14439:1;14442;14445;14422:10;:25::i;:::-;14415:32;;;;;;14111:344;;;;;;:::o;53604:1422::-;53743:20;53766:13;-1:-1:-1;;;;;53766:13:0;-1:-1:-1;;;;;53794:16:0;;53790:48;;53819:19;;-1:-1:-1;;;53819:19:0;;;;;;;;;;;53790:48;53853:13;53849:44;;53875:18;;-1:-1:-1;;;53875:18:0;;;;;;;;;;;53849:44;-1:-1:-1;;;;;54245:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;54304:49:0;;-1:-1:-1;;;;;54245:44:0;;;;;;;54304:49;;;;-1:-1:-1;;54245:44:0;;;;;;54304:49;;;;;;;;;;;;;;;;54370:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;54420:66:0;;;;-1:-1:-1;;;54470:15:0;54420:66;;;;;;;;;;;54370:25;;54555:328;54575:8;54571:1;:12;54555:328;;;54614:38;;54639:12;;-1:-1:-1;;;;;54614:38:0;;;54631:1;;54614:38;;54631:1;;54614:38;54675:4;:68;;;;;54684:59;54715:1;54719:2;54723:12;54737:5;54684:22;:59::i;:::-;54683:60;54675:68;54671:164;;;54775:40;;-1:-1:-1;;;54775:40:0;;;;;;;;;;;54671:164;54853:14;;;;;54585:3;54555:328;;;-1:-1:-1;54899:13:0;:37;;-1:-1:-1;;;;;;54899:37:0;-1:-1:-1;;;;;54899:37:0;;;;;;;;;;54958:60;51966:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:220;1035:5;1088:3;1081:4;1073:6;1069:17;1065:27;1055:55;;1106:1;1103;1096:12;1055:55;1128:79;1203:3;1194:6;1181:20;1174:4;1166:6;1162:17;1128:79;:::i;1218:186::-;1277:6;1330:2;1318:9;1309:7;1305:23;1301:32;1298:52;;;1346:1;1343;1336:12;1298:52;1369:29;1388:9;1369:29;:::i;1409:260::-;1477:6;1485;1538:2;1526:9;1517:7;1513:23;1509:32;1506:52;;;1554:1;1551;1544:12;1506:52;1577:29;1596:9;1577:29;:::i;:::-;1567:39;;1625:38;1659:2;1648:9;1644:18;1625:38;:::i;:::-;1615:48;;1409:260;;;;;:::o;1674:328::-;1751:6;1759;1767;1820:2;1808:9;1799:7;1795:23;1791:32;1788:52;;;1836:1;1833;1826:12;1788:52;1859:29;1878:9;1859:29;:::i;:::-;1849:39;;1907:38;1941:2;1930:9;1926:18;1907:38;:::i;:::-;1897:48;;1992:2;1981:9;1977:18;1964:32;1954:42;;1674:328;;;;;:::o;2007:537::-;2102:6;2110;2118;2126;2179:3;2167:9;2158:7;2154:23;2150:33;2147:53;;;2196:1;2193;2186:12;2147:53;2219:29;2238:9;2219:29;:::i;:::-;2209:39;;2267:38;2301:2;2290:9;2286:18;2267:38;:::i;:::-;2257:48;;2352:2;2341:9;2337:18;2324:32;2314:42;;2407:2;2396:9;2392:18;2379:32;-1:-1:-1;;;;;2426:6:1;2423:30;2420:50;;;2466:1;2463;2456:12;2420:50;2489:49;2530:7;2521:6;2510:9;2506:22;2489:49;:::i;:::-;2479:59;;;2007:537;;;;;;;:::o;2549:254::-;2614:6;2622;2675:2;2663:9;2654:7;2650:23;2646:32;2643:52;;;2691:1;2688;2681:12;2643:52;2714:29;2733:9;2714:29;:::i;:::-;2704:39;;2762:35;2793:2;2782:9;2778:18;2762:35;:::i;2808:254::-;2876:6;2884;2937:2;2925:9;2916:7;2912:23;2908:32;2905:52;;;2953:1;2950;2943:12;2905:52;2976:29;2995:9;2976:29;:::i;:::-;2966:39;3052:2;3037:18;;;;3024:32;;-1:-1:-1;;;2808:254:1:o;3067:180::-;3123:6;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3215:26;3231:9;3215:26;:::i;3252:245::-;3310:6;3363:2;3351:9;3342:7;3338:23;3334:32;3331:52;;;3379:1;3376;3369:12;3331:52;3418:9;3405:23;3437:30;3461:5;3437:30;:::i;3502:249::-;3571:6;3624:2;3612:9;3603:7;3599:23;3595:32;3592:52;;;3640:1;3637;3630:12;3592:52;3672:9;3666:16;3691:30;3715:5;3691:30;:::i;3756:320::-;3824:6;3877:2;3865:9;3856:7;3852:23;3848:32;3845:52;;;3893:1;3890;3883:12;3845:52;3933:9;3920:23;-1:-1:-1;;;;;3958:6:1;3955:30;3952:50;;;3998:1;3995;3988:12;3952:50;4021:49;4062:7;4053:6;4042:9;4038:22;4021:49;:::i;4081:388::-;4158:6;4166;4219:2;4207:9;4198:7;4194:23;4190:32;4187:52;;;4235:1;4232;4225:12;4187:52;4275:9;4262:23;-1:-1:-1;;;;;4300:6:1;4297:30;4294:50;;;4340:1;4337;4330:12;4294:50;4363:49;4404:7;4395:6;4384:9;4380:22;4363:49;:::i;:::-;4353:59;4459:2;4444:18;;;;4431:32;;-1:-1:-1;;;;4081:388:1:o;4474:450::-;4543:6;4596:2;4584:9;4575:7;4571:23;4567:32;4564:52;;;4612:1;4609;4602:12;4564:52;4652:9;4639:23;-1:-1:-1;;;;;4677:6:1;4674:30;4671:50;;;4717:1;4714;4707:12;4671:50;4740:22;;4793:4;4785:13;;4781:27;-1:-1:-1;4771:55:1;;4822:1;4819;4812:12;4771:55;4845:73;4910:7;4905:2;4892:16;4887:2;4883;4879:11;4845:73;:::i;4929:180::-;4988:6;5041:2;5029:9;5020:7;5016:23;5012:32;5009:52;;;5057:1;5054;5047:12;5009:52;-1:-1:-1;5080:23:1;;4929:180;-1:-1:-1;4929:180:1:o;5244:257::-;5285:3;5323:5;5317:12;5350:6;5345:3;5338:19;5366:63;5422:6;5415:4;5410:3;5406:14;5399:4;5392:5;5388:16;5366:63;:::i;:::-;5483:2;5462:15;-1:-1:-1;;5458:29:1;5449:39;;;;5490:4;5445:50;;5244:257;-1:-1:-1;;5244:257:1:o;5506:470::-;5685:3;5723:6;5717:13;5739:53;5785:6;5780:3;5773:4;5765:6;5761:17;5739:53;:::i;:::-;5855:13;;5814:16;;;;5877:57;5855:13;5814:16;5911:4;5899:17;;5877:57;:::i;:::-;5950:20;;5506:470;-1:-1:-1;;;;5506:470:1:o;5981:1176::-;6137:3;6166:1;6199:6;6193:13;6229:3;6251:1;6279:9;6275:2;6271:18;6261:28;;6339:2;6328:9;6324:18;6361;6351:61;;6405:4;6397:6;6393:17;6383:27;;6351:61;6431:2;6479;6471:6;6468:14;6448:18;6445:38;6442:165;;;-1:-1:-1;;;6506:33:1;;6562:4;6559:1;6552:15;6592:4;6513:3;6580:17;6442:165;6623:18;6650:104;;;;6768:1;6763:320;;;;6616:467;;6650:104;-1:-1:-1;;6683:24:1;;6671:37;;6728:16;;;;-1:-1:-1;6650:104:1;;6763:320;16495:1;16488:14;;;16532:4;16519:18;;6858:1;6872:165;6886:6;6883:1;6880:13;6872:165;;;6964:14;;6951:11;;;6944:35;7007:16;;;;6901:10;;6872:165;;;6876:3;;7066:6;7061:3;7057:16;7050:23;;6616:467;;;;;;;7092:31;7119:3;7111:6;5188:2;5184:14;-1:-1:-1;;5180:52:1;5168:65;;5114:125;7092:31;7148:2;7139:12;;5981:1176;-1:-1:-1;;;;5981:1176:1:o;7755:488::-;-1:-1:-1;;;;;8024:15:1;;;8006:34;;8076:15;;8071:2;8056:18;;8049:43;8123:2;8108:18;;8101:34;;;8171:3;8166:2;8151:18;;8144:31;;;7949:4;;8192:45;;8217:19;;8209:6;8192:45;:::i;:::-;8184:53;7755:488;-1:-1:-1;;;;;;7755:488:1:o;8843:219::-;8992:2;8981:9;8974:21;8955:4;9012:44;9052:2;9041:9;9037:18;9029:6;9012:44;:::i;12543:404::-;12745:2;12727:21;;;12784:2;12764:18;;;12757:30;12823:34;12818:2;12803:18;;12796:62;-1:-1:-1;;;12889:2:1;12874:18;;12867:38;12937:3;12922:19;;12543:404::o;12952:356::-;13154:2;13136:21;;;13173:18;;;13166:30;13232:34;13227:2;13212:18;;13205:62;13299:2;13284:18;;12952:356::o;13729:489::-;13931:2;13913:21;;;13970:2;13950:18;;;13943:30;14009:34;14004:2;13989:18;;13982:62;14080:34;14075:2;14060:18;;14053:62;-1:-1:-1;;;14146:3:1;14131:19;;14124:52;14208:3;14193:19;;13729:489::o;15810:425::-;16012:2;15994:21;;;16051:2;16031:18;;;16024:30;16090:34;16085:2;16070:18;;16063:62;16161:31;16156:2;16141:18;;16134:59;16225:3;16210:19;;15810:425::o;16548:128::-;16588:3;16619:1;16615:6;16612:1;16609:13;16606:39;;;16625:18;;:::i;:::-;-1:-1:-1;16661:9:1;;16548:128::o;16681:120::-;16721:1;16747;16737:35;;16752:18;;:::i;:::-;-1:-1:-1;16786:9:1;;16681:120::o;16806:168::-;16846:7;16912:1;16908;16904:6;16900:14;16897:1;16894:21;16889:1;16882:9;16875:17;16871:45;16868:71;;;16919:18;;:::i;:::-;-1:-1:-1;16959:9:1;;16806:168::o;16979:125::-;17019:4;17047:1;17044;17041:8;17038:34;;;17052:18;;:::i;:::-;-1:-1:-1;17089:9:1;;16979:125::o;17109:258::-;17181:1;17191:113;17205:6;17202:1;17199:13;17191:113;;;17281:11;;;17275:18;17262:11;;;17255:39;17227:2;17220:10;17191:113;;;17322:6;17319:1;17316:13;17313:48;;;-1:-1:-1;;17357:1:1;17339:16;;17332:27;17109:258::o;17372:380::-;17451:1;17447:12;;;;17494;;;17515:61;;17569:4;17561:6;17557:17;17547:27;;17515:61;17622:2;17614:6;17611:14;17591:18;17588:38;17585:161;;;17668:10;17663:3;17659:20;17656:1;17649:31;17703:4;17700:1;17693:15;17731:4;17728:1;17721:15;17585:161;;17372:380;;;:::o;17757:135::-;17796:3;-1:-1:-1;;17817:17:1;;17814:43;;;17837:18;;:::i;:::-;-1:-1:-1;17884:1:1;17873:13;;17757:135::o;17897:112::-;17929:1;17955;17945:35;;17960:18;;:::i;:::-;-1:-1:-1;17994:9:1;;17897:112::o;18014:127::-;18075:10;18070:3;18066:20;18063:1;18056:31;18106:4;18103:1;18096:15;18130:4;18127:1;18120:15;18146:127;18207:10;18202:3;18198:20;18195:1;18188:31;18238:4;18235:1;18228:15;18262:4;18259:1;18252:15;18278:127;18339:10;18334:3;18330:20;18327:1;18320:31;18370:4;18367:1;18360:15;18394:4;18391:1;18384:15;18410:127;18471:10;18466:3;18462:20;18459:1;18452:31;18502:4;18499:1;18492:15;18526:4;18523:1;18516:15;18542:127;18603:10;18598:3;18594:20;18591:1;18584:31;18634:4;18631:1;18624:15;18658:4;18655:1;18648:15;18674:131;-1:-1:-1;;;;;;18748:32:1;;18738:43;;18728:71;;18795:1;18792;18785:12

Swarm Source

ipfs://2b9f8645be1b378063fc3910a9232c9c3f7599d7ccead28ca72ddbb25e22d66e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.