ETH Price: $3,427.71 (+4.40%)

Token

Pattern (Patt)
 

Overview

Max Total Supply

51 Patt

Holders

26

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
xForce Vault Whitehat Hacker
Balance
3 Patt
0xf88a427c5bf29acf58497c0088cbf7ca9836b7b2
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:
Pattern

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-20
*/

/**
 *Submitted for verification at Etherscan.io on 2021-10-13
*/

// SPDX-License-Identifier: GPL-3.0

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



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/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 no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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: @openzeppelin/contracts/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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

    /**
     * @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 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 {}
}

// File: contracts/Pattern.sol


pragma solidity ^0.8.0;






contract Pattern is ERC721, Ownable {
    using Strings for uint256;
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdTracker;
    Counters.Counter private _burnedTracker;
    
    string public baseTokenURI;

    uint256 public constant MAX_ELEMENTS = 1200;    
    uint256 public constant MINT_PRICE = 8 * 10**16;
    //Confident that all will be minted
    uint public c_supply=1200;
    
    address
        public constant creatorAddress = 0xbC7b2461bfaA2fB47bD8f632d0c797C3BFD93B93;

    event CreatePattern(uint256 indexed id);

    constructor() public ERC721("Pattern", "Patt") {}

    modifier saleIsOpen {
        require(_totalSupply() <= MAX_ELEMENTS, "Sale end");
        _;
    }

    function totalSupply() public view returns (uint256) {
        return _tokenIdTracker.current();
    }

    function _totalSupply() internal view returns (uint256) {
        return _tokenIdTracker.current();
    }
    
    function _totalBurned() internal view returns (uint256) {
        return _burnedTracker.current();
    }
    
    function totalBurned() public view returns (uint256) {
        return _totalBurned();
    }

    function totalMint() public view returns (uint256) {
        return _totalSupply();
    }
    
    function mint(address _to, uint256 _count) public payable saleIsOpen {
        uint256 total = _totalSupply();
        require(total + _count <= MAX_ELEMENTS, "Max limit");
        require(total <= MAX_ELEMENTS, "Sale end");
        require(msg.value >= price(_count), "Value below price");

        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
    }
    
    function price(uint256 _count) public pure returns (uint256) {
        return MINT_PRICE.mul(_count);
    }

    function _mintAnElement(address _to) private {
        uint256 id = _totalSupply();
        _tokenIdTracker.increment();
        _safeMint(_to, id);
        emit CreatePattern(id);
    }

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

    /**
     * @dev Returns an URI for a given token ID
     */
    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        return string(abi.encodePacked(baseTokenURI, _tokenId.toString()));
    }
    
    /**
     * @dev Burns and pays the mint price to the token owner.
     * @param _tokenId The token to burn.
     */
    function burn(uint256 _tokenId) public {
        require(ownerOf(_tokenId) == msg.sender);

        //Burn token
        _transfer(
            msg.sender,
            0x000000000000000000000000000000000000dEaD,
            _tokenId
        );
        
        // increment burn
        _burnedTracker.increment();

        // pay token owner 
        _widthdraw(msg.sender, address(this).balance/c_supply);
        c_supply-=1;
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }
}

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":"uint256","name":"id","type":"uint256"}],"name":"CreatePattern","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"c_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creatorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526104b0600a553480156200001757600080fd5b5060408051808201825260078152662830ba3a32b93760c91b60208083019182528351808501909452600484526314185d1d60e21b9084015281519192916200006391600091620000f2565b50805162000079906001906020840190620000f2565b50505062000096620000906200009c60201b60201c565b620000a0565b620001d5565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001009062000198565b90600052602060002090601f0160209004810192826200012457600085556200016f565b82601f106200013f57805160ff19168380011785556200016f565b828001600101855582156200016f579182015b828111156200016f57825182559160200191906001019062000152565b506200017d92915062000181565b5090565b5b808211156200017d576000815560010162000182565b600181811c90821680620001ad57607f821691505b60208210811415620001cf57634e487b7160e01b600052602260045260246000fd5b50919050565b611cfa80620001e56000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063c002d23d1161008a578063d89135cd11610064578063d89135cd1461049d578063e927fc5c146104b2578063e985e9c5146104da578063f2fde38b1461052357600080fd5b8063c002d23d1461044c578063c87b56dd14610468578063d547cfb71461048857600080fd5b806395d89b41116100c657806395d89b41146103e1578063a22cb465146103f6578063b88d4fde14610416578063b9edde491461043657600080fd5b806370a082311461038e578063715018a6146103ae5780638da5cb5b146103c357600080fd5b80633502a7161161015957806342966c681161013357806342966c681461031957806355f804b31461033957806359a7715a146103595780636352211e1461036e57600080fd5b80633502a716146102d057806340c10f19146102e657806342842e0e146102f957600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd1461029057806326a49e37146102b057600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046118ab565b610543565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610595565b6040516101e89190611a73565b34801561021f57600080fd5b5061023361022e36600461192e565b610627565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611881565b6106c1565b005b34801561027957600080fd5b506102826107d7565b6040519081526020016101e8565b34801561029c57600080fd5b5061026b6102ab36600461178d565b6107e7565b3480156102bc57600080fd5b506102826102cb36600461192e565b610818565b3480156102dc57600080fd5b506102826104b081565b61026b6102f4366004611881565b61082c565b34801561030557600080fd5b5061026b61031436600461178d565b610978565b34801561032557600080fd5b5061026b61033436600461192e565b610993565b34801561034557600080fd5b5061026b6103543660046118e5565b6109fd565b34801561036557600080fd5b50610282610a3e565b34801561037a57600080fd5b5061023361038936600461192e565b610a48565b34801561039a57600080fd5b506102826103a936600461173f565b610abf565b3480156103ba57600080fd5b5061026b610b46565b3480156103cf57600080fd5b506006546001600160a01b0316610233565b3480156103ed57600080fd5b50610206610b7c565b34801561040257600080fd5b5061026b610411366004611845565b610b8b565b34801561042257600080fd5b5061026b6104313660046117c9565b610c50565b34801561044257600080fd5b50610282600a5481565b34801561045857600080fd5b5061028267011c37937e08000081565b34801561047457600080fd5b5061020661048336600461192e565b610c82565b34801561049457600080fd5b50610206610cb6565b3480156104a957600080fd5b50610282610d44565b3480156104be57600080fd5b5061023373bc7b2461bfaa2fb47bd8f632d0c797c3bfd93b9381565b3480156104e657600080fd5b506101dc6104f536600461175a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561052f57600080fd5b5061026b61053e36600461173f565b610d4e565b60006001600160e01b031982166380ac58cd60e01b148061057457506001600160e01b03198216635b5e139f60e01b145b8061058f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105a490611bec565b80601f01602080910402602001604051908101604052809291908181526020018280546105d090611bec565b801561061d5780601f106105f25761010080835404028352916020019161061d565b820191906000526020600020905b81548152906001019060200180831161060057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106a55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106cc82610a48565b9050806001600160a01b0316836001600160a01b0316141561073a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161069c565b336001600160a01b0382161480610756575061075681336104f5565b6107c85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161069c565b6107d28383610de9565b505050565b60006107e260075490565b905090565b6107f13382610e57565b61080d5760405162461bcd60e51b815260040161069c90611b0d565b6107d2838383610f4e565b600061058f67011c37937e080000836110ee565b6104b06108376107d7565b11156108705760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161069c565b600061087a6107d7565b90506104b06108898383611b5e565b11156108c35760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161069c565b6104b08111156109005760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161069c565b61090982610818565b34101561094c5760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b604482015260640161069c565b60005b828110156109725761096084611101565b8061096a81611c27565b91505061094f565b50505050565b6107d283838360405180602001604052806000815250610c50565b3361099d82610a48565b6001600160a01b0316146109b057600080fd5b6109bd3361dead83610f4e565b6109cb600880546001019055565b6109e233600a54476109dd9190611b76565b611154565b6001600a60008282546109f59190611ba9565b909155505050565b6006546001600160a01b03163314610a275760405162461bcd60e51b815260040161069c90611ad8565b8051610a3a906009906020840190611614565b5050565b60006107e26107d7565b6000818152600260205260408120546001600160a01b03168061058f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161069c565b60006001600160a01b038216610b2a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161069c565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610b705760405162461bcd60e51b815260040161069c90611ad8565b610b7a60006111ea565b565b6060600180546105a490611bec565b6001600160a01b038216331415610be45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161069c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c5a3383610e57565b610c765760405162461bcd60e51b815260040161069c90611b0d565b6109728484848461123c565b60606009610c8f8361126f565b604051602001610ca092919061198f565b6040516020818303038152906040529050919050565b60098054610cc390611bec565b80601f0160208091040260200160405190810160405280929190818152602001828054610cef90611bec565b8015610d3c5780601f10610d1157610100808354040283529160200191610d3c565b820191906000526020600020905b815481529060010190602001808311610d1f57829003601f168201915b505050505081565b60006107e261136d565b6006546001600160a01b03163314610d785760405162461bcd60e51b815260040161069c90611ad8565b6001600160a01b038116610ddd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069c565b610de6816111ea565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e1e82610a48565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610ed05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161069c565b6000610edb83610a48565b9050806001600160a01b0316846001600160a01b03161480610f165750836001600160a01b0316610f0b84610627565b6001600160a01b0316145b80610f4657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610f6182610a48565b6001600160a01b031614610fc95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161069c565b6001600160a01b03821661102b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161069c565b611036600082610de9565b6001600160a01b038316600090815260036020526040812080546001929061105f908490611ba9565b90915550506001600160a01b038216600090815260036020526040812080546001929061108d908490611b5e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006110fa8284611b8a565b9392505050565b600061110b6107d7565b905061111b600780546001019055565b6111258282611378565b60405181907f741f00256c1c5d4c257afa6c72b8b216244cd6ee71c512129d480d1691bfeb0390600090a25050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146111a1576040519150601f19603f3d011682016040523d82523d6000602084013e6111a6565b606091505b50509050806107d25760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161069c565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611247848484610f4e565b61125384848484611392565b6109725760405162461bcd60e51b815260040161069c90611a86565b6060816112935750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112bd57806112a781611c27565b91506112b69050600a83611b76565b9150611297565b60008167ffffffffffffffff8111156112d8576112d8611c98565b6040519080825280601f01601f191660200182016040528015611302576020820181803683370190505b5090505b8415610f4657611317600183611ba9565b9150611324600a86611c42565b61132f906030611b5e565b60f81b81838151811061134457611344611c82565b60200101906001600160f81b031916908160001a905350611366600a86611b76565b9450611306565b60006107e260085490565b610a3a82826040518060200160405280600081525061149f565b60006001600160a01b0384163b1561149457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113d6903390899088908890600401611a36565b602060405180830381600087803b1580156113f057600080fd5b505af1925050508015611420575060408051601f3d908101601f1916820190925261141d918101906118c8565b60015b61147a573d80801561144e576040519150601f19603f3d011682016040523d82523d6000602084013e611453565b606091505b5080516114725760405162461bcd60e51b815260040161069c90611a86565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f46565b506001949350505050565b6114a983836114d2565b6114b66000848484611392565b6107d25760405162461bcd60e51b815260040161069c90611a86565b6001600160a01b0382166115285760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161069c565b6000818152600260205260409020546001600160a01b03161561158d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161069c565b6001600160a01b03821660009081526003602052604081208054600192906115b6908490611b5e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461162090611bec565b90600052602060002090601f0160209004810192826116425760008555611688565b82601f1061165b57805160ff1916838001178555611688565b82800160010185558215611688579182015b8281111561168857825182559160200191906001019061166d565b50611694929150611698565b5090565b5b808211156116945760008155600101611699565b600067ffffffffffffffff808411156116c8576116c8611c98565b604051601f8501601f19908116603f011681019082821181831017156116f0576116f0611c98565b8160405280935085815286868601111561170957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461173a57600080fd5b919050565b60006020828403121561175157600080fd5b6110fa82611723565b6000806040838503121561176d57600080fd5b61177683611723565b915061178460208401611723565b90509250929050565b6000806000606084860312156117a257600080fd5b6117ab84611723565b92506117b960208501611723565b9150604084013590509250925092565b600080600080608085870312156117df57600080fd5b6117e885611723565b93506117f660208601611723565b925060408501359150606085013567ffffffffffffffff81111561181957600080fd5b8501601f8101871361182a57600080fd5b611839878235602084016116ad565b91505092959194509250565b6000806040838503121561185857600080fd5b61186183611723565b91506020830135801515811461187657600080fd5b809150509250929050565b6000806040838503121561189457600080fd5b61189d83611723565b946020939093013593505050565b6000602082840312156118bd57600080fd5b81356110fa81611cae565b6000602082840312156118da57600080fd5b81516110fa81611cae565b6000602082840312156118f757600080fd5b813567ffffffffffffffff81111561190e57600080fd5b8201601f8101841361191f57600080fd5b610f46848235602084016116ad565b60006020828403121561194057600080fd5b5035919050565b6000815180845261195f816020860160208601611bc0565b601f01601f19169290920160200192915050565b60008151611985818560208601611bc0565b9290920192915050565b600080845481600182811c9150808316806119ab57607f831692505b60208084108214156119cb57634e487b7160e01b86526022600452602486fd5b8180156119df57600181146119f057611a1d565b60ff19861689528489019650611a1d565b60008b81526020902060005b86811015611a155781548b8201529085019083016119fc565b505084890196505b505050505050611a2d8185611973565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a6990830184611947565b9695505050505050565b6020815260006110fa6020830184611947565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611b7157611b71611c56565b500190565b600082611b8557611b85611c6c565b500490565b6000816000190483118215151615611ba457611ba4611c56565b500290565b600082821015611bbb57611bbb611c56565b500390565b60005b83811015611bdb578181015183820152602001611bc3565b838111156109725750506000910152565b600181811c90821680611c0057607f821691505b60208210811415611c2157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c3b57611c3b611c56565b5060010190565b600082611c5157611c51611c6c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610de657600080fdfea2646970667358221220a8d937e13f18f3e9fb12e8df6c34438d480eea8042ad03789188d3c4336a485264736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063c002d23d1161008a578063d89135cd11610064578063d89135cd1461049d578063e927fc5c146104b2578063e985e9c5146104da578063f2fde38b1461052357600080fd5b8063c002d23d1461044c578063c87b56dd14610468578063d547cfb71461048857600080fd5b806395d89b41116100c657806395d89b41146103e1578063a22cb465146103f6578063b88d4fde14610416578063b9edde491461043657600080fd5b806370a082311461038e578063715018a6146103ae5780638da5cb5b146103c357600080fd5b80633502a7161161015957806342966c681161013357806342966c681461031957806355f804b31461033957806359a7715a146103595780636352211e1461036e57600080fd5b80633502a716146102d057806340c10f19146102e657806342842e0e146102f957600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd1461029057806326a49e37146102b057600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046118ab565b610543565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610595565b6040516101e89190611a73565b34801561021f57600080fd5b5061023361022e36600461192e565b610627565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611881565b6106c1565b005b34801561027957600080fd5b506102826107d7565b6040519081526020016101e8565b34801561029c57600080fd5b5061026b6102ab36600461178d565b6107e7565b3480156102bc57600080fd5b506102826102cb36600461192e565b610818565b3480156102dc57600080fd5b506102826104b081565b61026b6102f4366004611881565b61082c565b34801561030557600080fd5b5061026b61031436600461178d565b610978565b34801561032557600080fd5b5061026b61033436600461192e565b610993565b34801561034557600080fd5b5061026b6103543660046118e5565b6109fd565b34801561036557600080fd5b50610282610a3e565b34801561037a57600080fd5b5061023361038936600461192e565b610a48565b34801561039a57600080fd5b506102826103a936600461173f565b610abf565b3480156103ba57600080fd5b5061026b610b46565b3480156103cf57600080fd5b506006546001600160a01b0316610233565b3480156103ed57600080fd5b50610206610b7c565b34801561040257600080fd5b5061026b610411366004611845565b610b8b565b34801561042257600080fd5b5061026b6104313660046117c9565b610c50565b34801561044257600080fd5b50610282600a5481565b34801561045857600080fd5b5061028267011c37937e08000081565b34801561047457600080fd5b5061020661048336600461192e565b610c82565b34801561049457600080fd5b50610206610cb6565b3480156104a957600080fd5b50610282610d44565b3480156104be57600080fd5b5061023373bc7b2461bfaa2fb47bd8f632d0c797c3bfd93b9381565b3480156104e657600080fd5b506101dc6104f536600461175a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561052f57600080fd5b5061026b61053e36600461173f565b610d4e565b60006001600160e01b031982166380ac58cd60e01b148061057457506001600160e01b03198216635b5e139f60e01b145b8061058f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105a490611bec565b80601f01602080910402602001604051908101604052809291908181526020018280546105d090611bec565b801561061d5780601f106105f25761010080835404028352916020019161061d565b820191906000526020600020905b81548152906001019060200180831161060057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106a55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106cc82610a48565b9050806001600160a01b0316836001600160a01b0316141561073a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161069c565b336001600160a01b0382161480610756575061075681336104f5565b6107c85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161069c565b6107d28383610de9565b505050565b60006107e260075490565b905090565b6107f13382610e57565b61080d5760405162461bcd60e51b815260040161069c90611b0d565b6107d2838383610f4e565b600061058f67011c37937e080000836110ee565b6104b06108376107d7565b11156108705760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161069c565b600061087a6107d7565b90506104b06108898383611b5e565b11156108c35760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161069c565b6104b08111156109005760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161069c565b61090982610818565b34101561094c5760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b604482015260640161069c565b60005b828110156109725761096084611101565b8061096a81611c27565b91505061094f565b50505050565b6107d283838360405180602001604052806000815250610c50565b3361099d82610a48565b6001600160a01b0316146109b057600080fd5b6109bd3361dead83610f4e565b6109cb600880546001019055565b6109e233600a54476109dd9190611b76565b611154565b6001600a60008282546109f59190611ba9565b909155505050565b6006546001600160a01b03163314610a275760405162461bcd60e51b815260040161069c90611ad8565b8051610a3a906009906020840190611614565b5050565b60006107e26107d7565b6000818152600260205260408120546001600160a01b03168061058f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161069c565b60006001600160a01b038216610b2a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161069c565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610b705760405162461bcd60e51b815260040161069c90611ad8565b610b7a60006111ea565b565b6060600180546105a490611bec565b6001600160a01b038216331415610be45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161069c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c5a3383610e57565b610c765760405162461bcd60e51b815260040161069c90611b0d565b6109728484848461123c565b60606009610c8f8361126f565b604051602001610ca092919061198f565b6040516020818303038152906040529050919050565b60098054610cc390611bec565b80601f0160208091040260200160405190810160405280929190818152602001828054610cef90611bec565b8015610d3c5780601f10610d1157610100808354040283529160200191610d3c565b820191906000526020600020905b815481529060010190602001808311610d1f57829003601f168201915b505050505081565b60006107e261136d565b6006546001600160a01b03163314610d785760405162461bcd60e51b815260040161069c90611ad8565b6001600160a01b038116610ddd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069c565b610de6816111ea565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e1e82610a48565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610ed05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161069c565b6000610edb83610a48565b9050806001600160a01b0316846001600160a01b03161480610f165750836001600160a01b0316610f0b84610627565b6001600160a01b0316145b80610f4657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610f6182610a48565b6001600160a01b031614610fc95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161069c565b6001600160a01b03821661102b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161069c565b611036600082610de9565b6001600160a01b038316600090815260036020526040812080546001929061105f908490611ba9565b90915550506001600160a01b038216600090815260036020526040812080546001929061108d908490611b5e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006110fa8284611b8a565b9392505050565b600061110b6107d7565b905061111b600780546001019055565b6111258282611378565b60405181907f741f00256c1c5d4c257afa6c72b8b216244cd6ee71c512129d480d1691bfeb0390600090a25050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146111a1576040519150601f19603f3d011682016040523d82523d6000602084013e6111a6565b606091505b50509050806107d25760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161069c565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611247848484610f4e565b61125384848484611392565b6109725760405162461bcd60e51b815260040161069c90611a86565b6060816112935750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112bd57806112a781611c27565b91506112b69050600a83611b76565b9150611297565b60008167ffffffffffffffff8111156112d8576112d8611c98565b6040519080825280601f01601f191660200182016040528015611302576020820181803683370190505b5090505b8415610f4657611317600183611ba9565b9150611324600a86611c42565b61132f906030611b5e565b60f81b81838151811061134457611344611c82565b60200101906001600160f81b031916908160001a905350611366600a86611b76565b9450611306565b60006107e260085490565b610a3a82826040518060200160405280600081525061149f565b60006001600160a01b0384163b1561149457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113d6903390899088908890600401611a36565b602060405180830381600087803b1580156113f057600080fd5b505af1925050508015611420575060408051601f3d908101601f1916820190925261141d918101906118c8565b60015b61147a573d80801561144e576040519150601f19603f3d011682016040523d82523d6000602084013e611453565b606091505b5080516114725760405162461bcd60e51b815260040161069c90611a86565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f46565b506001949350505050565b6114a983836114d2565b6114b66000848484611392565b6107d25760405162461bcd60e51b815260040161069c90611a86565b6001600160a01b0382166115285760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161069c565b6000818152600260205260409020546001600160a01b03161561158d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161069c565b6001600160a01b03821660009081526003602052604081208054600192906115b6908490611b5e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461162090611bec565b90600052602060002090601f0160209004810192826116425760008555611688565b82601f1061165b57805160ff1916838001178555611688565b82800160010185558215611688579182015b8281111561168857825182559160200191906001019061166d565b50611694929150611698565b5090565b5b808211156116945760008155600101611699565b600067ffffffffffffffff808411156116c8576116c8611c98565b604051601f8501601f19908116603f011681019082821181831017156116f0576116f0611c98565b8160405280935085815286868601111561170957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461173a57600080fd5b919050565b60006020828403121561175157600080fd5b6110fa82611723565b6000806040838503121561176d57600080fd5b61177683611723565b915061178460208401611723565b90509250929050565b6000806000606084860312156117a257600080fd5b6117ab84611723565b92506117b960208501611723565b9150604084013590509250925092565b600080600080608085870312156117df57600080fd5b6117e885611723565b93506117f660208601611723565b925060408501359150606085013567ffffffffffffffff81111561181957600080fd5b8501601f8101871361182a57600080fd5b611839878235602084016116ad565b91505092959194509250565b6000806040838503121561185857600080fd5b61186183611723565b91506020830135801515811461187657600080fd5b809150509250929050565b6000806040838503121561189457600080fd5b61189d83611723565b946020939093013593505050565b6000602082840312156118bd57600080fd5b81356110fa81611cae565b6000602082840312156118da57600080fd5b81516110fa81611cae565b6000602082840312156118f757600080fd5b813567ffffffffffffffff81111561190e57600080fd5b8201601f8101841361191f57600080fd5b610f46848235602084016116ad565b60006020828403121561194057600080fd5b5035919050565b6000815180845261195f816020860160208601611bc0565b601f01601f19169290920160200192915050565b60008151611985818560208601611bc0565b9290920192915050565b600080845481600182811c9150808316806119ab57607f831692505b60208084108214156119cb57634e487b7160e01b86526022600452602486fd5b8180156119df57600181146119f057611a1d565b60ff19861689528489019650611a1d565b60008b81526020902060005b86811015611a155781548b8201529085019083016119fc565b505084890196505b505050505050611a2d8185611973565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a6990830184611947565b9695505050505050565b6020815260006110fa6020830184611947565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611b7157611b71611c56565b500190565b600082611b8557611b85611c6c565b500490565b6000816000190483118215151615611ba457611ba4611c56565b500290565b600082821015611bbb57611bbb611c56565b500390565b60005b83811015611bdb578181015183820152602001611bc3565b838111156109725750506000910152565b600181811c90821680611c0057607f821691505b60208210811415611c2157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c3b57611c3b611c56565b5060010190565b600082611c5157611c51611c6c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610de657600080fdfea2646970667358221220a8d937e13f18f3e9fb12e8df6c34438d480eea8042ad03789188d3c4336a485264736f6c63430008070033

