ETH Price: $3,335.26 (-1.19%)
Gas: 11 Gwei

Token

Poopinggoblinz (PUPPER)
 

Overview

Max Total Supply

2,382 PUPPER

Holders

269

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
clitorus.eth
Balance
5 PUPPER
0x2a7b50f2fbdefd9caff33cb386d87269ef5abfcd
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:
Poopinggoblinz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-03
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.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 overridden 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

// File: contracts/Poopinggoblinz.sol



pragma solidity >=0.7.0 <0.9.0;




contract Poopinggoblinz is ERC721, Pausable, Ownable {
    using Strings for uint256;

    constructor(
    ) ERC721("Poopinggoblinz", "PUPPER") {
        _prependURI = "ipfs://QmaL3enU1sxG6c6DyoxUAWmbB3UarZWZqETdN89duB8ccq/";
        _appendURI = ".json";
        
        _price = 0.01 ether;

        _maxSupplyPlusOne = 10001;
        _maxTokensPerTransactionPlusOne = 21;
        _freePooperzPlusOne = 1501;
        
        _safeMint(1, msg.sender);
    }

    //MAX PER TRANSACTION__________________________________________________________
    uint256 private _maxTokensPerTransactionPlusOne;

    function maxTokensPerTransaction() public view returns(uint256) {
        return _maxTokensPerTransactionPlusOne-1;
    }

    function setMaxTokensPerTransaction(uint256 _newValue) public onlyOwner {
        _maxTokensPerTransactionPlusOne = _newValue + 1;
    }

    //ID COUNTER___________________________________________________________________
    uint256 private _tokenIdCounter;
    
    //TOTAL SUPPLY_________________________________________________________________
    function totalSupply() public view returns (uint256) {
        return _tokenIdCounter;
    }

    //FREE POOPERZ_________________________________________________________________
    uint256 private _freePooperzPlusOne;

    function freePooperz() public view returns (uint256) {
        return _freePooperzPlusOne - 1;
    }
    
    function setFreePooperz(uint256 _value) public onlyOwner {
        _freePooperzPlusOne = _value+1;
    }

    //PRICE________________________________________________________________________
    uint256 private _price;

    function price() public view returns (uint256) {
        return _price;
    }
    
    function setPrice(uint256 _value) public onlyOwner {
        _price = _value;
    }

    //URI_________________________________________________________________________
    string private _prependURI;
    string private _appendURI;

    function prependURI() public view onlyOwner returns (string memory) {
        return _prependURI;
    }

    function appendURI() public view onlyOwner returns (string memory) {
        return _appendURI;
    }

    function setPrependURI(string memory _newValue) public onlyOwner {
        _prependURI = _newValue;
    }

    function setAppendURI(string memory _newValue) public onlyOwner {
        _appendURI = _newValue;
    }

    function tokenURI(uint256 _id) public view override returns (string memory) {
        return string(abi.encodePacked(_prependURI, _id.toString(), _appendURI));
    }

    //MAX SUPPLY__________________________________________________________________
    uint256 private _maxSupplyPlusOne;

    function maxSupply() public view returns (uint256) {
        return _maxSupplyPlusOne - 1;
    }

    function setMaxSupply(uint _val) public {
        _maxSupplyPlusOne = _val + 1;
    }

    //PAUSE_______________________________________________________________________
    function pause() public {
        _pause();
    }

    function unpause() public {
        _unpause();
    }

    //MINT________________________________________________________________________
    function safeMint(uint256 _amount, address _target) public onlyGang {
        _safeMint(_amount, _target);
    }

    function _safeMint(uint256 _amount, address _target) internal {
        require(
            _amount < _maxTokensPerTransactionPlusOne,
            "exceeded the amount of tokens per transaction"
        );

        require(
            _amount + totalSupply() < _maxSupplyPlusOne,
            "token max supply overflow"
        );

        for (uint256 i = 0; i < _amount; i++) {
            _safeMint(_target, _tokenIdCounter);
            _tokenIdCounter++;
        }
    }

    function mint(uint256 _amount) public payable {
        require(msg.sender == tx.origin, "be yourself");

        if(totalSupply() < _freePooperzPlusOne)
            require(totalSupply() + _amount < _freePooperzPlusOne, "can't mint payed and free pooperz in the same transaction");

        require(
            msg.value >= _price * _amount || totalSupply() < _freePooperzPlusOne,
            "pledge more cooooiiin to the goblinz mazteeeeers"
        );
        _safeMint(_amount, msg.sender);
    }
    
    address private _kingPooper =       0xfdE20E3091B3425a9385F9B1103234C3EBeF299e;
    address private _mazterPooper =     0x481D5bca5f433459cf300aceE2dfE38463d2F161;
    address private _penceelGoblin =    0x3f26f98f81dAc01f903A8cd9C1294E5c4C4fde8d;
    address private _keebowrdGoblin =   0x300A2Aa8c0eD8fac7ff04a69A542aD15Df84b894;

    modifier onlyGang() {
        require (
            msg.sender == _kingPooper    ||
            msg.sender == _mazterPooper     ||
            msg.sender == _penceelGoblin    ||
            msg.sender == _keebowrdGoblin,
            "You are not from The Goblin Gang! (spits on you)"
        );
        _;
    }

    function withdraw() public onlyGang {
        uint256 balance = address(this).balance;
        uint256 portion = balance/4;
        payable(_kingPooper).transfer(portion);
        payable(_mazterPooper).transfer(portion);
        payable(_penceelGoblin).transfer(portion);
        payable(_keebowrdGoblin).transfer(balance - (portion*3));
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721) whenNotPaused {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    // The following functions are overrides required by Solidity.

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"appendURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"freePooperz","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prependURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_target","type":"address"}],"name":"safeMint","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":"string","name":"_newValue","type":"string"}],"name":"setAppendURI","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":"uint256","name":"_value","type":"uint256"}],"name":"setFreePooperz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_val","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newValue","type":"uint256"}],"name":"setMaxTokensPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newValue","type":"string"}],"name":"setPrependURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setPrice","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":"_id","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600e80546001600160a01b031990811673fde20e3091b3425a9385f9b1103234c3ebef299e17909155600f8054821673481d5bca5f433459cf300acee2dfe38463d2f161179055601080548216733f26f98f81dac01f903a8cd9c1294e5c4c4fde8d1790556011805490911673300a2aa8c0ed8fac7ff04a69a542ad15df84b8941790553480156200009557600080fd5b50604080518082018252600e81526d2837b7b834b733b3b7b13634b73d60911b602080830191825283518085019094526006845265282aa82822a960d11b908401528151919291620000ea91600091620006e8565b50805162000100906001906020840190620006e8565b50506006805460ff19169055506200011833620001a7565b60405180606001604052806036815260200162002bc36036913980516200014891600b91602090910190620006e8565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200017791600c91620006e8565b50662386f26fc10000600a55612711600d5560156007556105dd600955620001a160013362000201565b620008c8565b600680546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60075482106200026e5760405162461bcd60e51b815260206004820152602d60248201527f65786365656465642074686520616d6f756e74206f6620746f6b656e7320706560448201526c39103a3930b739b0b1ba34b7b760991b60648201526084015b60405180910390fd5b600d546008546200028090846200083c565b10620002cf5760405162461bcd60e51b815260206004820152601960248201527f746f6b656e206d617820737570706c79206f766572666c6f7700000000000000604482015260640162000265565b60005b828110156200031c57620002ef826008546200032160201b60201c565b60088054906000620003018362000894565b91905055508080620003139062000894565b915050620002d2565b505050565b620003438282604051806020016040528060008152506200034760201b60201c565b5050565b620003538383620003ba565b62000362600084848462000510565b6200031c5760405162461bcd60e51b8152602060048201526032602482015260008051602062002ba383398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000265565b6001600160a01b038216620004125760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000265565b6000818152600260205260409020546001600160a01b031615620004795760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000265565b620004876000838362000679565b6001600160a01b0382166000908152600360205260408120805460019290620004b29084906200083c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000531846001600160a01b0316620006d960201b6200109d1760201c565b156200066d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200056b903390899088908890600401620007c1565b602060405180830381600087803b1580156200058657600080fd5b505af1925050508015620005b9575060408051601f3d908101601f19168201909252620005b6918101906200078e565b60015b62000652573d808015620005ea576040519150601f19603f3d011682016040523d82523d6000602084013e620005ef565b606091505b5080516200064a5760405162461bcd60e51b8152602060048201526032602482015260008051602062002ba383398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000265565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000671565b5060015b949350505050565b60065460ff1615620006c15760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640162000265565b6200031c8383836200031c60201b620008851760201c565b6001600160a01b03163b151590565b828054620006f69062000857565b90600052602060002090601f0160209004810192826200071a576000855562000765565b82601f106200073557805160ff191683800117855562000765565b8280016001018555821562000765579182015b828111156200076557825182559160200191906001019062000748565b506200077392915062000777565b5090565b5b8082111562000773576000815560010162000778565b600060208284031215620007a157600080fd5b81516001600160e01b031981168114620007ba57600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620008105785810182015185820160a001528101620007f2565b828111156200082357600060a084870101525b5050601f01601f19169190910160a00195945050505050565b60008219821115620008525762000852620008b2565b500190565b600181811c908216806200086c57607f821691505b602082108114156200088e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620008ab57620008ab620008b2565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6122cb80620008d86000396000f3fe6080604052600436106102045760003560e01c80638456cb5911610118578063b88d4fde116100a0578063d923814f1161006f578063d923814f14610579578063e6a776ae14610599578063e985e9c5146105b9578063f2fde38b14610602578063f85aff941461062257600080fd5b8063b88d4fde1461050f578063c87b56dd1461052f578063d21d4df61461054f578063d5abeb011461056457600080fd5b8063a035b1fe116100e7578063a035b1fe1461049d578063a0712d68146104b2578063a22cb465146104c5578063b3003cdd146104e5578063b58a7c68146104fa57600080fd5b80638456cb59146104305780638da5cb5b1461044557806391b7f5ed1461046857806395d89b411461048857600080fd5b80633ccfd60b1161019b57806362bdfceb1161016a57806362bdfceb1461039b5780636352211e146103bb5780636f8b44b0146103db57806370a08231146103fb578063715018a61461041b57600080fd5b80633ccfd60b146103395780633f4ba83a1461034e57806342842e0e146103635780635c975abb1461038357600080fd5b80631449d3e6116101d75780631449d3e6146102ba57806318160ddd146102da5780631ff02eda146102f957806323b872dd1461031957600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611dff565b610637565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610648565b6040516102359190611ff4565b34801561026c57600080fd5b5061028061027b366004611e82565b6106da565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611dd5565b610774565b005b3480156102c657600080fd5b506102b86102d5366004611e82565b61088a565b3480156102e657600080fd5b506008545b604051908152602001610235565b34801561030557600080fd5b506102b8610314366004611e39565b6108cb565b34801561032557600080fd5b506102b8610334366004611ce1565b610912565b34801561034557600080fd5b506102b8610943565b34801561035a57600080fd5b506102b8610ab8565b34801561036f57600080fd5b506102b861037e366004611ce1565b610ac2565b34801561038f57600080fd5b5060065460ff16610229565b3480156103a757600080fd5b506102b86103b6366004611e9b565b610add565b3480156103c757600080fd5b506102806103d6366004611e82565b610b50565b3480156103e757600080fd5b506102b86103f6366004611e82565b610bc7565b34801561040757600080fd5b506102eb610416366004611c8c565b610bd8565b34801561042757600080fd5b506102b8610c5f565b34801561043c57600080fd5b506102b8610c99565b34801561045157600080fd5b5060065461010090046001600160a01b0316610280565b34801561047457600080fd5b506102b8610483366004611e82565b610ca1565b34801561049457600080fd5b50610253610cd6565b3480156104a957600080fd5b50600a546102eb565b6102b86104c0366004611e82565b610ce5565b3480156104d157600080fd5b506102b86104e0366004611d99565b610e49565b3480156104f157600080fd5b50610253610e54565b34801561050657600080fd5b50610253610e94565b34801561051b57600080fd5b506102b861052a366004611d1d565b610ed4565b34801561053b57600080fd5b5061025361054a366004611e82565b610f0c565b34801561055b57600080fd5b506102eb610f43565b34801561057057600080fd5b506102eb610f59565b34801561058557600080fd5b506102b8610594366004611e39565b610f6a565b3480156105a557600080fd5b506102b86105b4366004611e82565b610fad565b3480156105c557600080fd5b506102296105d4366004611cae565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561060e57600080fd5b506102b861061d366004611c8c565b610fee565b34801561062e57600080fd5b506102eb61108c565b6000610642826110ac565b92915050565b606060008054610657906121bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610683906121bd565b80156106d05780601f106106a5576101008083540402835291602001916106d0565b820191906000526020600020905b8154815290600101906020018083116106b357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077f82610b50565b9050806001600160a01b0316836001600160a01b031614156107ed5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161074f565b336001600160a01b0382161480610809575061080981336105d4565b61087b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161074f565b61088583836110fc565b505050565b6006546001600160a01b036101009091041633146108ba5760405162461bcd60e51b815260040161074f906120a9565b6108c581600161212f565b60075550565b6006546001600160a01b036101009091041633146108fb5760405162461bcd60e51b815260040161074f906120a9565b805161090e90600b906020840190611b61565b5050565b61091c338261116a565b6109385760405162461bcd60e51b815260040161074f906120de565b610885838383611261565b600e546001600160a01b03163314806109665750600f546001600160a01b031633145b8061097b57506010546001600160a01b031633145b8061099057506011546001600160a01b031633145b6109ac5760405162461bcd60e51b815260040161074f90612059565b4760006109ba600483612147565b600e546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050501580156109f5573d6000803e3d6000fd5b50600f546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610a30573d6000803e3d6000fd5b506010546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610a6b573d6000803e3d6000fd5b506011546001600160a01b03166108fc610a8683600361215b565b610a90908561217a565b6040518115909202916000818181858888f19350505050158015610885573d6000803e3d6000fd5b610ac0611408565b565b61088583838360405180602001604052806000815250610ed4565b600e546001600160a01b0316331480610b005750600f546001600160a01b031633145b80610b1557506010546001600160a01b031633145b80610b2a57506011546001600160a01b031633145b610b465760405162461bcd60e51b815260040161074f90612059565b61090e828261149b565b6000818152600260205260408120546001600160a01b0316806106425760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161074f565b610bd281600161212f565b600d5550565b60006001600160a01b038216610c435760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161074f565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03610100909104163314610c8f5760405162461bcd60e51b815260040161074f906120a9565b610ac0600061159e565b610ac06115f8565b6006546001600160a01b03610100909104163314610cd15760405162461bcd60e51b815260040161074f906120a9565b600a55565b606060018054610657906121bd565b333214610d225760405162461bcd60e51b815260206004820152600b60248201526a3132903cb7bab939b2b63360a91b604482015260640161074f565b6009546008541015610db85760095481610d3b60085490565b610d45919061212f565b10610db85760405162461bcd60e51b815260206004820152603960248201527f63616e2774206d696e7420706179656420616e64206672656520706f6f70657260448201527f7a20696e207468652073616d65207472616e73616374696f6e00000000000000606482015260840161074f565b80600a54610dc6919061215b565b34101580610dd75750600954600854105b610e3c5760405162461bcd60e51b815260206004820152603060248201527f706c65646765206d6f726520636f6f6f6f6969696e20746f2074686520676f6260448201526f6c696e7a206d617a746565656565727360801b606482015260840161074f565b610e46813361149b565b50565b61090e338383611673565b6006546060906001600160a01b03610100909104163314610e875760405162461bcd60e51b815260040161074f906120a9565b600b8054610657906121bd565b6006546060906001600160a01b03610100909104163314610ec75760405162461bcd60e51b815260040161074f906120a9565b600c8054610657906121bd565b610ede338361116a565b610efa5760405162461bcd60e51b815260040161074f906120de565b610f0684848484611742565b50505050565b6060600b610f1983611775565b600c604051602001610f2d93929190611f84565b6040516020818303038152906040529050919050565b60006001600954610f54919061217a565b905090565b60006001600d54610f54919061217a565b6006546001600160a01b03610100909104163314610f9a5760405162461bcd60e51b815260040161074f906120a9565b805161090e90600c906020840190611b61565b6006546001600160a01b03610100909104163314610fdd5760405162461bcd60e51b815260040161074f906120a9565b610fe881600161212f565b60095550565b6006546001600160a01b0361010090910416331461101e5760405162461bcd60e51b815260040161074f906120a9565b6001600160a01b0381166110835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074f565b610e468161159e565b60006001600754610f54919061217a565b6001600160a01b03163b151590565b60006001600160e01b031982166380ac58cd60e01b14806110dd57506001600160e01b03198216635b5e139f60e01b145b8061064257506301ffc9a760e01b6001600160e01b0319831614610642565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061113182610b50565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111e35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161074f565b60006111ee83610b50565b9050806001600160a01b0316846001600160a01b0316148061123557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806112595750836001600160a01b031661124e846106da565b6001600160a01b0316145b949350505050565b826001600160a01b031661127482610b50565b6001600160a01b0316146112d85760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161074f565b6001600160a01b03821661133a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161074f565b611345838383611873565b6113506000826110fc565b6001600160a01b038316600090815260036020526040812080546001929061137990849061217a565b90915550506001600160a01b03821660009081526003602052604081208054600192906113a790849061212f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60065460ff166114515760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161074f565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60075482106115025760405162461bcd60e51b815260206004820152602d60248201527f65786365656465642074686520616d6f756e74206f6620746f6b656e7320706560448201526c39103a3930b739b0b1ba34b7b760991b606482015260840161074f565b600d54600854611512908461212f565b1061155f5760405162461bcd60e51b815260206004820152601960248201527f746f6b656e206d617820737570706c79206f766572666c6f7700000000000000604482015260640161074f565b60005b8281101561088557611576826008546118b9565b60088054906000611586836121f8565b91905055508080611596906121f8565b915050611562565b600680546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60065460ff161561163e5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161074f565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861147e3390565b816001600160a01b0316836001600160a01b031614156116d55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161074f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61174d848484611261565b611759848484846118d3565b610f065760405162461bcd60e51b815260040161074f90612007565b6060816117995750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117c357806117ad816121f8565b91506117bc9050600a83612147565b915061179d565b60008167ffffffffffffffff8111156117de576117de612269565b6040519080825280601f01601f191660200182016040528015611808576020820181803683370190505b5090505b84156112595761181d60018361217a565b915061182a600a86612213565b61183590603061212f565b60f81b81838151811061184a5761184a612253565b60200101906001600160f81b031916908160001a90535061186c600a86612147565b945061180c565b60065460ff16156108855760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161074f565b61090e8282604051806020016040528060008152506119e0565b60006001600160a01b0384163b156119d557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611917903390899088908890600401611fb7565b602060405180830381600087803b15801561193157600080fd5b505af1925050508015611961575060408051601f3d908101601f1916820190925261195e91810190611e1c565b60015b6119bb573d80801561198f576040519150601f19603f3d011682016040523d82523d6000602084013e611994565b606091505b5080516119b35760405162461bcd60e51b815260040161074f90612007565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611259565b506001949350505050565b6119ea8383611a13565b6119f760008484846118d3565b6108855760405162461bcd60e51b815260040161074f90612007565b6001600160a01b038216611a695760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161074f565b6000818152600260205260409020546001600160a01b031615611ace5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074f565b611ada60008383611873565b6001600160a01b0382166000908152600360205260408120805460019290611b0390849061212f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b6d906121bd565b90600052602060002090601f016020900481019282611b8f5760008555611bd5565b82601f10611ba857805160ff1916838001178555611bd5565b82800160010185558215611bd5579182015b82811115611bd5578251825591602001919060010190611bba565b50611be1929150611be5565b5090565b5b80821115611be15760008155600101611be6565b600067ffffffffffffffff80841115611c1557611c15612269565b604051601f8501601f19908116603f01168101908282118183101715611c3d57611c3d612269565b81604052809350858152868686011115611c5657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c8757600080fd5b919050565b600060208284031215611c9e57600080fd5b611ca782611c70565b9392505050565b60008060408385031215611cc157600080fd5b611cca83611c70565b9150611cd860208401611c70565b90509250929050565b600080600060608486031215611cf657600080fd5b611cff84611c70565b9250611d0d60208501611c70565b9150604084013590509250925092565b60008060008060808587031215611d3357600080fd5b611d3c85611c70565b9350611d4a60208601611c70565b925060408501359150606085013567ffffffffffffffff811115611d6d57600080fd5b8501601f81018713611d7e57600080fd5b611d8d87823560208401611bfa565b91505092959194509250565b60008060408385031215611dac57600080fd5b611db583611c70565b915060208301358015158114611dca57600080fd5b809150509250929050565b60008060408385031215611de857600080fd5b611df183611c70565b946020939093013593505050565b600060208284031215611e1157600080fd5b8135611ca78161227f565b600060208284031215611e2e57600080fd5b8151611ca78161227f565b600060208284031215611e4b57600080fd5b813567ffffffffffffffff811115611e6257600080fd5b8201601f81018413611e7357600080fd5b61125984823560208401611bfa565b600060208284031215611e9457600080fd5b5035919050565b60008060408385031215611eae57600080fd5b82359150611cd860208401611c70565b60008151808452611ed6816020860160208601612191565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611f0457607f831692505b6020808410821415611f2657634e487b7160e01b600052602260045260246000fd5b818015611f3a5760018114611f4b57611f78565b60ff19861689528489019650611f78565b60008881526020902060005b86811015611f705781548b820152908501908301611f57565b505084890196505b50505050505092915050565b6000611f908286611eea565b8451611fa0818360208901612191565b611fac81830186611eea565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fea90830184611ebe565b9695505050505050565b602081526000611ca76020830184611ebe565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526030908201527f596f7520617265206e6f742066726f6d2054686520476f626c696e2047616e6760408201526f2120287370697473206f6e20796f752960801b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561214257612142612227565b500190565b6000826121565761215661223d565b500490565b600081600019048311821515161561217557612175612227565b500290565b60008282101561218c5761218c612227565b500390565b60005b838110156121ac578181015183820152602001612194565b83811115610f065750506000910152565b600181811c908216806121d157607f821691505b602082108114156121f257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561220c5761220c612227565b5060010190565b6000826122225761222261223d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e4657600080fdfea2646970667358221220480a30ca95baf1c7897577674b9642b98ad8a02a3b005a1e1abb8cbea6767d2164736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e204552433732315265697066733a2f2f516d614c33656e553173784736633644796f785541576d6242335561725a575a714554644e3839647542386363712f

Deployed Bytecode

0x6080604052600436106102045760003560e01c80638456cb5911610118578063b88d4fde116100a0578063d923814f1161006f578063d923814f14610579578063e6a776ae14610599578063e985e9c5146105b9578063f2fde38b14610602578063f85aff941461062257600080fd5b8063b88d4fde1461050f578063c87b56dd1461052f578063d21d4df61461054f578063d5abeb011461056457600080fd5b8063a035b1fe116100e7578063a035b1fe1461049d578063a0712d68146104b2578063a22cb465146104c5578063b3003cdd146104e5578063b58a7c68146104fa57600080fd5b80638456cb59146104305780638da5cb5b1461044557806391b7f5ed1461046857806395d89b411461048857600080fd5b80633ccfd60b1161019b57806362bdfceb1161016a57806362bdfceb1461039b5780636352211e146103bb5780636f8b44b0146103db57806370a08231146103fb578063715018a61461041b57600080fd5b80633ccfd60b146103395780633f4ba83a1461034e57806342842e0e146103635780635c975abb1461038357600080fd5b80631449d3e6116101d75780631449d3e6146102ba57806318160ddd146102da5780631ff02eda146102f957806323b872dd1461031957600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611dff565b610637565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610648565b6040516102359190611ff4565b34801561026c57600080fd5b5061028061027b366004611e82565b6106da565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611dd5565b610774565b005b3480156102c657600080fd5b506102b86102d5366004611e82565b61088a565b3480156102e657600080fd5b506008545b604051908152602001610235565b34801561030557600080fd5b506102b8610314366004611e39565b6108cb565b34801561032557600080fd5b506102b8610334366004611ce1565b610912565b34801561034557600080fd5b506102b8610943565b34801561035a57600080fd5b506102b8610ab8565b34801561036f57600080fd5b506102b861037e366004611ce1565b610ac2565b34801561038f57600080fd5b5060065460ff16610229565b3480156103a757600080fd5b506102b86103b6366004611e9b565b610add565b3480156103c757600080fd5b506102806103d6366004611e82565b610b50565b3480156103e757600080fd5b506102b86103f6366004611e82565b610bc7565b34801561040757600080fd5b506102eb610416366004611c8c565b610bd8565b34801561042757600080fd5b506102b8610c5f565b34801561043c57600080fd5b506102b8610c99565b34801561045157600080fd5b5060065461010090046001600160a01b0316610280565b34801561047457600080fd5b506102b8610483366004611e82565b610ca1565b34801561049457600080fd5b50610253610cd6565b3480156104a957600080fd5b50600a546102eb565b6102b86104c0366004611e82565b610ce5565b3480156104d157600080fd5b506102b86104e0366004611d99565b610e49565b3480156104f157600080fd5b50610253610e54565b34801561050657600080fd5b50610253610e94565b34801561051b57600080fd5b506102b861052a366004611d1d565b610ed4565b34801561053b57600080fd5b5061025361054a366004611e82565b610f0c565b34801561055b57600080fd5b506102eb610f43565b34801561057057600080fd5b506102eb610f59565b34801561058557600080fd5b506102b8610594366004611e39565b610f6a565b3480156105a557600080fd5b506102b86105b4366004611e82565b610fad565b3480156105c557600080fd5b506102296105d4366004611cae565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561060e57600080fd5b506102b861061d366004611c8c565b610fee565b34801561062e57600080fd5b506102eb61108c565b6000610642826110ac565b92915050565b606060008054610657906121bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610683906121bd565b80156106d05780601f106106a5576101008083540402835291602001916106d0565b820191906000526020600020905b8154815290600101906020018083116106b357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077f82610b50565b9050806001600160a01b0316836001600160a01b031614156107ed5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161074f565b336001600160a01b0382161480610809575061080981336105d4565b61087b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161074f565b61088583836110fc565b505050565b6006546001600160a01b036101009091041633146108ba5760405162461bcd60e51b815260040161074f906120a9565b6108c581600161212f565b60075550565b6006546001600160a01b036101009091041633146108fb5760405162461bcd60e51b815260040161074f906120a9565b805161090e90600b906020840190611b61565b5050565b61091c338261116a565b6109385760405162461bcd60e51b815260040161074f906120de565b610885838383611261565b600e546001600160a01b03163314806109665750600f546001600160a01b031633145b8061097b57506010546001600160a01b031633145b8061099057506011546001600160a01b031633145b6109ac5760405162461bcd60e51b815260040161074f90612059565b4760006109ba600483612147565b600e546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050501580156109f5573d6000803e3d6000fd5b50600f546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610a30573d6000803e3d6000fd5b506010546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610a6b573d6000803e3d6000fd5b506011546001600160a01b03166108fc610a8683600361215b565b610a90908561217a565b6040518115909202916000818181858888f19350505050158015610885573d6000803e3d6000fd5b610ac0611408565b565b61088583838360405180602001604052806000815250610ed4565b600e546001600160a01b0316331480610b005750600f546001600160a01b031633145b80610b1557506010546001600160a01b031633145b80610b2a57506011546001600160a01b031633145b610b465760405162461bcd60e51b815260040161074f90612059565b61090e828261149b565b6000818152600260205260408120546001600160a01b0316806106425760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161074f565b610bd281600161212f565b600d5550565b60006001600160a01b038216610c435760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161074f565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03610100909104163314610c8f5760405162461bcd60e51b815260040161074f906120a9565b610ac0600061159e565b610ac06115f8565b6006546001600160a01b03610100909104163314610cd15760405162461bcd60e51b815260040161074f906120a9565b600a55565b606060018054610657906121bd565b333214610d225760405162461bcd60e51b815260206004820152600b60248201526a3132903cb7bab939b2b63360a91b604482015260640161074f565b6009546008541015610db85760095481610d3b60085490565b610d45919061212f565b10610db85760405162461bcd60e51b815260206004820152603960248201527f63616e2774206d696e7420706179656420616e64206672656520706f6f70657260448201527f7a20696e207468652073616d65207472616e73616374696f6e00000000000000606482015260840161074f565b80600a54610dc6919061215b565b34101580610dd75750600954600854105b610e3c5760405162461bcd60e51b815260206004820152603060248201527f706c65646765206d6f726520636f6f6f6f6969696e20746f2074686520676f6260448201526f6c696e7a206d617a746565656565727360801b606482015260840161074f565b610e46813361149b565b50565b61090e338383611673565b6006546060906001600160a01b03610100909104163314610e875760405162461bcd60e51b815260040161074f906120a9565b600b8054610657906121bd565b6006546060906001600160a01b03610100909104163314610ec75760405162461bcd60e51b815260040161074f906120a9565b600c8054610657906121bd565b610ede338361116a565b610efa5760405162461bcd60e51b815260040161074f906120de565b610f0684848484611742565b50505050565b6060600b610f1983611775565b600c604051602001610f2d93929190611f84565b6040516020818303038152906040529050919050565b60006001600954610f54919061217a565b905090565b60006001600d54610f54919061217a565b6006546001600160a01b03610100909104163314610f9a5760405162461bcd60e51b815260040161074f906120a9565b805161090e90600c906020840190611b61565b6006546001600160a01b03610100909104163314610fdd5760405162461bcd60e51b815260040161074f906120a9565b610fe881600161212f565b60095550565b6006546001600160a01b0361010090910416331461101e5760405162461bcd60e51b815260040161074f906120a9565b6001600160a01b0381166110835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074f565b610e468161159e565b60006001600754610f54919061217a565b6001600160a01b03163b151590565b60006001600160e01b031982166380ac58cd60e01b14806110dd57506001600160e01b03198216635b5e139f60e01b145b8061064257506301ffc9a760e01b6001600160e01b0319831614610642565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061113182610b50565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111e35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161074f565b60006111ee83610b50565b9050806001600160a01b0316846001600160a01b0316148061123557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806112595750836001600160a01b031661124e846106da565b6001600160a01b0316145b949350505050565b826001600160a01b031661127482610b50565b6001600160a01b0316146112d85760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161074f565b6001600160a01b03821661133a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161074f565b611345838383611873565b6113506000826110fc565b6001600160a01b038316600090815260036020526040812080546001929061137990849061217a565b90915550506001600160a01b03821660009081526003602052604081208054600192906113a790849061212f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60065460ff166114515760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161074f565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60075482106115025760405162461bcd60e51b815260206004820152602d60248201527f65786365656465642074686520616d6f756e74206f6620746f6b656e7320706560448201526c39103a3930b739b0b1ba34b7b760991b606482015260840161074f565b600d54600854611512908461212f565b1061155f5760405162461bcd60e51b815260206004820152601960248201527f746f6b656e206d617820737570706c79206f766572666c6f7700000000000000604482015260640161074f565b60005b8281101561088557611576826008546118b9565b60088054906000611586836121f8565b91905055508080611596906121f8565b915050611562565b600680546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60065460ff161561163e5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161074f565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861147e3390565b816001600160a01b0316836001600160a01b031614156116d55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161074f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61174d848484611261565b611759848484846118d3565b610f065760405162461bcd60e51b815260040161074f90612007565b6060816117995750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117c357806117ad816121f8565b91506117bc9050600a83612147565b915061179d565b60008167ffffffffffffffff8111156117de576117de612269565b6040519080825280601f01601f191660200182016040528015611808576020820181803683370190505b5090505b84156112595761181d60018361217a565b915061182a600a86612213565b61183590603061212f565b60f81b81838151811061184a5761184a612253565b60200101906001600160f81b031916908160001a90535061186c600a86612147565b945061180c565b60065460ff16156108855760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161074f565b61090e8282604051806020016040528060008152506119e0565b60006001600160a01b0384163b156119d557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611917903390899088908890600401611fb7565b602060405180830381600087803b15801561193157600080fd5b505af1925050508015611961575060408051601f3d908101601f1916820190925261195e91810190611e1c565b60015b6119bb573d80801561198f576040519150601f19603f3d011682016040523d82523d6000602084013e611994565b606091505b5080516119b35760405162461bcd60e51b815260040161074f90612007565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611259565b506001949350505050565b6119ea8383611a13565b6119f760008484846118d3565b6108855760405162461bcd60e51b815260040161074f90612007565b6001600160a01b038216611a695760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161074f565b6000818152600260205260409020546001600160a01b031615611ace5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074f565b611ada60008383611873565b6001600160a01b0382166000908152600360205260408120805460019290611b0390849061212f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b6d906121bd565b90600052602060002090601f016020900481019282611b8f5760008555611bd5565b82601f10611ba857805160ff1916838001178555611bd5565b82800160010185558215611bd5579182015b82811115611bd5578251825591602001919060010190611bba565b50611be1929150611be5565b5090565b5b80821115611be15760008155600101611be6565b600067ffffffffffffffff80841115611c1557611c15612269565b604051601f8501601f19908116603f01168101908282118183101715611c3d57611c3d612269565b81604052809350858152868686011115611c5657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c8757600080fd5b919050565b600060208284031215611c9e57600080fd5b611ca782611c70565b9392505050565b60008060408385031215611cc157600080fd5b611cca83611c70565b9150611cd860208401611c70565b90509250929050565b600080600060608486031215611cf657600080fd5b611cff84611c70565b9250611d0d60208501611c70565b9150604084013590509250925092565b60008060008060808587031215611d3357600080fd5b611d3c85611c70565b9350611d4a60208601611c70565b925060408501359150606085013567ffffffffffffffff811115611d6d57600080fd5b8501601f81018713611d7e57600080fd5b611d8d87823560208401611bfa565b91505092959194509250565b60008060408385031215611dac57600080fd5b611db583611c70565b915060208301358015158114611dca57600080fd5b809150509250929050565b60008060408385031215611de857600080fd5b611df183611c70565b946020939093013593505050565b600060208284031215611e1157600080fd5b8135611ca78161227f565b600060208284031215611e2e57600080fd5b8151611ca78161227f565b600060208284031215611e4b57600080fd5b813567ffffffffffffffff811115611e6257600080fd5b8201601f81018413611e7357600080fd5b61125984823560208401611bfa565b600060208284031215611e9457600080fd5b5035919050565b60008060408385031215611eae57600080fd5b82359150611cd860208401611c70565b60008151808452611ed6816020860160208601612191565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611f0457607f831692505b6020808410821415611f2657634e487b7160e01b600052602260045260246000fd5b818015611f3a5760018114611f4b57611f78565b60ff19861689528489019650611f78565b60008881526020902060005b86811015611f705781548b820152908501908301611f57565b505084890196505b50505050505092915050565b6000611f908286611eea565b8451611fa0818360208901612191565b611fac81830186611eea565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fea90830184611ebe565b9695505050505050565b602081526000611ca76020830184611ebe565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526030908201527f596f7520617265206e6f742066726f6d2054686520476f626c696e2047616e6760408201526f2120287370697473206f6e20796f752960801b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561214257612142612227565b500190565b6000826121565761215661223d565b500490565b600081600019048311821515161561217557612175612227565b500290565b60008282101561218c5761218c612227565b500390565b60005b838110156121ac578181015183820152602001612194565b83811115610f065750506000910152565b600181811c908216806121d157607f821691505b602082108114156121f257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561220c5761220c612227565b5060010190565b6000826122225761222261223d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e4657600080fdfea2646970667358221220480a30ca95baf1c7897577674b9642b98ad8a02a3b005a1e1abb8cbea6767d2164736f6c63430008070033

Deployed Bytecode Sourcemap

39666:5932:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45401:194;;;;;;;;;;-1:-1:-1;45401:194:0;;;;;:::i;:::-;;:::i;:::-;;;6869:14:1;;6862:22;6844:41;;6832:2;6817:18;45401:194:0;;;;;;;;27410:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28970:221::-;;;;;;;;;;-1:-1:-1;28970:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6167:32:1;;;6149:51;;6137:2;6122:18;28970:221:0;6003:203:1;28493:411:0;;;;;;;;;;-1:-1:-1;28493:411:0;;;;;:::i;:::-;;:::i;:::-;;40422:138;;;;;;;;;;-1:-1:-1;40422:138:0;;;;;:::i;:::-;;:::i;40782:94::-;;;;;;;;;;-1:-1:-1;40853:15:0;;40782:94;;;16290:25:1;;;16278:2;16263:18;40782:94:0;16144:177:1;41916:107:0;;;;;;;;;;-1:-1:-1;41916:107:0;;;;;:::i;:::-;;:::i;29720:339::-;;;;;;;;;;-1:-1:-1;29720:339:0;;;;;:::i;:::-;;:::i;44753:351::-;;;;;;;;;;;;;:::i;42789:55::-;;;;;;;;;;;;;:::i;30130:185::-;;;;;;;;;;-1:-1:-1;30130:185:0;;;;;:::i;:::-;;:::i;6679:86::-;;;;;;;;;;-1:-1:-1;6750:7:0;;;;6679:86;;42936:114;;;;;;;;;;-1:-1:-1;42936:114:0;;;;;:::i;:::-;;:::i;27104:239::-;;;;;;;;;;-1:-1:-1;27104:239:0;;;;;:::i;:::-;;:::i;42551:87::-;;;;;;;;;;-1:-1:-1;42551:87:0;;;;;:::i;:::-;;:::i;26834:208::-;;;;;;;;;;-1:-1:-1;26834:208:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;42730:51::-;;;;;;;;;;;;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4152:6:0;;;;;-1:-1:-1;;;;;4152:6:0;4079:87;;41448:85;;;;;;;;;;-1:-1:-1;41448:85:0;;;;;:::i;:::-;;:::i;27579:104::-;;;;;;;;;;;;;:::i;41357:79::-;;;;;;;;;;-1:-1:-1;41422:6:0;;41357:79;;43558:513;;;;;;:::i;:::-;;:::i;29263:155::-;;;;;;;;;;-1:-1:-1;29263:155:0;;;;;:::i;:::-;;:::i;41692:105::-;;;;;;;;;;;;;:::i;41805:103::-;;;;;;;;;;;;;:::i;30386:328::-;;;;;;;;;;-1:-1:-1;30386:328:0;;;;;:::i;:::-;;:::i;42144:167::-;;;;;;;;;;-1:-1:-1;42144:167:0;;;;;:::i;:::-;;:::i;41013:102::-;;;;;;;;;;;;;:::i;42445:98::-;;;;;;;;;;;;;:::i;42031:105::-;;;;;;;;;;-1:-1:-1;42031:105:0;;;;;:::i;:::-;;:::i;41127:106::-;;;;;;;;;;-1:-1:-1;41127:106:0;;;;;:::i;:::-;;:::i;29489:164::-;;;;;;;;;;-1:-1:-1;29489:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29610:25:0;;;29586:4;29610:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29489:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;40291:123::-;;;;;;;;;;;;;:::i;45401:194::-;45522:4;45551:36;45575:11;45551:23;:36::i;:::-;45544:43;45401:194;-1:-1:-1;;45401:194:0:o;27410:100::-;27464:13;27497:5;27490:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27410:100;:::o;28970:221::-;29046:7;32313:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32313:16:0;29066:73;;;;-1:-1:-1;;;29066:73:0;;13581:2:1;29066:73:0;;;13563:21:1;13620:2;13600:18;;;13593:30;13659:34;13639:18;;;13632:62;-1:-1:-1;;;13710:18:1;;;13703:42;13762:19;;29066:73:0;;;;;;;;;-1:-1:-1;29159:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29159:24:0;;28970:221::o;28493:411::-;28574:13;28590:23;28605:7;28590:14;:23::i;:::-;28574:39;;28638:5;-1:-1:-1;;;;;28632:11:0;:2;-1:-1:-1;;;;;28632:11:0;;;28624:57;;;;-1:-1:-1;;;28624:57:0;;14769:2:1;28624:57:0;;;14751:21:1;14808:2;14788:18;;;14781:30;14847:34;14827:18;;;14820:62;-1:-1:-1;;;14898:18:1;;;14891:31;14939:19;;28624:57:0;14567:397:1;28624:57:0;2883:10;-1:-1:-1;;;;;28716:21:0;;;;:62;;-1:-1:-1;28741:37:0;28758:5;2883:10;29489:164;:::i;28741:37::-;28694:168;;;;-1:-1:-1;;;28694:168:0;;11548:2:1;28694:168:0;;;11530:21:1;11587:2;11567:18;;;11560:30;11626:34;11606:18;;;11599:62;11697:26;11677:18;;;11670:54;11741:19;;28694:168:0;11346:420:1;28694:168:0;28875:21;28884:2;28888:7;28875:8;:21::i;:::-;28563:341;28493:411;;:::o;40422:138::-;4152:6;;-1:-1:-1;;;;;4152:6:0;;;;;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;40539:13:::1;:9:::0;40551:1:::1;40539:13;:::i;:::-;40505:31;:47:::0;-1:-1:-1;40422:138:0:o;41916:107::-;4152:6;;-1:-1:-1;;;;;4152:6:0;;;;;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;41992:23;;::::1;::::0;:11:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41916:107:::0;:::o;29720:339::-;29915:41;2883:10;29948:7;29915:18;:41::i;:::-;29907:103;;;;-1:-1:-1;;;29907:103:0;;;;;;;:::i;:::-;30023:28;30033:4;30039:2;30043:7;30023:9;:28::i;44753:351::-;44493:11;;-1:-1:-1;;;;;44493:11:0;44479:10;:25;;:72;;-1:-1:-1;44538:13:0;;-1:-1:-1;;;;;44538:13:0;44524:10;:27;44479:72;:121;;;-1:-1:-1;44586:14:0;;-1:-1:-1;;;;;44586:14:0;44572:10;:28;44479:121;:170;;;-1:-1:-1;44634:15:0;;-1:-1:-1;;;;;44634:15:0;44620:10;:29;44479:170;44456:269;;;;-1:-1:-1;;;44456:269:0;;;;;;;:::i;:::-;44818:21:::1;44800:15;44868:9;44876:1;44818:21:::0;44868:9:::1;:::i;:::-;44896:11;::::0;44888:38:::1;::::0;44850:27;;-1:-1:-1;;;;;;44896:11:0::1;::::0;44888:38;::::1;;;::::0;44850:27;;44896:11:::1;44888:38:::0;44896:11;44888:38;44850:27;44896:11;44888:38;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;44945:13:0::1;::::0;44937:40:::1;::::0;-1:-1:-1;;;;;44945:13:0;;::::1;::::0;44937:40;::::1;;;::::0;44969:7;;44945:13:::1;44937:40:::0;44945:13;44937:40;44969:7;44945:13;44937:40;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;44996:14:0::1;::::0;44988:41:::1;::::0;-1:-1:-1;;;;;44996:14:0;;::::1;::::0;44988:41;::::1;;;::::0;45021:7;;44996:14:::1;44988:41:::0;44996:14;44988:41;45021:7;44996:14;44988:41;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;45048:15:0::1;::::0;-1:-1:-1;;;;;45048:15:0::1;45040:56;45085:9;:7:::0;45093:1:::1;45085:9;:::i;:::-;45074:21;::::0;:7;:21:::1;:::i;:::-;45040:56;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;42789:55:::0;42826:10;:8;:10::i;:::-;42789:55::o;30130:185::-;30268:39;30285:4;30291:2;30295:7;30268:39;;;;;;;;;;;;:16;:39::i;42936:114::-;44493:11;;-1:-1:-1;;;;;44493:11:0;44479:10;:25;;:72;;-1:-1:-1;44538:13:0;;-1:-1:-1;;;;;44538:13:0;44524:10;:27;44479:72;:121;;;-1:-1:-1;44586:14:0;;-1:-1:-1;;;;;44586:14:0;44572:10;:28;44479:121;:170;;;-1:-1:-1;44634:15:0;;-1:-1:-1;;;;;44634:15:0;44620:10;:29;44479:170;44456:269;;;;-1:-1:-1;;;44456:269:0;;;;;;;:::i;:::-;43015:27:::1;43025:7;43034;43015:9;:27::i;27104:239::-:0;27176:7;27212:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27212:16:0;27247:19;27239:73;;;;-1:-1:-1;;;27239:73:0;;12810:2:1;27239:73:0;;;12792:21:1;12849:2;12829:18;;;12822:30;12888:34;12868:18;;;12861:62;-1:-1:-1;;;12939:18:1;;;12932:39;12988:19;;27239:73:0;12608:405:1;42551:87:0;42622:8;:4;42629:1;42622:8;:::i;:::-;42602:17;:28;-1:-1:-1;42551:87:0:o;26834:208::-;26906:7;-1:-1:-1;;;;;26934:19:0;;26926:74;;;;-1:-1:-1;;;26926:74:0;;12399:2:1;26926:74:0;;;12381:21:1;12438:2;12418:18;;;12411:30;12477:34;12457:18;;;12450:62;-1:-1:-1;;;12528:18:1;;;12521:40;12578:19;;26926:74:0;12197:406:1;26926:74:0;-1:-1:-1;;;;;;27018:16:0;;;;;:9;:16;;;;;;;26834:208::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;;;;;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;42730:51::-:0;42765:8;:6;:8::i;41448:85::-;4152:6;;-1:-1:-1;;;;;4152:6:0;;;;;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;41510:6:::1;:15:::0;41448:85::o;27579:104::-;27635:13;27668:7;27661:14;;;;;:::i;43558:513::-;43623:10;43637:9;43623:23;43615:47;;;;-1:-1:-1;;;43615:47:0;;15171:2:1;43615:47:0;;;15153:21:1;15210:2;15190:18;;;15183:30;-1:-1:-1;;;15229:18:1;;;15222:41;15280:18;;43615:47:0;14969:335:1;43615:47:0;43694:19;;40853:15;;43678:35;43675:168;;;43762:19;;43752:7;43736:13;40853:15;;;40782:94;43736:13;:23;;;;:::i;:::-;:45;43728:115;;;;-1:-1:-1;;;43728:115:0;;11973:2:1;43728:115:0;;;11955:21:1;12012:2;11992:18;;;11985:30;12051:34;12031:18;;;12024:62;12122:27;12102:18;;;12095:55;12167:19;;43728:115:0;11771:421:1;43728:115:0;43900:7;43891:6;;:16;;;;:::i;:::-;43878:9;:29;;:68;;;-1:-1:-1;43927:19:0;;40853:15;;43911:35;43878:68;43856:166;;;;-1:-1:-1;;;43856:166:0;;15511:2:1;43856:166:0;;;15493:21:1;15550:2;15530:18;;;15523:30;15589:34;15569:18;;;15562:62;-1:-1:-1;;;15640:18:1;;;15633:46;15696:19;;43856:166:0;15309:412:1;43856:166:0;44033:30;44043:7;44052:10;44033:9;:30::i;:::-;43558:513;:::o;29263:155::-;29358:52;2883:10;29391:8;29401;29358:18;:52::i;41692:105::-;4152:6;;41745:13;;-1:-1:-1;;;;;4152:6:0;;;;;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;41778:11:::1;41771:18;;;;;:::i;41805:103::-:0;4152:6;;41857:13;;-1:-1:-1;;;;;4152:6:0;;;;;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;41890:10:::1;41883:17;;;;;:::i;30386:328::-:0;30561:41;2883:10;30594:7;30561:18;:41::i;:::-;30553:103;;;;-1:-1:-1;;;30553:103:0;;;;;;;:::i;:::-;30667:39;30681:4;30687:2;30691:7;30700:5;30667:13;:39::i;:::-;30386:328;;;;:::o;42144:167::-;42205:13;42262:11;42275:14;:3;:12;:14::i;:::-;42291:10;42245:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42231:72;;42144:167;;;:::o;41013:102::-;41057:7;41106:1;41084:19;;:23;;;;:::i;:::-;41077:30;;41013:102;:::o;42445:98::-;42487:7;42534:1;42514:17;;:21;;;;:::i;42031:105::-;4152:6;;-1:-1:-1;;;;;4152:6:0;;;;;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;42106:22;;::::1;::::0;:10:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;41127:106::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;;;;;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;41217:8:::1;:6:::0;41224:1:::1;41217:8;:::i;:::-;41195:19;:30:::0;-1:-1:-1;41127:106:0:o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;;;;;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;8444:2:1;5069:73:0::1;::::0;::::1;8426:21:1::0;8483:2;8463:18;;;8456:30;8522:34;8502:18;;;8495:62;-1:-1:-1;;;8573:18:1;;;8566:36;8619:19;;5069:73:0::1;8242:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;40291:123::-:0;40346:7;40405:1;40373:31;;:33;;;;:::i;9098:326::-;-1:-1:-1;;;;;9393:19:0;;:23;;;9098:326::o;26465:305::-;26567:4;-1:-1:-1;;;;;;26604:40:0;;-1:-1:-1;;;26604:40:0;;:105;;-1:-1:-1;;;;;;;26661:48:0;;-1:-1:-1;;;26661:48:0;26604:105;:158;;;-1:-1:-1;;;;;;;;;;19313:40:0;;;26726:36;19204:157;36370:174;36445:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36445:29:0;-1:-1:-1;;;;;36445:29:0;;;;;;;;:24;;36499:23;36445:24;36499:14;:23::i;:::-;-1:-1:-1;;;;;36490:46:0;;;;;;;;;;;36370:174;;:::o;32518:348::-;32611:4;32313:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32313:16:0;32628:73;;;;-1:-1:-1;;;32628:73:0;;10790:2:1;32628:73:0;;;10772:21:1;10829:2;10809:18;;;10802:30;10868:34;10848:18;;;10841:62;-1:-1:-1;;;10919:18:1;;;10912:42;10971:19;;32628:73:0;10588:408:1;32628:73:0;32712:13;32728:23;32743:7;32728:14;:23::i;:::-;32712:39;;32781:5;-1:-1:-1;;;;;32770:16:0;:7;-1:-1:-1;;;;;32770:16:0;;:52;;;-1:-1:-1;;;;;;29610:25:0;;;29586:4;29610:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32790:32;32770:87;;;;32850:7;-1:-1:-1;;;;;32826:31:0;:20;32838:7;32826:11;:20::i;:::-;-1:-1:-1;;;;;32826:31:0;;32770:87;32762:96;32518:348;-1:-1:-1;;;;32518:348:0:o;35627:625::-;35786:4;-1:-1:-1;;;;;35759:31:0;:23;35774:7;35759:14;:23::i;:::-;-1:-1:-1;;;;;35759:31:0;;35751:81;;;;-1:-1:-1;;;35751:81:0;;8851:2:1;35751:81:0;;;8833:21:1;8890:2;8870:18;;;8863:30;8929:34;8909:18;;;8902:62;-1:-1:-1;;;8980:18:1;;;8973:35;9025:19;;35751:81:0;8649:401:1;35751:81:0;-1:-1:-1;;;;;35851:16:0;;35843:65;;;;-1:-1:-1;;;35843:65:0;;10031:2:1;35843:65:0;;;10013:21:1;10070:2;10050:18;;;10043:30;10109:34;10089:18;;;10082:62;-1:-1:-1;;;10160:18:1;;;10153:34;10204:19;;35843:65:0;9829:400:1;35843:65:0;35921:39;35942:4;35948:2;35952:7;35921:20;:39::i;:::-;36025:29;36042:1;36046:7;36025:8;:29::i;:::-;-1:-1:-1;;;;;36067:15:0;;;;;;:9;:15;;;;;:20;;36086:1;;36067:15;:20;;36086:1;;36067:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36098:13:0;;;;;;:9;:13;;;;;:18;;36115:1;;36098:13;:18;;36115:1;;36098:18;:::i;:::-;;;;-1:-1:-1;;36127:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36127:21:0;-1:-1:-1;;;;;36127:21:0;;;;;;;;;36166:27;;36127:16;;36166:27;;;;;;;28563:341;28493:411;;:::o;7738:120::-;6750:7;;;;7274:41;;;;-1:-1:-1;;;7274:41:0;;7322:2:1;7274:41:0;;;7304:21:1;7361:2;7341:18;;;7334:30;-1:-1:-1;;;7380:18:1;;;7373:50;7440:18;;7274:41:0;7120:344:1;7274:41:0;7797:7:::1;:15:::0;;-1:-1:-1;;7797:15:0::1;::::0;;7828:22:::1;2883:10:::0;7837:12:::1;7828:22;::::0;-1:-1:-1;;;;;6167:32:1;;;6149:51;;6137:2;6122:18;7828:22:0::1;;;;;;;7738:120::o:0;43058:492::-;43163:31;;43153:7;:41;43131:136;;;;-1:-1:-1;;;43131:136:0;;14355:2:1;43131:136:0;;;14337:21:1;14394:2;14374:18;;;14367:30;14433:34;14413:18;;;14406:62;-1:-1:-1;;;14484:18:1;;;14477:43;14537:19;;43131:136:0;14153:409:1;43131:136:0;43328:17;;40853:15;;43302:23;;:7;:23;:::i;:::-;:43;43280:118;;;;-1:-1:-1;;;43280:118:0;;7671:2:1;43280:118:0;;;7653:21:1;7710:2;7690:18;;;7683:30;7749:27;7729:18;;;7722:55;7794:18;;43280:118:0;7469:349:1;43280:118:0;43416:9;43411:132;43435:7;43431:1;:11;43411:132;;;43464:35;43474:7;43483:15;;43464:9;:35::i;:::-;43514:15;:17;;;:15;:17;;;:::i;:::-;;;;;;43444:3;;;;;:::i;:::-;;;;43411:132;;5349:191;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;5442:6;5459:17;;;-1:-1:-1;;;;;;5459:17:0;;;;;;5492:40;;5442:6;;;;;;;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;7479:118::-;6750:7;;;;7004:9;6996:38;;;;-1:-1:-1;;;6996:38:0;;11203:2:1;6996:38:0;;;11185:21:1;11242:2;11222:18;;;11215:30;-1:-1:-1;;;11261:18:1;;;11254:46;11317:18;;6996:38:0;11001:340:1;6996:38:0;7539:7:::1;:14:::0;;-1:-1:-1;;7539:14:0::1;7549:4;7539:14;::::0;;7569:20:::1;7576:12;2883:10:::0;;2803:98;36686:315;36841:8;-1:-1:-1;;;;;36832:17:0;:5;-1:-1:-1;;;;;36832:17:0;;;36824:55;;;;-1:-1:-1;;;36824:55:0;;10436:2:1;36824:55:0;;;10418:21:1;10475:2;10455:18;;;10448:30;10514:27;10494:18;;;10487:55;10559:18;;36824:55:0;10234:349:1;36824:55:0;-1:-1:-1;;;;;36890:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36890:46:0;;;;;;;;;;36952:41;;6844::1;;;36952::0;;6817:18:1;36952:41:0;;;;;;;36686:315;;;:::o;31596:::-;31753:28;31763:4;31769:2;31773:7;31753:9;:28::i;:::-;31800:48;31823:4;31829:2;31833:7;31842:5;31800:22;:48::i;:::-;31792:111;;;;-1:-1:-1;;;31792:111:0;;;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;45112:211;6750:7;;;;7004:9;6996:38;;;;-1:-1:-1;;;6996:38:0;;11203:2:1;6996:38:0;;;11185:21:1;11242:2;11222:18;;;11215:30;-1:-1:-1;;;11261:18:1;;;11254:46;11317:18;;6996:38:0;11001:340:1;33208:110:0;33284:26;33294:2;33298:7;33284:26;;;;;;;;;;;;:9;:26::i;37566:799::-;37721:4;-1:-1:-1;;;;;37742:13:0;;9393:19;:23;37738:620;;37778:72;;-1:-1:-1;;;37778:72:0;;-1:-1:-1;;;;;37778:36:0;;;;;:72;;2883:10;;37829:4;;37835:7;;37844:5;;37778:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37778:72:0;;;;;;;;-1:-1:-1;;37778:72:0;;;;;;;;;;;;:::i;:::-;;;37774:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38020:13:0;;38016:272;;38063:60;;-1:-1:-1;;;38063:60:0;;;;;;;:::i;38016:272::-;38238:6;38232:13;38223:6;38219:2;38215:15;38208:38;37774:529;-1:-1:-1;;;;;;37901:51:0;-1:-1:-1;;;37901:51:0;;-1:-1:-1;37894:58:0;;37738:620;-1:-1:-1;38342:4:0;37566:799;;;;;;:::o;33545:321::-;33675:18;33681:2;33685:7;33675:5;:18::i;:::-;33726:54;33757:1;33761:2;33765:7;33774:5;33726:22;:54::i;:::-;33704:154;;;;-1:-1:-1;;;33704:154:0;;;;;;;:::i;34202:439::-;-1:-1:-1;;;;;34282:16:0;;34274:61;;;;-1:-1:-1;;;34274:61:0;;13220:2:1;34274:61:0;;;13202:21:1;;;13239:18;;;13232:30;13298:34;13278:18;;;13271:62;13350:18;;34274:61:0;13018:356:1;34274:61:0;32289:4;32313:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32313:16:0;:30;34346:58;;;;-1:-1:-1;;;34346:58:0;;9257:2:1;34346:58:0;;;9239:21:1;9296:2;9276:18;;;9269:30;9335;9315:18;;;9308:58;9383:18;;34346:58:0;9055:352:1;34346:58:0;34417:45;34446:1;34450:2;34454:7;34417:20;:45::i;:::-;-1:-1:-1;;;;;34475:13:0;;;;;;:9;:13;;;;;:18;;34492:1;;34475:13;:18;;34492:1;;34475:18;:::i;:::-;;;;-1:-1:-1;;34504:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34504:21:0;-1:-1:-1;;;;;34504:21:0;;;;;;;;34543:33;;34504:16;;;34543:33;;34504:16;;34543:33;41992:23:::1;41916:107:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:254::-;4111:6;4119;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4224:9;4211:23;4201:33;;4253:38;4287:2;4276:9;4272:18;4253:38;:::i;4302:257::-;4343:3;4381:5;4375:12;4408:6;4403:3;4396:19;4424:63;4480:6;4473:4;4468:3;4464:14;4457:4;4450:5;4446:16;4424:63;:::i;:::-;4541:2;4520:15;-1:-1:-1;;4516:29:1;4507:39;;;;4548:4;4503:50;;4302:257;-1:-1:-1;;4302:257:1:o;4564:973::-;4649:12;;4614:3;;4704:1;4724:18;;;;4777;;;;4804:61;;4858:4;4850:6;4846:17;4836:27;;4804:61;4884:2;4932;4924:6;4921:14;4901:18;4898:38;4895:161;;;4978:10;4973:3;4969:20;4966:1;4959:31;5013:4;5010:1;5003:15;5041:4;5038:1;5031:15;4895:161;5072:18;5099:104;;;;5217:1;5212:319;;;;5065:466;;5099:104;-1:-1:-1;;5132:24:1;;5120:37;;5177:16;;;;-1:-1:-1;5099:104:1;;5212:319;16399:1;16392:14;;;16436:4;16423:18;;5306:1;5320:165;5334:6;5331:1;5328:13;5320:165;;;5412:14;;5399:11;;;5392:35;5455:16;;;;5349:10;;5320:165;;;5324:3;;5514:6;5509:3;5505:16;5498:23;;5065:466;;;;;;;4564:973;;;;:::o;5542:456::-;5763:3;5791:38;5825:3;5817:6;5791:38;:::i;:::-;5858:6;5852:13;5874:52;5919:6;5915:2;5908:4;5900:6;5896:17;5874:52;:::i;:::-;5942:50;5984:6;5980:2;5976:15;5968:6;5942:50;:::i;:::-;5935:57;5542:456;-1:-1:-1;;;;;;;5542:456:1:o;6211:488::-;-1:-1:-1;;;;;6480:15:1;;;6462:34;;6532:15;;6527:2;6512:18;;6505:43;6579:2;6564:18;;6557:34;;;6627:3;6622:2;6607:18;;6600:31;;;6405:4;;6648:45;;6673:19;;6665:6;6648:45;:::i;:::-;6640:53;6211:488;-1:-1:-1;;;;;;6211:488:1:o;6896:219::-;7045:2;7034:9;7027:21;7008:4;7065:44;7105:2;7094:9;7090:18;7082:6;7065:44;:::i;7823:414::-;8025:2;8007:21;;;8064:2;8044:18;;;8037:30;8103:34;8098:2;8083:18;;8076:62;-1:-1:-1;;;8169:2:1;8154:18;;8147:48;8227:3;8212:19;;7823:414::o;9412:412::-;9614:2;9596:21;;;9653:2;9633:18;;;9626:30;9692:34;9687:2;9672:18;;9665:62;-1:-1:-1;;;9758:2:1;9743:18;;9736:46;9814:3;9799:19;;9412:412::o;13792:356::-;13994:2;13976:21;;;14013:18;;;14006:30;14072:34;14067:2;14052:18;;14045:62;14139:2;14124:18;;13792:356::o;15726:413::-;15928:2;15910:21;;;15967:2;15947:18;;;15940:30;16006:34;16001:2;15986:18;;15979:62;-1:-1:-1;;;16072:2:1;16057:18;;16050:47;16129:3;16114:19;;15726:413::o;16452:128::-;16492:3;16523:1;16519:6;16516:1;16513:13;16510:39;;;16529:18;;:::i;:::-;-1:-1:-1;16565:9:1;;16452:128::o;16585:120::-;16625:1;16651;16641:35;;16656:18;;:::i;:::-;-1:-1:-1;16690:9:1;;16585:120::o;16710:168::-;16750:7;16816:1;16812;16808:6;16804:14;16801:1;16798:21;16793:1;16786:9;16779:17;16775:45;16772:71;;;16823:18;;:::i;:::-;-1:-1:-1;16863:9:1;;16710:168::o;16883:125::-;16923:4;16951:1;16948;16945:8;16942:34;;;16956:18;;:::i;:::-;-1:-1:-1;16993:9:1;;16883:125::o;17013:258::-;17085:1;17095:113;17109:6;17106:1;17103:13;17095:113;;;17185:11;;;17179:18;17166:11;;;17159:39;17131:2;17124:10;17095:113;;;17226:6;17223:1;17220:13;17217:48;;;-1:-1:-1;;17261:1:1;17243:16;;17236:27;17013:258::o;17276:380::-;17355:1;17351:12;;;;17398;;;17419:61;;17473:4;17465:6;17461:17;17451:27;;17419:61;17526:2;17518:6;17515:14;17495:18;17492:38;17489:161;;;17572:10;17567:3;17563:20;17560:1;17553:31;17607:4;17604:1;17597:15;17635:4;17632:1;17625:15;17489:161;;17276:380;;;:::o;17661:135::-;17700:3;-1:-1:-1;;17721:17:1;;17718:43;;;17741:18;;:::i;:::-;-1:-1:-1;17788:1:1;17777:13;;17661:135::o;17801:112::-;17833:1;17859;17849:35;;17864:18;;:::i;:::-;-1:-1:-1;17898:9:1;;17801:112::o;17918:127::-;17979:10;17974:3;17970:20;17967:1;17960:31;18010:4;18007:1;18000:15;18034:4;18031:1;18024:15;18050:127;18111:10;18106:3;18102:20;18099:1;18092:31;18142:4;18139:1;18132:15;18166:4;18163:1;18156:15;18182:127;18243:10;18238:3;18234:20;18231:1;18224:31;18274:4;18271:1;18264:15;18298:4;18295:1;18288:15;18314:127;18375:10;18370:3;18366:20;18363:1;18356:31;18406:4;18403:1;18396:15;18430:4;18427:1;18420:15;18446:131;-1:-1:-1;;;;;;18520:32:1;;18510:43;;18500:71;;18567:1;18564;18557:12

Swarm Source

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