ETH Price: $3,402.08 (-1.24%)
Gas: 3 Gwei

Token

SHIB2NFTS (SHIB2)
 

Overview

Max Total Supply

500 SHIB2

Holders

134

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 SHIB2
0x5f1111cf0e5bad7c2f75a1c53caff23e43683ab9
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:
SHIB2NFTS

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-04
*/

//SPDX-License-Identifier: UNLICENSED

pragma solidity >=0.7.0 <0.9.0;

library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

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

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

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

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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);
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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);
}

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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);
}

contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

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

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract SHIB2NFTS is ERC721Enumerable, Ownable {
    using Strings for uint256;
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    // Constants
    string public baseExtension = ".json";
    uint256 public cost = 0.0001 ether;

    // Supply
    uint256 public mintReward = 99999999999; 
    uint256 private creatorReward = 10;
    uint256 private devReward = 10;
    uint256 public maxSupply = 500;
    uint256 public lastSupply = maxSupply;
    uint256 public maxMintAmount = 10;

    // Reflection
    uint256 public reflectionBalance;
    uint256 public totalDividend;

    // Lists
    uint256[500] public remainingIds;
    mapping(uint256 => uint256) public lastDividendAt;
    mapping(uint256 => address) public minters;

    // Params
    bool public paused = true;
    bool private paysInTokens = false;
    string private _baseTokenURI;
    address private _wallet;

    // Addresses
    address public DexRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    address public RewardToken = 0x2dE7B02Ae3b1f11d51Ca7b2495e9094874A064c0;
    address private TeamReceiver = 0xFD0e8E3AA8910515A2273dfCe0D2934ee14d6e4c; // Team
    address private CreatorReceiver = 0xFD0e8E3AA8910515A2273dfCe0D2934ee14d6e4c; // Team
    address private DevReceiver = 0xFD0e8E3AA8910515A2273dfCe0D2934ee14d6e4c; //team

    //Contracts
    IUniswapV2Router02 public router;
    IERC20 public token;

    // Constructor
    constructor(
        string memory name,
        string memory symbol,
        string memory baseTokenURI
    ) ERC721(name, symbol) {
        // Save URI
        _baseTokenURI = baseTokenURI;
        // Save dev wallet
        _wallet = msg.sender;
        // Set router
        router = IUniswapV2Router02(DexRouter);
        // Set token
        token = IERC20(RewardToken);
    }

    // URI Handling
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    // Setters
    function setBaseURI(string memory baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

     function setPaysInTokens(bool _state) public onlyOwner {
        paysInTokens = _state;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function setRewardToken(address _newRewardToken) public onlyOwner {
        RewardToken = _newRewardToken;
        token = IERC20(RewardToken);
    }

    function setDexRouter(address _newDexRouter) public onlyOwner {
        DexRouter = _newDexRouter;
        router = IUniswapV2Router02(DexRouter);
    }

    function setTeamReceiver(address _newTeamReceiver) public onlyOwner {
        TeamReceiver = _newTeamReceiver;
    }

    function setFees(uint256 _newcreatorReward, uint256 _newdevReward, uint256 _newmintReward) public onlyOwner {
        devReward = _newdevReward;
        creatorReward = _newcreatorReward;
        mintReward = _newmintReward;
        require(_newcreatorReward <= 20);
        require(_newdevReward <= 20);
    }

    // Minting
    function mint(uint256 _mintAmount) public payable {
        // Checks
        require(!paused, "Minting has not started yet");
        require(_mintAmount > 0, "You have to mint at least one");
        require(
            _mintAmount <= maxMintAmount,
            "You can only mint 10 at a time"
        );
        require(
            lastSupply >= _mintAmount,
            "Sold Out!"
        );
        if (msg.sender != owner()) {
            require(
                msg.value >= cost * _mintAmount,
                "Cost Doesnt Match"
            );
        }
        // Minting
        for (uint256 i = 1; i <= _mintAmount; i++) {
            // Mint for caller
            _randomMint(msg.sender);
            // Split cost
            handleMintReward(msg.value / _mintAmount);
        }
    }

    // Give a random NFT to a contest winner
    function randomGiveaway(address _winner, uint256 _amount)
        external
        onlyOwner
    {
        // Checks
        require(_winner != address(0), "Cannot be zero address");
        require(_amount > 0, "You have to mint at least one");
        require(lastSupply != 0, "Collection is sold out");
        // Mint random NFTs for a winner
        for (uint256 i = 1; i <= _amount; i++) {
            _randomMint(_winner);
        }
    }

    // Random mint
    function _randomMint(address _target) internal returns (uint256) {
        // Get Random id to mint
        uint256 _index = _getRandom() % lastSupply;
        uint256 _realIndex = getValue(_index) + 1;
        // Reduce supply
        lastSupply--;
        // Replace used id by last
        remainingIds[_index] = getValue(lastSupply);
        // Mint
        _safeMint(_target, _realIndex);
        // Save Original minters
        minters[_realIndex] = msg.sender;
        // Save dividend
        lastDividendAt[_realIndex] = totalDividend;
        return _realIndex;
    }

    // Mint for reserved spots
    function _regularMint() internal returns (uint256) {
        // Get Actual id to mint
        uint256 _index = totalSupply();
        uint256 _realIndex = getValue(_index) + 1;
        // Reduce supply
        lastSupply--;
        // Replace used id by last
        remainingIds[_index] = getValue(lastSupply);
        // Mint
        _safeMint(msg.sender, _realIndex);
        // Save Original minters
        minters[_realIndex] = msg.sender;
        // Save dividend
        lastDividendAt[_realIndex] = totalDividend;
        return _realIndex;
    }

    // Get Token List
    function getTokenIds(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        // Count owned Token
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        // Get ids of owned Token
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

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

    // Payments & Reflections
    
  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
  

    // Reflections
    function handleMintReward(uint256 _amount) private {
        // Split payment
        uint256 mintShare = _amount.div(mintReward);
        uint256 creatorShare = _amount.div(creatorReward);
        uint256 devShare = _amount.div(devReward);
        uint256 teamShare = _amount.sub(mintShare).sub(creatorShare).sub(devShare);
        
        // Save dividend for community
        reflectDividend(mintShare);
        // Send owner share
        payable(TeamReceiver).transfer(teamShare);
        payable(CreatorReceiver).transfer(creatorShare);
        payable(DevReceiver).transfer(devShare);
    }

    // Add dividend
    function reflectDividend(uint256 _amount) private {
        reflectionBalance = reflectionBalance.add(_amount);
        totalDividend = totalDividend.add((_amount.div(totalSupply())));
    }

    function reflectToOwners() public payable {
        reflectDividend(msg.value);
    }

    function getReflectionBalances(address _owner)
        public
        view
        returns (uint256)
    {
        uint256 count = balanceOf(_owner);
        uint256 total = 0;
        for (uint256 i = 0; i < count; i++) {
            uint256 tokenId = tokenOfOwnerByIndex(_owner, i);
            total = total.add(getReflectionBalance(tokenId));
        }
        return total;
    }

    function getReflectionBalance(uint256 tokenId)
        public
        view
        returns (uint256)
    {
        return totalDividend.sub(lastDividendAt[tokenId]);
    }

    function claimRewards() public {
        require(!paysInTokens, "Rewards are paid in tokens");
        uint256 count = balanceOf(msg.sender);
        uint256 balance = 0;
        for (uint256 i = 0; i < count; i++) {
            uint256 tokenId = tokenOfOwnerByIndex(msg.sender, i);
            balance = balance.add(getReflectionBalance(tokenId));
            lastDividendAt[tokenId] = totalDividend;
        }
        payable(msg.sender).transfer(balance);
    }

    function claimRewardsTokens() public {
        uint256 count = balanceOf(msg.sender);
        uint256 initialBalanceOf = token.balanceOf(address(this));
        uint256 balance = 0;
        for (uint256 i = 0; i < count; i++) {
            uint256 tokenId = tokenOfOwnerByIndex(msg.sender, i);
            balance = balance.add(getReflectionBalance(tokenId));
            lastDividendAt[tokenId] = totalDividend;
        }
        // Covert Balance to Tokens
        address[] memory path = new address[](2);
        path[0] = router.WETH();
        path[1] = RewardToken;

        router.swapExactETHForTokensSupportingFeeOnTransferTokens{value : balance}(
            0,
            path,
            address(this),
            block.timestamp
        );

        uint256 finalBalanceOf = token.balanceOf(address(this));
        uint256 tokens = finalBalanceOf.sub(initialBalanceOf);
        token.transfer(msg.sender, tokens);
    }
    // Utils

    // Get value from a remaining id node
    function getValue(uint256 _index) internal view returns (uint256) {
        if (remainingIds[_index] != 0) return remainingIds[_index];
        else return _index;
    }

    // Create a random id for minting
    function _getRandom() internal view returns (uint256) {
        return
            uint256(
                keccak256(
                    abi.encodePacked(
                        block.difficulty,
                        block.timestamp,
                        lastSupply
                    )
                )
            );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DexRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RewardToken","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimRewardsTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getReflectionBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getReflectionBalances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokenIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lastDividendAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minters","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_winner","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"randomGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reflectToOwners","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"reflectionBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"remainingIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newDexRouter","type":"address"}],"name":"setDexRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newcreatorReward","type":"uint256"},{"internalType":"uint256","name":"_newdevReward","type":"uint256"},{"internalType":"uint256","name":"_newmintReward","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaysInTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newRewardToken","type":"address"}],"name":"setRewardToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newTeamReceiver","type":"address"}],"name":"setTeamReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDividend","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608090815264173539b7b760d91b60a052600b90620000269082620002a5565b50655af3107a4000600c5564174876e7ff600d55600a600e819055600f8190556101f4601081905560115560125561020b805461ffff1916600117905561020e80546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d1790915561020f80548216732de7b02ae3b1f11d51ca7b2495e9094874a064c01790556102108054821673fd0e8e3aa8910515a2273dfce0d2934ee14d6e4c90811790915561021180548316821790556102128054909216179055348015620000f157600080fd5b506040516200370138038062003701833981016040819052620001149162000420565b82826000620001248382620002a5565b506001620001338282620002a5565b505050620001506200014a620001aa60201b60201c565b620001ae565b61020c6200015f8282620002a5565b505061020d80546001600160a01b0319908116331790915561020e54610213805483166001600160a01b0392831617905561020f546102148054909316911617905550620004b19050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022b57607f821691505b6020821081036200024c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002a057600081815260208120601f850160051c810160208610156200027b5750805b601f850160051c820191505b818110156200029c5782815560010162000287565b5050505b505050565b81516001600160401b03811115620002c157620002c162000200565b620002d981620002d2845462000216565b8462000252565b602080601f831160018114620003115760008415620002f85750858301515b600019600386901b1c1916600185901b1785556200029c565b600085815260208120601f198616915b82811015620003425788860151825594840194600190910190840162000321565b5085821015620003615787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200038357600080fd5b81516001600160401b0380821115620003a057620003a062000200565b604051601f8301601f19908116603f01168101908282118183101715620003cb57620003cb62000200565b81604052838152602092508683858801011115620003e857600080fd5b600091505b838210156200040c5785820183015181830184015290820190620003ed565b600093810190920192909252949350505050565b6000806000606084860312156200043657600080fd5b83516001600160401b03808211156200044e57600080fd5b6200045c8783880162000371565b945060208601519150808211156200047357600080fd5b620004818783880162000371565b935060408601519150808211156200049857600080fd5b50620004a78682870162000371565b9150509250925092565b61324080620004c16000396000f3fe6080604052600436106103345760003560e01c80637f00c7a6116101ab578063cec10c11116100f7578063f1e9f1e511610095578063f75b8c5f1161006f578063f75b8c5f14610953578063f887ea4014610969578063fc0c546a1461098a578063fe28a4cc146109ab57600080fd5b8063f1e9f1e5146108f2578063f2fde38b14610913578063f72f863b1461093357600080fd5b8063d5abeb01116100d1578063d5abeb0114610853578063da3ef23f14610869578063e985e9c514610889578063ee6d9d6d146108d257600080fd5b8063cec10c11146107d8578063d004b036146107f8578063d20688571461082557600080fd5b8063a0712d6811610164578063b3ef77f21161013e578063b3ef77f214610763578063b88d4fde14610783578063c6682862146107a3578063c87b56dd146107b857600080fd5b8063a0712d6814610710578063a22cb46514610723578063a708d4041461074357600080fd5b80637f00c7a6146106465780638623ec7b146106665780638aee81271461069d5780638da5cb5b146106bd57806395d89b41146106db578063991937ed146106f057600080fd5b8063372500ab11610285578063521133d1116102235780636352211e116101fd5780636352211e146105d057806370a08231146105f0578063715018a614610610578063736ce0d41461062557600080fd5b8063521133d11461058057806355f804b3146105955780635c975abb146105b557600080fd5b806342842e0e1161025f57806342842e0e1461050a57806344a0d68a1461052a5780634b6acafb1461054a5780634f6ccce71461056057600080fd5b8063372500ab146104d75780633ccfd60b146104ec5780634131ff99146104f457600080fd5b8063095ea7b3116102f257806318160ddd116102cc57806318160ddd1461046c578063239c70ae1461048157806323b872dd146104975780632f745c59146104b757600080fd5b8063095ea7b31461042057806313faede614610440578063174f57af1461045657600080fd5b8062fe50c61461033957806301ffc9a71461036c57806302329a291461039c578063047d5e80146103be57806306fdde03146103c6578063081812fc146103e8575b600080fd5b34801561034557600080fd5b506103596103543660046129a9565b6109cb565b6040519081526020015b60405180910390f35b34801561037857600080fd5b5061038c6103873660046129d8565b6109ed565b6040519015158152602001610363565b3480156103a857600080fd5b506103bc6103b7366004612a03565b610a12565b005b6103bc610a59565b3480156103d257600080fd5b506103db610a64565b6040516103639190612a70565b3480156103f457600080fd5b506104086104033660046129a9565b610af6565b6040516001600160a01b039091168152602001610363565b34801561042c57600080fd5b506103bc61043b366004612a98565b610b8b565b34801561044c57600080fd5b50610359600c5481565b34801561046257600080fd5b50610359600d5481565b34801561047857600080fd5b50600854610359565b34801561048d57600080fd5b5061035960125481565b3480156104a357600080fd5b506103bc6104b2366004612ac4565b610ca0565b3480156104c357600080fd5b506103596104d2366004612a98565b610cd1565b3480156104e357600080fd5b506103bc610d67565b6103bc610e53565b34801561050057600080fd5b5061035960135481565b34801561051657600080fd5b506103bc610525366004612ac4565b610ed5565b34801561053657600080fd5b506103bc6105453660046129a9565b610ef0565b34801561055657600080fd5b5061035960145481565b34801561056c57600080fd5b5061035961057b3660046129a9565b610f1f565b34801561058c57600080fd5b506103bc610fb2565b3480156105a157600080fd5b506103bc6105b0366004612b91565b6112cf565b3480156105c157600080fd5b5061020b5461038c9060ff1681565b3480156105dc57600080fd5b506104086105eb3660046129a9565b61130a565b3480156105fc57600080fd5b5061035961060b366004612bda565b611381565b34801561061c57600080fd5b506103bc611408565b34801561063157600080fd5b5061020e54610408906001600160a01b031681565b34801561065257600080fd5b506103bc6106613660046129a9565b61143c565b34801561067257600080fd5b506104086106813660046129a9565b61020a602052600090815260409020546001600160a01b031681565b3480156106a957600080fd5b506103bc6106b8366004612bda565b61146b565b3480156106c957600080fd5b50600a546001600160a01b0316610408565b3480156106e757600080fd5b506103db6114c3565b3480156106fc57600080fd5b506103bc61070b366004612bda565b6114d2565b6103bc61071e3660046129a9565b61151f565b34801561072f57600080fd5b506103bc61073e366004612bf7565b6116ee565b34801561074f57600080fd5b5061035961075e366004612bda565b6117b2565b34801561076f57600080fd5b506103bc61077e366004612a98565b611804565b34801561078f57600080fd5b506103bc61079e366004612c30565b61193e565b3480156107af57600080fd5b506103db611976565b3480156107c457600080fd5b506103db6107d33660046129a9565b611a04565b3480156107e457600080fd5b506103bc6107f3366004612cb0565b611aca565b34801561080457600080fd5b50610818610813366004612bda565b611b1f565b6040516103639190612cdc565b34801561083157600080fd5b506103596108403660046129a9565b6102096020526000908152604090205481565b34801561085f57600080fd5b5061035960105481565b34801561087557600080fd5b506103bc610884366004612b91565b611bb9565b34801561089557600080fd5b5061038c6108a4366004612d20565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108de57600080fd5b506103596108ed3660046129a9565b611bef565b3480156108fe57600080fd5b5061020f54610408906001600160a01b031681565b34801561091f57600080fd5b506103bc61092e366004612bda565b611c07565b34801561093f57600080fd5b506103bc61094e366004612bda565b611c9f565b34801561095f57600080fd5b5061035960115481565b34801561097557600080fd5b5061021354610408906001600160a01b031681565b34801561099657600080fd5b5061021454610408906001600160a01b031681565b3480156109b757600080fd5b506103bc6109c6366004612a03565b611cf7565b600081815261020960205260408120546014546109e791611d3c565b92915050565b60006001600160e01b0319821663780e9d6360e01b14806109e757506109e782611d48565b600a546001600160a01b03163314610a455760405162461bcd60e51b8152600401610a3c90612d4e565b60405180910390fd5b61020b805460ff1916911515919091179055565b610a6234611d98565b565b606060008054610a7390612d83565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9f90612d83565b8015610aec5780601f10610ac157610100808354040283529160200191610aec565b820191906000526020600020905b815481529060010190602001808311610acf57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b6f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a3c565b506000908152600460205260409020546001600160a01b031690565b6000610b968261130a565b9050806001600160a01b0316836001600160a01b031603610c035760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a3c565b336001600160a01b0382161480610c1f5750610c1f81336108a4565b610c915760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a3c565b610c9b8383611dcd565b505050565b610caa3382611e3b565b610cc65760405162461bcd60e51b8152600401610a3c90612dbd565b610c9b838383611f32565b6000610cdc83611381565b8210610d3e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a3c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61020b54610100900460ff1615610dc05760405162461bcd60e51b815260206004820152601a60248201527f5265776172647320617265207061696420696e20746f6b656e730000000000006044820152606401610a3c565b6000610dcb33611381565b90506000805b82811015610e25576000610de53383610cd1565b9050610dfa610df3826109cb565b84906120dd565b6014546000928352610209602052604090922091909155915080610e1d81612e24565b915050610dd1565b50604051339082156108fc029083906000818181858888f19350505050158015610c9b573d6000803e3d6000fd5b600a546001600160a01b03163314610e7d5760405162461bcd60e51b8152600401610a3c90612d4e565b604051600090339047908381818185875af1925050503d8060008114610ebf576040519150601f19603f3d011682016040523d82523d6000602084013e610ec4565b606091505b5050905080610ed257600080fd5b50565b610c9b8383836040518060200160405280600081525061193e565b600a546001600160a01b03163314610f1a5760405162461bcd60e51b8152600401610a3c90612d4e565b600c55565b6000610f2a60085490565b8210610f8d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a3c565b60088281548110610fa057610fa0612e3d565b90600052602060002001549050919050565b6000610fbd33611381565b610214546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a0823190602401602060405180830381865afa15801561100c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110309190612e53565b90506000805b8381101561108357600061104a3383610cd1565b9050611058610df3826109cb565b601454600092835261020960205260409092209190915591508061107b81612e24565b915050611036565b50604080516002808252606082018352600092602083019080368337505061021354604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa1580156110ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111139190612e6c565b8160008151811061112657611126612e3d565b6001600160a01b03928316602091820292909201015261020f5482519116908290600190811061115857611158612e3d565b6001600160a01b0392831660209182029290920101526102135460405163b6f9de9560e01b815291169063b6f9de9590849061119f90600090869030904290600401612e89565b6000604051808303818588803b1580156111b857600080fd5b505af11580156111cc573d6000803e3d6000fd5b5050610214546040516370a0823160e01b8152306004820152600094506001600160a01b0390911692506370a082319150602401602060405180830381865afa15801561121d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112419190612e53565b9050600061124f8286611d3c565b6102145460405163a9059cbb60e01b8152336004820152602481018390529192506001600160a01b03169063a9059cbb906044016020604051808303816000875af11580156112a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c69190612ef3565b50505050505050565b600a546001600160a01b031633146112f95760405162461bcd60e51b8152600401610a3c90612d4e565b61020c6113068282612f56565b5050565b6000818152600260205260408120546001600160a01b0316806109e75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a3c565b60006001600160a01b0382166113ec5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a3c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114325760405162461bcd60e51b8152600401610a3c90612d4e565b610a6260006120e9565b600a546001600160a01b031633146114665760405162461bcd60e51b8152600401610a3c90612d4e565b601255565b600a546001600160a01b031633146114955760405162461bcd60e51b8152600401610a3c90612d4e565b61020f80546001600160a01b039092166001600160a01b031992831681179091556102148054909216179055565b606060018054610a7390612d83565b600a546001600160a01b031633146114fc5760405162461bcd60e51b8152600401610a3c90612d4e565b61021080546001600160a01b0319166001600160a01b0392909216919091179055565b61020b5460ff16156115735760405162461bcd60e51b815260206004820152601b60248201527f4d696e74696e6720686173206e6f7420737461727465642079657400000000006044820152606401610a3c565b600081116115c35760405162461bcd60e51b815260206004820152601d60248201527f596f75206861766520746f206d696e74206174206c65617374206f6e650000006044820152606401610a3c565b6012548111156116155760405162461bcd60e51b815260206004820152601e60248201527f596f752063616e206f6e6c79206d696e7420313020617420612074696d6500006044820152606401610a3c565b8060115410156116535760405162461bcd60e51b8152602060048201526009602482015268536f6c64204f75742160b81b6044820152606401610a3c565b600a546001600160a01b031633146116b65780600c546116739190613016565b3410156116b65760405162461bcd60e51b8152602060048201526011602482015270086dee6e84088decae6dce8409ac2e8c6d607b1b6044820152606401610a3c565b60015b818111611306576116c93361213b565b506116dc6116d78334613043565b61220f565b806116e681612e24565b9150506116b9565b336001600160a01b038316036117465760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a3c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000806117be83611381565b90506000805b828110156117fc5760006117d88683610cd1565b90506117e6610df3826109cb565b92505080806117f490612e24565b9150506117c4565b509392505050565b600a546001600160a01b0316331461182e5760405162461bcd60e51b8152600401610a3c90612d4e565b6001600160a01b03821661187d5760405162461bcd60e51b815260206004820152601660248201527543616e6e6f74206265207a65726f206164647265737360501b6044820152606401610a3c565b600081116118cd5760405162461bcd60e51b815260206004820152601d60248201527f596f75206861766520746f206d696e74206174206c65617374206f6e650000006044820152606401610a3c565b6011546000036119185760405162461bcd60e51b815260206004820152601660248201527510dbdb1b1958dd1a5bdb881a5cc81cdbdb19081bdd5d60521b6044820152606401610a3c565b60015b818111610c9b5761192b8361213b565b508061193681612e24565b91505061191b565b6119483383611e3b565b6119645760405162461bcd60e51b8152600401610a3c90612dbd565b61197084848484612338565b50505050565b600b805461198390612d83565b80601f01602080910402602001604051908101604052809291908181526020018280546119af90612d83565b80156119fc5780601f106119d1576101008083540402835291602001916119fc565b820191906000526020600020905b8154815290600101906020018083116119df57829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b0316611a6b5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610a3c565b6000611a7561236b565b90506000815111611a955760405180602001604052806000815250611ac3565b80611a9f8461237b565b600b604051602001611ab393929190613057565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611af45760405162461bcd60e51b8152600401610a3c90612d4e565b600f829055600e839055600d8190556014831115611b1157600080fd5b6014821115610c9b57600080fd5b60606000611b2c83611381565b905060008167ffffffffffffffff811115611b4957611b49612b05565b604051908082528060200260200182016040528015611b72578160200160208202803683370190505b50905060005b828110156117fc57611b8a8582610cd1565b828281518110611b9c57611b9c612e3d565b602090810291909101015280611bb181612e24565b915050611b78565b600a546001600160a01b03163314611be35760405162461bcd60e51b8152600401610a3c90612d4e565b600b6113068282612f56565b6015816101f48110611c0057600080fd5b0154905081565b600a546001600160a01b03163314611c315760405162461bcd60e51b8152600401610a3c90612d4e565b6001600160a01b038116611c965760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3c565b610ed2816120e9565b600a546001600160a01b03163314611cc95760405162461bcd60e51b8152600401610a3c90612d4e565b61020e80546001600160a01b039092166001600160a01b031992831681179091556102138054909216179055565b600a546001600160a01b03163314611d215760405162461bcd60e51b8152600401610a3c90612d4e565b61020b80549115156101000261ff0019909216919091179055565b6000611ac382846130f7565b60006001600160e01b031982166380ac58cd60e01b1480611d7957506001600160e01b03198216635b5e139f60e01b145b806109e757506301ffc9a760e01b6001600160e01b03198316146109e7565b601354611da590826120dd565b601355611dc7611dbe611db760085490565b839061247c565b601454906120dd565b60145550565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e028261130a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611eb45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a3c565b6000611ebf8361130a565b9050806001600160a01b0316846001600160a01b03161480611efa5750836001600160a01b0316611eef84610af6565b6001600160a01b0316145b80611f2a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611f458261130a565b6001600160a01b031614611fad5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a3c565b6001600160a01b03821661200f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a3c565b61201a838383612488565b612025600082611dcd565b6001600160a01b038316600090815260036020526040812080546001929061204e9084906130f7565b90915550506001600160a01b038216600090815260036020526040812080546001929061207c90849061310a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611ac3828461310a565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6011546040805144602080830191909152428284015260608083018590528351808403909101815260809092019092528051910120600091829161217f919061311d565b9050600061218c82612540565b61219790600161310a565b6011805491925060006121a983613131565b91905055506121b9601154612540565b6015836101f481106121cd576121cd612e3d565b01556121d9848261257d565b600081815261020a6020908152604080832080546001600160a01b03191633179055601454610209909252909120559392505050565b6000612226600d548361247c90919063ffffffff16565b9050600061223f600e548461247c90919063ffffffff16565b90506000612258600f548561247c90919063ffffffff16565b905060006122728261226c85818989611d3c565b90611d3c565b905061227d84611d98565b610210546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156122b8573d6000803e3d6000fd5b50610211546040516001600160a01b039091169084156108fc029085906000818181858888f193505050501580156122f4573d6000803e3d6000fd5b50610212546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015612330573d6000803e3d6000fd5b505050505050565b612343848484611f32565b61234f84848484612597565b6119705760405162461bcd60e51b8152600401610a3c90613148565b606061020c8054610a7390612d83565b6060816000036123a25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123cc57806123b681612e24565b91506123c59050600a83613043565b91506123a6565b60008167ffffffffffffffff8111156123e7576123e7612b05565b6040519080825280601f01601f191660200182016040528015612411576020820181803683370190505b5090505b8415611f2a576124266001836130f7565b9150612433600a8661311d565b61243e90603061310a565b60f81b81838151811061245357612453612e3d565b60200101906001600160f81b031916908160001a905350612475600a86613043565b9450612415565b6000611ac38284613043565b6001600160a01b0383166124e3576124de81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612506565b816001600160a01b0316836001600160a01b031614612506576125068382612698565b6001600160a01b03821661251d57610c9b81612735565b826001600160a01b0316826001600160a01b031614610c9b57610c9b82826127e4565b60006015826101f4811061255657612556612e3d565b015415612579576015826101f4811061257157612571612e3d565b015492915050565b5090565b611306828260405180602001604052806000815250612828565b60006001600160a01b0384163b1561268d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125db90339089908890889060040161319a565b6020604051808303816000875af1925050508015612616575060408051601f3d908101601f19168201909252612613918101906131d7565b60015b612673573d808015612644576040519150601f19603f3d011682016040523d82523d6000602084013e612649565b606091505b50805160000361266b5760405162461bcd60e51b8152600401610a3c90613148565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f2a565b506001949350505050565b600060016126a584611381565b6126af91906130f7565b600083815260076020526040902054909150808214612702576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612747906001906130f7565b6000838152600960205260408120546008805493945090928490811061276f5761276f612e3d565b90600052602060002001549050806008838154811061279057612790612e3d565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806127c8576127c86131f4565b6001900381819060005260206000200160009055905550505050565b60006127ef83611381565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b612832838361285b565b61283f6000848484612597565b610c9b5760405162461bcd60e51b8152600401610a3c90613148565b6001600160a01b0382166128b15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a3c565b6000818152600260205260409020546001600160a01b0316156129165760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a3c565b61292260008383612488565b6001600160a01b038216600090815260036020526040812080546001929061294b90849061310a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000602082840312156129bb57600080fd5b5035919050565b6001600160e01b031981168114610ed257600080fd5b6000602082840312156129ea57600080fd5b8135611ac3816129c2565b8015158114610ed257600080fd5b600060208284031215612a1557600080fd5b8135611ac3816129f5565b60005b83811015612a3b578181015183820152602001612a23565b50506000910152565b60008151808452612a5c816020860160208601612a20565b601f01601f19169290920160200192915050565b602081526000611ac36020830184612a44565b6001600160a01b0381168114610ed257600080fd5b60008060408385031215612aab57600080fd5b8235612ab681612a83565b946020939093013593505050565b600080600060608486031215612ad957600080fd5b8335612ae481612a83565b92506020840135612af481612a83565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612b3657612b36612b05565b604051601f8501601f19908116603f01168101908282118183101715612b5e57612b5e612b05565b81604052809350858152868686011115612b7757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612ba357600080fd5b813567ffffffffffffffff811115612bba57600080fd5b8201601f81018413612bcb57600080fd5b611f2a84823560208401612b1b565b600060208284031215612bec57600080fd5b8135611ac381612a83565b60008060408385031215612c0a57600080fd5b8235612c1581612a83565b91506020830135612c25816129f5565b809150509250929050565b60008060008060808587031215612c4657600080fd5b8435612c5181612a83565b93506020850135612c6181612a83565b925060408501359150606085013567ffffffffffffffff811115612c8457600080fd5b8501601f81018713612c9557600080fd5b612ca487823560208401612b1b565b91505092959194509250565b600080600060608486031215612cc557600080fd5b505081359360208301359350604090920135919050565b6020808252825182820181905260009190848201906040850190845b81811015612d1457835183529284019291840191600101612cf8565b50909695505050505050565b60008060408385031215612d3357600080fd5b8235612d3e81612a83565b91506020830135612c2581612a83565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612d9757607f821691505b602082108103612db757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600060018201612e3657612e36612e0e565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612e6557600080fd5b5051919050565b600060208284031215612e7e57600080fd5b8151611ac381612a83565b600060808201868352602060808185015281875180845260a086019150828901935060005b81811015612ed35784516001600160a01b031683529383019391830191600101612eae565b50506001600160a01b039690961660408501525050506060015292915050565b600060208284031215612f0557600080fd5b8151611ac3816129f5565b601f821115610c9b57600081815260208120601f850160051c81016020861015612f375750805b601f850160051c820191505b8181101561233057828155600101612f43565b815167ffffffffffffffff811115612f7057612f70612b05565b612f8481612f7e8454612d83565b84612f10565b602080601f831160018114612fb95760008415612fa15750858301515b600019600386901b1c1916600185901b178555612330565b600085815260208120601f198616915b82811015612fe857888601518255948401946001909101908401612fc9565b50858210156130065787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176109e7576109e7612e0e565b634e487b7160e01b600052601260045260246000fd5b6000826130525761305261302d565b500490565b60008451602061306a8285838a01612a20565b85519184019161307d8184848a01612a20565b855492019160009061308e81612d83565b600182811680156130a657600181146130bb576130e7565b60ff19841687528215158302870194506130e7565b896000528560002060005b848110156130df578154898201529083019087016130c6565b505082870194505b50929a9950505050505050505050565b818103818111156109e7576109e7612e0e565b808201808211156109e7576109e7612e0e565b60008261312c5761312c61302d565b500690565b60008161314057613140612e0e565b506000190190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131cd90830184612a44565b9695505050505050565b6000602082840312156131e957600080fd5b8151611ac3816129c2565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220c55af109b0def7fe7e66322b91da3f7e91e5be1977e371f6b34c556be566380864736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000953484942324e4654530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000553484942320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656961676f67636b766b3461377874627370753770616268707a6f7433656e7165613761367071326f6c7671346d73776b737877336d2f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103345760003560e01c80637f00c7a6116101ab578063cec10c11116100f7578063f1e9f1e511610095578063f75b8c5f1161006f578063f75b8c5f14610953578063f887ea4014610969578063fc0c546a1461098a578063fe28a4cc146109ab57600080fd5b8063f1e9f1e5146108f2578063f2fde38b14610913578063f72f863b1461093357600080fd5b8063d5abeb01116100d1578063d5abeb0114610853578063da3ef23f14610869578063e985e9c514610889578063ee6d9d6d146108d257600080fd5b8063cec10c11146107d8578063d004b036146107f8578063d20688571461082557600080fd5b8063a0712d6811610164578063b3ef77f21161013e578063b3ef77f214610763578063b88d4fde14610783578063c6682862146107a3578063c87b56dd146107b857600080fd5b8063a0712d6814610710578063a22cb46514610723578063a708d4041461074357600080fd5b80637f00c7a6146106465780638623ec7b146106665780638aee81271461069d5780638da5cb5b146106bd57806395d89b41146106db578063991937ed146106f057600080fd5b8063372500ab11610285578063521133d1116102235780636352211e116101fd5780636352211e146105d057806370a08231146105f0578063715018a614610610578063736ce0d41461062557600080fd5b8063521133d11461058057806355f804b3146105955780635c975abb146105b557600080fd5b806342842e0e1161025f57806342842e0e1461050a57806344a0d68a1461052a5780634b6acafb1461054a5780634f6ccce71461056057600080fd5b8063372500ab146104d75780633ccfd60b146104ec5780634131ff99146104f457600080fd5b8063095ea7b3116102f257806318160ddd116102cc57806318160ddd1461046c578063239c70ae1461048157806323b872dd146104975780632f745c59146104b757600080fd5b8063095ea7b31461042057806313faede614610440578063174f57af1461045657600080fd5b8062fe50c61461033957806301ffc9a71461036c57806302329a291461039c578063047d5e80146103be57806306fdde03146103c6578063081812fc146103e8575b600080fd5b34801561034557600080fd5b506103596103543660046129a9565b6109cb565b6040519081526020015b60405180910390f35b34801561037857600080fd5b5061038c6103873660046129d8565b6109ed565b6040519015158152602001610363565b3480156103a857600080fd5b506103bc6103b7366004612a03565b610a12565b005b6103bc610a59565b3480156103d257600080fd5b506103db610a64565b6040516103639190612a70565b3480156103f457600080fd5b506104086104033660046129a9565b610af6565b6040516001600160a01b039091168152602001610363565b34801561042c57600080fd5b506103bc61043b366004612a98565b610b8b565b34801561044c57600080fd5b50610359600c5481565b34801561046257600080fd5b50610359600d5481565b34801561047857600080fd5b50600854610359565b34801561048d57600080fd5b5061035960125481565b3480156104a357600080fd5b506103bc6104b2366004612ac4565b610ca0565b3480156104c357600080fd5b506103596104d2366004612a98565b610cd1565b3480156104e357600080fd5b506103bc610d67565b6103bc610e53565b34801561050057600080fd5b5061035960135481565b34801561051657600080fd5b506103bc610525366004612ac4565b610ed5565b34801561053657600080fd5b506103bc6105453660046129a9565b610ef0565b34801561055657600080fd5b5061035960145481565b34801561056c57600080fd5b5061035961057b3660046129a9565b610f1f565b34801561058c57600080fd5b506103bc610fb2565b3480156105a157600080fd5b506103bc6105b0366004612b91565b6112cf565b3480156105c157600080fd5b5061020b5461038c9060ff1681565b3480156105dc57600080fd5b506104086105eb3660046129a9565b61130a565b3480156105fc57600080fd5b5061035961060b366004612bda565b611381565b34801561061c57600080fd5b506103bc611408565b34801561063157600080fd5b5061020e54610408906001600160a01b031681565b34801561065257600080fd5b506103bc6106613660046129a9565b61143c565b34801561067257600080fd5b506104086106813660046129a9565b61020a602052600090815260409020546001600160a01b031681565b3480156106a957600080fd5b506103bc6106b8366004612bda565b61146b565b3480156106c957600080fd5b50600a546001600160a01b0316610408565b3480156106e757600080fd5b506103db6114c3565b3480156106fc57600080fd5b506103bc61070b366004612bda565b6114d2565b6103bc61071e3660046129a9565b61151f565b34801561072f57600080fd5b506103bc61073e366004612bf7565b6116ee565b34801561074f57600080fd5b5061035961075e366004612bda565b6117b2565b34801561076f57600080fd5b506103bc61077e366004612a98565b611804565b34801561078f57600080fd5b506103bc61079e366004612c30565b61193e565b3480156107af57600080fd5b506103db611976565b3480156107c457600080fd5b506103db6107d33660046129a9565b611a04565b3480156107e457600080fd5b506103bc6107f3366004612cb0565b611aca565b34801561080457600080fd5b50610818610813366004612bda565b611b1f565b6040516103639190612cdc565b34801561083157600080fd5b506103596108403660046129a9565b6102096020526000908152604090205481565b34801561085f57600080fd5b5061035960105481565b34801561087557600080fd5b506103bc610884366004612b91565b611bb9565b34801561089557600080fd5b5061038c6108a4366004612d20565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108de57600080fd5b506103596108ed3660046129a9565b611bef565b3480156108fe57600080fd5b5061020f54610408906001600160a01b031681565b34801561091f57600080fd5b506103bc61092e366004612bda565b611c07565b34801561093f57600080fd5b506103bc61094e366004612bda565b611c9f565b34801561095f57600080fd5b5061035960115481565b34801561097557600080fd5b5061021354610408906001600160a01b031681565b34801561099657600080fd5b5061021454610408906001600160a01b031681565b3480156109b757600080fd5b506103bc6109c6366004612a03565b611cf7565b600081815261020960205260408120546014546109e791611d3c565b92915050565b60006001600160e01b0319821663780e9d6360e01b14806109e757506109e782611d48565b600a546001600160a01b03163314610a455760405162461bcd60e51b8152600401610a3c90612d4e565b60405180910390fd5b61020b805460ff1916911515919091179055565b610a6234611d98565b565b606060008054610a7390612d83565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9f90612d83565b8015610aec5780601f10610ac157610100808354040283529160200191610aec565b820191906000526020600020905b815481529060010190602001808311610acf57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b6f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a3c565b506000908152600460205260409020546001600160a01b031690565b6000610b968261130a565b9050806001600160a01b0316836001600160a01b031603610c035760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a3c565b336001600160a01b0382161480610c1f5750610c1f81336108a4565b610c915760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a3c565b610c9b8383611dcd565b505050565b610caa3382611e3b565b610cc65760405162461bcd60e51b8152600401610a3c90612dbd565b610c9b838383611f32565b6000610cdc83611381565b8210610d3e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a3c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61020b54610100900460ff1615610dc05760405162461bcd60e51b815260206004820152601a60248201527f5265776172647320617265207061696420696e20746f6b656e730000000000006044820152606401610a3c565b6000610dcb33611381565b90506000805b82811015610e25576000610de53383610cd1565b9050610dfa610df3826109cb565b84906120dd565b6014546000928352610209602052604090922091909155915080610e1d81612e24565b915050610dd1565b50604051339082156108fc029083906000818181858888f19350505050158015610c9b573d6000803e3d6000fd5b600a546001600160a01b03163314610e7d5760405162461bcd60e51b8152600401610a3c90612d4e565b604051600090339047908381818185875af1925050503d8060008114610ebf576040519150601f19603f3d011682016040523d82523d6000602084013e610ec4565b606091505b5050905080610ed257600080fd5b50565b610c9b8383836040518060200160405280600081525061193e565b600a546001600160a01b03163314610f1a5760405162461bcd60e51b8152600401610a3c90612d4e565b600c55565b6000610f2a60085490565b8210610f8d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a3c565b60088281548110610fa057610fa0612e3d565b90600052602060002001549050919050565b6000610fbd33611381565b610214546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a0823190602401602060405180830381865afa15801561100c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110309190612e53565b90506000805b8381101561108357600061104a3383610cd1565b9050611058610df3826109cb565b601454600092835261020960205260409092209190915591508061107b81612e24565b915050611036565b50604080516002808252606082018352600092602083019080368337505061021354604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa1580156110ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111139190612e6c565b8160008151811061112657611126612e3d565b6001600160a01b03928316602091820292909201015261020f5482519116908290600190811061115857611158612e3d565b6001600160a01b0392831660209182029290920101526102135460405163b6f9de9560e01b815291169063b6f9de9590849061119f90600090869030904290600401612e89565b6000604051808303818588803b1580156111b857600080fd5b505af11580156111cc573d6000803e3d6000fd5b5050610214546040516370a0823160e01b8152306004820152600094506001600160a01b0390911692506370a082319150602401602060405180830381865afa15801561121d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112419190612e53565b9050600061124f8286611d3c565b6102145460405163a9059cbb60e01b8152336004820152602481018390529192506001600160a01b03169063a9059cbb906044016020604051808303816000875af11580156112a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c69190612ef3565b50505050505050565b600a546001600160a01b031633146112f95760405162461bcd60e51b8152600401610a3c90612d4e565b61020c6113068282612f56565b5050565b6000818152600260205260408120546001600160a01b0316806109e75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a3c565b60006001600160a01b0382166113ec5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a3c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114325760405162461bcd60e51b8152600401610a3c90612d4e565b610a6260006120e9565b600a546001600160a01b031633146114665760405162461bcd60e51b8152600401610a3c90612d4e565b601255565b600a546001600160a01b031633146114955760405162461bcd60e51b8152600401610a3c90612d4e565b61020f80546001600160a01b039092166001600160a01b031992831681179091556102148054909216179055565b606060018054610a7390612d83565b600a546001600160a01b031633146114fc5760405162461bcd60e51b8152600401610a3c90612d4e565b61021080546001600160a01b0319166001600160a01b0392909216919091179055565b61020b5460ff16156115735760405162461bcd60e51b815260206004820152601b60248201527f4d696e74696e6720686173206e6f7420737461727465642079657400000000006044820152606401610a3c565b600081116115c35760405162461bcd60e51b815260206004820152601d60248201527f596f75206861766520746f206d696e74206174206c65617374206f6e650000006044820152606401610a3c565b6012548111156116155760405162461bcd60e51b815260206004820152601e60248201527f596f752063616e206f6e6c79206d696e7420313020617420612074696d6500006044820152606401610a3c565b8060115410156116535760405162461bcd60e51b8152602060048201526009602482015268536f6c64204f75742160b81b6044820152606401610a3c565b600a546001600160a01b031633146116b65780600c546116739190613016565b3410156116b65760405162461bcd60e51b8152602060048201526011602482015270086dee6e84088decae6dce8409ac2e8c6d607b1b6044820152606401610a3c565b60015b818111611306576116c93361213b565b506116dc6116d78334613043565b61220f565b806116e681612e24565b9150506116b9565b336001600160a01b038316036117465760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a3c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000806117be83611381565b90506000805b828110156117fc5760006117d88683610cd1565b90506117e6610df3826109cb565b92505080806117f490612e24565b9150506117c4565b509392505050565b600a546001600160a01b0316331461182e5760405162461bcd60e51b8152600401610a3c90612d4e565b6001600160a01b03821661187d5760405162461bcd60e51b815260206004820152601660248201527543616e6e6f74206265207a65726f206164647265737360501b6044820152606401610a3c565b600081116118cd5760405162461bcd60e51b815260206004820152601d60248201527f596f75206861766520746f206d696e74206174206c65617374206f6e650000006044820152606401610a3c565b6011546000036119185760405162461bcd60e51b815260206004820152601660248201527510dbdb1b1958dd1a5bdb881a5cc81cdbdb19081bdd5d60521b6044820152606401610a3c565b60015b818111610c9b5761192b8361213b565b508061193681612e24565b91505061191b565b6119483383611e3b565b6119645760405162461bcd60e51b8152600401610a3c90612dbd565b61197084848484612338565b50505050565b600b805461198390612d83565b80601f01602080910402602001604051908101604052809291908181526020018280546119af90612d83565b80156119fc5780601f106119d1576101008083540402835291602001916119fc565b820191906000526020600020905b8154815290600101906020018083116119df57829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b0316611a6b5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610a3c565b6000611a7561236b565b90506000815111611a955760405180602001604052806000815250611ac3565b80611a9f8461237b565b600b604051602001611ab393929190613057565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611af45760405162461bcd60e51b8152600401610a3c90612d4e565b600f829055600e839055600d8190556014831115611b1157600080fd5b6014821115610c9b57600080fd5b60606000611b2c83611381565b905060008167ffffffffffffffff811115611b4957611b49612b05565b604051908082528060200260200182016040528015611b72578160200160208202803683370190505b50905060005b828110156117fc57611b8a8582610cd1565b828281518110611b9c57611b9c612e3d565b602090810291909101015280611bb181612e24565b915050611b78565b600a546001600160a01b03163314611be35760405162461bcd60e51b8152600401610a3c90612d4e565b600b6113068282612f56565b6015816101f48110611c0057600080fd5b0154905081565b600a546001600160a01b03163314611c315760405162461bcd60e51b8152600401610a3c90612d4e565b6001600160a01b038116611c965760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3c565b610ed2816120e9565b600a546001600160a01b03163314611cc95760405162461bcd60e51b8152600401610a3c90612d4e565b61020e80546001600160a01b039092166001600160a01b031992831681179091556102138054909216179055565b600a546001600160a01b03163314611d215760405162461bcd60e51b8152600401610a3c90612d4e565b61020b80549115156101000261ff0019909216919091179055565b6000611ac382846130f7565b60006001600160e01b031982166380ac58cd60e01b1480611d7957506001600160e01b03198216635b5e139f60e01b145b806109e757506301ffc9a760e01b6001600160e01b03198316146109e7565b601354611da590826120dd565b601355611dc7611dbe611db760085490565b839061247c565b601454906120dd565b60145550565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e028261130a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611eb45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a3c565b6000611ebf8361130a565b9050806001600160a01b0316846001600160a01b03161480611efa5750836001600160a01b0316611eef84610af6565b6001600160a01b0316145b80611f2a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611f458261130a565b6001600160a01b031614611fad5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a3c565b6001600160a01b03821661200f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a3c565b61201a838383612488565b612025600082611dcd565b6001600160a01b038316600090815260036020526040812080546001929061204e9084906130f7565b90915550506001600160a01b038216600090815260036020526040812080546001929061207c90849061310a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611ac3828461310a565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6011546040805144602080830191909152428284015260608083018590528351808403909101815260809092019092528051910120600091829161217f919061311d565b9050600061218c82612540565b61219790600161310a565b6011805491925060006121a983613131565b91905055506121b9601154612540565b6015836101f481106121cd576121cd612e3d565b01556121d9848261257d565b600081815261020a6020908152604080832080546001600160a01b03191633179055601454610209909252909120559392505050565b6000612226600d548361247c90919063ffffffff16565b9050600061223f600e548461247c90919063ffffffff16565b90506000612258600f548561247c90919063ffffffff16565b905060006122728261226c85818989611d3c565b90611d3c565b905061227d84611d98565b610210546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156122b8573d6000803e3d6000fd5b50610211546040516001600160a01b039091169084156108fc029085906000818181858888f193505050501580156122f4573d6000803e3d6000fd5b50610212546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015612330573d6000803e3d6000fd5b505050505050565b612343848484611f32565b61234f84848484612597565b6119705760405162461bcd60e51b8152600401610a3c90613148565b606061020c8054610a7390612d83565b6060816000036123a25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123cc57806123b681612e24565b91506123c59050600a83613043565b91506123a6565b60008167ffffffffffffffff8111156123e7576123e7612b05565b6040519080825280601f01601f191660200182016040528015612411576020820181803683370190505b5090505b8415611f2a576124266001836130f7565b9150612433600a8661311d565b61243e90603061310a565b60f81b81838151811061245357612453612e3d565b60200101906001600160f81b031916908160001a905350612475600a86613043565b9450612415565b6000611ac38284613043565b6001600160a01b0383166124e3576124de81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612506565b816001600160a01b0316836001600160a01b031614612506576125068382612698565b6001600160a01b03821661251d57610c9b81612735565b826001600160a01b0316826001600160a01b031614610c9b57610c9b82826127e4565b60006015826101f4811061255657612556612e3d565b015415612579576015826101f4811061257157612571612e3d565b015492915050565b5090565b611306828260405180602001604052806000815250612828565b60006001600160a01b0384163b1561268d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125db90339089908890889060040161319a565b6020604051808303816000875af1925050508015612616575060408051601f3d908101601f19168201909252612613918101906131d7565b60015b612673573d808015612644576040519150601f19603f3d011682016040523d82523d6000602084013e612649565b606091505b50805160000361266b5760405162461bcd60e51b8152600401610a3c90613148565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f2a565b506001949350505050565b600060016126a584611381565b6126af91906130f7565b600083815260076020526040902054909150808214612702576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612747906001906130f7565b6000838152600960205260408120546008805493945090928490811061276f5761276f612e3d565b90600052602060002001549050806008838154811061279057612790612e3d565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806127c8576127c86131f4565b6001900381819060005260206000200160009055905550505050565b60006127ef83611381565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b612832838361285b565b61283f6000848484612597565b610c9b5760405162461bcd60e51b8152600401610a3c90613148565b6001600160a01b0382166128b15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a3c565b6000818152600260205260409020546001600160a01b0316156129165760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a3c565b61292260008383612488565b6001600160a01b038216600090815260036020526040812080546001929061294b90849061310a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000602082840312156129bb57600080fd5b5035919050565b6001600160e01b031981168114610ed257600080fd5b6000602082840312156129ea57600080fd5b8135611ac3816129c2565b8015158114610ed257600080fd5b600060208284031215612a1557600080fd5b8135611ac3816129f5565b60005b83811015612a3b578181015183820152602001612a23565b50506000910152565b60008151808452612a5c816020860160208601612a20565b601f01601f19169290920160200192915050565b602081526000611ac36020830184612a44565b6001600160a01b0381168114610ed257600080fd5b60008060408385031215612aab57600080fd5b8235612ab681612a83565b946020939093013593505050565b600080600060608486031215612ad957600080fd5b8335612ae481612a83565b92506020840135612af481612a83565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612b3657612b36612b05565b604051601f8501601f19908116603f01168101908282118183101715612b5e57612b5e612b05565b81604052809350858152868686011115612b7757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612ba357600080fd5b813567ffffffffffffffff811115612bba57600080fd5b8201601f81018413612bcb57600080fd5b611f2a84823560208401612b1b565b600060208284031215612bec57600080fd5b8135611ac381612a83565b60008060408385031215612c0a57600080fd5b8235612c1581612a83565b91506020830135612c25816129f5565b809150509250929050565b60008060008060808587031215612c4657600080fd5b8435612c5181612a83565b93506020850135612c6181612a83565b925060408501359150606085013567ffffffffffffffff811115612c8457600080fd5b8501601f81018713612c9557600080fd5b612ca487823560208401612b1b565b91505092959194509250565b600080600060608486031215612cc557600080fd5b505081359360208301359350604090920135919050565b6020808252825182820181905260009190848201906040850190845b81811015612d1457835183529284019291840191600101612cf8565b50909695505050505050565b60008060408385031215612d3357600080fd5b8235612d3e81612a83565b91506020830135612c2581612a83565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612d9757607f821691505b602082108103612db757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600060018201612e3657612e36612e0e565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612e6557600080fd5b5051919050565b600060208284031215612e7e57600080fd5b8151611ac381612a83565b600060808201868352602060808185015281875180845260a086019150828901935060005b81811015612ed35784516001600160a01b031683529383019391830191600101612eae565b50506001600160a01b039690961660408501525050506060015292915050565b600060208284031215612f0557600080fd5b8151611ac3816129f5565b601f821115610c9b57600081815260208120601f850160051c81016020861015612f375750805b601f850160051c820191505b8181101561233057828155600101612f43565b815167ffffffffffffffff811115612f7057612f70612b05565b612f8481612f7e8454612d83565b84612f10565b602080601f831160018114612fb95760008415612fa15750858301515b600019600386901b1c1916600185901b178555612330565b600085815260208120601f198616915b82811015612fe857888601518255948401946001909101908401612fc9565b50858210156130065787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176109e7576109e7612e0e565b634e487b7160e01b600052601260045260246000fd5b6000826130525761305261302d565b500490565b60008451602061306a8285838a01612a20565b85519184019161307d8184848a01612a20565b855492019160009061308e81612d83565b600182811680156130a657600181146130bb576130e7565b60ff19841687528215158302870194506130e7565b896000528560002060005b848110156130df578154898201529083019087016130c6565b505082870194505b50929a9950505050505050505050565b818103818111156109e7576109e7612e0e565b808201808211156109e7576109e7612e0e565b60008261312c5761312c61302d565b500690565b60008161314057613140612e0e565b506000190190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131cd90830184612a44565b9695505050505050565b6000602082840312156131e957600080fd5b8151611ac3816129c2565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220c55af109b0def7fe7e66322b91da3f7e91e5be1977e371f6b34c556be566380864736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000953484942324e4654530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000553484942320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656961676f67636b766b3461377874627370753770616268707a6f7433656e7165613761367071326f6c7671346d73776b737877336d2f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): SHIB2NFTS
