ETH Price: $3,467.72 (+1.75%)
Gas: 7 Gwei

Token

Doodles Penguin (DOODLEPENGS)
 

Overview

Max Total Supply

0 DOODLEPENGS

Holders

407

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 DOODLEPENGS
0x4b5f0eabd5e03778e3d034ca2c8ceee3301da505
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:
DoodlePenguins

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/SafeMath.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Counters.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/cryptography/ECDSA.sol


// OpenZeppelin Contracts v4.4.1 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: Doodle Pengiuns.sol


pragma solidity ^0.8.2;









contract DoodlePenguins is ERC721, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using SafeMath for uint256;
    using ECDSA for bytes32; 
    using Strings for uint256;

    Counters.Counter private tokenSupply;
    Counters.Counter private influncerGiveawaySupply;

    string public DOODLE_PENGUIN_PROVENANCE = "";

    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public constant MAX_SUPPLY_WHITELIST = 1000;
    uint256 public constant MAX_GIVEAWAY_INFLUENCER = 100;
    uint256 public constant WHITELIST_MINT_CAP = 2;
    uint256 public constant MAX_DOODLE_PENGUIN_PER_PURCHASE = 20;
    uint256 public constant WALLET_CAP = 100;
    uint256 private DOODLE_PENGIUN_PRICE = 0 ether;


    string public tokenBaseURI;
    string public unrevealedURI;
    bool public presaleActive = false;
    bool public mintActive = false;

    mapping(address => uint256) private whitelistAddressMintCount;
    mapping(address => bool) private influncerGiveaways;

    constructor() ERC721("Doodles Penguin", "DOODLEPENGS") 
    {
        tokenSupply.increment();
    }

    /**************
     * Flip State *
     **************/

    function flipPresaleState() external onlyOwner
    {
        presaleActive = !presaleActive;
    }

    function enablePublicSale() external onlyOwner
    {
        mintActive = !mintActive;
    }

    /********************
     * Setter functions *
     ********************/

    function setProvenanceHash(string memory provenanceHash) external onlyOwner 
    {
        DOODLE_PENGUIN_PROVENANCE = provenanceHash;
    }

    function setTokenBaseURI(string memory _baseURI) external onlyOwner 
    {
        tokenBaseURI = _baseURI;
    }

    function setUnrevealedURI(string memory _unrevealedUri) external onlyOwner 
    {
        unrevealedURI = _unrevealedUri;
    }
    function tokenURI(uint256 _tokenId) override public view returns (string memory) 
    {
        bool revealed = bytes(tokenBaseURI).length > 0;

        if (!revealed) {
        return unrevealedURI;
        }

        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

        return string(abi.encodePacked(tokenBaseURI, _tokenId.toString()));
    }

    function addInfluencerGiveaway(address _address) external onlyOwner 
    {
        influncerGiveaways[_address] = true;
    }

    /*********************
     * Get current price *
     *********************/
    function getCurrentPrice(uint256 _quantity) public view returns (uint256)
    {
        uint256 returnPrice;

        if (tokenSupply.current().add(_quantity) > 1000)
        {
            returnPrice = 0.01 ether;
        }

        if (tokenSupply.current().add(_quantity) > 3000)
        {
            returnPrice = 0.02 ether;
        }

        if (tokenSupply.current().add(_quantity) > 5000)
        {
            returnPrice = 0.03 ether;
        }

        if (tokenSupply.current().add(_quantity) > 7000)
        {
            returnPrice = 0.04 ether;
        }

        return returnPrice;
    }

    function getTokenSupply() public view returns (uint256)
    {
        return tokenSupply.current();
    }
    /********
     * Mint *
     ********/

    /**********************
     * 0-1000      free   *
     * 1001-3000  .01 eth *
     * 3001-5000  .02 eth *
     * 5001-7000  .03 eth *
     * 7001-10000 .04 eth *
     **********************/

    // Whitelist mint function
    function presaleMint(uint256 _quantity, bytes calldata _whitelistSignature) external payable nonReentrant 
    {
        require(verifyOwnerSignature(keccak256(abi.encode(msg.sender)), _whitelistSignature), "Invalid whitelist signature");
        require(presaleActive, "Presale is not active");
        require(tokenSupply.current().add(_quantity) <= MAX_SUPPLY_WHITELIST, "Whitelist is sold out");
        require(_quantity <= WHITELIST_MINT_CAP, "Exceeds whitelist mint cap");
        require(whitelistAddressMintCount[msg.sender].add(_quantity) <= WHITELIST_MINT_CAP, "This purchase would exceed the maximum you are allowed to mint for presale");

        whitelistAddressMintCount[msg.sender] += _quantity;
        _safeMintDoodlePenguins(_quantity);
    }

    // Public mint function
    function publicMint(uint256 _quantity) external payable 
    {
        require(mintActive, "Sale is not active");
        require(_quantity <= MAX_DOODLE_PENGUIN_PER_PURCHASE, "Quantity is more than allowed per transaction");

        _safeMintDoodlePenguins(_quantity);
    }


    // Used for giveaway winners or influencer payment for marketing (mints 5 Doodle Penguins)
    function influncerGiveawayMint() external
    {
        require(influncerGiveaways[msg.sender] == true, "You are not allowed to use this function");
        require(tokenSupply.current().add(5) <= MAX_SUPPLY, "This purchase would exceed the max supply");
        require(influncerGiveawaySupply.current().add(5) <= MAX_GIVEAWAY_INFLUENCER);
        for (uint256 i = 0; i < 4; i++) 
        {
            uint256 mintIndex = tokenSupply.current();

            if (mintIndex < MAX_SUPPLY) 
            {
                tokenSupply.increment();
                influncerGiveawaySupply.increment();
                _safeMint(msg.sender, mintIndex);
            }
        }
        influncerGiveaways[msg.sender] = false;
    }

    function _safeMintDoodlePenguins(uint256 _quantity) internal 
    {
        if (tokenSupply.current().add(_quantity) > 1000)
        {
            DOODLE_PENGIUN_PRICE = 0.01 ether;
        }

        if (tokenSupply.current().add(_quantity) > 3000)
        {
            DOODLE_PENGIUN_PRICE = 0.02 ether;
        }

        if (tokenSupply.current().add(_quantity) > 5000)
        {
            DOODLE_PENGIUN_PRICE = 0.03 ether;
        }

        if (tokenSupply.current().add(_quantity) > 7000)
        {
            DOODLE_PENGIUN_PRICE = 0.04 ether;
        }


        require(_quantity > 0, "Quantity must be at least 1");
        require(tokenSupply.current().add(_quantity) <= MAX_SUPPLY, "This purchase would exceed the max supply");
        require(msg.value >= DOODLE_PENGIUN_PRICE.mul(_quantity), "The ether value sent is not correct");

        for (uint256 i = 0; i < _quantity; i++) 
        {
            uint256 mintIndex = tokenSupply.current();

            if (mintIndex < MAX_SUPPLY) 
            {
                tokenSupply.increment();
                _safeMint(msg.sender, mintIndex);
            }
        }
    }


    /***************
     * Withdrawals *
     ***************/

    // Withdraws entire balance of contract (ETH) to owner account (owner-only)
    function withdraw() public onlyOwner 
    {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    // Withdraws amount specified (ETH) from balance of contract to owner account (owner-only)
    function withdrawPartial(address payable _recipient, uint256 _amount)
    public
    onlyOwner
    {
        // Check that amount is not more than total contract balance
        require(
        _amount > 0 && _amount <= address(this).balance,
        "Withdraw amount must be positive and not exceed total contract balance"
        );
        _recipient.transfer(_amount);
    }

    /************
     * Security *
     ************/
    function verifyOwnerSignature(bytes32 hash, bytes memory signature) private view returns(bool) 
    {
        return hash.toEthSignedMessageHash().recover(signature) == owner();
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOODLE_PENGUIN_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_DOODLE_PENGUIN_PER_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_GIVEAWAY_INFLUENCER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WALLET_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MINT_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addInfluencerGiveaway","outputs":[],"stateMutability":"nonpayable","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":"enablePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"getCurrentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"influncerGiveawayMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"_whitelistSignature","type":"bytes"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setTokenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_unrevealedUri","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawPartial","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600a916200014b565b506000600b55600e805461ffff191690553480156200003957600080fd5b50604080518082018252600f81526e2237b7b23632b9902832b733bab4b760891b60208083019182528351808501909452600b84526a444f4f444c4550454e475360a81b90840152815191929162000094916000916200014b565b508051620000aa9060019060208401906200014b565b505050620000c7620000c1620000ec60201b60201c565b620000f0565b6001600781905550620000e660086200014260201b62001af71760201c565b6200022e565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80546001019055565b8280546200015990620001f1565b90600052602060002090601f0160209004810192826200017d5760008555620001c8565b82601f106200019857805160ff1916838001178555620001c8565b82800160010185558215620001c8579182015b82811115620001c8578251825591602001919060010190620001ab565b50620001d6929150620001da565b5090565b5b80821115620001d65760008155600101620001db565b600181811c908216806200020657607f821691505b602082108114156200022857634e487b7160e01b600052602260045260246000fd5b50919050565b61323c806200023e6000396000f3fe6080604052600436106102bb5760003560e01c806384522aec1161016e578063c3553982116100cb578063e985e9c51161007f578063f81227d411610064578063f81227d4146106fa578063fd24a8541461070f578063fe2c7fee1461072257600080fd5b8063e985e9c514610691578063f2fde38b146106da57600080fd5b8063c87b56dd116100b0578063c87b56dd14610647578063d2b7a2c514610667578063decb435c1461067c57600080fd5b8063c355398214610611578063c55d0f561461062757600080fd5b806395d89b4111610122578063ad974f4c11610107578063ad974f4c146105c7578063b88d4fde146105dc578063c34dd409146105fc57600080fd5b806395d89b4114610592578063a22cb465146105a757600080fd5b80638c1db361116101535780638c1db3611461053f5780638da5cb5b146105545780638ef79e911461057257600080fd5b806384522aec1461051f5780638721a6b41461053f57600080fd5b806332cb6b0c1161021c57806353135ca0116101d05780637035bf18116101b55780637035bf18146104d557806370a08231146104ea578063715018a61461050a57600080fd5b806353135ca01461049b5780636352211e146104b557600080fd5b80633ccfd60b116102015780633ccfd60b1461045157806342842e0e146104665780634e99b8001461048657600080fd5b806332cb6b0c1461041857806335e629081461043c57600080fd5b80632316b4da1161027357806325fd90f31161025857806325fd90f3146103c65780632db11544146103e55780633166289f146103f857600080fd5b80632316b4da1461039157806323b872dd146103a657600080fd5b8063081812fc116102a4578063081812fc14610317578063095ea7b31461034f578063109695231461037157600080fd5b806301ffc9a7146102c057806306fdde03146102f5575b600080fd5b3480156102cc57600080fd5b506102e06102db366004612e07565b610742565b60405190151581526020015b60405180910390f35b34801561030157600080fd5b5061030a610827565b6040516102ec919061304a565b34801561032357600080fd5b50610337610332366004612e8a565b6108b9565b6040516001600160a01b0390911681526020016102ec565b34801561035b57600080fd5b5061036f61036a366004612cae565b610964565b005b34801561037d57600080fd5b5061036f61038c366004612e41565b610a96565b34801561039d57600080fd5b5061036f610b07565b3480156103b257600080fd5b5061036f6103c1366004612d13565b610b9b565b3480156103d257600080fd5b50600e546102e090610100900460ff1681565b61036f6103f3366004612e8a565b610c22565b34801561040457600080fd5b5061036f610413366004612c91565b610cfc565b34801561042457600080fd5b5061042e61271081565b6040519081526020016102ec565b34801561044857600080fd5b5061042e600281565b34801561045d57600080fd5b5061036f610d7a565b34801561047257600080fd5b5061036f610481366004612d13565b610e03565b34801561049257600080fd5b5061030a610e1e565b3480156104a757600080fd5b50600e546102e09060ff1681565b3480156104c157600080fd5b506103376104d0366004612e8a565b610eac565b3480156104e157600080fd5b5061030a610f37565b3480156104f657600080fd5b5061042e610505366004612c91565b610f44565b34801561051657600080fd5b5061036f610fde565b34801561052b57600080fd5b5061036f61053a366004612cae565b611044565b34801561054b57600080fd5b5061042e606481565b34801561056057600080fd5b506006546001600160a01b0316610337565b34801561057e57600080fd5b5061036f61058d366004612e41565b61117c565b34801561059e57600080fd5b5061030a6111e9565b3480156105b357600080fd5b5061036f6105c2366004612dd4565b6111f8565b3480156105d357600080fd5b5061042e611203565b3480156105e857600080fd5b5061036f6105f7366004612d54565b611213565b34801561060857600080fd5b5061042e601481565b34801561061d57600080fd5b5061042e6103e881565b34801561063357600080fd5b5061042e610642366004612e8a565b6112a1565b34801561065357600080fd5b5061030a610662366004612e8a565b61132f565b34801561067357600080fd5b5061030a61149b565b34801561068857600080fd5b5061036f6114a8565b34801561069d57600080fd5b506102e06106ac366004612cda565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106e657600080fd5b5061036f6106f5366004612c91565b611648565b34801561070657600080fd5b5061036f611727565b61036f61071d366004612ea3565b611795565b34801561072e57600080fd5b5061036f61073d366004612e41565b611a8a565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806107d557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061082157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060008054610836906130eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610862906130eb565b80156108af5780601f10610884576101008083540402835291602001916108af565b820191906000526020600020905b81548152906001019060200180831161089257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109485760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061096f82610eac565b9050806001600160a01b0316836001600160a01b031614156109f95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161093f565b336001600160a01b0382161480610a155750610a1581336106ac565b610a875760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161093f565b610a918383611b00565b505050565b6006546001600160a01b03163314610af05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b8051610b0390600a906020840190612b82565b5050565b6006546001600160a01b03163314610b615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff81166101009182900460ff1615909102179055565b610ba53382611b7b565b610c175760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161093f565b610a91838383611c83565b600e54610100900460ff16610c795760405162461bcd60e51b815260206004820152601260248201527f53616c65206973206e6f74206163746976650000000000000000000000000000604482015260640161093f565b6014811115610cf05760405162461bcd60e51b815260206004820152602d60248201527f5175616e74697479206973206d6f7265207468616e20616c6c6f77656420706560448201527f72207472616e73616374696f6e00000000000000000000000000000000000000606482015260840161093f565b610cf981611e5d565b50565b6006546001600160a01b03163314610d565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b6006546001600160a01b03163314610dd45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b6040514790339082156108fc029083906000818181858888f19350505050158015610b03573d6000803e3d6000fd5b610a9183838360405180602001604052806000815250611213565b600c8054610e2b906130eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610e57906130eb565b8015610ea45780601f10610e7957610100808354040283529160200191610ea4565b820191906000526020600020905b815481529060010190602001808311610e8757829003601f168201915b505050505081565b6000818152600260205260408120546001600160a01b0316806108215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161093f565b600d8054610e2b906130eb565b60006001600160a01b038216610fc25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161093f565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110385760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b6110426000612088565b565b6006546001600160a01b0316331461109e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b6000811180156110ae5750478111155b6111465760405162461bcd60e51b815260206004820152604660248201527f576974686472617720616d6f756e74206d75737420626520706f73697469766560448201527f20616e64206e6f742065786365656420746f74616c20636f6e7472616374206260648201527f616c616e63650000000000000000000000000000000000000000000000000000608482015260a40161093f565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610a91573d6000803e3d6000fd5b6006546001600160a01b031633146111d65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b8051610b0390600c906020840190612b82565b606060018054610836906130eb565b610b033383836120e7565b600061120e60085490565b905090565b61121d3383611b7b565b61128f5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161093f565b61129b848484846121b6565b50505050565b6000806103e86112ba846112b460085490565b9061223f565b11156112ca5750662386f26fc100005b610bb86112da846112b460085490565b11156112ea575066470de4df8200005b6113886112fa846112b460085490565b111561130a5750666a94d74f4300005b611b5861131a846112b460085490565b11156108215750668e1bc9bf04000092915050565b6060600080600c8054611341906130eb565b9050119050806113de57600d8054611358906130eb565b80601f0160208091040260200160405190810160405280929190818152602001828054611384906130eb565b80156113d15780601f106113a6576101008083540402835291602001916113d1565b820191906000526020600020905b8154815290600101906020018083116113b457829003601f168201915b5050505050915050919050565b6000838152600260205260409020546001600160a01b03166114685760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161093f565b600c61147384612252565b604051602001611484929190612f67565b604051602081830303815290604052915050919050565b600a8054610e2b906130eb565b3360009081526010602052604090205460ff1615156001146115325760405162461bcd60e51b815260206004820152602860248201527f596f7520617265206e6f7420616c6c6f77656420746f2075736520746869732060448201527f66756e6374696f6e000000000000000000000000000000000000000000000000606482015260840161093f565b61271061154360056112b460085490565b11156115b75760405162461bcd60e51b815260206004820152602960248201527f5468697320707572636861736520776f756c642065786365656420746865206d60448201527f617820737570706c790000000000000000000000000000000000000000000000606482015260840161093f565b60646115c760056112b460095490565b11156115d257600080fd5b60005b600481101561162e5760006115e960085490565b905061271081101561161b57611603600880546001019055565b611611600980546001019055565b61161b3382612384565b508061162681613126565b9150506115d5565b50336000908152601060205260409020805460ff19169055565b6006546001600160a01b031633146116a25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b6001600160a01b03811661171e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161093f565b610cf981612088565b6006546001600160a01b031633146117815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b600e805460ff19811660ff90911615179055565b600260075414156117e85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161093f565b60026007556040805133602082015261184e91016040516020818303038152906040528051906020012083838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061239e92505050565b61189a5760405162461bcd60e51b815260206004820152601b60248201527f496e76616c69642077686974656c697374207369676e61747572650000000000604482015260640161093f565b600e5460ff166118ec5760405162461bcd60e51b815260206004820152601560248201527f50726573616c65206973206e6f74206163746976650000000000000000000000604482015260640161093f565b6103e86118fc846112b460085490565b111561194a5760405162461bcd60e51b815260206004820152601560248201527f57686974656c69737420697320736f6c64206f75740000000000000000000000604482015260640161093f565b600283111561199b5760405162461bcd60e51b815260206004820152601a60248201527f457863656564732077686974656c697374206d696e7420636170000000000000604482015260640161093f565b336000908152600f60205260409020546002906119b8908561223f565b1115611a525760405162461bcd60e51b815260206004820152604a60248201527f5468697320707572636861736520776f756c642065786365656420746865206d60448201527f6178696d756d20796f752061726520616c6c6f77656420746f206d696e74206660648201527f6f722070726573616c6500000000000000000000000000000000000000000000608482015260a40161093f565b336000908152600f602052604081208054859290611a7190849061305d565b90915550611a80905083611e5d565b5050600160075550565b6006546001600160a01b03163314611ae45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b8051610b0390600d906020840190612b82565b80546001019055565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190611b4282610eac565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611c055760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161093f565b6000611c1083610eac565b9050806001600160a01b0316846001600160a01b03161480611c4b5750836001600160a01b0316611c40846108b9565b6001600160a01b0316145b80611c7b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c9682610eac565b6001600160a01b031614611d125760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e6572000000000000000000000000000000000000000000000000000000606482015260840161093f565b6001600160a01b038216611d8d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161093f565b611d98600082611b00565b6001600160a01b0383166000908152600360205260408120805460019290611dc19084906130a8565b90915550506001600160a01b0382166000908152600360205260408120805460019290611def90849061305d565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6103e8611e6d826112b460085490565b1115611e7f57662386f26fc10000600b555b610bb8611e8f826112b460085490565b1115611ea15766470de4df820000600b555b611388611eb1826112b460085490565b1115611ec357666a94d74f430000600b555b611b58611ed3826112b460085490565b1115611ee557668e1bc9bf040000600b555b60008111611f355760405162461bcd60e51b815260206004820152601b60248201527f5175616e74697479206d757374206265206174206c6561737420310000000000604482015260640161093f565b612710611f45826112b460085490565b1115611fb95760405162461bcd60e51b815260206004820152602960248201527f5468697320707572636861736520776f756c642065786365656420746865206d60448201527f617820737570706c790000000000000000000000000000000000000000000000606482015260840161093f565b600b54611fc6908261242d565b34101561203b5760405162461bcd60e51b815260206004820152602360248201527f5468652065746865722076616c75652073656e74206973206e6f7420636f727260448201527f6563740000000000000000000000000000000000000000000000000000000000606482015260840161093f565b60005b81811015610b0357600061205160085490565b90506127108110156120755761206b600880546001019055565b6120753382612384565b508061208081613126565b91505061203e565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156121495760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161093f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6121c1848484611c83565b6121cd84848484612439565b61129b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161093f565b600061224b828461305d565b9392505050565b60608161229257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156122bc57806122a681613126565b91506122b59050600a83613075565b9150612296565b60008167ffffffffffffffff8111156122d7576122d76131ad565b6040519080825280601f01601f191660200182016040528015612301576020820181803683370190505b5090505b8415611c7b576123166001836130a8565b9150612323600a86613141565b61232e90603061305d565b60f81b81838151811061234357612343613197565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061237d600a86613075565b9450612305565b610b038282604051806020016040528060008152506125e6565b60006123b26006546001600160a01b031690565b6001600160a01b031661241c83612416866040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b9061266f565b6001600160a01b0316149392505050565b600061224b8284613089565b60006001600160a01b0384163b156125db576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a029061249690339089908890889060040161300e565b602060405180830381600087803b1580156124b057600080fd5b505af19250505080156124e0575060408051601f3d908101601f191682019092526124dd91810190612e24565b60015b612590573d80801561250e576040519150601f19603f3d011682016040523d82523d6000602084013e612513565b606091505b5080516125885760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161093f565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611c7b565b506001949350505050565b6125f08383612693565b6125fd6000848484612439565b610a915760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161093f565b600080600061267e85856127e2565b9150915061268b81612852565b509392505050565b6001600160a01b0382166126e95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161093f565b6000818152600260205260409020546001600160a01b03161561274e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161093f565b6001600160a01b038216600090815260036020526040812080546001929061277790849061305d565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000808251604114156128195760208301516040840151606085015160001a61280d87828585612a43565b9450945050505061284b565b8251604014156128435760208301516040840151612838868383612b30565b93509350505061284b565b506000905060025b9250929050565b600081600481111561286657612866613181565b141561286f5750565b600181600481111561288357612883613181565b14156128d15760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161093f565b60028160048111156128e5576128e5613181565b14156129335760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161093f565b600381600481111561294757612947613181565b14156129bb5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161093f565b60048160048111156129cf576129cf613181565b1415610cf95760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161093f565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612a7a5750600090506003612b27565b8460ff16601b14158015612a9257508460ff16601c14155b15612aa35750600090506004612b27565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612af7573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612b2057600060019250925050612b27565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831681612b6660ff86901c601b61305d565b9050612b7487828885612a43565b935093505050935093915050565b828054612b8e906130eb565b90600052602060002090601f016020900481019282612bb05760008555612bf6565b82601f10612bc957805160ff1916838001178555612bf6565b82800160010185558215612bf6579182015b82811115612bf6578251825591602001919060010190612bdb565b50612c02929150612c06565b5090565b5b80821115612c025760008155600101612c07565b600067ffffffffffffffff80841115612c3657612c366131ad565b604051601f8501601f19908116603f01168101908282118183101715612c5e57612c5e6131ad565b81604052809350858152868686011115612c7757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612ca357600080fd5b813561224b816131c3565b60008060408385031215612cc157600080fd5b8235612ccc816131c3565b946020939093013593505050565b60008060408385031215612ced57600080fd5b8235612cf8816131c3565b91506020830135612d08816131c3565b809150509250929050565b600080600060608486031215612d2857600080fd5b8335612d33816131c3565b92506020840135612d43816131c3565b929592945050506040919091013590565b60008060008060808587031215612d6a57600080fd5b8435612d75816131c3565b93506020850135612d85816131c3565b925060408501359150606085013567ffffffffffffffff811115612da857600080fd5b8501601f81018713612db957600080fd5b612dc887823560208401612c1b565b91505092959194509250565b60008060408385031215612de757600080fd5b8235612df2816131c3565b915060208301358015158114612d0857600080fd5b600060208284031215612e1957600080fd5b813561224b816131d8565b600060208284031215612e3657600080fd5b815161224b816131d8565b600060208284031215612e5357600080fd5b813567ffffffffffffffff811115612e6a57600080fd5b8201601f81018413612e7b57600080fd5b611c7b84823560208401612c1b565b600060208284031215612e9c57600080fd5b5035919050565b600080600060408486031215612eb857600080fd5b83359250602084013567ffffffffffffffff80821115612ed757600080fd5b818601915086601f830112612eeb57600080fd5b813581811115612efa57600080fd5b876020828501011115612f0c57600080fd5b6020830194508093505050509250925092565b60008151808452612f378160208601602086016130bf565b601f01601f19169290920160200192915050565b60008151612f5d8185602086016130bf565b9290920192915050565b600080845481600182811c915080831680612f8357607f831692505b6020808410821415612fa357634e487b7160e01b86526022600452602486fd5b818015612fb75760018114612fc857612ff5565b60ff19861689528489019650612ff5565b60008b81526020902060005b86811015612fed5781548b820152908501908301612fd4565b505084890196505b5050505050506130058185612f4b565b95945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526130406080830184612f1f565b9695505050505050565b60208152600061224b6020830184612f1f565b6000821982111561307057613070613155565b500190565b6000826130845761308461316b565b500490565b60008160001904831182151516156130a3576130a3613155565b500290565b6000828210156130ba576130ba613155565b500390565b60005b838110156130da5781810151838201526020016130c2565b8381111561129b5750506000910152565b600181811c908216806130ff57607f821691505b6020821081141561312057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561313a5761313a613155565b5060010190565b6000826131505761315061316b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610cf957600080fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610cf957600080fdfea2646970667358221220f2cf1dd5ecdf12d84f49203c3ffafd1bbaee526655fbadff1dc3af9db49a7e5d64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102bb5760003560e01c806384522aec1161016e578063c3553982116100cb578063e985e9c51161007f578063f81227d411610064578063f81227d4146106fa578063fd24a8541461070f578063fe2c7fee1461072257600080fd5b8063e985e9c514610691578063f2fde38b146106da57600080fd5b8063c87b56dd116100b0578063c87b56dd14610647578063d2b7a2c514610667578063decb435c1461067c57600080fd5b8063c355398214610611578063c55d0f561461062757600080fd5b806395d89b4111610122578063ad974f4c11610107578063ad974f4c146105c7578063b88d4fde146105dc578063c34dd409146105fc57600080fd5b806395d89b4114610592578063a22cb465146105a757600080fd5b80638c1db361116101535780638c1db3611461053f5780638da5cb5b146105545780638ef79e911461057257600080fd5b806384522aec1461051f5780638721a6b41461053f57600080fd5b806332cb6b0c1161021c57806353135ca0116101d05780637035bf18116101b55780637035bf18146104d557806370a08231146104ea578063715018a61461050a57600080fd5b806353135ca01461049b5780636352211e146104b557600080fd5b80633ccfd60b116102015780633ccfd60b1461045157806342842e0e146104665780634e99b8001461048657600080fd5b806332cb6b0c1461041857806335e629081461043c57600080fd5b80632316b4da1161027357806325fd90f31161025857806325fd90f3146103c65780632db11544146103e55780633166289f146103f857600080fd5b80632316b4da1461039157806323b872dd146103a657600080fd5b8063081812fc116102a4578063081812fc14610317578063095ea7b31461034f578063109695231461037157600080fd5b806301ffc9a7146102c057806306fdde03146102f5575b600080fd5b3480156102cc57600080fd5b506102e06102db366004612e07565b610742565b60405190151581526020015b60405180910390f35b34801561030157600080fd5b5061030a610827565b6040516102ec919061304a565b34801561032357600080fd5b50610337610332366004612e8a565b6108b9565b6040516001600160a01b0390911681526020016102ec565b34801561035b57600080fd5b5061036f61036a366004612cae565b610964565b005b34801561037d57600080fd5b5061036f61038c366004612e41565b610a96565b34801561039d57600080fd5b5061036f610b07565b3480156103b257600080fd5b5061036f6103c1366004612d13565b610b9b565b3480156103d257600080fd5b50600e546102e090610100900460ff1681565b61036f6103f3366004612e8a565b610c22565b34801561040457600080fd5b5061036f610413366004612c91565b610cfc565b34801561042457600080fd5b5061042e61271081565b6040519081526020016102ec565b34801561044857600080fd5b5061042e600281565b34801561045d57600080fd5b5061036f610d7a565b34801561047257600080fd5b5061036f610481366004612d13565b610e03565b34801561049257600080fd5b5061030a610e1e565b3480156104a757600080fd5b50600e546102e09060ff1681565b3480156104c157600080fd5b506103376104d0366004612e8a565b610eac565b3480156104e157600080fd5b5061030a610f37565b3480156104f657600080fd5b5061042e610505366004612c91565b610f44565b34801561051657600080fd5b5061036f610fde565b34801561052b57600080fd5b5061036f61053a366004612cae565b611044565b34801561054b57600080fd5b5061042e606481565b34801561056057600080fd5b506006546001600160a01b0316610337565b34801561057e57600080fd5b5061036f61058d366004612e41565b61117c565b34801561059e57600080fd5b5061030a6111e9565b3480156105b357600080fd5b5061036f6105c2366004612dd4565b6111f8565b3480156105d357600080fd5b5061042e611203565b3480156105e857600080fd5b5061036f6105f7366004612d54565b611213565b34801561060857600080fd5b5061042e601481565b34801561061d57600080fd5b5061042e6103e881565b34801561063357600080fd5b5061042e610642366004612e8a565b6112a1565b34801561065357600080fd5b5061030a610662366004612e8a565b61132f565b34801561067357600080fd5b5061030a61149b565b34801561068857600080fd5b5061036f6114a8565b34801561069d57600080fd5b506102e06106ac366004612cda565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106e657600080fd5b5061036f6106f5366004612c91565b611648565b34801561070657600080fd5b5061036f611727565b61036f61071d366004612ea3565b611795565b34801561072e57600080fd5b5061036f61073d366004612e41565b611a8a565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806107d557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061082157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060008054610836906130eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610862906130eb565b80156108af5780601f10610884576101008083540402835291602001916108af565b820191906000526020600020905b81548152906001019060200180831161089257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109485760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061096f82610eac565b9050806001600160a01b0316836001600160a01b031614156109f95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161093f565b336001600160a01b0382161480610a155750610a1581336106ac565b610a875760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161093f565b610a918383611b00565b505050565b6006546001600160a01b03163314610af05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b8051610b0390600a906020840190612b82565b5050565b6006546001600160a01b03163314610b615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff81166101009182900460ff1615909102179055565b610ba53382611b7b565b610c175760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161093f565b610a91838383611c83565b600e54610100900460ff16610c795760405162461bcd60e51b815260206004820152601260248201527f53616c65206973206e6f74206163746976650000000000000000000000000000604482015260640161093f565b6014811115610cf05760405162461bcd60e51b815260206004820152602d60248201527f5175616e74697479206973206d6f7265207468616e20616c6c6f77656420706560448201527f72207472616e73616374696f6e00000000000000000000000000000000000000606482015260840161093f565b610cf981611e5d565b50565b6006546001600160a01b03163314610d565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b6006546001600160a01b03163314610dd45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b6040514790339082156108fc029083906000818181858888f19350505050158015610b03573d6000803e3d6000fd5b610a9183838360405180602001604052806000815250611213565b600c8054610e2b906130eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610e57906130eb565b8015610ea45780601f10610e7957610100808354040283529160200191610ea4565b820191906000526020600020905b815481529060010190602001808311610e8757829003601f168201915b505050505081565b6000818152600260205260408120546001600160a01b0316806108215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161093f565b600d8054610e2b906130eb565b60006001600160a01b038216610fc25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161093f565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110385760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b6110426000612088565b565b6006546001600160a01b0316331461109e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b6000811180156110ae5750478111155b6111465760405162461bcd60e51b815260206004820152604660248201527f576974686472617720616d6f756e74206d75737420626520706f73697469766560448201527f20616e64206e6f742065786365656420746f74616c20636f6e7472616374206260648201527f616c616e63650000000000000000000000000000000000000000000000000000608482015260a40161093f565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610a91573d6000803e3d6000fd5b6006546001600160a01b031633146111d65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b8051610b0390600c906020840190612b82565b606060018054610836906130eb565b610b033383836120e7565b600061120e60085490565b905090565b61121d3383611b7b565b61128f5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161093f565b61129b848484846121b6565b50505050565b6000806103e86112ba846112b460085490565b9061223f565b11156112ca5750662386f26fc100005b610bb86112da846112b460085490565b11156112ea575066470de4df8200005b6113886112fa846112b460085490565b111561130a5750666a94d74f4300005b611b5861131a846112b460085490565b11156108215750668e1bc9bf04000092915050565b6060600080600c8054611341906130eb565b9050119050806113de57600d8054611358906130eb565b80601f0160208091040260200160405190810160405280929190818152602001828054611384906130eb565b80156113d15780601f106113a6576101008083540402835291602001916113d1565b820191906000526020600020905b8154815290600101906020018083116113b457829003601f168201915b5050505050915050919050565b6000838152600260205260409020546001600160a01b03166114685760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161093f565b600c61147384612252565b604051602001611484929190612f67565b604051602081830303815290604052915050919050565b600a8054610e2b906130eb565b3360009081526010602052604090205460ff1615156001146115325760405162461bcd60e51b815260206004820152602860248201527f596f7520617265206e6f7420616c6c6f77656420746f2075736520746869732060448201527f66756e6374696f6e000000000000000000000000000000000000000000000000606482015260840161093f565b61271061154360056112b460085490565b11156115b75760405162461bcd60e51b815260206004820152602960248201527f5468697320707572636861736520776f756c642065786365656420746865206d60448201527f617820737570706c790000000000000000000000000000000000000000000000606482015260840161093f565b60646115c760056112b460095490565b11156115d257600080fd5b60005b600481101561162e5760006115e960085490565b905061271081101561161b57611603600880546001019055565b611611600980546001019055565b61161b3382612384565b508061162681613126565b9150506115d5565b50336000908152601060205260409020805460ff19169055565b6006546001600160a01b031633146116a25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b6001600160a01b03811661171e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161093f565b610cf981612088565b6006546001600160a01b031633146117815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b600e805460ff19811660ff90911615179055565b600260075414156117e85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161093f565b60026007556040805133602082015261184e91016040516020818303038152906040528051906020012083838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061239e92505050565b61189a5760405162461bcd60e51b815260206004820152601b60248201527f496e76616c69642077686974656c697374207369676e61747572650000000000604482015260640161093f565b600e5460ff166118ec5760405162461bcd60e51b815260206004820152601560248201527f50726573616c65206973206e6f74206163746976650000000000000000000000604482015260640161093f565b6103e86118fc846112b460085490565b111561194a5760405162461bcd60e51b815260206004820152601560248201527f57686974656c69737420697320736f6c64206f75740000000000000000000000604482015260640161093f565b600283111561199b5760405162461bcd60e51b815260206004820152601a60248201527f457863656564732077686974656c697374206d696e7420636170000000000000604482015260640161093f565b336000908152600f60205260409020546002906119b8908561223f565b1115611a525760405162461bcd60e51b815260206004820152604a60248201527f5468697320707572636861736520776f756c642065786365656420746865206d60448201527f6178696d756d20796f752061726520616c6c6f77656420746f206d696e74206660648201527f6f722070726573616c6500000000000000000000000000000000000000000000608482015260a40161093f565b336000908152600f602052604081208054859290611a7190849061305d565b90915550611a80905083611e5d565b5050600160075550565b6006546001600160a01b03163314611ae45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b8051610b0390600d906020840190612b82565b80546001019055565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190611b4282610eac565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611c055760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161093f565b6000611c1083610eac565b9050806001600160a01b0316846001600160a01b03161480611c4b5750836001600160a01b0316611c40846108b9565b6001600160a01b0316145b80611c7b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c9682610eac565b6001600160a01b031614611d125760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e6572000000000000000000000000000000000000000000000000000000606482015260840161093f565b6001600160a01b038216611d8d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161093f565b611d98600082611b00565b6001600160a01b0383166000908152600360205260408120805460019290611dc19084906130a8565b90915550506001600160a01b0382166000908152600360205260408120805460019290611def90849061305d565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6103e8611e6d826112b460085490565b1115611e7f57662386f26fc10000600b555b610bb8611e8f826112b460085490565b1115611ea15766470de4df820000600b555b611388611eb1826112b460085490565b1115611ec357666a94d74f430000600b555b611b58611ed3826112b460085490565b1115611ee557668e1bc9bf040000600b555b60008111611f355760405162461bcd60e51b815260206004820152601b60248201527f5175616e74697479206d757374206265206174206c6561737420310000000000604482015260640161093f565b612710611f45826112b460085490565b1115611fb95760405162461bcd60e51b815260206004820152602960248201527f5468697320707572636861736520776f756c642065786365656420746865206d60448201527f617820737570706c790000000000000000000000000000000000000000000000606482015260840161093f565b600b54611fc6908261242d565b34101561203b5760405162461bcd60e51b815260206004820152602360248201527f5468652065746865722076616c75652073656e74206973206e6f7420636f727260448201527f6563740000000000000000000000000000000000000000000000000000000000606482015260840161093f565b60005b81811015610b0357600061205160085490565b90506127108110156120755761206b600880546001019055565b6120753382612384565b508061208081613126565b91505061203e565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156121495760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161093f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6121c1848484611c83565b6121cd84848484612439565b61129b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161093f565b600061224b828461305d565b9392505050565b60608161229257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156122bc57806122a681613126565b91506122b59050600a83613075565b9150612296565b60008167ffffffffffffffff8111156122d7576122d76131ad565b6040519080825280601f01601f191660200182016040528015612301576020820181803683370190505b5090505b8415611c7b576123166001836130a8565b9150612323600a86613141565b61232e90603061305d565b60f81b81838151811061234357612343613197565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061237d600a86613075565b9450612305565b610b038282604051806020016040528060008152506125e6565b60006123b26006546001600160a01b031690565b6001600160a01b031661241c83612416866040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b9061266f565b6001600160a01b0316149392505050565b600061224b8284613089565b60006001600160a01b0384163b156125db576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a029061249690339089908890889060040161300e565b602060405180830381600087803b1580156124b057600080fd5b505af19250505080156124e0575060408051601f3d908101601f191682019092526124dd91810190612e24565b60015b612590573d80801561250e576040519150601f19603f3d011682016040523d82523d6000602084013e612513565b606091505b5080516125885760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161093f565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611c7b565b506001949350505050565b6125f08383612693565b6125fd6000848484612439565b610a915760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161093f565b600080600061267e85856127e2565b9150915061268b81612852565b509392505050565b6001600160a01b0382166126e95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161093f565b6000818152600260205260409020546001600160a01b03161561274e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161093f565b6001600160a01b038216600090815260036020526040812080546001929061277790849061305d565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000808251604114156128195760208301516040840151606085015160001a61280d87828585612a43565b9450945050505061284b565b8251604014156128435760208301516040840151612838868383612b30565b93509350505061284b565b506000905060025b9250929050565b600081600481111561286657612866613181565b141561286f5750565b600181600481111561288357612883613181565b14156128d15760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161093f565b60028160048111156128e5576128e5613181565b14156129335760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161093f565b600381600481111561294757612947613181565b14156129bb5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161093f565b60048160048111156129cf576129cf613181565b1415610cf95760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161093f565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612a7a5750600090506003612b27565b8460ff16601b14158015612a9257508460ff16601c14155b15612aa35750600090506004612b27565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612af7573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612b2057600060019250925050612b27565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831681612b6660ff86901c601b61305d565b9050612b7487828885612a43565b935093505050935093915050565b828054612b8e906130eb565b90600052602060002090601f016020900481019282612bb05760008555612bf6565b82601f10612bc957805160ff1916838001178555612bf6565b82800160010185558215612bf6579182015b82811115612bf6578251825591602001919060010190612bdb565b50612c02929150612c06565b5090565b5b80821115612c025760008155600101612c07565b600067ffffffffffffffff80841115612c3657612c366131ad565b604051601f8501601f19908116603f01168101908282118183101715612c5e57612c5e6131ad565b81604052809350858152868686011115612c7757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612ca357600080fd5b813561224b816131c3565b60008060408385031215612cc157600080fd5b8235612ccc816131c3565b946020939093013593505050565b60008060408385031215612ced57600080fd5b8235612cf8816131c3565b91506020830135612d08816131c3565b809150509250929050565b600080600060608486031215612d2857600080fd5b8335612d33816131c3565b92506020840135612d43816131c3565b929592945050506040919091013590565b60008060008060808587031215612d6a57600080fd5b8435612d75816131c3565b93506020850135612d85816131c3565b925060408501359150606085013567ffffffffffffffff811115612da857600080fd5b8501601f81018713612db957600080fd5b612dc887823560208401612c1b565b91505092959194509250565b60008060408385031215612de757600080fd5b8235612df2816131c3565b915060208301358015158114612d0857600080fd5b600060208284031215612e1957600080fd5b813561224b816131d8565b600060208284031215612e3657600080fd5b815161224b816131d8565b600060208284031215612e5357600080fd5b813567ffffffffffffffff811115612e6a57600080fd5b8201601f81018413612e7b57600080fd5b611c7b84823560208401612c1b565b600060208284031215612e9c57600080fd5b5035919050565b600080600060408486031215612eb857600080fd5b83359250602084013567ffffffffffffffff80821115612ed757600080fd5b818601915086601f830112612eeb57600080fd5b813581811115612efa57600080fd5b876020828501011115612f0c57600080fd5b6020830194508093505050509250925092565b60008151808452612f378160208601602086016130bf565b601f01601f19169290920160200192915050565b60008151612f5d8185602086016130bf565b9290920192915050565b600080845481600182811c915080831680612f8357607f831692505b6020808410821415612fa357634e487b7160e01b86526022600452602486fd5b818015612fb75760018114612fc857612ff5565b60ff19861689528489019650612ff5565b60008b81526020902060005b86811015612fed5781548b820152908501908301612fd4565b505084890196505b5050505050506130058185612f4b565b95945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526130406080830184612f1f565b9695505050505050565b60208152600061224b6020830184612f1f565b6000821982111561307057613070613155565b500190565b6000826130845761308461316b565b500490565b60008160001904831182151516156130a3576130a3613155565b500290565b6000828210156130ba576130ba613155565b500390565b60005b838110156130da5781810151838201526020016130c2565b8381111561129b5750506000910152565b600181811c908216806130ff57607f821691505b6020821081141561312057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561313a5761313a613155565b5060010190565b6000826131505761315061316b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610cf957600080fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610cf957600080fdfea2646970667358221220f2cf1dd5ecdf12d84f49203c3ffafd1bbaee526655fbadff1dc3af9db49a7e5d64736f6c63430008070033

Deployed Bytecode Sourcemap

58782:7753:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45591:305;;;;;;;;;;-1:-1:-1;45591:305:0;;;;;:::i;:::-;;:::i;:::-;;;8593:14:1;;8586:22;8568:41;;8556:2;8541:18;45591:305:0;;;;;;;;46536:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;48095:221::-;;;;;;;;;;-1:-1:-1;48095:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7845:55:1;;;7827:74;;7815:2;7800:18;48095:221:0;7681:226:1;47618:411:0;;;;;;;;;;-1:-1:-1;47618:411:0;;;;;:::i;:::-;;:::i;:::-;;60280:143;;;;;;;;;;-1:-1:-1;60280:143:0;;;;;:::i;:::-;;:::i;60093:95::-;;;;;;;;;;;;;:::i;48845:339::-;;;;;;;;;;-1:-1:-1;48845:339:0;;;;;:::i;:::-;;:::i;59640:30::-;;;;;;;;;;-1:-1:-1;59640:30:0;;;;;;;;;;;63159:282;;;;;;:::i;:::-;;:::i;61090:128::-;;;;;;;;;;-1:-1:-1;61090:128:0;;;;;:::i;:::-;;:::i;59142:42::-;;;;;;;;;;;;59179:5;59142:42;;;;;22363:25:1;;;22351:2;22336:18;59142:42:0;22217:177:1;59309:46:0;;;;;;;;;;;;59354:1;59309:46;;65636:149;;;;;;;;;;;;;:::i;49255:185::-;;;;;;;;;;-1:-1:-1;49255:185:0;;;;;:::i;:::-;;:::i;59533:26::-;;;;;;;;;;;;;:::i;59600:33::-;;;;;;;;;;-1:-1:-1;59600:33:0;;;;;;;;46230:239;;;;;;;;;;-1:-1:-1;46230:239:0;;;;;:::i;:::-;;:::i;59566:27::-;;;;;;;;;;;;;:::i;45960:208::-;;;;;;;;;;-1:-1:-1;45960:208:0;;;;;:::i;:::-;;:::i;25871:103::-;;;;;;;;;;;;;:::i;65889:389::-;;;;;;;;;;-1:-1:-1;65889:389:0;;;;;:::i;:::-;;:::i;59249:53::-;;;;;;;;;;;;59299:3;59249:53;;25220:87;;;;;;;;;;-1:-1:-1;25293:6:0;;-1:-1:-1;;;;;25293:6:0;25220:87;;60431:116;;;;;;;;;;-1:-1:-1;60431:116:0;;;;;:::i;:::-;;:::i;46705:104::-;;;;;;;;;;;;;:::i;48388:155::-;;;;;;;;;;-1:-1:-1;48388:155:0;;;;;:::i;:::-;;:::i;61951:108::-;;;;;;;;;;;;;:::i;49511:328::-;;;;;;;;;;-1:-1:-1;49511:328:0;;;;;:::i;:::-;;:::i;59362:60::-;;;;;;;;;;;;59420:2;59362:60;;59191:51;;;;;;;;;;;;59238:4;59191:51;;61311:632;;;;;;;;;;-1:-1:-1;61311:632:0;;;;;:::i;:::-;;:::i;60691:391::-;;;;;;;;;;-1:-1:-1;60691:391:0;;;;;:::i;:::-;;:::i;59089:44::-;;;;;;;;;;;;;:::i;63547:741::-;;;;;;;;;;;;;:::i;48614:164::-;;;;;;;;;;-1:-1:-1;48614:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;48735:25:0;;;48711:4;48735:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;48614:164;26129:201;;;;;;;;;;-1:-1:-1;26129:201:0;;;;;:::i;:::-;;:::i;59984:101::-;;;;;;;;;;;;;:::i;62351:771::-;;;;;;:::i;:::-;;:::i;60555:130::-;;;;;;;;;;-1:-1:-1;60555:130:0;;;;;:::i;:::-;;:::i;45591:305::-;45693:4;45730:40;;;45745:25;45730:40;;:105;;-1:-1:-1;45787:48:0;;;45802:33;45787:48;45730:105;:158;;;-1:-1:-1;38325:25:0;38310:40;;;;45852:36;45710:178;45591:305;-1:-1:-1;;45591:305:0:o;46536:100::-;46590:13;46623:5;46616:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46536:100;:::o;48095:221::-;48171:7;51438:16;;;:7;:16;;;;;;-1:-1:-1;;;;;51438:16:0;48191:73;;;;-1:-1:-1;;;48191:73:0;;17399:2:1;48191:73:0;;;17381:21:1;17438:2;17418:18;;;17411:30;17477:34;17457:18;;;17450:62;17548:14;17528:18;;;17521:42;17580:19;;48191:73:0;;;;;;;;;-1:-1:-1;48284:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;48284:24:0;;48095:221::o;47618:411::-;47699:13;47715:23;47730:7;47715:14;:23::i;:::-;47699:39;;47763:5;-1:-1:-1;;;;;47757:11:0;:2;-1:-1:-1;;;;;47757:11:0;;;47749:57;;;;-1:-1:-1;;;47749:57:0;;18589:2:1;47749:57:0;;;18571:21:1;18628:2;18608:18;;;18601:30;18667:34;18647:18;;;18640:62;18738:3;18718:18;;;18711:31;18759:19;;47749:57:0;18387:397:1;47749:57:0;23971:10;-1:-1:-1;;;;;47841:21:0;;;;:62;;-1:-1:-1;47866:37:0;47883:5;23971:10;48614:164;:::i;47866:37::-;47819:168;;;;-1:-1:-1;;;47819:168:0;;14087:2:1;47819:168:0;;;14069:21:1;14126:2;14106:18;;;14099:30;14165:34;14145:18;;;14138:62;14236:26;14216:18;;;14209:54;14280:19;;47819:168:0;13885:420:1;47819:168:0;48000:21;48009:2;48013:7;48000:8;:21::i;:::-;47688:341;47618:411;;:::o;60280:143::-;25293:6;;-1:-1:-1;;;;;25293:6:0;23971:10;25440:23;25432:68;;;;-1:-1:-1;;;25432:68:0;;17812:2:1;25432:68:0;;;17794:21:1;;;17831:18;;;17824:30;17890:34;17870:18;;;17863:62;17942:18;;25432:68:0;17610:356:1;25432:68:0;60373:42;;::::1;::::0;:25:::1;::::0;:42:::1;::::0;::::1;::::0;::::1;:::i;:::-;;60280:143:::0;:::o;60093:95::-;25293:6;;-1:-1:-1;;;;;25293:6:0;23971:10;25440:23;25432:68;;;;-1:-1:-1;;;25432:68:0;;17812:2:1;25432:68:0;;;17794:21:1;;;17831:18;;;17824:30;17890:34;17870:18;;;17863:62;17942:18;;25432:68:0;17610:356:1;25432:68:0;60170:10:::1;::::0;;60156:24;;::::1;60170:10;::::0;;;::::1;;;60169:11;60156:24:::0;;::::1;;::::0;;60093:95::o;48845:339::-;49040:41;23971:10;49073:7;49040:18;:41::i;:::-;49032:103;;;;-1:-1:-1;;;49032:103:0;;19347:2:1;49032:103:0;;;19329:21:1;19386:2;19366:18;;;19359:30;19425:34;19405:18;;;19398:62;19496:19;19476:18;;;19469:47;19533:19;;49032:103:0;19145:413:1;49032:103:0;49148:28;49158:4;49164:2;49168:7;49148:9;:28::i;63159:282::-;63240:10;;;;;;;63232:41;;;;-1:-1:-1;;;63232:41:0;;12924:2:1;63232:41:0;;;12906:21:1;12963:2;12943:18;;;12936:30;13002:20;12982:18;;;12975:48;13040:18;;63232:41:0;12722:342:1;63232:41:0;59420:2;63292:9;:44;;63284:102;;;;-1:-1:-1;;;63284:102:0;;11751:2:1;63284:102:0;;;11733:21:1;11790:2;11770:18;;;11763:30;11829:34;11809:18;;;11802:62;11900:15;11880:18;;;11873:43;11933:19;;63284:102:0;11549:409:1;63284:102:0;63399:34;63423:9;63399:23;:34::i;:::-;63159:282;:::o;61090:128::-;25293:6;;-1:-1:-1;;;;;25293:6:0;23971:10;25440:23;25432:68;;;;-1:-1:-1;;;25432:68:0;;17812:2:1;25432:68:0;;;17794:21:1;;;17831:18;;;17824:30;17890:34;17870:18;;;17863:62;17942:18;;25432:68:0;17610:356:1;25432:68:0;-1:-1:-1;;;;;61175:28:0::1;;::::0;;;:18:::1;:28;::::0;;;;:35;;-1:-1:-1;;61175:35:0::1;61206:4;61175:35;::::0;;61090:128::o;65636:149::-;25293:6;;-1:-1:-1;;;;;25293:6:0;23971:10;25440:23;25432:68;;;;-1:-1:-1;;;25432:68:0;;17812:2:1;25432:68:0;;;17794:21:1;;;17831:18;;;17824:30;17890:34;17870:18;;;17863:62;17942:18;;25432:68:0;17610:356:1;25432:68:0;65740:37:::1;::::0;65708:21:::1;::::0;65748:10:::1;::::0;65740:37;::::1;;;::::0;65708:21;;65690:15:::1;65740:37:::0;65690:15;65740:37;65708:21;65748:10;65740:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;49255:185:::0;49393:39;49410:4;49416:2;49420:7;49393:39;;;;;;;;;;;;:16;:39::i;59533:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46230:239::-;46302:7;46338:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46338:16:0;46373:19;46365:73;;;;-1:-1:-1;;;46365:73:0;;14923:2:1;46365:73:0;;;14905:21:1;14962:2;14942:18;;;14935:30;15001:34;14981:18;;;14974:62;15072:11;15052:18;;;15045:39;15101:19;;46365:73:0;14721:405:1;59566:27:0;;;;;;;:::i;45960:208::-;46032:7;-1:-1:-1;;;;;46060:19:0;;46052:74;;;;-1:-1:-1;;;46052:74:0;;14512:2:1;46052:74:0;;;14494:21:1;14551:2;14531:18;;;14524:30;14590:34;14570:18;;;14563:62;14661:12;14641:18;;;14634:40;14691:19;;46052:74:0;14310:406:1;46052:74:0;-1:-1:-1;;;;;;46144:16:0;;;;;:9;:16;;;;;;;45960:208::o;25871:103::-;25293:6;;-1:-1:-1;;;;;25293:6:0;23971:10;25440:23;25432:68;;;;-1:-1:-1;;;25432:68:0;;17812:2:1;25432:68:0;;;17794:21:1;;;17831:18;;;17824:30;17890:34;17870:18;;;17863:62;17942:18;;25432:68:0;17610:356:1;25432:68:0;25936:30:::1;25963:1;25936:18;:30::i;:::-;25871:103::o:0;65889:389::-;25293:6;;-1:-1:-1;;;;;25293:6:0;23971:10;25440:23;25432:68;;;;-1:-1:-1;;;25432:68:0;;17812:2:1;25432:68:0;;;17794:21:1;;;17831:18;;;17824:30;17890:34;17870:18;;;17863:62;17942:18;;25432:68:0;17610:356:1;25432:68:0;66100:1:::1;66090:7;:11;:47;;;;;66116:21;66105:7;:32;;66090:47;66072:159;;;::::0;-1:-1:-1;;;66072:159:0;;20115:2:1;66072:159:0::1;::::0;::::1;20097:21:1::0;20154:2;20134:18;;;20127:30;20193:34;20173:18;;;20166:62;20264:34;20244:18;;;20237:62;20336:8;20315:19;;;20308:37;20362:19;;66072:159:0::1;19913:474:1::0;66072:159:0::1;66242:28;::::0;-1:-1:-1;;;;;66242:19:0;::::1;::::0;:28;::::1;;;::::0;66262:7;;66242:28:::1;::::0;;;66262:7;66242:19;:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;60431:116:::0;25293:6;;-1:-1:-1;;;;;25293:6:0;23971:10;25440:23;25432:68;;;;-1:-1:-1;;;25432:68:0;;17812:2:1;25432:68:0;;;17794:21:1;;;17831:18;;;17824:30;17890:34;17870:18;;;17863:62;17942:18;;25432:68:0;17610:356:1;25432:68:0;60516:23;;::::1;::::0;:12:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;46705:104::-:0;46761:13;46794:7;46787:14;;;;;:::i;48388:155::-;48483:52;23971:10;48516:8;48526;48483:18;:52::i;61951:108::-;61998:7;62030:21;:11;8097:14;;8005:114;62030:21;62023:28;;61951:108;:::o;49511:328::-;49686:41;23971:10;49719:7;49686:18;:41::i;:::-;49678:103;;;;-1:-1:-1;;;49678:103:0;;19347:2:1;49678:103:0;;;19329:21:1;19386:2;19366:18;;;19359:30;19425:34;19405:18;;;19398:62;19496:19;19476:18;;;19469:47;19533:19;;49678:103:0;19145:413:1;49678:103:0;49792:39;49806:4;49812:2;49816:7;49825:5;49792:13;:39::i;:::-;49511:328;;;;:::o;61311:632::-;61376:7;61401:19;61476:4;61437:36;61463:9;61437:21;:11;8097:14;;8005:114;61437:21;:25;;:36::i;:::-;:43;61433:109;;;-1:-1:-1;61520:10:0;61433:109;61597:4;61558:36;61584:9;61558:21;:11;8097:14;;8005:114;61558:36;:43;61554:109;;;-1:-1:-1;61641:10:0;61554:109;61718:4;61679:36;61705:9;61679:21;:11;8097:14;;8005:114;61679:36;:43;61675:109;;;-1:-1:-1;61762:10:0;61675:109;61839:4;61800:36;61826:9;61800:21;:11;8097:14;;8005:114;61800:36;:43;61796:109;;;-1:-1:-1;61883:10:0;61924:11;61311:632;-1:-1:-1;;61311:632:0:o;60691:391::-;60757:13;60789;60834:1;60811:12;60805:26;;;;;:::i;:::-;;;:30;60789:46;;60853:8;60848:58;;60881:13;60874:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60691:391;;;:::o;60848:58::-;51414:4;51438:16;;;:7;:16;;;;;;-1:-1:-1;;;;;51438:16:0;60918:77;;;;-1:-1:-1;;;60918:77:0;;18173:2:1;60918:77:0;;;18155:21:1;18212:2;18192:18;;;18185:30;18251:34;18231:18;;;18224:62;18322:17;18302:18;;;18295:45;18357:19;;60918:77:0;17971:411:1;60918:77:0;61039:12;61053:19;:8;:17;:19::i;:::-;61022:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61008:66;;;60691:391;;;:::o;59089:44::-;;;;;;;:::i;63547:741::-;63632:10;63613:30;;;;:18;:30;;;;;;;;:38;;:30;:38;63605:91;;;;-1:-1:-1;;;63605:91:0;;15743:2:1;63605:91:0;;;15725:21:1;15782:2;15762:18;;;15755:30;15821:34;15801:18;;;15794:62;15892:10;15872:18;;;15865:38;15920:19;;63605:91:0;15541:404:1;63605:91:0;59179:5;63715:28;63741:1;63715:21;:11;8097:14;;8005:114;63715:28;:42;;63707:96;;;;-1:-1:-1;;;63707:96:0;;15333:2:1;63707:96:0;;;15315:21:1;15372:2;15352:18;;;15345:30;15411:34;15391:18;;;15384:62;15482:11;15462:18;;;15455:39;15511:19;;63707:96:0;15131:405:1;63707:96:0;59299:3;63822:40;63860:1;63822:33;:23;8097:14;;8005:114;63822:40;:67;;63814:76;;;;;;63906:9;63901:331;63925:1;63921;:5;63901:331;;;63958:17;63978:21;:11;8097:14;;8005:114;63978:21;63958:41;;59179:5;64020:9;:22;64016:205;;;64077:23;:11;8216:19;;8234:1;8216:19;;;8127:127;64077:23;64119:35;:23;8216:19;;8234:1;8216:19;;;8127:127;64119:35;64173:32;64183:10;64195:9;64173;:32::i;:::-;-1:-1:-1;63928:3:0;;;;:::i;:::-;;;;63901:331;;;-1:-1:-1;64261:10:0;64275:5;64242:30;;;:18;:30;;;;;:38;;-1:-1:-1;;64242:38:0;;;63547:741::o;26129:201::-;25293:6;;-1:-1:-1;;;;;25293:6:0;23971:10;25440:23;25432:68;;;;-1:-1:-1;;;25432:68:0;;17812:2:1;25432:68:0;;;17794:21:1;;;17831:18;;;17824:30;17890:34;17870:18;;;17863:62;17942:18;;25432:68:0;17610:356:1;25432:68:0;-1:-1:-1;;;;;26218:22:0;::::1;26210:73;;;::::0;-1:-1:-1;;;26210:73:0;;10581:2:1;26210:73:0::1;::::0;::::1;10563:21:1::0;10620:2;10600:18;;;10593:30;10659:34;10639:18;;;10632:62;10730:8;10710:18;;;10703:36;10756:19;;26210:73:0::1;10379:402:1::0;26210:73:0::1;26294:28;26313:8;26294:18;:28::i;59984:101::-:0;25293:6;;-1:-1:-1;;;;;25293:6:0;23971:10;25440:23;25432:68;;;;-1:-1:-1;;;25432:68:0;;17812:2:1;25432:68:0;;;17794:21:1;;;17831:18;;;17824:30;17890:34;17870:18;;;17863:62;17942:18;;25432:68:0;17610:356:1;25432:68:0;60064:13:::1;::::0;;-1:-1:-1;;60047:30:0;::::1;60064:13;::::0;;::::1;60063:14;60047:30;::::0;;59984:101::o;62351:771::-;10463:1;11061:7;;:19;;11053:63;;;;-1:-1:-1;;;11053:63:0;;21300:2:1;11053:63:0;;;21282:21:1;21339:2;21319:18;;;21312:30;21378:33;21358:18;;;21351:61;21429:18;;11053:63:0;21098:355:1;11053:63:0;10463:1;11194:7;:18;62513:22:::1;::::0;;62524:10:::1;62513:22;::::0;::::1;7827:74:1::0;62482:76:0::1;::::0;7800:18:1;62513:22:0::1;;;;;;;;;;;;62503:33;;;;;;62538:19;;62482:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;62482:20:0::1;::::0;-1:-1:-1;;;62482:76:0:i:1;:::-;62474:116;;;::::0;-1:-1:-1;;;62474:116:0;;20594:2:1;62474:116:0::1;::::0;::::1;20576:21:1::0;20633:2;20613:18;;;20606:30;20672:29;20652:18;;;20645:57;20719:18;;62474:116:0::1;20392:351:1::0;62474:116:0::1;62609:13;::::0;::::1;;62601:47;;;::::0;-1:-1:-1;;;62601:47:0;;19765:2:1;62601:47:0::1;::::0;::::1;19747:21:1::0;19804:2;19784:18;;;19777:30;19843:23;19823:18;;;19816:51;19884:18;;62601:47:0::1;19563:345:1::0;62601:47:0::1;59238:4;62667:36;62693:9;62667:21;:11;8097:14:::0;;8005:114;62667:36:::1;:60;;62659:94;;;::::0;-1:-1:-1;;;62659:94:0;;20950:2:1;62659:94:0::1;::::0;::::1;20932:21:1::0;20989:2;20969:18;;;20962:30;21028:23;21008:18;;;21001:51;21069:18;;62659:94:0::1;20748:345:1::0;62659:94:0::1;59354:1;62772:9;:31;;62764:70;;;::::0;-1:-1:-1;;;62764:70:0;;22064:2:1;62764:70:0::1;::::0;::::1;22046:21:1::0;22103:2;22083:18;;;22076:30;22142:28;22122:18;;;22115:56;22188:18;;62764:70:0::1;21862:350:1::0;62764:70:0::1;62879:10;62853:37;::::0;;;:25:::1;:37;::::0;;;;;59354:1:::1;::::0;62853:52:::1;::::0;62895:9;62853:41:::1;:52::i;:::-;:74;;62845:161;;;::::0;-1:-1:-1;;;62845:161:0;;16555:2:1;62845:161:0::1;::::0;::::1;16537:21:1::0;16594:2;16574:18;;;16567:30;16633:34;16613:18;;;16606:62;16704:34;16684:18;;;16677:62;16776:12;16755:19;;;16748:41;16806:19;;62845:161:0::1;16353:478:1::0;62845:161:0::1;63045:10;63019:37;::::0;;;:25:::1;:37;::::0;;;;:50;;63060:9;;63019:37;:50:::1;::::0;63060:9;;63019:50:::1;:::i;:::-;::::0;;;-1:-1:-1;63080:34:0::1;::::0;-1:-1:-1;63104:9:0;63080:23:::1;:34::i;:::-;-1:-1:-1::0;;10419:1:0;11373:7;:22;-1:-1:-1;62351:771:0:o;60555:130::-;25293:6;;-1:-1:-1;;;;;25293:6:0;23971:10;25440:23;25432:68;;;;-1:-1:-1;;;25432:68:0;;17812:2:1;25432:68:0;;;17794:21:1;;;17831:18;;;17824:30;17890:34;17870:18;;;17863:62;17942:18;;25432:68:0;17610:356:1;25432:68:0;60647:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;8127:127::-:0;8216:19;;8234:1;8216:19;;;8127:127::o;55495:174::-;55570:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;55570:29:0;-1:-1:-1;;;;;55570:29:0;;;;;;;;:24;;55624:23;55570:24;55624:14;:23::i;:::-;-1:-1:-1;;;;;55615:46:0;;;;;;;;;;;55495:174;;:::o;51643:348::-;51736:4;51438:16;;;:7;:16;;;;;;-1:-1:-1;;;;;51438:16:0;51753:73;;;;-1:-1:-1;;;51753:73:0;;13674:2:1;51753:73:0;;;13656:21:1;13713:2;13693:18;;;13686:30;13752:34;13732:18;;;13725:62;13823:14;13803:18;;;13796:42;13855:19;;51753:73:0;13472:408:1;51753:73:0;51837:13;51853:23;51868:7;51853:14;:23::i;:::-;51837:39;;51906:5;-1:-1:-1;;;;;51895:16:0;:7;-1:-1:-1;;;;;51895:16:0;;:51;;;;51939:7;-1:-1:-1;;;;;51915:31:0;:20;51927:7;51915:11;:20::i;:::-;-1:-1:-1;;;;;51915:31:0;;51895:51;:87;;;-1:-1:-1;;;;;;48735:25:0;;;48711:4;48735:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;51950:32;51887:96;51643:348;-1:-1:-1;;;;51643:348:0:o;54752:625::-;54911:4;-1:-1:-1;;;;;54884:31:0;:23;54899:7;54884:14;:23::i;:::-;-1:-1:-1;;;;;54884:31:0;;54876:81;;;;-1:-1:-1;;;54876:81:0;;10988:2:1;54876:81:0;;;10970:21:1;11027:2;11007:18;;;11000:30;11066:34;11046:18;;;11039:62;11137:7;11117:18;;;11110:35;11162:19;;54876:81:0;10786:401:1;54876:81:0;-1:-1:-1;;;;;54976:16:0;;54968:65;;;;-1:-1:-1;;;54968:65:0;;12165:2:1;54968:65:0;;;12147:21:1;12204:2;12184:18;;;12177:30;12243:34;12223:18;;;12216:62;12314:6;12294:18;;;12287:34;12338:19;;54968:65:0;11963:400:1;54968:65:0;55150:29;55167:1;55171:7;55150:8;:29::i;:::-;-1:-1:-1;;;;;55192:15:0;;;;;;:9;:15;;;;;:20;;55211:1;;55192:15;:20;;55211:1;;55192:20;:::i;:::-;;;;-1:-1:-1;;;;;;;55223:13:0;;;;;;:9;:13;;;;;:18;;55240:1;;55223:13;:18;;55240:1;;55223:18;:::i;:::-;;;;-1:-1:-1;;55252:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;55252:21:0;-1:-1:-1;;;;;55252:21:0;;;;;;;;;55291:27;;55252:16;;55291:27;;;;;;;47688:341;47618:411;;:::o;64296:1180::-;64417:4;64378:36;64404:9;64378:21;:11;8097:14;;8005:114;64378:36;:43;64374:118;;;64470:10;64447:20;:33;64374:118;64547:4;64508:36;64534:9;64508:21;:11;8097:14;;8005:114;64508:36;:43;64504:118;;;64600:10;64577:20;:33;64504:118;64677:4;64638:36;64664:9;64638:21;:11;8097:14;;8005:114;64638:36;:43;64634:118;;;64730:10;64707:20;:33;64634:118;64807:4;64768:36;64794:9;64768:21;:11;8097:14;;8005:114;64768:36;:43;64764:118;;;64860:10;64837:20;:33;64764:118;64916:1;64904:9;:13;64896:53;;;;-1:-1:-1;;;64896:53:0;;18991:2:1;64896:53:0;;;18973:21:1;19030:2;19010:18;;;19003:30;19069:29;19049:18;;;19042:57;19116:18;;64896:53:0;18789:351:1;64896:53:0;59179:5;64968:36;64994:9;64968:21;:11;8097:14;;8005:114;64968:36;:50;;64960:104;;;;-1:-1:-1;;;64960:104:0;;15333:2:1;64960:104:0;;;15315:21:1;15372:2;15352:18;;;15345:30;15411:34;15391:18;;;15384:62;15482:11;15462:18;;;15455:39;15511:19;;64960:104:0;15131:405:1;64960:104:0;65096:20;;:35;;65121:9;65096:24;:35::i;:::-;65083:9;:48;;65075:96;;;;-1:-1:-1;;;65075:96:0;;21660:2:1;65075:96:0;;;21642:21:1;21699:2;21679:18;;;21672:30;21738:34;21718:18;;;21711:62;21809:5;21789:18;;;21782:33;21832:19;;65075:96:0;21458:399:1;65075:96:0;65189:9;65184:285;65208:9;65204:1;:13;65184:285;;;65249:17;65269:21;:11;8097:14;;8005:114;65269:21;65249:41;;59179:5;65311:9;:22;65307:151;;;65368:23;:11;8216:19;;8234:1;8216:19;;;8127:127;65368:23;65410:32;65420:10;65432:9;65410;:32::i;:::-;-1:-1:-1;65219:3:0;;;;:::i;:::-;;;;65184:285;;26490:191;26583:6;;;-1:-1:-1;;;;;26600:17:0;;;-1:-1:-1;;26600:17:0;;;;;;;26633:40;;26583:6;;;26600:17;26583:6;;26633:40;;26564:16;;26633:40;26553:128;26490:191;:::o;55811:315::-;55966:8;-1:-1:-1;;;;;55957:17:0;:5;-1:-1:-1;;;;;55957:17:0;;;55949:55;;;;-1:-1:-1;;;55949:55:0;;12570:2:1;55949:55:0;;;12552:21:1;12609:2;12589:18;;;12582:30;12648:27;12628:18;;;12621:55;12693:18;;55949:55:0;12368:349:1;55949:55:0;-1:-1:-1;;;;;56015:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;56015:46:0;;;;;;;;;;56077:41;;8568::1;;;56077::0;;8541:18:1;56077:41:0;;;;;;;55811:315;;;:::o;50721:::-;50878:28;50888:4;50894:2;50898:7;50878:9;:28::i;:::-;50925:48;50948:4;50954:2;50958:7;50967:5;50925:22;:48::i;:::-;50917:111;;;;-1:-1:-1;;;50917:111:0;;10162:2:1;50917:111:0;;;10144:21:1;10201:2;10181:18;;;10174:30;10240:34;10220:18;;;10213:62;10311:20;10291:18;;;10284:48;10349:19;;50917:111:0;9960:414:1;2915:98:0;2973:7;3000:5;3004:1;3000;:5;:::i;:::-;2993:12;2915:98;-1:-1:-1;;;2915:98:0:o;11828:723::-;11884:13;12105:10;12101:53;;-1:-1:-1;;12132:10:0;;;;;;;;;;;;;;;;;;11828:723::o;12101:53::-;12179:5;12164:12;12220:78;12227:9;;12220:78;;12253:8;;;;:::i;:::-;;-1:-1:-1;12276:10:0;;-1:-1:-1;12284:2:0;12276:10;;:::i;:::-;;;12220:78;;;12308:19;12340:6;12330:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12330:17:0;;12308:39;;12358:154;12365:10;;12358:154;;12392:11;12402:1;12392:11;;:::i;:::-;;-1:-1:-1;12461:10:0;12469:2;12461:5;:10;:::i;:::-;12448:24;;:2;:24;:::i;:::-;12435:39;;12418:6;12425;12418:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;12489:11:0;12498:2;12489:11;;:::i;:::-;;;12358:154;;52333:110;52409:26;52419:2;52423:7;52409:26;;;;;;;;;;;;:9;:26::i;66344:186::-;66433:4;66515:7;25293:6;;-1:-1:-1;;;;;25293:6:0;;25220:87;66515:7;-1:-1:-1;;;;;66463:59:0;:48;66501:9;66463:29;:4;22046:58;;7538:66:1;22046:58:0;;;7526:79:1;7621:12;;;7614:28;;;21913:7:0;;7658:12:1;;22046:58:0;;;;;;;;;;;;22036:69;;;;;;22029:76;;21844:269;;;;66463:29;:37;;:48::i;:::-;-1:-1:-1;;;;;66463:59:0;;;66344:186;-1:-1:-1;;;66344:186:0:o;3653:98::-;3711:7;3738:5;3742:1;3738;:5;:::i;56691:799::-;56846:4;-1:-1:-1;;;;;56867:13:0;;28254:19;:23;56863:620;;56903:72;;;;;-1:-1:-1;;;;;56903:36:0;;;;;:72;;23971:10;;56954:4;;56960:7;;56969:5;;56903:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56903:72:0;;;;;;;;-1:-1:-1;;56903:72:0;;;;;;;;;;;;:::i;:::-;;;56899:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57145:13:0;;57141:272;;57188:60;;-1:-1:-1;;;57188:60:0;;10162:2:1;57188:60:0;;;10144:21:1;10201:2;10181:18;;;10174:30;10240:34;10220:18;;;10213:62;10311:20;10291:18;;;10284:48;10349:19;;57188:60:0;9960:414:1;57141:272:0;57363:6;57357:13;57348:6;57344:2;57340:15;57333:38;56899:529;57026:51;;57036:41;57026:51;;-1:-1:-1;57019:58:0;;56863:620;-1:-1:-1;57467:4:0;56691:799;;;;;;:::o;52670:321::-;52800:18;52806:2;52810:7;52800:5;:18::i;:::-;52851:54;52882:1;52886:2;52890:7;52899:5;52851:22;:54::i;:::-;52829:154;;;;-1:-1:-1;;;52829:154:0;;10162:2:1;52829:154:0;;;10144:21:1;10201:2;10181:18;;;10174:30;10240:34;10220:18;;;10213:62;10311:20;10291:18;;;10284:48;10349:19;;52829:154:0;9960:414:1;18042:231:0;18120:7;18141:17;18160:18;18182:27;18193:4;18199:9;18182:10;:27::i;:::-;18140:69;;;;18220:18;18232:5;18220:11;:18::i;:::-;-1:-1:-1;18256:9:0;18042:231;-1:-1:-1;;;18042:231:0:o;53327:439::-;-1:-1:-1;;;;;53407:16:0;;53399:61;;;;-1:-1:-1;;;53399:61:0;;17038:2:1;53399:61:0;;;17020:21:1;;;17057:18;;;17050:30;17116:34;17096:18;;;17089:62;17168:18;;53399:61:0;16836:356:1;53399:61:0;51414:4;51438:16;;;:7;:16;;;;;;-1:-1:-1;;;;;51438:16:0;:30;53471:58;;;;-1:-1:-1;;;53471:58:0;;11394:2:1;53471:58:0;;;11376:21:1;11433:2;11413:18;;;11406:30;11472;11452:18;;;11445:58;11520:18;;53471:58:0;11192:352:1;53471:58:0;-1:-1:-1;;;;;53600:13:0;;;;;;:9;:13;;;;;:18;;53617:1;;53600:13;:18;;53617:1;;53600:18;:::i;:::-;;;;-1:-1:-1;;53629:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;53629:21:0;-1:-1:-1;;;;;53629:21:0;;;;;;;;53668:33;;53629:16;;;53668:33;;53629:16;;53668:33;60373:42:::1;60280:143:::0;:::o;15932:1308::-;16013:7;16022:12;16247:9;:16;16267:2;16247:22;16243:990;;;16543:4;16528:20;;16522:27;16593:4;16578:20;;16572:27;16651:4;16636:20;;16630:27;16286:9;16622:36;16694:25;16705:4;16622:36;16522:27;16572;16694:10;:25::i;:::-;16687:32;;;;;;;;;16243:990;16741:9;:16;16761:2;16741:22;16737:496;;;17016:4;17001:20;;16995:27;17067:4;17052:20;;17046:27;17109:23;17120:4;16995:27;17046;17109:10;:23::i;:::-;17102:30;;;;;;;;16737:496;-1:-1:-1;17181:1:0;;-1:-1:-1;17185:35:0;16737:496;15932:1308;;;;;:::o;14203:643::-;14281:20;14272:5;:29;;;;;;;;:::i;:::-;;14268:571;;;14203:643;:::o;14268:571::-;14379:29;14370:5;:38;;;;;;;;:::i;:::-;;14366:473;;;14425:34;;-1:-1:-1;;;14425:34:0;;9449:2:1;14425:34:0;;;9431:21:1;9488:2;9468:18;;;9461:30;9527:26;9507:18;;;9500:54;9571:18;;14425:34:0;9247:348:1;14366:473:0;14490:35;14481:5;:44;;;;;;;;:::i;:::-;;14477:362;;;14542:41;;-1:-1:-1;;;14542:41:0;;9802:2:1;14542:41:0;;;9784:21:1;9841:2;9821:18;;;9814:30;9880:33;9860:18;;;9853:61;9931:18;;14542:41:0;9600:355:1;14477:362:0;14614:30;14605:5;:39;;;;;;;;:::i;:::-;;14601:238;;;14661:44;;-1:-1:-1;;;14661:44:0;;13271:2:1;14661:44:0;;;13253:21:1;13310:2;13290:18;;;13283:30;13349:34;13329:18;;;13322:62;13420:4;13400:18;;;13393:32;13442:19;;14661:44:0;13069:398:1;14601:238:0;14736:30;14727:5;:39;;;;;;;;:::i;:::-;;14723:116;;;14783:44;;-1:-1:-1;;;14783:44:0;;16152:2:1;14783:44:0;;;16134:21:1;16191:2;16171:18;;;16164:30;16230:34;16210:18;;;16203:62;16301:4;16281:18;;;16274:32;16323:19;;14783:44:0;15950:398:1;19494:1632:0;19625:7;;20559:66;20546:79;;20542:163;;;-1:-1:-1;20658:1:0;;-1:-1:-1;20662:30:0;20642:51;;20542:163;20719:1;:7;;20724:2;20719:7;;:18;;;;;20730:1;:7;;20735:2;20730:7;;20719:18;20715:102;;;-1:-1:-1;20770:1:0;;-1:-1:-1;20774:30:0;20754:51;;20715:102;20931:24;;;20914:14;20931:24;;;;;;;;;8847:25:1;;;8920:4;8908:17;;8888:18;;;8881:45;;;;8942:18;;;8935:34;;;8985:18;;;8978:34;;;20931:24:0;;8819:19:1;;20931:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;20931:24:0;;-1:-1:-1;;20931:24:0;;;-1:-1:-1;;;;;;;20970:20:0;;20966:103;;21023:1;21027:29;21007:50;;;;;;;20966:103;21089:6;-1:-1:-1;21097:20:0;;-1:-1:-1;19494:1632:0;;;;;;;;:::o;18536:344::-;18650:7;;18709:66;18696:80;;18650:7;18803:25;18819:3;18804:18;;;18826:2;18803:25;:::i;:::-;18787:42;;18847:25;18858:4;18864:1;18867;18870;18847:10;:25::i;:::-;18840:32;;;;;;18536:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:690:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;289:2;283:9;355:2;343:15;;-1:-1:-1;;339:24:1;;;365:2;335:33;331:42;319:55;;;389:18;;;409:22;;;386:46;383:72;;;435:18;;:::i;:::-;475:10;471:2;464:22;504:6;495:15;;534:6;526;519:22;574:3;565:6;560:3;556:16;553:25;550:45;;;591:1;588;581:12;550:45;641:6;636:3;629:4;621:6;617:17;604:44;696:1;689:4;680:6;672;668:19;664:30;657:41;;;;14:690;;;;;:::o;709:247::-;768:6;821:2;809:9;800:7;796:23;792:32;789:52;;;837:1;834;827:12;789:52;876:9;863:23;895:31;920:5;895:31;:::i;961:323::-;1037:6;1045;1098:2;1086:9;1077:7;1073:23;1069:32;1066:52;;;1114:1;1111;1104:12;1066:52;1153:9;1140:23;1172:31;1197:5;1172:31;:::i;:::-;1222:5;1274:2;1259:18;;;;1246:32;;-1:-1:-1;;;961:323:1:o;1289:388::-;1357:6;1365;1418:2;1406:9;1397:7;1393:23;1389:32;1386:52;;;1434:1;1431;1424:12;1386:52;1473:9;1460:23;1492:31;1517:5;1492:31;:::i;:::-;1542:5;-1:-1:-1;1599:2:1;1584:18;;1571:32;1612:33;1571:32;1612:33;:::i;:::-;1664:7;1654:17;;;1289:388;;;;;:::o;1682:456::-;1759:6;1767;1775;1828:2;1816:9;1807:7;1803:23;1799:32;1796:52;;;1844:1;1841;1834:12;1796:52;1883:9;1870:23;1902:31;1927:5;1902:31;:::i;:::-;1952:5;-1:-1:-1;2009:2:1;1994:18;;1981:32;2022:33;1981:32;2022:33;:::i;:::-;1682:456;;2074:7;;-1:-1:-1;;;2128:2:1;2113:18;;;;2100:32;;1682:456::o;2143:794::-;2238:6;2246;2254;2262;2315:3;2303:9;2294:7;2290:23;2286:33;2283:53;;;2332:1;2329;2322:12;2283:53;2371:9;2358:23;2390:31;2415:5;2390:31;:::i;:::-;2440:5;-1:-1:-1;2497:2:1;2482:18;;2469:32;2510:33;2469:32;2510:33;:::i;:::-;2562:7;-1:-1:-1;2616:2:1;2601:18;;2588:32;;-1:-1:-1;2671:2:1;2656:18;;2643:32;2698:18;2687:30;;2684:50;;;2730:1;2727;2720:12;2684:50;2753:22;;2806:4;2798:13;;2794:27;-1:-1:-1;2784:55:1;;2835:1;2832;2825:12;2784:55;2858:73;2923:7;2918:2;2905:16;2900:2;2896;2892:11;2858:73;:::i;:::-;2848:83;;;2143:794;;;;;;;:::o;2942:416::-;3007:6;3015;3068:2;3056:9;3047:7;3043:23;3039:32;3036:52;;;3084:1;3081;3074:12;3036:52;3123:9;3110:23;3142:31;3167:5;3142:31;:::i;:::-;3192:5;-1:-1:-1;3249:2:1;3234:18;;3221:32;3291:15;;3284:23;3272:36;;3262:64;;3322:1;3319;3312:12;3683:245;3741:6;3794:2;3782:9;3773:7;3769:23;3765:32;3762:52;;;3810:1;3807;3800:12;3762:52;3849:9;3836:23;3868:30;3892:5;3868:30;:::i;3933:249::-;4002:6;4055:2;4043:9;4034:7;4030:23;4026:32;4023:52;;;4071:1;4068;4061:12;4023:52;4103:9;4097:16;4122:30;4146:5;4122:30;:::i;4187:450::-;4256:6;4309:2;4297:9;4288:7;4284:23;4280:32;4277:52;;;4325:1;4322;4315:12;4277:52;4365:9;4352:23;4398:18;4390:6;4387:30;4384:50;;;4430:1;4427;4420:12;4384:50;4453:22;;4506:4;4498:13;;4494:27;-1:-1:-1;4484:55:1;;4535:1;4532;4525:12;4484:55;4558:73;4623:7;4618:2;4605:16;4600:2;4596;4592:11;4558:73;:::i;4642:180::-;4701:6;4754:2;4742:9;4733:7;4729:23;4725:32;4722:52;;;4770:1;4767;4760:12;4722:52;-1:-1:-1;4793:23:1;;4642:180;-1:-1:-1;4642:180:1:o;4827:659::-;4906:6;4914;4922;4975:2;4963:9;4954:7;4950:23;4946:32;4943:52;;;4991:1;4988;4981:12;4943:52;5027:9;5014:23;5004:33;;5088:2;5077:9;5073:18;5060:32;5111:18;5152:2;5144:6;5141:14;5138:34;;;5168:1;5165;5158:12;5138:34;5206:6;5195:9;5191:22;5181:32;;5251:7;5244:4;5240:2;5236:13;5232:27;5222:55;;5273:1;5270;5263:12;5222:55;5313:2;5300:16;5339:2;5331:6;5328:14;5325:34;;;5355:1;5352;5345:12;5325:34;5400:7;5395:2;5386:6;5382:2;5378:15;5374:24;5371:37;5368:57;;;5421:1;5418;5411:12;5368:57;5452:2;5448;5444:11;5434:21;;5474:6;5464:16;;;;;4827:659;;;;;:::o;5491:316::-;5532:3;5570:5;5564:12;5597:6;5592:3;5585:19;5613:63;5669:6;5662:4;5657:3;5653:14;5646:4;5639:5;5635:16;5613:63;:::i;:::-;5721:2;5709:15;-1:-1:-1;;5705:88:1;5696:98;;;;5796:4;5692:109;;5491:316;-1:-1:-1;;5491:316:1:o;5812:185::-;5854:3;5892:5;5886:12;5907:52;5952:6;5947:3;5940:4;5933:5;5929:16;5907:52;:::i;:::-;5975:16;;;;;5812:185;-1:-1:-1;;5812:185:1:o;6002:1289::-;6178:3;6207:1;6240:6;6234:13;6270:3;6292:1;6320:9;6316:2;6312:18;6302:28;;6380:2;6369:9;6365:18;6402;6392:61;;6446:4;6438:6;6434:17;6424:27;;6392:61;6472:2;6520;6512:6;6509:14;6489:18;6486:38;6483:222;;;-1:-1:-1;;;6554:3:1;6547:90;6660:4;6657:1;6650:15;6690:4;6685:3;6678:17;6483:222;6721:18;6748:162;;;;6924:1;6919:320;;;;6714:525;;6748:162;-1:-1:-1;;6785:9:1;6781:82;6776:3;6769:95;6893:6;6888:3;6884:16;6877:23;;6748:162;;6919:320;22472:1;22465:14;;;22509:4;22496:18;;7014:1;7028:165;7042:6;7039:1;7036:13;7028:165;;;7120:14;;7107:11;;;7100:35;7163:16;;;;7057:10;;7028:165;;;7032:3;;7222:6;7217:3;7213:16;7206:23;;6714:525;;;;;;;7255:30;7281:3;7273:6;7255:30;:::i;:::-;7248:37;6002:1289;-1:-1:-1;;;;;6002:1289:1:o;7912:511::-;8106:4;-1:-1:-1;;;;;8216:2:1;8208:6;8204:15;8193:9;8186:34;8268:2;8260:6;8256:15;8251:2;8240:9;8236:18;8229:43;;8308:6;8303:2;8292:9;8288:18;8281:34;8351:3;8346:2;8335:9;8331:18;8324:31;8372:45;8412:3;8401:9;8397:19;8389:6;8372:45;:::i;:::-;8364:53;7912:511;-1:-1:-1;;;;;;7912:511:1:o;9023:219::-;9172:2;9161:9;9154:21;9135:4;9192:44;9232:2;9221:9;9217:18;9209:6;9192:44;:::i;22525:128::-;22565:3;22596:1;22592:6;22589:1;22586:13;22583:39;;;22602:18;;:::i;:::-;-1:-1:-1;22638:9:1;;22525:128::o;22658:120::-;22698:1;22724;22714:35;;22729:18;;:::i;:::-;-1:-1:-1;22763:9:1;;22658:120::o;22783:228::-;22823:7;22949:1;-1:-1:-1;;22877:74:1;22874:1;22871:81;22866:1;22859:9;22852:17;22848:105;22845:131;;;22956:18;;:::i;:::-;-1:-1:-1;22996:9:1;;22783:228::o;23016:125::-;23056:4;23084:1;23081;23078:8;23075:34;;;23089:18;;:::i;:::-;-1:-1:-1;23126:9:1;;23016:125::o;23146:258::-;23218:1;23228:113;23242:6;23239:1;23236:13;23228:113;;;23318:11;;;23312:18;23299:11;;;23292:39;23264:2;23257:10;23228:113;;;23359:6;23356:1;23353:13;23350:48;;;-1:-1:-1;;23394:1:1;23376:16;;23369:27;23146:258::o;23409:437::-;23488:1;23484:12;;;;23531;;;23552:61;;23606:4;23598:6;23594:17;23584:27;;23552:61;23659:2;23651:6;23648:14;23628:18;23625:38;23622:218;;;-1:-1:-1;;;23693:1:1;23686:88;23797:4;23794:1;23787:15;23825:4;23822:1;23815:15;23622:218;;23409:437;;;:::o;23851:195::-;23890:3;-1:-1:-1;;23914:5:1;23911:77;23908:103;;;23991:18;;:::i;:::-;-1:-1:-1;24038:1:1;24027:13;;23851:195::o;24051:112::-;24083:1;24109;24099:35;;24114:18;;:::i;:::-;-1:-1:-1;24148:9:1;;24051:112::o;24168:184::-;-1:-1:-1;;;24217:1:1;24210:88;24317:4;24314:1;24307:15;24341:4;24338:1;24331:15;24357:184;-1:-1:-1;;;24406:1:1;24399:88;24506:4;24503:1;24496:15;24530:4;24527:1;24520:15;24546:184;-1:-1:-1;;;24595:1:1;24588:88;24695:4;24692:1;24685:15;24719:4;24716:1;24709:15;24735:184;-1:-1:-1;;;24784:1:1;24777:88;24884:4;24881:1;24874:15;24908:4;24905:1;24898:15;24924:184;-1:-1:-1;;;24973:1:1;24966:88;25073:4;25070:1;25063:15;25097:4;25094:1;25087:15;25113:154;-1:-1:-1;;;;;25192:5:1;25188:54;25181:5;25178:65;25168:93;;25257:1;25254;25247:12;25272:177;25357:66;25350:5;25346:78;25339:5;25336:89;25326:117;;25439:1;25436;25429:12

Swarm Source

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