ETH Price: $3,326.54 (-3.90%)

Token

copymint berk (COPYBERK)
 

Overview

Max Total Supply

58 COPYBERK

Holders

25

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
heo.eth
Balance
10 COPYBERK
0xECc953EFBd82D7Dea4aa0F7Bc3329Ea615e0CfF2
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:
COPYMINTBERK

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: CONSTANTLY WANTS TO MAKE THE WORD BEAUTIFUL

// THIS CONTRACT IS A DERIVATIVE CURATION OF MY WALLET 0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5
// YOU CAN COPYMINT ANY ID OF ANY ERC721 I HOLD IN MY WALLET
// THERE IS ONE SPOT FOR EACH ID. 
// YOU CAN HEXAGON YOURSELF ON TWITTER OR STH ELSE
// CURATOR OF THIS COPYMINTED COLLECTION IS YOU. YOU ARE THE ARTIST (ENTER SUNSHADE GLASSED EMOJI)
// THE TOKENS YOU MINTED WILL MIRROR THE METADATA OF ASSET YOU COPYMINTED
// MINTINGS REQUIRE 10000 $BASTARD 


// by @berkozdemir - https://copymint.berkozdemir.com - copymint.berk.eth.link

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/utils/Address.sol


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


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

pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/1_Storage.sol


pragma solidity ^0.8.9 <0.9.0;

// THIS CONTRACT IS A DERIVATIVE CURATION OF MY WALLET 0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5
// YOU CAN COPYMINT ANY ID OF ANY ERC721 I HOLD IN MY WALLET
// THERE IS ONE SPOT FOR EACH ID. 
// YOU CAN HEXAGON YOURSELF ON TWITTER OR STH ELSE
// CURATOR OF THIS COPYMINTED COLLECTION IS YOU. YOU ARE THE ARTIST (ENTER SUNSHADE GLASSED EMOJI)
// THE TOKENS YOU MINTED WILL MIRROR THE METADATA OF ASSET YOU COPYMINTED
// MINTINGS REQUIRE 10000 $BASTARD 