Arg [1] : symbol (string): SHIB2
Arg [2] : baseTokenURI (string): ipfs://bafybeiagogckvk4a7xtbspu7pabhpzot3enqea7a6pq2olvq4mswksxw3m/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 53484942324e4654530000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 5348494232000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 697066733a2f2f6261667962656961676f67636b766b34613778746273707537
Arg [9] : 70616268707a6f7433656e7165613761367071326f6c7671346d73776b737877
Arg [10] : 336d2f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

56238:11027:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65006:177;;;;;;;;;;-1:-1:-1;65006:177:0;;;;;:::i;:::-;;:::i;:::-;;;345:25:1;;;333:2;318:18;65006:177:0;;;;;;;;42324:300;;;;;;;;;;-1:-1:-1;42324:300:0;;;;;:::i;:::-;;:::i;:::-;;;932:14:1;;925:22;907:41;;895:2;880:18;42324:300:0;767:187:1;58884:79:0;;;;;;;;;;-1:-1:-1;58884:79:0;;;;;:::i;:::-;;:::i;:::-;;64507:87;;;:::i;29801:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31494:308::-;;;;;;;;;;-1:-1:-1;31494:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2248:32:1;;;2230:51;;2218:2;2203:18;31494:308:0;2084:203:1;31017:411:0;;;;;;;;;;-1:-1:-1;31017:411:0;;;;;:::i;:::-;;:::i;56464:34::-;;;;;;;;;;;;;;;;56522:39;;;;;;;;;;;;;;;;43127:113;;;;;;;;;;-1:-1:-1;43215:10:0;:17;43127:113;;56728:33;;;;;;;;;;;;;;;;32553:376;;;;;;;;;;-1:-1:-1;32553:376:0;;;;;:::i;:::-;;:::i;42708:343::-;;;;;;;;;;-1:-1:-1;42708:343:0;;;;;:::i;:::-;;:::i;65191:474::-;;;;;;;;;;;;;:::i;63475:158::-;;;:::i;56789:32::-;;;;;;;;;;;;;;;;33000:185;;;;;;;;;;-1:-1:-1;33000:185:0;;;;;:::i;:::-;;:::i;58397:86::-;;;;;;;;;;-1:-1:-1;58397:86:0;;;;;:::i;:::-;;:::i;56828:28::-;;;;;;;;;;;;;;;;43317:320;;;;;;;;;;-1:-1:-1;43317:320:0;;;;;:::i;:::-;;:::i;65673:959::-;;;;;;;;;;;;;:::i;58285:104::-;;;;;;;;;;-1:-1:-1;58285:104:0;;;;;:::i;:::-;;:::i;57040:25::-;;;;;;;;;;-1:-1:-1;57040:25:0;;;;;;;;29408:326;;;;;;;;;;-1:-1:-1;29408:326:0;;;;;:::i;:::-;;:::i;29051:295::-;;;;;;;;;;-1:-1:-1;29051:295:0;;;;;:::i;:::-;;:::i;11061:94::-;;;;;;;;;;;;;:::i;57197:69::-;;;;;;;;;;-1:-1:-1;57197:69:0;;;;-1:-1:-1;;;;;57197:69:0;;;58595:122;;;;;;;;;;-1:-1:-1;58595:122:0;;;;;:::i;:::-;;:::i;56974:42::-;;;;;;;;;;-1:-1:-1;56974:42:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;56974:42:0;;;58971:152;;;;;;;;;;-1:-1:-1;58971:152:0;;;;;:::i;:::-;;:::i;10410:87::-;;;;;;;;;;-1:-1:-1;10483:6:0;;-1:-1:-1;;;;;10483:6:0;10410:87;;29970:104;;;;;;;;;;;;;:::i;59294:118::-;;;;;;;;;;-1:-1:-1;59294:118:0;;;;;:::i;:::-;;:::i;59760:829::-;;;;;;:::i;:::-;;:::i;31874:327::-;;;;;;;;;;-1:-1:-1;31874:327:0;;;;;:::i;:::-;;:::i;64602:396::-;;;;;;;;;;-1:-1:-1;64602:396:0;;;;;:::i;:::-;;:::i;60643:457::-;;;;;;;;;;-1:-1:-1;60643:457:0;;;;;:::i;:::-;;:::i;33256:365::-;;;;;;;;;;-1:-1:-1;33256:365:0;;;;;:::i;:::-;;:::i;56420:37::-;;;;;;;;;;;;;:::i;62857:575::-;;;;;;;;;;-1:-1:-1;62857:575:0;;;;;:::i;:::-;;:::i;59420:316::-;;;;;;;;;;-1:-1:-1;59420:316:0;;;;;:::i;:::-;;:::i;62362:453::-;;;;;;;;;;-1:-1:-1;62362:453:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;56918:49::-;;;;;;;;;;-1:-1:-1;56918:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;56647:30;;;;;;;;;;;;;;;;58725:151;;;;;;;;;;-1:-1:-1;58725:151:0;;;;;:::i;:::-;;:::i;32272:214::-;;;;;;;;;;-1:-1:-1;32272:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;32443:25:0;;;32414:4;32443:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32272:214;56879:32;;;;;;;;;;-1:-1:-1;56879:32:0;;;;;:::i;:::-;;:::i;57273:71::-;;;;;;;;;;-1:-1:-1;57273:71:0;;;;-1:-1:-1;;;;;57273:71:0;;;11310:229;;;;;;;;;;-1:-1:-1;11310:229:0;;;;;:::i;:::-;;:::i;59131:155::-;;;;;;;;;;-1:-1:-1;59131:155:0;;;;;:::i;:::-;;:::i;56684:37::-;;;;;;;;;;;;;;;;57635:32;;;;;;;;;;-1:-1:-1;57635:32:0;;;;-1:-1:-1;;;;;57635:32:0;;;57674:19;;;;;;;;;;-1:-1:-1;57674:19:0;;;;-1:-1:-1;;;;;57674:19:0;;;58492:95;;;;;;;;;;-1:-1:-1;58492:95:0;;;;;:::i;:::-;;:::i;65006:177::-;65101:7;65151:23;;;:14;:23;;;;;;65133:13;;:42;;:17;:42::i;:::-;65126:49;65006:177;-1:-1:-1;;65006:177:0:o;42324:300::-;42471:4;-1:-1:-1;;;;;;42513:50:0;;-1:-1:-1;;;42513:50:0;;:103;;;42580:36;42604:11;42580:23;:36::i;58884:79::-;10483:6;;-1:-1:-1;;;;;10483:6:0;9848:10;10630:23;10622:68;;;;-1:-1:-1;;;10622:68:0;;;;;;;:::i;:::-;;;;;;;;;58940:6:::1;:15:::0;;-1:-1:-1;;58940:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58884:79::o;64507:87::-;64560:26;64576:9;64560:15;:26::i;:::-;64507:87::o;29801:100::-;29855:13;29888:5;29881:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29801:100;:::o;31494:308::-;31615:7;35257:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35257:16:0;31640:110;;;;-1:-1:-1;;;31640:110:0;;8630:2:1;31640:110:0;;;8612:21:1;8669:2;8649:18;;;8642:30;8708:34;8688:18;;;8681:62;-1:-1:-1;;;8759:18:1;;;8752:42;8811:19;;31640:110:0;8428:408:1;31640:110:0;-1:-1:-1;31770:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31770:24:0;;31494:308::o;31017:411::-;31098:13;31114:23;31129:7;31114:14;:23::i;:::-;31098:39;;31162:5;-1:-1:-1;;;;;31156:11:0;:2;-1:-1:-1;;;;;31156:11:0;;31148:57;;;;-1:-1:-1;;;31148:57:0;;9043:2:1;31148:57:0;;;9025:21:1;9082:2;9062:18;;;9055:30;9121:34;9101:18;;;9094:62;-1:-1:-1;;;9172:18:1;;;9165:31;9213:19;;31148:57:0;8841:397:1;31148:57:0;9848:10;-1:-1:-1;;;;;31240:21:0;;;;:62;;-1:-1:-1;31265:37:0;31282:5;9848:10;32272:214;:::i;31265:37::-;31218:168;;;;-1:-1:-1;;;31218:168:0;;9445:2:1;31218:168:0;;;9427:21:1;9484:2;9464:18;;;9457:30;9523:34;9503:18;;;9496:62;9594:26;9574:18;;;9567:54;9638:19;;31218:168:0;9243:420:1;31218:168:0;31399:21;31408:2;31412:7;31399:8;:21::i;:::-;31087:341;31017:411;;:::o;32553:376::-;32762:41;9848:10;32795:7;32762:18;:41::i;:::-;32740:140;;;;-1:-1:-1;;;32740:140:0;;;;;;;:::i;:::-;32893:28;32903:4;32909:2;32913:7;32893:9;:28::i;42708:343::-;42850:7;42905:23;42922:5;42905:16;:23::i;:::-;42897:5;:31;42875:124;;;;-1:-1:-1;;;42875:124:0;;10288:2:1;42875:124:0;;;10270:21:1;10327:2;10307:18;;;10300:30;10366:34;10346:18;;;10339:62;-1:-1:-1;;;10417:18:1;;;10410:41;10468:19;;42875:124:0;10086:407:1;42875:124:0;-1:-1:-1;;;;;;43017:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42708:343::o;65191:474::-;65242:12;;;;;;;65241:13;65233:52;;;;-1:-1:-1;;;65233:52:0;;10700:2:1;65233:52:0;;;10682:21:1;10739:2;10719:18;;;10712:30;10778:28;10758:18;;;10751:56;10824:18;;65233:52:0;10498:350:1;65233:52:0;65296:13;65312:21;65322:10;65312:9;:21::i;:::-;65296:37;;65344:15;65379:9;65374:236;65398:5;65394:1;:9;65374:236;;;65425:15;65443:34;65463:10;65475:1;65443:19;:34::i;:::-;65425:52;;65502:42;65514:29;65535:7;65514:20;:29::i;:::-;65502:7;;:11;:42::i;:::-;65585:13;;65559:23;;;;:14;:23;;;;;;:39;;;;65492:52;-1:-1:-1;65405:3:0;;;;:::i;:::-;;;;65374:236;;;-1:-1:-1;65620:37:0;;65628:10;;65620:37;;;;;65649:7;;65620:37;;;;65649:7;65628:10;65620:37;;;;;;;;;;;;;;;;;;;63475:158;10483:6;;-1:-1:-1;;;;;10483:6:0;9848:10;10630:23;10622:68;;;;-1:-1:-1;;;10622:68:0;;;;;;;:::i;:::-;63546:58:::1;::::0;63528:12:::1;::::0;63554:10:::1;::::0;63578:21:::1;::::0;63528:12;63546:58;63528:12;63546:58;63578:21;63554:10;63546:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63527:77;;;63619:7;63611:16;;;::::0;::::1;;63520:113;63475:158::o:0;33000:185::-;33138:39;33155:4;33161:2;33165:7;33138:39;;;;;;;;;;;;:16;:39::i;58397:86::-;10483:6;;-1:-1:-1;;;;;10483:6:0;9848:10;10630:23;10622:68;;;;-1:-1:-1;;;10622:68:0;;;;;;;:::i;:::-;58460:4:::1;:15:::0;58397:86::o;43317:320::-;43437:7;43492:30;43215:10;:17;;43127:113;43492:30;43484:5;:38;43462:132;;;;-1:-1:-1;;;43462:132:0;;11537:2:1;43462:132:0;;;11519:21:1;11576:2;11556:18;;;11549:30;11615:34;11595:18;;;11588:62;-1:-1:-1;;;11666:18:1;;;11659:42;11718:19;;43462:132:0;11335:408:1;43462:132:0;43612:10;43623:5;43612:17;;;;;;;;:::i;:::-;;;;;;;;;43605:24;;43317:320;;;:::o;65673:959::-;65721:13;65737:21;65747:10;65737:9;:21::i;:::-;65796:5;;:30;;-1:-1:-1;;;65796:30:0;;65820:4;65796:30;;;2230:51:1;65721:37:0;;-1:-1:-1;65769:24:0;;-1:-1:-1;;;;;65796:5:0;;;;:15;;2203:18:1;;65796:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65769:57;;65837:15;65872:9;65867:236;65891:5;65887:1;:9;65867:236;;;65918:15;65936:34;65956:10;65968:1;65936:19;:34::i;:::-;65918:52;;65995:42;66007:29;66028:7;66007:20;:29::i;65995:42::-;66078:13;;66052:23;;;;:14;:23;;;;;;:39;;;;65985:52;-1:-1:-1;65898:3:0;;;;:::i;:::-;;;;65867:236;;;-1:-1:-1;66174:16:0;;;66188:1;66174:16;;;;;;;;66150:21;;66174:16;;;;;;;;-1:-1:-1;;66211:6:0;;:13;;;-1:-1:-1;;;66211:13:0;;;;66150:40;;-1:-1:-1;;;;;;66211:6:0;;;;:11;;-1:-1:-1;66211:13:0;;;;;;;;;;;;;;:6;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66201:4;66206:1;66201:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;66201:23:0;;;:7;;;;;;;;;:23;66245:11;;66235:7;;66245:11;;;66235:4;;66245:11;;66235:7;;;;;;:::i;:::-;-1:-1:-1;;;;;66235:21:0;;;:7;;;;;;;;;:21;66269:6;;:178;;-1:-1:-1;;;66269:178:0;;:6;;;:57;;66335:7;;66269:178;;:6;;66374:4;;66401;;66421:15;;66269:178;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;66485:5:0;;:30;;-1:-1:-1;;;66485:30:0;;66509:4;66485:30;;;2230:51:1;66460:22:0;;-1:-1:-1;;;;;;66485:5:0;;;;-1:-1:-1;66485:15:0;;-1:-1:-1;2203:18:1;;66485:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66460:55;-1:-1:-1;66526:14:0;66543:36;66460:55;66562:16;66543:18;:36::i;:::-;66590:5;;:34;;-1:-1:-1;;;66590:34:0;;66605:10;66590:34;;;13412:51:1;13479:18;;;13472:34;;;66526:53:0;;-1:-1:-1;;;;;;66590:5:0;;:14;;13385:18:1;;66590:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;65710:922;;;;;;65673:959::o;58285:104::-;10483:6;;-1:-1:-1;;;;;10483:6:0;9848:10;10630:23;10622:68;;;;-1:-1:-1;;;10622:68:0;;;;;;;:::i;:::-;58358:13:::1;:23;58374:7:::0;58358:13;:23:::1;:::i;:::-;;58285:104:::0;:::o;29408:326::-;29525:7;29566:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29566:16:0;;29593:110;;;;-1:-1:-1;;;29593:110:0;;16173:2:1;29593:110:0;;;16155:21:1;16212:2;16192:18;;;16185:30;16251:34;16231:18;;;16224:62;-1:-1:-1;;;16302:18:1;;;16295:39;16351:19;;29593:110:0;15971:405:1;29051:295:0;29168:7;-1:-1:-1;;;;;29215:19:0;;29193:111;;;;-1:-1:-1;;;29193:111:0;;16583:2:1;29193:111:0;;;16565:21:1;16622:2;16602:18;;;16595:30;16661:34;16641:18;;;16634:62;-1:-1:-1;;;16712:18:1;;;16705:40;16762:19;;29193:111:0;16381:406:1;29193:111:0;-1:-1:-1;;;;;;29322:16:0;;;;;:9;:16;;;;;;;29051:295::o;11061:94::-;10483:6;;-1:-1:-1;;;;;10483:6:0;9848:10;10630:23;10622:68;;;;-1:-1:-1;;;10622:68:0;;;;;;;:::i;:::-;11126:21:::1;11144:1;11126:9;:21::i;58595:122::-:0;10483:6;;-1:-1:-1;;;;;10483:6:0;9848:10;10630:23;10622:68;;;;-1:-1:-1;;;10622:68:0;;;;;;;:::i;:::-;58676:13:::1;:33:::0;58595:122::o;58971:152::-;10483:6;;-1:-1:-1;;;;;10483:6:0;9848:10;10630:23;10622:68;;;;-1:-1:-1;;;10622:68:0;;;;;;;:::i;:::-;59048:11:::1;:29:::0;;-1:-1:-1;;;;;59048:29:0;;::::1;-1:-1:-1::0;;;;;;59048:29:0;;::::1;::::0;::::1;::::0;;;59088:5:::1;:27:::0;;;;::::1;;::::0;;58971:152::o;29970:104::-;30026:13;30059:7;30052:14;;;;;:::i;59294:118::-;10483:6;;-1:-1:-1;;;;;10483:6:0;9848:10;10630:23;10622:68;;;;-1:-1:-1;;;10622:68:0;;;;;;;:::i;:::-;59373:12:::1;:31:::0;;-1:-1:-1;;;;;;59373:31:0::1;-1:-1:-1::0;;;;;59373:31:0;;;::::1;::::0;;;::::1;::::0;;59294:118::o;59760:829::-;59849:6;;;;59848:7;59840:47;;;;-1:-1:-1;;;59840:47:0;;16994:2:1;59840:47:0;;;16976:21:1;17033:2;17013:18;;;17006:30;17072:29;17052:18;;;17045:57;17119:18;;59840:47:0;16792:351:1;59840:47:0;59920:1;59906:11;:15;59898:57;;;;-1:-1:-1;;;59898:57:0;;17350:2:1;59898:57:0;;;17332:21:1;17389:2;17369:18;;;17362:30;17428:31;17408:18;;;17401:59;17477:18;;59898:57:0;17148:353:1;59898:57:0;60003:13;;59988:11;:28;;59966:108;;;;-1:-1:-1;;;59966:108:0;;17708:2:1;59966:108:0;;;17690:21:1;17747:2;17727:18;;;17720:30;17786:32;17766:18;;;17759:60;17836:18;;59966:108:0;17506:354:1;59966:108:0;60121:11;60107:10;;:25;;60085:84;;;;-1:-1:-1;;;60085:84:0;;18067:2:1;60085:84:0;;;18049:21:1;18106:1;18086:18;;;18079:29;-1:-1:-1;;;18124:18:1;;;18117:39;18173:18;;60085:84:0;17865:332:1;60085:84:0;10483:6;;-1:-1:-1;;;;;10483:6:0;60184:10;:21;60180:164;;60268:11;60261:4;;:18;;;;:::i;:::-;60248:9;:31;;60222:110;;;;-1:-1:-1;;;60222:110:0;;18577:2:1;60222:110:0;;;18559:21:1;18616:2;18596:18;;;18589:30;-1:-1:-1;;;18635:18:1;;;18628:47;18692:18;;60222:110:0;18375:341:1;60222:110:0;60391:1;60374:208;60399:11;60394:1;:16;60374:208;;60464:23;60476:10;60464:11;:23::i;:::-;-1:-1:-1;60529:41:0;60546:23;60558:11;60546:9;:23;:::i;:::-;60529:16;:41::i;:::-;60412:3;;;;:::i;:::-;;;;60374:208;;31874:327;9848:10;-1:-1:-1;;;;;32009:24:0;;;32001:62;;;;-1:-1:-1;;;32001:62:0;;19180:2:1;32001:62:0;;;19162:21:1;19219:2;19199:18;;;19192:30;19258:27;19238:18;;;19231:55;19303:18;;32001:62:0;18978:349:1;32001:62:0;9848:10;32076:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32076:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32076:53:0;;;;;;;;;;32145:48;;907:41:1;;;32076:42:0;;9848:10;32145:48;;880:18:1;32145:48:0;;;;;;;31874:327;;:::o;64602:396::-;64697:7;64722:13;64738:17;64748:6;64738:9;:17::i;:::-;64722:33;;64766:13;64799:9;64794:174;64818:5;64814:1;:9;64794:174;;;64845:15;64863:30;64883:6;64891:1;64863:19;:30::i;:::-;64845:48;;64916:40;64926:29;64947:7;64926:20;:29::i;64916:40::-;64908:48;;64830:138;64825:3;;;;;:::i;:::-;;;;64794:174;;;-1:-1:-1;64985:5:0;64602:396;-1:-1:-1;;;64602:396:0:o;60643:457::-;10483:6;;-1:-1:-1;;;;;10483:6:0;9848:10;10630:23;10622:68;;;;-1:-1:-1;;;10622:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;60781:21:0;::::1;60773:56;;;::::0;-1:-1:-1;;;60773:56:0;;19534:2:1;60773:56:0::1;::::0;::::1;19516:21:1::0;19573:2;19553:18;;;19546:30;-1:-1:-1;;;19592:18:1;;;19585:52;19654:18;;60773:56:0::1;19332:346:1::0;60773:56:0::1;60858:1;60848:7;:11;60840:53;;;::::0;-1:-1:-1;;;60840:53:0;;17350:2:1;60840:53:0::1;::::0;::::1;17332:21:1::0;17389:2;17369:18;;;17362:30;17428:31;17408:18;;;17401:59;17477:18;;60840:53:0::1;17148:353:1::0;60840:53:0::1;60912:10;;60926:1;60912:15:::0;60904:50:::1;;;::::0;-1:-1:-1;;;60904:50:0;;19885:2:1;60904:50:0::1;::::0;::::1;19867:21:1::0;19924:2;19904:18;;;19897:30;-1:-1:-1;;;19943:18:1;;;19936:52;20005:18;;60904:50:0::1;19683:346:1::0;60904:50:0::1;61024:1;61007:86;61032:7;61027:1;:12;61007:86;;61061:20;61073:7;61061:11;:20::i;:::-;-1:-1:-1::0;61041:3:0;::::1;::::0;::::1;:::i;:::-;;;;61007:86;;33256:365:::0;33445:41;9848:10;33478:7;33445:18;:41::i;:::-;33423:140;;;;-1:-1:-1;;;33423:140:0;;;;;;;:::i;:::-;33574:39;33588:4;33594:2;33598:7;33607:5;33574:13;:39::i;:::-;33256:365;;;;:::o;56420:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62857:575::-;35233:4;35257:16;;;:7;:16;;;;;;62971:13;;-1:-1:-1;;;;;35257:16:0;63002:56;;;;-1:-1:-1;;;63002:56:0;;20236:2:1;63002:56:0;;;20218:21:1;20275:2;20255:18;;;20248:30;20314:33;20294:18;;;20287:61;20365:18;;63002:56:0;20034:355:1;63002:56:0;63069:28;63100:10;:8;:10::i;:::-;63069:41;;63172:1;63147:14;63141:28;:32;:283;;;;;;;;;;;;;;;;;63265:14;63306;:3;:12;:14::i;:::-;63347:13;63222:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63141:283;63121:303;62857:575;-1:-1:-1;;;62857:575:0:o;59420:316::-;10483:6;;-1:-1:-1;;;;;10483:6:0;9848:10;10630:23;10622:68;;;;-1:-1:-1;;;10622:68:0;;;;;;;:::i;:::-;59539:9:::1;:25:::0;;;59575:13:::1;:33:::0;;;59619:10:::1;:27:::0;;;59686:2:::1;59665:23:::0;::::1;;59657:32;;;::::0;::::1;;59725:2;59708:13;:19;;59700:28;;;::::0;::::1;62362:453:::0;62447:16;62511:23;62537:17;62547:6;62537:9;:17::i;:::-;62511:43;;62565:25;62607:15;62593:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62593:30:0;;62565:58;;62674:9;62669:113;62689:15;62685:1;:19;62669:113;;;62740:30;62760:6;62768:1;62740:19;:30::i;:::-;62726:8;62735:1;62726:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;62706:3;;;;:::i;:::-;;;;62669:113;;58725:151;10483:6;;-1:-1:-1;;;;;10483:6:0;9848:10;10630:23;10622:68;;;;-1:-1:-1;;;10622:68:0;;;;;;;:::i;:::-;58835:13:::1;:33;58851:17:::0;58835:13;:33:::1;:::i;56879:32::-:0;;;;;;;;;;;;;;;-1:-1:-1;56879:32:0;:::o;11310:229::-;10483:6;;-1:-1:-1;;;;;10483:6:0;9848:10;10630:23;10622:68;;;;-1:-1:-1;;;10622:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11413:22:0;::::1;11391:110;;;::::0;-1:-1:-1;;;11391:110:0;;21857:2:1;11391:110:0::1;::::0;::::1;21839:21:1::0;21896:2;21876:18;;;21869:30;21935:34;21915:18;;;21908:62;-1:-1:-1;;;21986:18:1;;;21979:36;22032:19;;11391:110:0::1;21655:402:1::0;11391:110:0::1;11512:19;11522:8;11512:9;:19::i;59131:155::-:0;10483:6;;-1:-1:-1;;;;;10483:6:0;9848:10;10630:23;10622:68;;;;-1:-1:-1;;;10622:68:0;;;;;;;:::i;:::-;59204:9:::1;:25:::0;;-1:-1:-1;;;;;59204:25:0;;::::1;-1:-1:-1::0;;;;;;59204:25:0;;::::1;::::0;::::1;::::0;;;59240:6:::1;:38:::0;;;;::::1;;::::0;;59131:155::o;58492:95::-;10483:6;;-1:-1:-1;;;;;10483:6:0;9848:10;10630:23;10622:68;;;;-1:-1:-1;;;10622:68:0;;;;;;;:::i;:::-;58558:12:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;58558:21:0;;::::1;::::0;;;::::1;::::0;;58492:95::o;3972:98::-;4030:7;4057:5;4061:1;4057;:5;:::i;28632:355::-;28779:4;-1:-1:-1;;;;;;28821:40:0;;-1:-1:-1;;;28821:40:0;;:105;;-1:-1:-1;;;;;;;28878:48:0;;-1:-1:-1;;;28878:48:0;28821:105;:158;;;-1:-1:-1;;;;;;;;;;21566:40:0;;;28943:36;21407:207;64306:193;64387:17;;:30;;64409:7;64387:21;:30::i;:::-;64367:17;:50;64444:47;64463:26;64475:13;43215:10;:17;;43127:113;64475:13;64463:7;;:11;:26::i;:::-;64444:13;;;:17;:47::i;:::-;64428:13;:63;-1:-1:-1;64306:193:0:o;39291:174::-;39366:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39366:29:0;-1:-1:-1;;;;;39366:29:0;;;;;;;;:24;;39420:23;39366:24;39420:14;:23::i;:::-;-1:-1:-1;;;;;39411:46:0;;;;;;;;;;;39291:174;;:::o;35462:452::-;35591:4;35257:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35257:16:0;35613:110;;;;-1:-1:-1;;;35613:110:0;;22397:2:1;35613:110:0;;;22379:21:1;22436:2;22416:18;;;22409:30;22475:34;22455:18;;;22448:62;-1:-1:-1;;;22526:18:1;;;22519:42;22578:19;;35613:110:0;22195:408:1;35613:110:0;35734:13;35750:23;35765:7;35750:14;:23::i;:::-;35734:39;;35803:5;-1:-1:-1;;;;;35792:16:0;:7;-1:-1:-1;;;;;35792:16:0;;:64;;;;35849:7;-1:-1:-1;;;;;35825:31:0;:20;35837:7;35825:11;:20::i;:::-;-1:-1:-1;;;;;35825:31:0;;35792:64;:113;;;-1:-1:-1;;;;;;32443:25:0;;;32414:4;32443:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35873:32;35784:122;35462:452;-1:-1:-1;;;;35462:452:0:o;38558:615::-;38731:4;-1:-1:-1;;;;;38704:31:0;:23;38719:7;38704:14;:23::i;:::-;-1:-1:-1;;;;;38704:31:0;;38682:122;;;;-1:-1:-1;;;38682:122:0;;22810:2:1;38682:122:0;;;22792:21:1;22849:2;22829:18;;;22822:30;22888:34;22868:18;;;22861:62;-1:-1:-1;;;22939:18:1;;;22932:39;22988:19;;38682:122:0;22608:405:1;38682:122:0;-1:-1:-1;;;;;38823:16:0;;38815:65;;;;-1:-1:-1;;;38815:65:0;;23220:2:1;38815:65:0;;;23202:21:1;23259:2;23239:18;;;23232:30;23298:34;23278:18;;;23271:62;-1:-1:-1;;;23349:18:1;;;23342:34;23393:19;;38815:65:0;23018:400:1;38815:65:0;38893:39;38914:4;38920:2;38924:7;38893:20;:39::i;:::-;38997:29;39014:1;39018:7;38997:8;:29::i;:::-;-1:-1:-1;;;;;39039:15:0;;;;;;:9;:15;;;;;:20;;39058:1;;39039:15;:20;;39058:1;;39039:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39070:13:0;;;;;;:9;:13;;;;;:18;;39087:1;;39070:13;:18;;39087:1;;39070:18;:::i;:::-;;;;-1:-1:-1;;39099:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39099:21:0;-1:-1:-1;;;;;39099:21:0;;;;;;;;;39138:27;;39099:16;;39138:27;;;;;;;38558:615;;;:::o;3591:98::-;3649:7;3676:5;3680:1;3676;:5;:::i;11547:173::-;11622:6;;;-1:-1:-1;;;;;11639:17:0;;;-1:-1:-1;;;;;;11639:17:0;;;;;;;11672:40;;11622:6;;;11639:17;11622:6;;11672:40;;11603:16;;11672:40;11592:128;11547:173;:::o;61128:593::-;61270:10;;67059:161;;;67102:16;67059:161;;;;24415:19:1;;;;67145:15:0;24450:12:1;;;24443:28;24487:12;;;;24480:28;;;67059:161:0;;;;;;;;;;24524:12:1;;;;67059:161:0;;;67027:212;;;;;61184:7;;;;61255:25;;;;:::i;:::-;61238:42;;61291:18;61312:16;61321:6;61312:8;:16::i;:::-;:20;;61331:1;61312:20;:::i;:::-;61369:10;:12;;61291:41;;-1:-1:-1;61369:10:0;:12;;;:::i;:::-;;;;;;61451:20;61460:10;;61451:8;:20::i;:::-;61428:12;61441:6;61428:20;;;;;;;:::i;:::-;;:43;61499:30;61509:7;61518:10;61499:9;:30::i;:::-;61574:19;;;;:7;:19;;;;;;;;:32;;-1:-1:-1;;;;;;61574:32:0;61596:10;61574:32;;;61672:13;;61643:14;:26;;;;;;:42;61582:10;61128:593;-1:-1:-1;;;61128:593:0:o;63665:612::-;63753:17;63773:23;63785:10;;63773:7;:11;;:23;;;;:::i;:::-;63753:43;;63807:20;63830:26;63842:13;;63830:7;:11;;:26;;;;:::i;:::-;63807:49;;63867:16;63886:22;63898:9;;63886:7;:11;;:22;;;;:::i;:::-;63867:41;-1:-1:-1;63919:17:0;63939:54;63867:41;63939:40;63966:12;63939:40;:7;63951:9;63939:11;:22::i;:::-;:26;;:40::i;:54::-;63919:74;;64054:26;64070:9;64054:15;:26::i;:::-;64128:12;;64120:41;;-1:-1:-1;;;;;64128:12:0;;;;64120:41;;;;;64151:9;;64128:12;64120:41;64128:12;64120:41;64151:9;64128:12;64120:41;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64180:15:0;;64172:47;;-1:-1:-1;;;;;64180:15:0;;;;64172:47;;;;;64206:12;;64180:15;64172:47;64180:15;64172:47;64206:12;64180:15;64172:47;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64238:11:0;;64230:39;;-1:-1:-1;;;;;64238:11:0;;;;64230:39;;;;;64260:8;;64238:11;64230:39;64238:11;64230:39;64260:8;64238:11;64230:39;;;;;;;;;;;;;;;;;;;;;63716:561;;;;63665:612;:::o;34503:352::-;34660:28;34670:4;34676:2;34680:7;34660:9;:28::i;:::-;34721:48;34744:4;34750:2;34754:7;34763:5;34721:22;:48::i;:::-;34699:148;;;;-1:-1:-1;;;34699:148:0;;;;;;;:::i;58147:114::-;58207:13;58240;58233:20;;;;;:::i;7944:723::-;8000:13;8221:5;8230:1;8221:10;8217:53;;-1:-1:-1;;8248:10:0;;;;;;;;;;;;-1:-1:-1;;;8248:10:0;;;;;7944:723::o;8217:53::-;8295:5;8280:12;8336:78;8343:9;;8336:78;;8369:8;;;;:::i;:::-;;-1:-1:-1;8392:10:0;;-1:-1:-1;8400:2:0;8392:10;;:::i;:::-;;;8336:78;;;8424:19;8456:6;8446:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8446:17:0;;8424:39;;8474:154;8481:10;;8474:154;;8508:11;8518:1;8508:11;;:::i;:::-;;-1:-1:-1;8577:10:0;8585:2;8577:5;:10;:::i;:::-;8564:24;;:2;:24;:::i;:::-;8551:39;;8534:6;8541;8534:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8534:56:0;;;;;;;;-1:-1:-1;8605:11:0;8614:2;8605:11;;:::i;:::-;;;8474:154;;4728:98;4786:7;4813:5;4817:1;4813;:5;:::i;44250:589::-;-1:-1:-1;;;;;44456:18:0;;44452:187;;44491:40;44523:7;45666:10;:17;;45639:24;;;;:15;:24;;;;;:44;;;45694:24;;;;;;;;;;;;45562:164;44491:40;44452:187;;;44561:2;-1:-1:-1;;;;;44553:10:0;:4;-1:-1:-1;;;;;44553:10:0;;44549:90;;44580:47;44613:4;44619:7;44580:32;:47::i;:::-;-1:-1:-1;;;;;44653:16:0;;44649:183;;44686:45;44723:7;44686:36;:45::i;44649:183::-;44759:4;-1:-1:-1;;;;;44753:10:0;:2;-1:-1:-1;;;;;44753:10:0;;44749:83;;44780:40;44808:2;44812:7;44780:27;:40::i;66697:172::-;66754:7;66778:12;66791:6;66778:20;;;;;;;:::i;:::-;;;:25;66774:87;;66812:12;66825:6;66812:20;;;;;;;:::i;:::-;;;;66697:172;-1:-1:-1;;66697:172:0:o;66774:87::-;-1:-1:-1;66855:6:0;66697:172::o;36256:110::-;36332:26;36342:2;36346:7;36332:26;;;;;;;;;;;;:9;:26::i;40030:980::-;40185:4;-1:-1:-1;;;;;40206:13:0;;12660:20;12708:8;40202:801;;40259:175;;-1:-1:-1;;;40259:175:0;;-1:-1:-1;;;;;40259:36:0;;;;;:175;;9848:10;;40353:4;;40380:7;;40410:5;;40259:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40259:175:0;;;;;;;;-1:-1:-1;;40259:175:0;;;;;;;;;;;;:::i;:::-;;;40238:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40617:6;:13;40634:1;40617:18;40613:320;;40660:108;;-1:-1:-1;;;40660:108:0;;;;;;;:::i;40613:320::-;40883:6;40877:13;40868:6;40864:2;40860:15;40853:38;40238:710;-1:-1:-1;;;;;;40498:51:0;-1:-1:-1;;;40498:51:0;;-1:-1:-1;40491:58:0;;40202:801;-1:-1:-1;40987:4:0;40030:980;;;;;;:::o;46353:1002::-;46633:22;46683:1;46658:22;46675:4;46658:16;:22::i;:::-;:26;;;;:::i;:::-;46695:18;46716:26;;;:17;:26;;;;;;46633:51;;-1:-1:-1;46849:28:0;;;46845:328;;-1:-1:-1;;;;;46916:18:0;;46894:19;46916:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46967:30;;;;;;:44;;;47084:30;;:17;:30;;;;;:43;;;46845:328;-1:-1:-1;47269:26:0;;;;:17;:26;;;;;;;;47262:33;;;-1:-1:-1;;;;;47313:18:0;;;;;:12;:18;;;;;:34;;;;;;;47306:41;46353:1002::o;47650:1079::-;47928:10;:17;47903:22;;47928:21;;47948:1;;47928:21;:::i;:::-;47960:18;47981:24;;;:15;:24;;;;;;48354:10;:26;;47903:46;;-1:-1:-1;47981:24:0;;47903:46;;48354:26;;;;;;:::i;:::-;;;;;;;;;48332:48;;48418:11;48393:10;48404;48393:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48498:28;;;:15;:28;;;;;;;:41;;;48670:24;;;;;48663:31;48705:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47721:1008;;;47650:1079;:::o;45140:221::-;45225:14;45242:20;45259:2;45242:16;:20::i;:::-;-1:-1:-1;;;;;45273:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45318:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45140:221:0:o;36593:321::-;36723:18;36729:2;36733:7;36723:5;:18::i;:::-;36774:54;36805:1;36809:2;36813:7;36822:5;36774:22;:54::i;:::-;36752:154;;;;-1:-1:-1;;;36752:154:0;;;;;;;:::i;37250:382::-;-1:-1:-1;;;;;37330:16:0;;37322:61;;;;-1:-1:-1;;;37322:61:0;;25629:2:1;37322:61:0;;;25611:21:1;;;25648:18;;;25641:30;25707:34;25687:18;;;25680:62;25759:18;;37322:61:0;25427:356:1;37322:61:0;35233:4;35257:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35257:16:0;:30;37394:58;;;;-1:-1:-1;;;37394:58:0;;25990:2:1;37394:58:0;;;25972:21:1;26029:2;26009:18;;;26002:30;26068;26048:18;;;26041:58;26116:18;;37394:58:0;25788:352:1;37394:58:0;37465:45;37494:1;37498:2;37502:7;37465:20;:45::i;:::-;-1:-1:-1;;;;;37523:13:0;;;;;;:9;:13;;;;;:18;;37540:1;;37523:13;:18;;37540:1;;37523:18;:::i;:::-;;;;-1:-1:-1;;37552:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37552:21:0;-1:-1:-1;;;;;37552:21:0;;;;;;;;37591:33;;37552:16;;;37591:33;;37552:16;;37591:33;37250:382;;:::o;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;381:131::-;-1:-1:-1;;;;;;455:32:1;;445:43;;435:71;;502:1;499;492:12;517:245;575:6;628:2;616:9;607:7;603:23;599:32;596:52;;;644:1;641;634:12;596:52;683:9;670:23;702:30;726:5;702:30;:::i;959:118::-;1045:5;1038:13;1031:21;1024:5;1021:32;1011:60;;1067:1;1064;1057:12;1082:241;1138:6;1191:2;1179:9;1170:7;1166:23;1162:32;1159:52;;;1207:1;1204;1197:12;1159:52;1246:9;1233:23;1265:28;1287:5;1265:28;:::i;1328:250::-;1413:1;1423:113;1437:6;1434:1;1431:13;1423:113;;;1513:11;;;1507:18;1494:11;;;1487:39;1459:2;1452:10;1423:113;;;-1:-1:-1;;1570:1:1;1552:16;;1545:27;1328:250::o;1583:271::-;1625:3;1663:5;1657:12;1690:6;1685:3;1678:19;1706:76;1775:6;1768:4;1763:3;1759:14;1752:4;1745:5;1741:16;1706:76;:::i;:::-;1836:2;1815:15;-1:-1:-1;;1811:29:1;1802:39;;;;1843:4;1798:50;;1583:271;-1:-1:-1;;1583:271:1:o;1859:220::-;2008:2;1997:9;1990:21;1971:4;2028:45;2069:2;2058:9;2054:18;2046:6;2028:45;:::i;2292:131::-;-1:-1:-1;;;;;2367:31:1;;2357:42;;2347:70;;2413:1;2410;2403:12;2428:315;2496:6;2504;2557:2;2545:9;2536:7;2532:23;2528:32;2525:52;;;2573:1;2570;2563:12;2525:52;2612:9;2599:23;2631:31;2656:5;2631:31;:::i;:::-;2681:5;2733:2;2718:18;;;;2705:32;;-1:-1:-1;;;2428:315:1:o;2748:456::-;2825:6;2833;2841;2894:2;2882:9;2873:7;2869:23;2865:32;2862:52;;;2910:1;2907;2900:12;2862:52;2949:9;2936:23;2968:31;2993:5;2968:31;:::i;:::-;3018:5;-1:-1:-1;3075:2:1;3060:18;;3047:32;3088:33;3047:32;3088:33;:::i;:::-;2748:456;;3140:7;;-1:-1:-1;;;3194:2:1;3179:18;;;;3166:32;;2748:456::o;3209:127::-;3270:10;3265:3;3261:20;3258:1;3251:31;3301:4;3298:1;3291:15;3325:4;3322:1;3315:15;3341:632;3406:5;3436:18;3477:2;3469:6;3466:14;3463:40;;;3483:18;;:::i;:::-;3558:2;3552:9;3526:2;3612:15;;-1:-1:-1;;3608:24:1;;;3634:2;3604:33;3600:42;3588:55;;;3658:18;;;3678:22;;;3655:46;3652:72;;;3704:18;;:::i;:::-;3744:10;3740:2;3733:22;3773:6;3764:15;;3803:6;3795;3788:22;3843:3;3834:6;3829:3;3825:16;3822:25;3819:45;;;3860:1;3857;3850:12;3819:45;3910:6;3905:3;3898:4;3890:6;3886:17;3873:44;3965:1;3958:4;3949:6;3941;3937:19;3933:30;3926:41;;;;3341:632;;;;;:::o;3978:451::-;4047:6;4100:2;4088:9;4079:7;4075:23;4071:32;4068:52;;;4116:1;4113;4106:12;4068:52;4156:9;4143:23;4189:18;4181:6;4178:30;4175:50;;;4221:1;4218;4211:12;4175:50;4244:22;;4297:4;4289:13;;4285:27;-1:-1:-1;4275:55:1;;4326:1;4323;4316:12;4275:55;4349:74;4415:7;4410:2;4397:16;4392:2;4388;4384:11;4349:74;:::i;4434:247::-;4493:6;4546:2;4534:9;4525:7;4521:23;4517:32;4514:52;;;4562:1;4559;4552:12;4514:52;4601:9;4588:23;4620:31;4645:5;4620:31;:::i;4686:382::-;4751:6;4759;4812:2;4800:9;4791:7;4787:23;4783:32;4780:52;;;4828:1;4825;4818:12;4780:52;4867:9;4854:23;4886:31;4911:5;4886:31;:::i;:::-;4936:5;-1:-1:-1;4993:2:1;4978:18;;4965:32;5006:30;4965:32;5006:30;:::i;:::-;5055:7;5045:17;;;4686:382;;;;;:::o;5073:795::-;5168:6;5176;5184;5192;5245:3;5233:9;5224:7;5220:23;5216:33;5213:53;;;5262:1;5259;5252:12;5213:53;5301:9;5288:23;5320:31;5345:5;5320:31;:::i;:::-;5370:5;-1:-1:-1;5427:2:1;5412:18;;5399:32;5440:33;5399:32;5440:33;:::i;:::-;5492:7;-1:-1:-1;5546:2:1;5531:18;;5518:32;;-1:-1:-1;5601:2:1;5586:18;;5573:32;5628:18;5617:30;;5614:50;;;5660:1;5657;5650:12;5614:50;5683:22;;5736:4;5728:13;;5724:27;-1:-1:-1;5714:55:1;;5765:1;5762;5755:12;5714:55;5788:74;5854:7;5849:2;5836:16;5831:2;5827;5823:11;5788:74;:::i;:::-;5778:84;;;5073:795;;;;;;;:::o;5873:316::-;5950:6;5958;5966;6019:2;6007:9;5998:7;5994:23;5990:32;5987:52;;;6035:1;6032;6025:12;5987:52;-1:-1:-1;;6058:23:1;;;6128:2;6113:18;;6100:32;;-1:-1:-1;6179:2:1;6164:18;;;6151:32;;5873:316;-1:-1:-1;5873:316:1:o;6194:632::-;6365:2;6417:21;;;6487:13;;6390:18;;;6509:22;;;6336:4;;6365:2;6588:15;;;;6562:2;6547:18;;;6336:4;6631:169;6645:6;6642:1;6639:13;6631:169;;;6706:13;;6694:26;;6775:15;;;;6740:12;;;;6667:1;6660:9;6631:169;;;-1:-1:-1;6817:3:1;;6194:632;-1:-1:-1;;;;;;6194:632:1:o;6831:388::-;6899:6;6907;6960:2;6948:9;6939:7;6935:23;6931:32;6928:52;;;6976:1;6973;6966:12;6928:52;7015:9;7002:23;7034:31;7059:5;7034:31;:::i;:::-;7084:5;-1:-1:-1;7141:2:1;7126:18;;7113:32;7154:33;7113:32;7154:33;:::i;7682:356::-;7884:2;7866:21;;;7903:18;;;7896:30;7962:34;7957:2;7942:18;;7935:62;8029:2;8014:18;;7682:356::o;8043:380::-;8122:1;8118:12;;;;8165;;;8186:61;;8240:4;8232:6;8228:17;8218:27;;8186:61;8293:2;8285:6;8282:14;8262:18;8259:38;8256:161;;8339:10;8334:3;8330:20;8327:1;8320:31;8374:4;8371:1;8364:15;8402:4;8399:1;8392:15;8256:161;;8043:380;;;:::o;9668:413::-;9870:2;9852:21;;;9909:2;9889:18;;;9882:30;9948:34;9943:2;9928:18;;9921:62;-1:-1:-1;;;10014:2:1;9999:18;;9992:47;10071:3;10056:19;;9668:413::o;10853:127::-;10914:10;10909:3;10905:20;10902:1;10895:31;10945:4;10942:1;10935:15;10969:4;10966:1;10959:15;10985:135;11024:3;11045:17;;;11042:43;;11065:18;;:::i;:::-;-1:-1:-1;11112:1:1;11101:13;;10985:135::o;11748:127::-;11809:10;11804:3;11800:20;11797:1;11790:31;11840:4;11837:1;11830:15;11864:4;11861:1;11854:15;11880:184;11950:6;12003:2;11991:9;11982:7;11978:23;11974:32;11971:52;;;12019:1;12016;12009:12;11971:52;-1:-1:-1;12042:16:1;;11880:184;-1:-1:-1;11880:184:1:o;12069:251::-;12139:6;12192:2;12180:9;12171:7;12167:23;12163:32;12160:52;;;12208:1;12205;12198:12;12160:52;12240:9;12234:16;12259:31;12284:5;12259:31;:::i;12325:908::-;12559:4;12607:3;12596:9;12592:19;12638:6;12627:9;12620:25;12664:2;12702:3;12697:2;12686:9;12682:18;12675:31;12726:6;12761;12755:13;12792:6;12784;12777:22;12830:3;12819:9;12815:19;12808:26;;12869:2;12861:6;12857:15;12843:29;;12890:1;12900:195;12914:6;12911:1;12908:13;12900:195;;;12979:13;;-1:-1:-1;;;;;12975:39:1;12963:52;;13070:15;;;;13035:12;;;;13011:1;12929:9;12900:195;;;-1:-1:-1;;;;;;;13151:32:1;;;;13146:2;13131:18;;13124:60;-1:-1:-1;;;13215:2:1;13200:18;13193:34;13112:3;12325:908;-1:-1:-1;;12325:908:1:o;13517:245::-;13584:6;13637:2;13625:9;13616:7;13612:23;13608:32;13605:52;;;13653:1;13650;13643:12;13605:52;13685:9;13679:16;13704:28;13726:5;13704:28;:::i;13893:545::-;13995:2;13990:3;13987:11;13984:448;;;14031:1;14056:5;14052:2;14045:17;14101:4;14097:2;14087:19;14171:2;14159:10;14155:19;14152:1;14148:27;14142:4;14138:38;14207:4;14195:10;14192:20;14189:47;;;-1:-1:-1;14230:4:1;14189:47;14285:2;14280:3;14276:12;14273:1;14269:20;14263:4;14259:31;14249:41;;14340:82;14358:2;14351:5;14348:13;14340:82;;;14403:17;;;14384:1;14373:13;14340:82;;14614:1352;14740:3;14734:10;14767:18;14759:6;14756:30;14753:56;;;14789:18;;:::i;:::-;14818:97;14908:6;14868:38;14900:4;14894:11;14868:38;:::i;:::-;14862:4;14818:97;:::i;:::-;14970:4;;15034:2;15023:14;;15051:1;15046:663;;;;15753:1;15770:6;15767:89;;;-1:-1:-1;15822:19:1;;;15816:26;15767:89;-1:-1:-1;;14571:1:1;14567:11;;;14563:24;14559:29;14549:40;14595:1;14591:11;;;14546:57;15869:81;;15016:944;;15046:663;13840:1;13833:14;;;13877:4;13864:18;;-1:-1:-1;;15082:20:1;;;15200:236;15214:7;15211:1;15208:14;15200:236;;;15303:19;;;15297:26;15282:42;;15395:27;;;;15363:1;15351:14;;;;15230:19;;15200:236;;;15204:3;15464:6;15455:7;15452:19;15449:201;;;15525:19;;;15519:26;-1:-1:-1;;15608:1:1;15604:14;;;15620:3;15600:24;15596:37;15592:42;15577:58;15562:74;;15449:201;-1:-1:-1;;;;;15696:1:1;15680:14;;;15676:22;15663:36;;-1:-1:-1;14614:1352:1:o;18202:168::-;18275:9;;;18306;;18323:15;;;18317:22;;18303:37;18293:71;;18344:18;;:::i;18721:127::-;18782:10;18777:3;18773:20;18770:1;18763:31;18813:4;18810:1;18803:15;18837:4;18834:1;18827:15;18853:120;18893:1;18919;18909:35;;18924:18;;:::i;:::-;-1:-1:-1;18958:9:1;;18853:120::o;20394:1256::-;20618:3;20656:6;20650:13;20682:4;20695:64;20752:6;20747:3;20742:2;20734:6;20730:15;20695:64;:::i;:::-;20822:13;;20781:16;;;;20844:68;20822:13;20781:16;20879:15;;;20844:68;:::i;:::-;21001:13;;20934:20;;;20974:1;;21039:36;21001:13;21039:36;:::i;:::-;21094:1;21111:18;;;21138:141;;;;21293:1;21288:337;;;;21104:521;;21138:141;-1:-1:-1;;21173:24:1;;21159:39;;21250:16;;21243:24;21229:39;;21218:51;;;-1:-1:-1;21138:141:1;;21288:337;21319:6;21316:1;21309:17;21367:2;21364:1;21354:16;21392:1;21406:169;21420:8;21417:1;21414:15;21406:169;;;21502:14;;21487:13;;;21480:37;21545:16;;;;21437:10;;21406:169;;;21410:3;;21606:8;21599:5;21595:20;21588:27;;21104:521;-1:-1:-1;21641:3:1;;20394:1256;-1:-1:-1;;;;;;;;;;20394:1256:1:o;22062:128::-;22129:9;;;22150:11;;;22147:37;;;22164:18;;:::i;23423:125::-;23488:9;;;23509:10;;;23506:36;;;23522:18;;:::i;23553:112::-;23585:1;23611;23601:35;;23616:18;;:::i;:::-;-1:-1:-1;23650:9:1;;23553:112::o;23670:136::-;23709:3;23737:5;23727:39;;23746:18;;:::i;:::-;-1:-1:-1;;;23782:18:1;;23670:136::o;23811:414::-;24013:2;23995:21;;;24052:2;24032:18;;;24025:30;24091:34;24086:2;24071:18;;24064:62;-1:-1:-1;;;24157:2:1;24142:18;;24135:48;24215:3;24200:19;;23811:414::o;24547:489::-;-1:-1:-1;;;;;24816:15:1;;;24798:34;;24868:15;;24863:2;24848:18;;24841:43;24915:2;24900:18;;24893:34;;;24963:3;24958:2;24943:18;;24936:31;;;24741:4;;24984:46;;25010:19;;25002:6;24984:46;:::i;:::-;24976:54;24547:489;-1:-1:-1;;;;;;24547:489:1:o;25041:249::-;25110:6;25163:2;25151:9;25142:7;25138:23;25134:32;25131:52;;;25179:1;25176;25169:12;25131:52;25211:9;25205:16;25230:30;25254:5;25230:30;:::i;25295:127::-;25356:10;25351:3;25347:20;25344:1;25337:31;25387:4;25384:1;25377:15;25411:4;25408:1;25401:15

Swarm Source

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