Deployed Bytecode Sourcemap

43596:3186:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31400:305;;;;;;;;;;-1:-1:-1;31400:305:0;;;;;:::i;:::-;;:::i;:::-;;;6750:14:1;;6743:22;6725:41;;6713:2;6698:18;31400:305:0;;;;;;;;32345:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33904:221::-;;;;;;;;;;-1:-1:-1;33904:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6048:32:1;;;6030:51;;6018:2;6003:18;33904:221:0;5884:203:1;33427:411:0;;;;;;;;;;-1:-1:-1;33427:411:0;;;;;:::i;:::-;;:::i;:::-;;44385:104;;;;;;;;;;;;;:::i;:::-;;;14477:25:1;;;14465:2;14450:18;44385:104:0;14331:177:1;34794:339:0;;;;;;;;;;-1:-1:-1;34794:339:0;;;;;:::i;:::-;;:::i;45346:109::-;;;;;;;;;;-1:-1:-1;45346:109:0;;;;;:::i;:::-;;:::i;43882:43::-;;;;;;;;;;;;43921:4;43882:43;;44938:396;;;;;;:::i;:::-;;:::i;35204:185::-;;;;;;;;;;-1:-1:-1;35204:185:0;;;;;:::i;:::-;;:::i;46140:450::-;;;;;;;;;;-1:-1:-1;46140:450:0;;;;;:::i;:::-;;:::i;45662:101::-;;;;;;;;;;-1:-1:-1;45662:101:0;;;;;:::i;:::-;;:::i;44835:91::-;;;;;;;;;;;;;:::i;32039:239::-;;;;;;;;;;-1:-1:-1;32039:239:0;;;;;:::i;:::-;;:::i;31769:208::-;;;;;;;;;;-1:-1:-1;31769:208:0;;;;;:::i;:::-;;:::i;13035:94::-;;;;;;;;;;;;;:::i;12384:87::-;;;;;;;;;;-1:-1:-1;12457:6:0;;-1:-1:-1;;;;;12457:6:0;12384:87;;32514:104;;;;;;;;;;;;;:::i;34197:295::-;;;;;;;;;;-1:-1:-1;34197:295:0;;;;;:::i;:::-;;:::i;35460:328::-;;;;;;;;;;-1:-1:-1;35460:328:0;;;;;:::i;:::-;;:::i;44031:25::-;;;;;;;;;;;;;;;;43936:47;;;;;;;;;;;;43973:10;43936:47;;45838:166;;;;;;;;;;-1:-1:-1;45838:166:0;;;;;:::i;:::-;;:::i;43847:26::-;;;;;;;;;;;;;:::i;44734:93::-;;;;;;;;;;;;;:::i;44069:92::-;;;;;;;;;;;;44119:42;44069:92;;34563:164;;;;;;;;;;-1:-1:-1;34563:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34684:25:0;;;34660:4;34684:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34563:164;13284:192;;;;;;;;;;-1:-1:-1;13284:192:0;;;;;:::i;:::-;;:::i;31400:305::-;31502:4;-1:-1:-1;;;;;;31539:40:0;;-1:-1:-1;;;31539:40:0;;:105;;-1:-1:-1;;;;;;;31596:48:0;;-1:-1:-1;;;31596:48:0;31539:105;:158;;;-1:-1:-1;;;;;;;;;;24479:40:0;;;31661:36;31519:178;31400:305;-1:-1:-1;;31400:305:0:o;32345:100::-;32399:13;32432:5;32425:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32345:100;:::o;33904:221::-;33980:7;37387:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37387:16:0;34000:73;;;;-1:-1:-1;;;34000:73:0;;11838:2:1;34000:73:0;;;11820:21:1;11877:2;11857:18;;;11850:30;11916:34;11896:18;;;11889:62;-1:-1:-1;;;11967:18:1;;;11960:42;12019:19;;34000:73:0;;;;;;;;;-1:-1:-1;34093:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34093:24:0;;33904:221::o;33427:411::-;33508:13;33524:23;33539:7;33524:14;:23::i;:::-;33508:39;;33572:5;-1:-1:-1;;;;;33566:11:0;:2;-1:-1:-1;;;;;33566:11:0;;;33558:57;;;;-1:-1:-1;;;33558:57:0;;13368:2:1;33558:57:0;;;13350:21:1;13407:2;13387:18;;;13380:30;13446:34;13426:18;;;13419:62;-1:-1:-1;;;13497:18:1;;;13490:31;13538:19;;33558:57:0;13166:397:1;33558:57:0;11252:10;-1:-1:-1;;;;;33650:21:0;;;;:62;;-1:-1:-1;33675:37:0;33692:5;11252:10;34563:164;:::i;33675:37::-;33628:168;;;;-1:-1:-1;;;33628:168:0;;9895:2:1;33628:168:0;;;9877:21:1;9934:2;9914:18;;;9907:30;9973:34;9953:18;;;9946:62;10044:26;10024:18;;;10017:54;10088:19;;33628:168:0;9693:420:1;33628:168:0;33809:21;33818:2;33822:7;33809:8;:21::i;:::-;33497:341;33427:411;;:::o;44385:104::-;44429:7;44456:25;:15;1019:14;;927:114;44456:25;44449:32;;44385:104;:::o;34794:339::-;34989:41;11252:10;35022:7;34989:18;:41::i;:::-;34981:103;;;;-1:-1:-1;;;34981:103:0;;;;;;;:::i;:::-;35097:28;35107:4;35113:2;35117:7;35097:9;:28::i;45346:109::-;45398:7;45425:22;43973:10;45440:6;45425:14;:22::i;44938:396::-;43921:4;44314:14;:12;:14::i;:::-;:30;;44306:51;;;;-1:-1:-1;;;44306:51:0;;11502:2:1;44306:51:0;;;11484:21:1;11541:1;11521:18;;;11514:29;-1:-1:-1;;;11559:18:1;;;11552:38;11607:18;;44306:51:0;11300:331:1;44306:51:0;45018:13:::1;45034:14;:12;:14::i;:::-;45018:30:::0;-1:-1:-1;43921:4:0::1;45067:14;45075:6:::0;45018:30;45067:14:::1;:::i;:::-;:30;;45059:52;;;::::0;-1:-1:-1;;;45059:52:0;;9145:2:1;45059:52:0::1;::::0;::::1;9127:21:1::0;9184:1;9164:18;;;9157:29;-1:-1:-1;;;9202:18:1;;;9195:39;9251:18;;45059:52:0::1;8943:332:1::0;45059:52:0::1;43921:4;45130:5;:21;;45122:42;;;::::0;-1:-1:-1;;;45122:42:0;;11502:2:1;45122:42:0::1;::::0;::::1;11484:21:1::0;11541:1;11521:18;;;11514:29;-1:-1:-1;;;11559:18:1;;;11552:38;11607:18;;45122:42:0::1;11300:331:1::0;45122:42:0::1;45196:13;45202:6;45196:5;:13::i;:::-;45183:9;:26;;45175:56;;;::::0;-1:-1:-1;;;45175:56:0;;13022:2:1;45175:56:0::1;::::0;::::1;13004:21:1::0;13061:2;13041:18;;;13034:30;-1:-1:-1;;;13080:18:1;;;13073:47;13137:18;;45175:56:0::1;12820:341:1::0;45175:56:0::1;45249:9;45244:83;45268:6;45264:1;:10;45244:83;;;45296:19;45311:3;45296:14;:19::i;:::-;45276:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45244:83;;;;45007:327;44938:396:::0;;:::o;35204:185::-;35342:39;35359:4;35365:2;35369:7;35342:39;;;;;;;;;;;;:16;:39::i;46140:450::-;46219:10;46198:17;46206:8;46198:7;:17::i;:::-;-1:-1:-1;;;;;46198:31:0;;46190:40;;;;;;46265:125;46289:10;46314:42;46371:8;46265:9;:125::i;:::-;46438:26;:14;1138:19;;1156:1;1138:19;;;1049:127;46438:26;46506:54;46517:10;46551:8;;46529:21;:30;;;;:::i;:::-;46506:10;:54::i;:::-;46581:1;46571:8;;:11;;;;;;;:::i;:::-;;;;-1:-1:-1;;;46140:450:0:o;45662:101::-;12457:6;;-1:-1:-1;;;;;12457:6:0;11252:10;12604:23;12596:68;;;;-1:-1:-1;;;12596:68:0;;;;;;;:::i;:::-;45733:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45662:101:::0;:::o;44835:91::-;44877:7;44904:14;:12;:14::i;32039:239::-;32111:7;32147:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32147:16:0;32182:19;32174:73;;;;-1:-1:-1;;;32174:73:0;;10731:2:1;32174:73:0;;;10713:21:1;10770:2;10750:18;;;10743:30;10809:34;10789:18;;;10782:62;-1:-1:-1;;;10860:18:1;;;10853:39;10909:19;;32174:73:0;10529:405:1;31769:208:0;31841:7;-1:-1:-1;;;;;31869:19:0;;31861:74;;;;-1:-1:-1;;;31861:74:0;;10320:2:1;31861:74:0;;;10302:21:1;10359:2;10339:18;;;10332:30;10398:34;10378:18;;;10371:62;-1:-1:-1;;;10449:18:1;;;10442:40;10499:19;;31861:74:0;10118:406:1;31861:74:0;-1:-1:-1;;;;;;31953:16:0;;;;;:9;:16;;;;;;;31769:208::o;13035:94::-;12457:6;;-1:-1:-1;;;;;12457:6:0;11252:10;12604:23;12596:68;;;;-1:-1:-1;;;12596:68:0;;;;;;;:::i;:::-;13100:21:::1;13118:1;13100:9;:21::i;:::-;13035:94::o:0;32514:104::-;32570:13;32603:7;32596:14;;;;;:::i;34197:295::-;-1:-1:-1;;;;;34300:24:0;;11252:10;34300:24;;34292:62;;;;-1:-1:-1;;;34292:62:0;;8791:2:1;34292:62:0;;;8773:21:1;8830:2;8810:18;;;8803:30;8869:27;8849:18;;;8842:55;8914:18;;34292:62:0;8589:349:1;34292:62:0;11252:10;34367:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34367:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34367:53:0;;;;;;;;;;34436:48;;6725:41:1;;;34367:42:0;;11252:10;34436:48;;6698:18:1;34436:48:0;;;;;;;34197:295;;:::o;35460:328::-;35635:41;11252:10;35668:7;35635:18;:41::i;:::-;35627:103;;;;-1:-1:-1;;;35627:103:0;;;;;;;:::i;:::-;35741:39;35755:4;35761:2;35765:7;35774:5;35741:13;:39::i;45838:166::-;45904:13;45961:12;45975:19;:8;:17;:19::i;:::-;45944:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45930:66;;45838:166;;;:::o;43847:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44734:93::-;44778:7;44805:14;:12;:14::i;13284:192::-;12457:6;;-1:-1:-1;;;;;12457:6:0;11252:10;12604:23;12596:68;;;;-1:-1:-1;;;12596:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13373:22:0;::::1;13365:73;;;::::0;-1:-1:-1;;;13365:73:0;;7622:2:1;13365:73:0::1;::::0;::::1;7604:21:1::0;7661:2;7641:18;;;7634:30;7700:34;7680:18;;;7673:62;-1:-1:-1;;;7751:18:1;;;7744:36;7797:19;;13365:73:0::1;7420:402:1::0;13365:73:0::1;13449:19;13459:8;13449:9;:19::i;:::-;13284:192:::0;:::o;41280:174::-;41355:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41355:29:0;-1:-1:-1;;;;;41355:29:0;;;;;;;;:24;;41409:23;41355:24;41409:14;:23::i;:::-;-1:-1:-1;;;;;41400:46:0;;;;;;;;;;;41280:174;;:::o;37592:348::-;37685:4;37387:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37387:16:0;37702:73;;;;-1:-1:-1;;;37702:73:0;;9482:2:1;37702:73:0;;;9464:21:1;9521:2;9501:18;;;9494:30;9560:34;9540:18;;;9533:62;-1:-1:-1;;;9611:18:1;;;9604:42;9663:19;;37702:73:0;9280:408:1;37702:73:0;37786:13;37802:23;37817:7;37802:14;:23::i;:::-;37786:39;;37855:5;-1:-1:-1;;;;;37844:16:0;:7;-1:-1:-1;;;;;37844:16:0;;:51;;;;37888:7;-1:-1:-1;;;;;37864:31:0;:20;37876:7;37864:11;:20::i;:::-;-1:-1:-1;;;;;37864:31:0;;37844:51;:87;;;-1:-1:-1;;;;;;34684:25:0;;;34660:4;34684:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37899:32;37836:96;37592:348;-1:-1:-1;;;;37592:348:0:o;40584:578::-;40743:4;-1:-1:-1;;;;;40716:31:0;:23;40731:7;40716:14;:23::i;:::-;-1:-1:-1;;;;;40716:31:0;;40708:85;;;;-1:-1:-1;;;40708:85:0;;12612:2:1;40708:85:0;;;12594:21:1;12651:2;12631:18;;;12624:30;12690:34;12670:18;;;12663:62;-1:-1:-1;;;12741:18:1;;;12734:39;12790:19;;40708:85:0;12410:405:1;40708:85:0;-1:-1:-1;;;;;40812:16:0;;40804:65;;;;-1:-1:-1;;;40804:65:0;;8386:2:1;40804:65:0;;;8368:21:1;8425:2;8405:18;;;8398:30;8464:34;8444:18;;;8437:62;-1:-1:-1;;;8515:18:1;;;8508:34;8559:19;;40804:65:0;8184:400:1;40804:65:0;40986:29;41003:1;41007:7;40986:8;:29::i;:::-;-1:-1:-1;;;;;41028:15:0;;;;;;:9;:15;;;;;:20;;41047:1;;41028:15;:20;;41047:1;;41028:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41059:13:0;;;;;;:9;:13;;;;;:18;;41076:1;;41059:13;:18;;41076:1;;41059:18;:::i;:::-;;;;-1:-1:-1;;41088:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41088:21:0;-1:-1:-1;;;;;41088:21:0;;;;;;;;;41127:27;;41088:16;;41127:27;;;;;;;40584:578;;;:::o;5050:98::-;5108:7;5135:5;5139:1;5135;:5;:::i;:::-;5128:12;5050:98;-1:-1:-1;;;5050:98:0:o;45463:191::-;45519:10;45532:14;:12;:14::i;:::-;45519:27;;45557;:15;1138:19;;1156:1;1138:19;;;1049:127;45557:27;45595:18;45605:3;45610:2;45595:9;:18::i;:::-;45629:17;;45643:2;;45629:17;;;;;45508:146;45463:191;:::o;46598:181::-;46673:12;46691:8;-1:-1:-1;;;;;46691:13:0;46712:7;46691:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46672:52;;;46743:7;46735:36;;;;-1:-1:-1;;;46735:36:0;;13770:2:1;46735:36:0;;;13752:21:1;13809:2;13789:18;;;13782:30;-1:-1:-1;;;13828:18:1;;;13821:46;13884:18;;46735:36:0;13568:340:1;13484:173:0;13559:6;;;-1:-1:-1;;;;;13576:17:0;;;-1:-1:-1;;;;;;13576:17:0;;;;;;;13609:40;;13559:6;;;13576:17;13559:6;;13609:40;;13540:16;;13609:40;13529:128;13484:173;:::o;36670:315::-;36827:28;36837:4;36843:2;36847:7;36827:9;:28::i;:::-;36874:48;36897:4;36903:2;36907:7;36916:5;36874:22;:48::i;:::-;36866:111;;;;-1:-1:-1;;;36866:111:0;;;;;;;:::i;8788:723::-;8844:13;9065:10;9061:53;;-1:-1:-1;;9092:10:0;;;;;;;;;;;;-1:-1:-1;;;9092:10:0;;;;;8788:723::o;9061:53::-;9139:5;9124:12;9180:78;9187:9;;9180:78;;9213:8;;;;:::i;:::-;;-1:-1:-1;9236:10:0;;-1:-1:-1;9244:2:0;9236:10;;:::i;:::-;;;9180:78;;;9268:19;9300:6;9290:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9290:17:0;;9268:39;;9318:154;9325:10;;9318:154;;9352:11;9362:1;9352:11;;:::i;:::-;;-1:-1:-1;9421:10:0;9429:2;9421:5;:10;:::i;:::-;9408:24;;:2;:24;:::i;:::-;9395:39;;9378:6;9385;9378:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9378:56:0;;;;;;;;-1:-1:-1;9449:11:0;9458:2;9449:11;;:::i;:::-;;;9318:154;;44616:106;44663:7;44690:24;:14;1019;;927:114;38282:110;38358:26;38368:2;38372:7;38358:26;;;;;;;;;;;;:9;:26::i;42019:799::-;42174:4;-1:-1:-1;;;;;42195:13:0;;14753:20;14801:8;42191:620;;42231:72;;-1:-1:-1;;;42231:72:0;;-1:-1:-1;;;;;42231:36:0;;;;;:72;;11252:10;;42282:4;;42288:7;;42297:5;;42231:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42231:72:0;;;;;;;;-1:-1:-1;;42231:72:0;;;;;;;;;;;;:::i;:::-;;;42227:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42473:13:0;;42469:272;;42516:60;;-1:-1:-1;;;42516:60:0;;;;;;;:::i;42469:272::-;42691:6;42685:13;42676:6;42672:2;42668:15;42661:38;42227:529;-1:-1:-1;;;;;;42354:51:0;-1:-1:-1;;;42354:51:0;;-1:-1:-1;42347:58:0;;42191:620;-1:-1:-1;42795:4:0;42019:799;;;;;;:::o;38619:321::-;38749:18;38755:2;38759:7;38749:5;:18::i;:::-;38800:54;38831:1;38835:2;38839:7;38848:5;38800:22;:54::i;:::-;38778:154;;;;-1:-1:-1;;;38778:154:0;;;;;;;:::i;39276:382::-;-1:-1:-1;;;;;39356:16:0;;39348:61;;;;-1:-1:-1;;;39348:61:0;;11141:2:1;39348:61:0;;;11123:21:1;;;11160:18;;;11153:30;11219:34;11199:18;;;11192:62;11271:18;;39348:61:0;10939:356:1;39348:61:0;37363:4;37387:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37387:16:0;:30;39420:58;;;;-1:-1:-1;;;39420:58:0;;8029:2:1;39420:58:0;;;8011:21:1;8068:2;8048:18;;;8041:30;8107;8087:18;;;8080:58;8155:18;;39420:58:0;7827:352:1;39420:58:0;-1:-1:-1;;;;;39549:13:0;;;;;;:9;:13;;;;;:18;;39566:1;;39549:13;:18;;39566:1;;39549:18;:::i;:::-;;;;-1:-1:-1;;39578:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39578:21:0;-1:-1:-1;;;;;39578:21:0;;;;;;;;39617:33;;39578:16;;;39617:33;;39578:16;;39617:33;39276:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:185::-;4347:3;4385:5;4379:12;4400:52;4445:6;4440:3;4433:4;4426:5;4422:16;4400:52;:::i;:::-;4468:16;;;;;4305:185;-1:-1:-1;;4305:185:1:o;4495:1174::-;4671:3;4700:1;4733:6;4727:13;4763:3;4785:1;4813:9;4809:2;4805:18;4795:28;;4873:2;4862:9;4858:18;4895;4885:61;;4939:4;4931:6;4927:17;4917:27;;4885:61;4965:2;5013;5005:6;5002:14;4982:18;4979:38;4976:165;;;-1:-1:-1;;;5040:33:1;;5096:4;5093:1;5086:15;5126:4;5047:3;5114:17;4976:165;5157:18;5184:104;;;;5302:1;5297:320;;;;5150:467;;5184:104;-1:-1:-1;;5217:24:1;;5205:37;;5262:16;;;;-1:-1:-1;5184:104:1;;5297:320;14586:1;14579:14;;;14623:4;14610:18;;5392:1;5406:165;5420:6;5417:1;5414:13;5406:165;;;5498:14;;5485:11;;;5478:35;5541:16;;;;5435:10;;5406:165;;;5410:3;;5600:6;5595:3;5591:16;5584:23;;5150:467;;;;;;;5633:30;5659:3;5651:6;5633:30;:::i;:::-;5626:37;4495:1174;-1:-1:-1;;;;;4495:1174:1:o;6092:488::-;-1:-1:-1;;;;;6361:15:1;;;6343:34;;6413:15;;6408:2;6393:18;;6386:43;6460:2;6445:18;;6438:34;;;6508:3;6503:2;6488:18;;6481:31;;;6286:4;;6529:45;;6554:19;;6546:6;6529:45;:::i;:::-;6521:53;6092:488;-1:-1:-1;;;;;;6092:488:1:o;6777:219::-;6926:2;6915:9;6908:21;6889:4;6946:44;6986:2;6975:9;6971:18;6963:6;6946:44;:::i;7001:414::-;7203:2;7185:21;;;7242:2;7222:18;;;7215:30;7281:34;7276:2;7261:18;;7254:62;-1:-1:-1;;;7347:2:1;7332:18;;7325:48;7405:3;7390:19;;7001:414::o;12049:356::-;12251:2;12233:21;;;12270:18;;;12263:30;12329:34;12324:2;12309:18;;12302:62;12396:2;12381:18;;12049:356::o;13913:413::-;14115:2;14097:21;;;14154:2;14134:18;;;14127:30;14193:34;14188:2;14173:18;;14166:62;-1:-1:-1;;;14259:2:1;14244:18;;14237:47;14316:3;14301:19;;13913:413::o;14639:128::-;14679:3;14710:1;14706:6;14703:1;14700:13;14697:39;;;14716:18;;:::i;:::-;-1:-1:-1;14752:9:1;;14639:128::o;14772:120::-;14812:1;14838;14828:35;;14843:18;;:::i;:::-;-1:-1:-1;14877:9:1;;14772:120::o;14897:168::-;14937:7;15003:1;14999;14995:6;14991:14;14988:1;14985:21;14980:1;14973:9;14966:17;14962:45;14959:71;;;15010:18;;:::i;:::-;-1:-1:-1;15050:9:1;;14897:168::o;15070:125::-;15110:4;15138:1;15135;15132:8;15129:34;;;15143:18;;:::i;:::-;-1:-1:-1;15180:9:1;;15070:125::o;15200:258::-;15272:1;15282:113;15296:6;15293:1;15290:13;15282:113;;;15372:11;;;15366:18;15353:11;;;15346:39;15318:2;15311:10;15282:113;;;15413:6;15410:1;15407:13;15404:48;;;-1:-1:-1;;15448:1:1;15430:16;;15423:27;15200:258::o;15463:380::-;15542:1;15538:12;;;;15585;;;15606:61;;15660:4;15652:6;15648:17;15638:27;;15606:61;15713:2;15705:6;15702:14;15682:18;15679:38;15676:161;;;15759:10;15754:3;15750:20;15747:1;15740:31;15794:4;15791:1;15784:15;15822:4;15819:1;15812:15;15676:161;;15463:380;;;:::o;15848:135::-;15887:3;-1:-1:-1;;15908:17:1;;15905:43;;;15928:18;;:::i;:::-;-1:-1:-1;15975:1:1;15964:13;;15848:135::o;15988:112::-;16020:1;16046;16036:35;;16051:18;;:::i;:::-;-1:-1:-1;16085:9:1;;15988:112::o;16105:127::-;16166:10;16161:3;16157:20;16154:1;16147:31;16197:4;16194:1;16187:15;16221:4;16218:1;16211:15;16237:127;16298:10;16293:3;16289:20;16286:1;16279:31;16329:4;16326:1;16319:15;16353:4;16350:1;16343:15;16369:127;16430:10;16425:3;16421:20;16418:1;16411:31;16461:4;16458:1;16451:15;16485:4;16482:1;16475:15;16501:127;16562:10;16557:3;16553:20;16550:1;16543:31;16593:4;16590:1;16583:15;16617:4;16614:1;16607:15;16633:131;-1:-1:-1;;;;;;16707:32:1;;16697:43;;16687:71;;16754:1;16751;16744:12

Swarm Source

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