contract COPYMINTBERK is Ownable, ERC721 {

    uint256 public bastardPrice;
    uint256 public _totalSupply;

    IERC20 BASTARDTOKEN = IERC20(0x78d9A9355a7823887868492c47368956ea473618); // MAINNET BASTARD TOKEN

    struct CopyMintInfo {
        address fromContract;
        uint256 timeStamp;
    }

    mapping (uint256 => CopyMintInfo) public Database;

    event copyMint(uint256 _id, address _copiedFrom, address _whoDidIt);

    address public BERK = 0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5;
    address public treasury;
    
    constructor() ERC721("copymint berk", "COPYBERK") {
        treasury = BERK;
        bastardPrice = 10000 ether;
    }

    function setTreasury(address _address) public onlyOwner {
        treasury = _address;
    }
    function changePrice(uint256 _amount) public onlyOwner {
        bastardPrice = _amount;
    }
    
    function price() public view returns(uint256) {
        return bastardPrice;
    }
    
    function exists(uint256 tokenId) public view returns(bool) {
        return _exists(tokenId);
    }
    
    function copyMintBerk(address _contractAddress, uint256 _tokenId) public {
        ERC721 NFTCONTRACT = ERC721(_contractAddress);
        require(NFTCONTRACT.ownerOf(_tokenId) == BERK, "YOU CAN ONLY COPYMINT FROM ME, DAMMIT!" );
        require(BASTARDTOKEN.transferFrom(msg.sender, treasury, bastardPrice), "ERC20 TRANSFER FAILED");
        super._mint(msg.sender, _tokenId);
        emit copyMint(_tokenId, _contractAddress, msg.sender);
        Database[_tokenId] = CopyMintInfo(_contractAddress, block.timestamp);
        unchecked { _totalSupply++; }
    }
    
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
    * Overridden function, to mirror the metadata uri from copyminted NFT
    */
    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Invalid id");

        address mirror = Database[_tokenId].fromContract;
         

        require(
            mirror != address(0),
            "Invalid metadata provider address"
        );

        return ERC721(mirror).tokenURI(_tokenId);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"},{"indexed":false,"internalType":"address","name":"_copiedFrom","type":"address"},{"indexed":false,"internalType":"address","name":"_whoDidIt","type":"address"}],"name":"copyMint","type":"event"},{"inputs":[],"name":"BERK","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"Database","outputs":[{"internalType":"address","name":"fromContract","type":"address"},{"internalType":"uint256","name":"timeStamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","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":"bastardPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contractAddress","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"copyMintBerk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052600980546001600160a01b03199081167378d9a9355a7823887868492c47368956ea47361817909155600b805490911673c5e08104c19dafd00fe40737490da9552db5bfe51790553480156200005957600080fd5b506040518060400160405280600d81526020016c636f70796d696e74206265726b60981b81525060405180604001604052806008815260200167434f50594245524b60c01b815250620000bb620000b56200011f60201b60201c565b62000123565b8151620000d090600190602085019062000173565b508051620000e690600290602084019062000173565b5050600b54600c80546001600160a01b0319166001600160a01b039092169190911790555069021e19e0c9bab240000060075562000255565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001819062000219565b90600052602060002090601f016020900481019282620001a55760008555620001f0565b82601f10620001c057805160ff1916838001178555620001f0565b82800160010185558215620001f0579182015b82811115620001f0578251825591602001919060010190620001d3565b50620001fe92915062000202565b5090565b5b80821115620001fe576000815560010162000203565b600181811c908216806200022e57607f821691505b6020821081036200024f57634e487b7160e01b600052602260045260246000fd5b50919050565b61194580620002656000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a2b40d1911610097578063dba462f111610071578063dba462f11461035c578063e985e9c5146103ae578063f0f44260146103ea578063f2fde38b146103fd57600080fd5b8063a2b40d1914610323578063b88d4fde14610336578063c87b56dd1461034957600080fd5b8063975df1a2116100d3578063975df1a2146102e25780639e251184146102f5578063a035b1fe14610308578063a22cb4651461031057600080fd5b8063715018a6146102c15780638da5cb5b146102c957806395d89b41146102da57600080fd5b80633eaaf86b116101665780634f558e79116101405780634f558e791461027557806361d027b3146102885780636352211e1461029b57806370a08231146102ae57600080fd5b80633eaaf86b1461025057806342842e0e146102595780634e2b666b1461026c57600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b31461021657806318160ddd1461022b57806323b872dd1461023d575b600080fd5b6101c16101bc3660046113da565b610410565b60405190151581526020015b60405180910390f35b6101de610462565b6040516101cd919061144f565b6101fe6101f9366004611462565b6104f4565b6040516001600160a01b0390911681526020016101cd565b610229610224366004611490565b61058e565b005b6008545b6040519081526020016101cd565b61022961024b3660046114bc565b6106a3565b61022f60085481565b6102296102673660046114bc565b6106d4565b61022f60075481565b6101c1610283366004611462565b6106ef565b600c546101fe906001600160a01b031681565b6101fe6102a9366004611462565b61070e565b61022f6102bc3660046114fd565b610785565b61022961080c565b6000546001600160a01b03166101fe565b6101de610842565b6102296102f0366004611490565b610851565b600b546101fe906001600160a01b031681565b60075461022f565b61022961031e366004611528565b610a97565b610229610331366004611462565b610aa6565b6102296103443660046115d0565b610ad5565b6101de610357366004611462565b610b0d565b61038f61036a366004611462565b600a60205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b0390931683526020830191909152016101cd565b6101c16103bc36600461167f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102296103f83660046114fd565b610c44565b61022961040b3660046114fd565b610c90565b60006001600160e01b031982166380ac58cd60e01b148061044157506001600160e01b03198216635b5e139f60e01b145b8061045c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610471906116ad565b80601f016020809104026020016040519081016040528092919081815260200182805461049d906116ad565b80156104ea5780601f106104bf576101008083540402835291602001916104ea565b820191906000526020600020905b8154815290600101906020018083116104cd57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166105725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006105998261070e565b9050806001600160a01b0316836001600160a01b0316036106065760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610569565b336001600160a01b0382161480610622575061062281336103bc565b6106945760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610569565b61069e8383610d2b565b505050565b6106ad3382610d99565b6106c95760405162461bcd60e51b8152600401610569906116e7565b61069e838383610e90565b61069e83838360405180602001604052806000815250610ad5565b6000818152600360205260408120546001600160a01b0316151561045c565b6000818152600360205260408120546001600160a01b03168061045c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610569565b60006001600160a01b0382166107f05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610569565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146108365760405162461bcd60e51b815260040161056990611738565b6108406000611030565b565b606060028054610471906116ad565b600b546040516331a9108f60e11b81526004810183905283916001600160a01b039081169190831690636352211e90602401602060405180830381865afa1580156108a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c4919061176d565b6001600160a01b0316146109295760405162461bcd60e51b815260206004820152602660248201527f594f552043414e204f4e4c5920434f50594d494e542046524f4d204d452c2044604482015265414d4d49542160d01b6064820152608401610569565b600954600c546007546040516323b872dd60e01b81523360048201526001600160a01b03928316602482015260448101919091529116906323b872dd906064016020604051808303816000875af1158015610988573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ac919061178a565b6109f05760405162461bcd60e51b8152602060048201526015602482015274115490cc8c081514905394d1915488119052531151605a1b6044820152606401610569565b6109fa3383611080565b604080518381526001600160a01b0385166020820152338183015290517f360b6bf8dab7e11ac14d19cce1672a8ed0f082acde9849d59f17a4b4ce19b7139181900360600190a1506040805180820182526001600160a01b0393841681524260208083019182526000948552600a905291909220915182546001600160a01b03191693169290921781559051600191820155600880549091019055565b610aa23383836111c2565b5050565b6000546001600160a01b03163314610ad05760405162461bcd60e51b815260040161056990611738565b600755565b610adf3383610d99565b610afb5760405162461bcd60e51b8152600401610569906116e7565b610b0784848484611290565b50505050565b6000818152600360205260409020546060906001600160a01b0316610b615760405162461bcd60e51b815260206004820152600a602482015269125b9d985b1a59081a5960b21b6044820152606401610569565b6000828152600a60205260409020546001600160a01b031680610bd05760405162461bcd60e51b815260206004820152602160248201527f496e76616c6964206d657461646174612070726f7669646572206164647265736044820152607360f81b6064820152608401610569565b60405163c87b56dd60e01b8152600481018490526001600160a01b0382169063c87b56dd90602401600060405180830381865afa158015610c15573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c3d91908101906117a7565b9392505050565b6000546001600160a01b03163314610c6e5760405162461bcd60e51b815260040161056990611738565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610cba5760405162461bcd60e51b815260040161056990611738565b6001600160a01b038116610d1f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610569565b610d2881611030565b50565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d608261070e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316610e125760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610569565b6000610e1d8361070e565b9050806001600160a01b0316846001600160a01b03161480610e585750836001600160a01b0316610e4d846104f4565b6001600160a01b0316145b80610e8857506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610ea38261070e565b6001600160a01b031614610f0b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610569565b6001600160a01b038216610f6d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610569565b610f78600082610d2b565b6001600160a01b0383166000908152600460205260408120805460019290610fa1908490611834565b90915550506001600160a01b0382166000908152600460205260408120805460019290610fcf90849061184b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166110d65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610569565b6000818152600360205260409020546001600160a01b03161561113b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610569565b6001600160a01b038216600090815260046020526040812080546001929061116490849061184b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b0316036112235760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610569565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61129b848484610e90565b6112a7848484846112c3565b610b075760405162461bcd60e51b815260040161056990611863565b60006001600160a01b0384163b156113b957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113079033908990889088906004016118b5565b6020604051808303816000875af1925050508015611342575060408051601f3d908101601f1916820190925261133f918101906118f2565b60015b61139f573d808015611370576040519150601f19603f3d011682016040523d82523d6000602084013e611375565b606091505b5080516000036113975760405162461bcd60e51b815260040161056990611863565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e88565b506001949350505050565b6001600160e01b031981168114610d2857600080fd5b6000602082840312156113ec57600080fd5b8135610c3d816113c4565b60005b838110156114125781810151838201526020016113fa565b83811115610b075750506000910152565b6000815180845261143b8160208601602086016113f7565b601f01601f19169290920160200192915050565b602081526000610c3d6020830184611423565b60006020828403121561147457600080fd5b5035919050565b6001600160a01b0381168114610d2857600080fd5b600080604083850312156114a357600080fd5b82356114ae8161147b565b946020939093013593505050565b6000806000606084860312156114d157600080fd5b83356114dc8161147b565b925060208401356114ec8161147b565b929592945050506040919091013590565b60006020828403121561150f57600080fd5b8135610c3d8161147b565b8015158114610d2857600080fd5b6000806040838503121561153b57600080fd5b82356115468161147b565b915060208301356115568161151a565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156115a0576115a0611561565b604052919050565b600067ffffffffffffffff8211156115c2576115c2611561565b50601f01601f191660200190565b600080600080608085870312156115e657600080fd5b84356115f18161147b565b935060208501356116018161147b565b925060408501359150606085013567ffffffffffffffff81111561162457600080fd5b8501601f8101871361163557600080fd5b8035611648611643826115a8565b611577565b81815288602083850101111561165d57600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b6000806040838503121561169257600080fd5b823561169d8161147b565b915060208301356115568161147b565b600181811c908216806116c157607f821691505b6020821081036116e157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561177f57600080fd5b8151610c3d8161147b565b60006020828403121561179c57600080fd5b8151610c3d8161151a565b6000602082840312156117b957600080fd5b815167ffffffffffffffff8111156117d057600080fd5b8201601f810184136117e157600080fd5b80516117ef611643826115a8565b81815285602083850101111561180457600080fd5b6118158260208301602086016113f7565b95945050505050565b634e487b7160e01b600052601160045260246000fd5b6000828210156118465761184661181e565b500390565b6000821982111561185e5761185e61181e565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118e890830184611423565b9695505050505050565b60006020828403121561190457600080fd5b8151610c3d816113c456fea26469706673582212208b810680c8e13f819c6890ef4e3297481426056a68baf98c2b7b7fa298e0965164736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a2b40d1911610097578063dba462f111610071578063dba462f11461035c578063e985e9c5146103ae578063f0f44260146103ea578063f2fde38b146103fd57600080fd5b8063a2b40d1914610323578063b88d4fde14610336578063c87b56dd1461034957600080fd5b8063975df1a2116100d3578063975df1a2146102e25780639e251184146102f5578063a035b1fe14610308578063a22cb4651461031057600080fd5b8063715018a6146102c15780638da5cb5b146102c957806395d89b41146102da57600080fd5b80633eaaf86b116101665780634f558e79116101405780634f558e791461027557806361d027b3146102885780636352211e1461029b57806370a08231146102ae57600080fd5b80633eaaf86b1461025057806342842e0e146102595780634e2b666b1461026c57600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b31461021657806318160ddd1461022b57806323b872dd1461023d575b600080fd5b6101c16101bc3660046113da565b610410565b60405190151581526020015b60405180910390f35b6101de610462565b6040516101cd919061144f565b6101fe6101f9366004611462565b6104f4565b6040516001600160a01b0390911681526020016101cd565b610229610224366004611490565b61058e565b005b6008545b6040519081526020016101cd565b61022961024b3660046114bc565b6106a3565b61022f60085481565b6102296102673660046114bc565b6106d4565b61022f60075481565b6101c1610283366004611462565b6106ef565b600c546101fe906001600160a01b031681565b6101fe6102a9366004611462565b61070e565b61022f6102bc3660046114fd565b610785565b61022961080c565b6000546001600160a01b03166101fe565b6101de610842565b6102296102f0366004611490565b610851565b600b546101fe906001600160a01b031681565b60075461022f565b61022961031e366004611528565b610a97565b610229610331366004611462565b610aa6565b6102296103443660046115d0565b610ad5565b6101de610357366004611462565b610b0d565b61038f61036a366004611462565b600a60205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b0390931683526020830191909152016101cd565b6101c16103bc36600461167f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102296103f83660046114fd565b610c44565b61022961040b3660046114fd565b610c90565b60006001600160e01b031982166380ac58cd60e01b148061044157506001600160e01b03198216635b5e139f60e01b145b8061045c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610471906116ad565b80601f016020809104026020016040519081016040528092919081815260200182805461049d906116ad565b80156104ea5780601f106104bf576101008083540402835291602001916104ea565b820191906000526020600020905b8154815290600101906020018083116104cd57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166105725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006105998261070e565b9050806001600160a01b0316836001600160a01b0316036106065760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610569565b336001600160a01b0382161480610622575061062281336103bc565b6106945760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610569565b61069e8383610d2b565b505050565b6106ad3382610d99565b6106c95760405162461bcd60e51b8152600401610569906116e7565b61069e838383610e90565b61069e83838360405180602001604052806000815250610ad5565b6000818152600360205260408120546001600160a01b0316151561045c565b6000818152600360205260408120546001600160a01b03168061045c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610569565b60006001600160a01b0382166107f05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610569565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146108365760405162461bcd60e51b815260040161056990611738565b6108406000611030565b565b606060028054610471906116ad565b600b546040516331a9108f60e11b81526004810183905283916001600160a01b039081169190831690636352211e90602401602060405180830381865afa1580156108a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c4919061176d565b6001600160a01b0316146109295760405162461bcd60e51b815260206004820152602660248201527f594f552043414e204f4e4c5920434f50594d494e542046524f4d204d452c2044604482015265414d4d49542160d01b6064820152608401610569565b600954600c546007546040516323b872dd60e01b81523360048201526001600160a01b03928316602482015260448101919091529116906323b872dd906064016020604051808303816000875af1158015610988573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ac919061178a565b6109f05760405162461bcd60e51b8152602060048201526015602482015274115490cc8c081514905394d1915488119052531151605a1b6044820152606401610569565b6109fa3383611080565b604080518381526001600160a01b0385166020820152338183015290517f360b6bf8dab7e11ac14d19cce1672a8ed0f082acde9849d59f17a4b4ce19b7139181900360600190a1506040805180820182526001600160a01b0393841681524260208083019182526000948552600a905291909220915182546001600160a01b03191693169290921781559051600191820155600880549091019055565b610aa23383836111c2565b5050565b6000546001600160a01b03163314610ad05760405162461bcd60e51b815260040161056990611738565b600755565b610adf3383610d99565b610afb5760405162461bcd60e51b8152600401610569906116e7565b610b0784848484611290565b50505050565b6000818152600360205260409020546060906001600160a01b0316610b615760405162461bcd60e51b815260206004820152600a602482015269125b9d985b1a59081a5960b21b6044820152606401610569565b6000828152600a60205260409020546001600160a01b031680610bd05760405162461bcd60e51b815260206004820152602160248201527f496e76616c6964206d657461646174612070726f7669646572206164647265736044820152607360f81b6064820152608401610569565b60405163c87b56dd60e01b8152600481018490526001600160a01b0382169063c87b56dd90602401600060405180830381865afa158015610c15573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c3d91908101906117a7565b9392505050565b6000546001600160a01b03163314610c6e5760405162461bcd60e51b815260040161056990611738565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610cba5760405162461bcd60e51b815260040161056990611738565b6001600160a01b038116610d1f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610569565b610d2881611030565b50565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d608261070e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316610e125760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610569565b6000610e1d8361070e565b9050806001600160a01b0316846001600160a01b03161480610e585750836001600160a01b0316610e4d846104f4565b6001600160a01b0316145b80610e8857506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610ea38261070e565b6001600160a01b031614610f0b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610569565b6001600160a01b038216610f6d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610569565b610f78600082610d2b565b6001600160a01b0383166000908152600460205260408120805460019290610fa1908490611834565b90915550506001600160a01b0382166000908152600460205260408120805460019290610fcf90849061184b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166110d65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610569565b6000818152600360205260409020546001600160a01b03161561113b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610569565b6001600160a01b038216600090815260046020526040812080546001929061116490849061184b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b0316036112235760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610569565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61129b848484610e90565b6112a7848484846112c3565b610b075760405162461bcd60e51b815260040161056990611863565b60006001600160a01b0384163b156113b957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113079033908990889088906004016118b5565b6020604051808303816000875af1925050508015611342575060408051601f3d908101601f1916820190925261133f918101906118f2565b60015b61139f573d808015611370576040519150601f19603f3d011682016040523d82523d6000602084013e611375565b606091505b5080516000036113975760405162461bcd60e51b815260040161056990611863565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e88565b506001949350505050565b6001600160e01b031981168114610d2857600080fd5b6000602082840312156113ec57600080fd5b8135610c3d816113c4565b60005b838110156114125781810151838201526020016113fa565b83811115610b075750506000910152565b6000815180845261143b8160208601602086016113f7565b601f01601f19169290920160200192915050565b602081526000610c3d6020830184611423565b60006020828403121561147457600080fd5b5035919050565b6001600160a01b0381168114610d2857600080fd5b600080604083850312156114a357600080fd5b82356114ae8161147b565b946020939093013593505050565b6000806000606084860312156114d157600080fd5b83356114dc8161147b565b925060208401356114ec8161147b565b929592945050506040919091013590565b60006020828403121561150f57600080fd5b8135610c3d8161147b565b8015158114610d2857600080fd5b6000806040838503121561153b57600080fd5b82356115468161147b565b915060208301356115568161151a565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156115a0576115a0611561565b604052919050565b600067ffffffffffffffff8211156115c2576115c2611561565b50601f01601f191660200190565b600080600080608085870312156115e657600080fd5b84356115f18161147b565b935060208501356116018161147b565b925060408501359150606085013567ffffffffffffffff81111561162457600080fd5b8501601f8101871361163557600080fd5b8035611648611643826115a8565b611577565b81815288602083850101111561165d57600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b6000806040838503121561169257600080fd5b823561169d8161147b565b915060208301356115568161147b565b600181811c908216806116c157607f821691505b6020821081036116e157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561177f57600080fd5b8151610c3d8161147b565b60006020828403121561179c57600080fd5b8151610c3d8161151a565b6000602082840312156117b957600080fd5b815167ffffffffffffffff8111156117d057600080fd5b8201601f810184136117e157600080fd5b80516117ef611643826115a8565b81815285602083850101111561180457600080fd5b6118158260208301602086016113f7565b95945050505050565b634e487b7160e01b600052601160045260246000fd5b6000828210156118465761184661181e565b500390565b6000821982111561185e5761185e61181e565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118e890830184611423565b9695505050505050565b60006020828403121561190457600080fd5b8151610c3d816113c456fea26469706673582212208b810680c8e13f819c6890ef4e3297481426056a68baf98c2b7b7fa298e0965164736f6c634300080d0033

Deployed Bytecode Sourcemap

42332:2324:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29357:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;29357:305:0;;;;;;;;30302:100;;;:::i;:::-;;;;;;;:::i;31861:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;31861:221:0;1528:203:1;31384:411:0;;;;;;:::i;:::-;;:::i;:::-;;44021:91;44092:12;;44021:91;;;2338:25:1;;;2326:2;2311:18;44021:91:0;2192:177:1;32611:339:0;;;;;;:::i;:::-;;:::i;42416:27::-;;;;;;33021:185;;;;;;:::i;:::-;;:::i;42382:27::-;;;;;;43327:101;;;;;;:::i;:::-;;:::i;42858:23::-;;;;;-1:-1:-1;;;;;42858:23:0;;;29996:239;;;;;;:::i;:::-;;:::i;29726:208::-;;;;;;:::i;:::-;;:::i;9959:103::-;;;:::i;9308:87::-;9354:7;9381:6;-1:-1:-1;;;;;9381:6:0;9308:87;;30471:104;;;:::i;43440:569::-;;;;;;:::i;:::-;;:::i;42787:64::-;;;;;-1:-1:-1;;;;;42787:64:0;;;43231:84;43295:12;;43231:84;;32154:155;;;;;;:::i;:::-;;:::i;43123:96::-;;;;;;:::i;:::-;;:::i;33277:328::-;;;;;;:::i;:::-;;:::i;44212:439::-;;;;;;:::i;:::-;;:::i;42653:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42653:49:0;;;;;;;;;;-1:-1:-1;;;;;5413:32:1;;;5395:51;;5477:2;5462:18;;5455:34;;;;5368:18;42653:49:0;5221:274:1;32380:164:0;;;;;;:::i;:::-;-1:-1:-1;;;;;32501:25:0;;;32477:4;32501:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32380:164;43023:94;;;;;;:::i;:::-;;:::i;10217:201::-;;;;;;:::i;:::-;;:::i;29357:305::-;29459:4;-1:-1:-1;;;;;;29496:40:0;;-1:-1:-1;;;29496:40:0;;:105;;-1:-1:-1;;;;;;;29553:48:0;;-1:-1:-1;;;29553:48:0;29496:105;:158;;;-1:-1:-1;;;;;;;;;;22061:40:0;;;29618:36;29476:178;29357:305;-1:-1:-1;;29357:305:0:o;30302:100::-;30356:13;30389:5;30382:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30302:100;:::o;31861:221::-;31937:7;35204:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35204:16:0;31957:73;;;;-1:-1:-1;;;31957:73:0;;6480:2:1;31957:73:0;;;6462:21:1;6519:2;6499:18;;;6492:30;6558:34;6538:18;;;6531:62;-1:-1:-1;;;6609:18:1;;;6602:42;6661:19;;31957:73:0;;;;;;;;;-1:-1:-1;32050:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32050:24:0;;31861:221::o;31384:411::-;31465:13;31481:23;31496:7;31481:14;:23::i;:::-;31465:39;;31529:5;-1:-1:-1;;;;;31523:11:0;:2;-1:-1:-1;;;;;31523:11:0;;31515:57;;;;-1:-1:-1;;;31515:57:0;;6893:2:1;31515:57:0;;;6875:21:1;6932:2;6912:18;;;6905:30;6971:34;6951:18;;;6944:62;-1:-1:-1;;;7022:18:1;;;7015:31;7063:19;;31515:57:0;6691:397:1;31515:57:0;8059:10;-1:-1:-1;;;;;31607:21:0;;;;:62;;-1:-1:-1;31632:37:0;31649:5;8059:10;32380:164;:::i;31632:37::-;31585:168;;;;-1:-1:-1;;;31585:168:0;;7295:2:1;31585:168:0;;;7277:21:1;7334:2;7314:18;;;7307:30;7373:34;7353:18;;;7346:62;7444:26;7424:18;;;7417:54;7488:19;;31585:168:0;7093:420:1;31585:168:0;31766:21;31775:2;31779:7;31766:8;:21::i;:::-;31454:341;31384:411;;:::o;32611:339::-;32806:41;8059:10;32839:7;32806:18;:41::i;:::-;32798:103;;;;-1:-1:-1;;;32798:103:0;;;;;;;:::i;:::-;32914:28;32924:4;32930:2;32934:7;32914:9;:28::i;33021:185::-;33159:39;33176:4;33182:2;33186:7;33159:39;;;;;;;;;;;;:16;:39::i;43327:101::-;43380:4;35204:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35204:16:0;:30;;43404:16;35115:127;29996:239;30068:7;30104:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30104:16:0;;30131:73;;;;-1:-1:-1;;;30131:73:0;;8138:2:1;30131:73:0;;;8120:21:1;8177:2;8157:18;;;8150:30;8216:34;8196:18;;;8189:62;-1:-1:-1;;;8267:18:1;;;8260:39;8316:19;;30131:73:0;7936:405:1;29726:208:0;29798:7;-1:-1:-1;;;;;29826:19:0;;29818:74;;;;-1:-1:-1;;;29818:74:0;;8548:2:1;29818:74:0;;;8530:21:1;8587:2;8567:18;;;8560:30;8626:34;8606:18;;;8599:62;-1:-1:-1;;;8677:18:1;;;8670:40;8727:19;;29818:74:0;8346:406:1;29818:74:0;-1:-1:-1;;;;;;29910:16:0;;;;;:9;:16;;;;;;;29726:208::o;9959:103::-;9354:7;9381:6;-1:-1:-1;;;;;9381:6:0;8059:10;9528:23;9520:68;;;;-1:-1:-1;;;9520:68:0;;;;;;;:::i;:::-;10024:30:::1;10051:1;10024:18;:30::i;:::-;9959:103::o:0;30471:104::-;30527:13;30560:7;30553:14;;;;;:::i;43440:569::-;43621:4;;43588:29;;-1:-1:-1;;;43588:29:0;;;;;2338:25:1;;;43552:16:0;;-1:-1:-1;;;;;43621:4:0;;;;43588:19;;;;;;2311:18:1;;43588:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;43588:37:0;;43580:89;;;;-1:-1:-1;;;43580:89:0;;9576:2:1;43580:89:0;;;9558:21:1;9615:2;9595:18;;;9588:30;9654:34;9634:18;;;9627:62;-1:-1:-1;;;9705:18:1;;;9698:36;9751:19;;43580:89:0;9374:402:1;43580:89:0;43688:12;;43726:8;;43736:12;;43688:61;;-1:-1:-1;;;43688:61:0;;43714:10;43688:61;;;10021:34:1;-1:-1:-1;;;;;43726:8:0;;;10071:18:1;;;10064:43;10123:18;;;10116:34;;;;43688:12:0;;;:25;;9956:18:1;;43688:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43680:95;;;;-1:-1:-1;;;43680:95:0;;10613:2:1;43680:95:0;;;10595:21:1;10652:2;10632:18;;;10625:30;-1:-1:-1;;;10671:18:1;;;10664:51;10732:18;;43680:95:0;10411:345:1;43680:95:0;43786:33;43798:10;43810:8;43786:11;:33::i;:::-;43835:48;;;10963:25:1;;;-1:-1:-1;;;;;11062:15:1;;11057:2;11042:18;;11035:43;43872:10:0;11094:18:1;;;11087:43;43835:48:0;;;;;;;10951:2:1;43835:48:0;;;-1:-1:-1;43915:47:0;;;;;;;;-1:-1:-1;;;;;43915:47:0;;;;;43946:15;43915:47;;;;;;;-1:-1:-1;43894:18:0;;;:8;:18;;;;;;:68;;;;-1:-1:-1;;;;;;43894:68:0;;;;;;;;;;;-1:-1:-1;43894:68:0;;;;43985:12;:14;;;;;;;43440:569::o;32154:155::-;32249:52;8059:10;32282:8;32292;32249:18;:52::i;:::-;32154:155;;:::o;43123:96::-;9354:7;9381:6;-1:-1:-1;;;;;9381:6:0;8059:10;9528:23;9520:68;;;;-1:-1:-1;;;9520:68:0;;;;;;;:::i;:::-;43189:12:::1;:22:::0;43123:96::o;33277:328::-;33452:41;8059:10;33485:7;33452:18;:41::i;:::-;33444:103;;;;-1:-1:-1;;;33444:103:0;;;;;;;:::i;:::-;33558:39;33572:4;33578:2;33582:7;33591:5;33558:13;:39::i;:::-;33277:328;;;;:::o;44212:439::-;35180:4;35204:16;;;:7;:16;;;;;;44331:13;;-1:-1:-1;;;;;35204:16:0;44362:40;;;;-1:-1:-1;;;44362:40:0;;11343:2:1;44362:40:0;;;11325:21:1;11382:2;11362:18;;;11355:30;-1:-1:-1;;;11401:18:1;;;11394:40;11451:18;;44362:40:0;11141:334:1;44362:40:0;44415:14;44432:18;;;:8;:18;;;;;:31;-1:-1:-1;;;;;44432:31:0;;44487:103;;;;-1:-1:-1;;;44487:103:0;;11682:2:1;44487:103:0;;;11664:21:1;11721:2;11701:18;;;11694:30;11760:34;11740:18;;;11733:62;-1:-1:-1;;;11811:18:1;;;11804:31;11852:19;;44487:103:0;11480:397:1;44487:103:0;44610:33;;-1:-1:-1;;;44610:33:0;;;;;2338:25:1;;;-1:-1:-1;;;;;44610:23:0;;;;;2311:18:1;;44610:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44610:33:0;;;;;;;;;;;;:::i;:::-;44603:40;44212:439;-1:-1:-1;;;44212:439:0:o;43023:94::-;9354:7;9381:6;-1:-1:-1;;;;;9381:6:0;8059:10;9528:23;9520:68;;;;-1:-1:-1;;;9520:68:0;;;;;;;:::i;:::-;43090:8:::1;:19:::0;;-1:-1:-1;;;;;;43090:19:0::1;-1:-1:-1::0;;;;;43090:19:0;;;::::1;::::0;;;::::1;::::0;;43023:94::o;10217:201::-;9354:7;9381:6;-1:-1:-1;;;;;9381:6:0;8059:10;9528:23;9520:68;;;;-1:-1:-1;;;9520:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10306:22:0;::::1;10298:73;;;::::0;-1:-1:-1;;;10298:73:0;;12724:2:1;10298:73:0::1;::::0;::::1;12706:21:1::0;12763:2;12743:18;;;12736:30;12802:34;12782:18;;;12775:62;-1:-1:-1;;;12853:18:1;;;12846:36;12899:19;;10298:73:0::1;12522:402:1::0;10298:73:0::1;10382:28;10401:8;10382:18;:28::i;:::-;10217:201:::0;:::o;39097:174::-;39172:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39172:29:0;-1:-1:-1;;;;;39172:29:0;;;;;;;;:24;;39226:23;39172:24;39226:14;:23::i;:::-;-1:-1:-1;;;;;39217:46:0;;;;;;;;;;;39097:174;;:::o;35409:348::-;35502:4;35204:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35204:16:0;35519:73;;;;-1:-1:-1;;;35519:73:0;;13131:2:1;35519:73:0;;;13113:21:1;13170:2;13150:18;;;13143:30;13209:34;13189:18;;;13182:62;-1:-1:-1;;;13260:18:1;;;13253:42;13312:19;;35519:73:0;12929:408:1;35519:73:0;35603:13;35619:23;35634:7;35619:14;:23::i;:::-;35603:39;;35672:5;-1:-1:-1;;;;;35661:16:0;:7;-1:-1:-1;;;;;35661:16:0;;:51;;;;35705:7;-1:-1:-1;;;;;35681:31:0;:20;35693:7;35681:11;:20::i;:::-;-1:-1:-1;;;;;35681:31:0;;35661:51;:87;;;-1:-1:-1;;;;;;32501:25:0;;;32477:4;32501:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35716:32;35653:96;35409:348;-1:-1:-1;;;;35409:348:0:o;38401:578::-;38560:4;-1:-1:-1;;;;;38533:31:0;:23;38548:7;38533:14;:23::i;:::-;-1:-1:-1;;;;;38533:31:0;;38525:85;;;;-1:-1:-1;;;38525:85:0;;13544:2:1;38525:85:0;;;13526:21:1;13583:2;13563:18;;;13556:30;13622:34;13602:18;;;13595:62;-1:-1:-1;;;13673:18:1;;;13666:39;13722:19;;38525:85:0;13342:405:1;38525:85:0;-1:-1:-1;;;;;38629:16:0;;38621:65;;;;-1:-1:-1;;;38621:65:0;;13954:2:1;38621:65:0;;;13936:21:1;13993:2;13973:18;;;13966:30;14032:34;14012:18;;;14005:62;-1:-1:-1;;;14083:18:1;;;14076:34;14127:19;;38621:65:0;13752:400:1;38621:65:0;38803:29;38820:1;38824:7;38803:8;:29::i;:::-;-1:-1:-1;;;;;38845:15:0;;;;;;:9;:15;;;;;:20;;38864:1;;38845:15;:20;;38864:1;;38845:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38876:13:0;;;;;;:9;:13;;;;;:18;;38893:1;;38876:13;:18;;38893:1;;38876:18;:::i;:::-;;;;-1:-1:-1;;38905:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38905:21:0;-1:-1:-1;;;;;38905:21:0;;;;;;;;;38944:27;;38905:16;;38944:27;;;;;;;38401:578;;;:::o;10578:191::-;10652:16;10671:6;;-1:-1:-1;;;;;10688:17:0;;;-1:-1:-1;;;;;;10688:17:0;;;;;;10721:40;;10671:6;;;;;;;10721:40;;10652:16;10721:40;10641:128;10578:191;:::o;37093:382::-;-1:-1:-1;;;;;37173:16:0;;37165:61;;;;-1:-1:-1;;;37165:61:0;;14754:2:1;37165:61:0;;;14736:21:1;;;14773:18;;;14766:30;14832:34;14812:18;;;14805:62;14884:18;;37165:61:0;14552:356:1;37165:61:0;35180:4;35204:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35204:16:0;:30;37237:58;;;;-1:-1:-1;;;37237:58:0;;15115:2:1;37237:58:0;;;15097:21:1;15154:2;15134:18;;;15127:30;15193;15173:18;;;15166:58;15241:18;;37237:58:0;14913:352:1;37237:58:0;-1:-1:-1;;;;;37366:13:0;;;;;;:9;:13;;;;;:18;;37383:1;;37366:13;:18;;37383:1;;37366:18;:::i;:::-;;;;-1:-1:-1;;37395:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37395:21:0;-1:-1:-1;;;;;37395:21:0;;;;;;;;37434:33;;37395:16;;;37434:33;;37395:16;;37434:33;37093:382;;:::o;39413:315::-;39568:8;-1:-1:-1;;;;;39559:17:0;:5;-1:-1:-1;;;;;39559:17:0;;39551:55;;;;-1:-1:-1;;;39551:55:0;;15472:2:1;39551:55:0;;;15454:21:1;15511:2;15491:18;;;15484:30;15550:27;15530:18;;;15523:55;15595:18;;39551:55:0;15270:349:1;39551:55:0;-1:-1:-1;;;;;39617:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;39617:46:0;;;;;;;;;;39679:41;;540::1;;;39679::0;;513:18:1;39679:41:0;;;;;;;39413:315;;;:::o;34487:::-;34644:28;34654:4;34660:2;34664:7;34644:9;:28::i;:::-;34691:48;34714:4;34720:2;34724:7;34733:5;34691:22;:48::i;:::-;34683:111;;;;-1:-1:-1;;;34683:111:0;;;;;;;:::i;40293:799::-;40448:4;-1:-1:-1;;;;;40469:13:0;;11972:20;12020:8;40465:620;;40505:72;;-1:-1:-1;;;40505:72:0;;-1:-1:-1;;;;;40505:36:0;;;;;:72;;8059:10;;40556:4;;40562:7;;40571:5;;40505:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40505:72:0;;;;;;;;-1:-1:-1;;40505:72:0;;;;;;;;;;;;:::i;:::-;;;40501:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40747:6;:13;40764:1;40747:18;40743:272;;40790:60;;-1:-1:-1;;;40790:60:0;;;;;;;:::i;40743:272::-;40965:6;40959:13;40950:6;40946:2;40942:15;40935:38;40501:529;-1:-1:-1;;;;;;40628:51:0;-1:-1:-1;;;40628:51:0;;-1:-1:-1;40621:58:0;;40465:620;-1:-1:-1;41069:4:0;40293:799;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2374:456::-;2451:6;2459;2467;2520:2;2508:9;2499:7;2495:23;2491:32;2488:52;;;2536:1;2533;2526:12;2488:52;2575:9;2562:23;2594:31;2619:5;2594:31;:::i;:::-;2644:5;-1:-1:-1;2701:2:1;2686:18;;2673:32;2714:33;2673:32;2714:33;:::i;:::-;2374:456;;2766:7;;-1:-1:-1;;;2820:2:1;2805:18;;;;2792:32;;2374:456::o;2835:247::-;2894:6;2947:2;2935:9;2926:7;2922:23;2918:32;2915:52;;;2963:1;2960;2953:12;2915:52;3002:9;2989:23;3021:31;3046:5;3021:31;:::i;3087:118::-;3173:5;3166:13;3159:21;3152:5;3149:32;3139:60;;3195:1;3192;3185:12;3210:382;3275:6;3283;3336:2;3324:9;3315:7;3311:23;3307:32;3304:52;;;3352:1;3349;3342:12;3304:52;3391:9;3378:23;3410:31;3435:5;3410:31;:::i;:::-;3460:5;-1:-1:-1;3517:2:1;3502:18;;3489:32;3530:30;3489:32;3530:30;:::i;:::-;3579:7;3569:17;;;3210:382;;;;;:::o;3597:127::-;3658:10;3653:3;3649:20;3646:1;3639:31;3689:4;3686:1;3679:15;3713:4;3710:1;3703:15;3729:275;3800:2;3794:9;3865:2;3846:13;;-1:-1:-1;;3842:27:1;3830:40;;3900:18;3885:34;;3921:22;;;3882:62;3879:88;;;3947:18;;:::i;:::-;3983:2;3976:22;3729:275;;-1:-1:-1;3729:275:1:o;4009:186::-;4057:4;4090:18;4082:6;4079:30;4076:56;;;4112:18;;:::i;:::-;-1:-1:-1;4178:2:1;4157:15;-1:-1:-1;;4153:29:1;4184:4;4149:40;;4009:186::o;4200:1016::-;4295:6;4303;4311;4319;4372:3;4360:9;4351:7;4347:23;4343:33;4340:53;;;4389:1;4386;4379:12;4340:53;4428:9;4415:23;4447:31;4472:5;4447:31;:::i;:::-;4497:5;-1:-1:-1;4554:2:1;4539:18;;4526:32;4567:33;4526:32;4567:33;:::i;:::-;4619:7;-1:-1:-1;4673:2:1;4658:18;;4645:32;;-1:-1:-1;4728:2:1;4713:18;;4700:32;4755:18;4744:30;;4741:50;;;4787:1;4784;4777:12;4741:50;4810:22;;4863:4;4855:13;;4851:27;-1:-1:-1;4841:55:1;;4892:1;4889;4882:12;4841:55;4928:2;4915:16;4953:48;4969:31;4997:2;4969:31;:::i;:::-;4953:48;:::i;:::-;5024:2;5017:5;5010:17;5064:7;5059:2;5054;5050;5046:11;5042:20;5039:33;5036:53;;;5085:1;5082;5075:12;5036:53;5140:2;5135;5131;5127:11;5122:2;5115:5;5111:14;5098:45;5184:1;5179:2;5174;5167:5;5163:14;5159:23;5152:34;5205:5;5195:15;;;;;4200:1016;;;;;;;:::o;5500:388::-;5568:6;5576;5629:2;5617:9;5608:7;5604:23;5600:32;5597:52;;;5645:1;5642;5635:12;5597:52;5684:9;5671:23;5703:31;5728:5;5703:31;:::i;:::-;5753:5;-1:-1:-1;5810:2:1;5795:18;;5782:32;5823:33;5782:32;5823:33;:::i;5893:380::-;5972:1;5968:12;;;;6015;;;6036:61;;6090:4;6082:6;6078:17;6068:27;;6036:61;6143:2;6135:6;6132:14;6112:18;6109:38;6106:161;;6189:10;6184:3;6180:20;6177:1;6170:31;6224:4;6221:1;6214:15;6252:4;6249:1;6242:15;6106:161;;5893:380;;;:::o;7518:413::-;7720:2;7702:21;;;7759:2;7739:18;;;7732:30;7798:34;7793:2;7778:18;;7771:62;-1:-1:-1;;;7864:2:1;7849:18;;7842:47;7921:3;7906:19;;7518:413::o;8757:356::-;8959:2;8941:21;;;8978:18;;;8971:30;9037:34;9032:2;9017:18;;9010:62;9104:2;9089:18;;8757:356::o;9118:251::-;9188:6;9241:2;9229:9;9220:7;9216:23;9212:32;9209:52;;;9257:1;9254;9247:12;9209:52;9289:9;9283:16;9308:31;9333:5;9308:31;:::i;10161:245::-;10228:6;10281:2;10269:9;10260:7;10256:23;10252:32;10249:52;;;10297:1;10294;10287:12;10249:52;10329:9;10323:16;10348:28;10370:5;10348:28;:::i;11882:635::-;11962:6;12015:2;12003:9;11994:7;11990:23;11986:32;11983:52;;;12031:1;12028;12021:12;11983:52;12064:9;12058:16;12097:18;12089:6;12086:30;12083:50;;;12129:1;12126;12119:12;12083:50;12152:22;;12205:4;12197:13;;12193:27;-1:-1:-1;12183:55:1;;12234:1;12231;12224:12;12183:55;12263:2;12257:9;12288:48;12304:31;12332:2;12304:31;:::i;12288:48::-;12359:2;12352:5;12345:17;12399:7;12394:2;12389;12385;12381:11;12377:20;12374:33;12371:53;;;12420:1;12417;12410:12;12371:53;12433:54;12484:2;12479;12472:5;12468:14;12463:2;12459;12455:11;12433:54;:::i;:::-;12506:5;11882:635;-1:-1:-1;;;;;11882:635:1:o;14157:127::-;14218:10;14213:3;14209:20;14206:1;14199:31;14249:4;14246:1;14239:15;14273:4;14270:1;14263:15;14289:125;14329:4;14357:1;14354;14351:8;14348:34;;;14362:18;;:::i;:::-;-1:-1:-1;14399:9:1;;14289:125::o;14419:128::-;14459:3;14490:1;14486:6;14483:1;14480:13;14477:39;;;14496:18;;:::i;:::-;-1:-1:-1;14532:9:1;;14419:128::o;15624:414::-;15826:2;15808:21;;;15865:2;15845:18;;;15838:30;15904:34;15899:2;15884:18;;15877:62;-1:-1:-1;;;15970:2:1;15955:18;;15948:48;16028:3;16013:19;;15624:414::o;16043:489::-;-1:-1:-1;;;;;16312:15:1;;;16294:34;;16364:15;;16359:2;16344:18;;16337:43;16411:2;16396:18;;16389:34;;;16459:3;16454:2;16439:18;;16432:31;;;16237:4;;16480:46;;16506:19;;16498:6;16480:46;:::i;:::-;16472:54;16043:489;-1:-1:-1;;;;;;16043:489:1:o;16537:249::-;16606:6;16659:2;16647:9;16638:7;16634:23;16630:32;16627:52;;;16675:1;16672;16665:12;16627:52;16707:9;16701:16;16726:30;16750:5;16726:30;:::i

Swarm Source

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