ETH Price: $3,389.89 (-1.66%)
Gas: 4 Gwei

Token

Bear Market Buds (BMBUDS)
 

Overview

Max Total Supply

6,970 BMBUDS

Holders

2,066

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
sloppypockets.eth
Balance
2 BMBUDS
0x72ceb02dccbbd1963af083b9cb221df70683b6d8
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:
BearMarketBuds

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

    uint256 public price = 0 ether;
    uint256 public maxSupply = 6969;
    uint256 private maxMint = 2;

    string private customBaseURI;
    string private baseExtension = ".json";

    bool public mintOpen = false;

    Counters.Counter private _tokenSupply;

    constructor(string memory _customBaseURI) ERC721("Bear Market Buds", "BMBUDS")  {
        customBaseURI = _customBaseURI;
    }

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

    function mintBulk(uint256 numberOfMints, address mintAddress) public payable onlyOwner{
        uint256 supply = _tokenSupply.current();
       for(uint256 i = 1; i <= numberOfMints; i++){
            _safeMint(mintAddress, supply + i);
            _tokenSupply.increment();
        }
    }

    function mint(uint256 numberOfMints) external payable {
        uint256 supply = _tokenSupply.current();
        require(mintOpen, "Sale Needs To Be Active");
        require(numberOfMints > 0 && numberOfMints <= maxMint, "Invalid purchase amount");
        require(supply.add(numberOfMints) <= maxSupply, "Payment exceeds total supply");

       for(uint256 i = 1; i <= numberOfMints; i++){
            _safeMint(msg.sender, supply + i);
            _tokenSupply.increment();
        }
    }

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

    function toggleSale() public onlyOwner {
        mintOpen = !mintOpen;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return customBaseURI;
    }

    function setBaseURI(string calldata _newBaseURI) external onlyOwner {
        customBaseURI = _newBaseURI;
    }

    function setMaxMint(uint256 _maxMint) external onlyOwner {
        maxMint = _maxMint;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_customBaseURI","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":[{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"},{"internalType":"address","name":"mintAddress","type":"address"}],"name":"mintBulk","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","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":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600755611b3960085560026009556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000619291906200025e565b506000600c60006101000a81548160ff0219169083151502179055503480156200008a57600080fd5b5060405162003bf638038062003bf68339818101604052810190620000b091906200038c565b6040518060400160405280601081526020017f42656172204d61726b65742042756473000000000000000000000000000000008152506040518060400160405280600681526020017f424d4255445300000000000000000000000000000000000000000000000000008152508160009080519060200190620001349291906200025e565b5080600190805190602001906200014d9291906200025e565b50505062000170620001646200019060201b60201c565b6200019860201b60201c565b80600a9080519060200190620001889291906200025e565b505062000561565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026c9062000472565b90600052602060002090601f016020900481019282620002905760008555620002dc565b82601f10620002ab57805160ff1916838001178555620002dc565b82800160010185558215620002dc579182015b82811115620002db578251825591602001919060010190620002be565b5b509050620002eb9190620002ef565b5090565b5b808211156200030a576000816000905550600101620002f0565b5090565b6000620003256200031f8462000406565b620003dd565b90508281526020810184848401111562000344576200034362000541565b5b620003518482856200043c565b509392505050565b600082601f8301126200037157620003706200053c565b5b8151620003838482602086016200030e565b91505092915050565b600060208284031215620003a557620003a46200054b565b5b600082015167ffffffffffffffff811115620003c657620003c562000546565b5b620003d48482850162000359565b91505092915050565b6000620003e9620003fc565b9050620003f78282620004a8565b919050565b6000604051905090565b600067ffffffffffffffff8211156200042457620004236200050d565b5b6200042f8262000550565b9050602081019050919050565b60005b838110156200045c5780820151818401526020810190506200043f565b838111156200046c576000848401525b50505050565b600060028204905060018216806200048b57607f821691505b60208210811415620004a257620004a1620004de565b5b50919050565b620004b38262000550565b810181811067ffffffffffffffff82111715620004d557620004d46200050d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61368580620005716000396000f3fe6080604052600436106101815760003560e01c8063715018a6116100d1578063a0712d681161008a578063c87b56dd11610064578063c87b56dd14610518578063d5abeb0114610555578063e985e9c514610580578063f2fde38b146105bd57610181565b8063a0712d68146104aa578063a22cb465146104c6578063b88d4fde146104ef57610181565b8063715018a6146103df57806371e7e4fb146103f65780637d8966e4146104125780638da5cb5b1461042957806395d89b4114610454578063a035b1fe1461047f57610181565b806324bbd0491161013e578063547520fe11610118578063547520fe1461031357806355f804b31461033c5780636352211e1461036557806370a08231146103a257610181565b806324bbd049146102a85780633ccfd60b146102d357806342842e0e146102ea57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906124be565b6105e6565b6040516101ba9190612a52565b60405180910390f35b3480156101cf57600080fd5b506101d86106c8565b6040516101e59190612a6d565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612565565b61075a565b60405161022291906129eb565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d919061247e565b6107df565b005b34801561026057600080fd5b506102696108f7565b6040516102769190612cef565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a19190612368565b610908565b005b3480156102b457600080fd5b506102bd610968565b6040516102ca9190612a52565b60405180910390f35b3480156102df57600080fd5b506102e861097b565b005b3480156102f657600080fd5b50610311600480360381019061030c9190612368565b610a46565b005b34801561031f57600080fd5b5061033a60048036038101906103359190612565565b610a66565b005b34801561034857600080fd5b50610363600480360381019061035e9190612518565b610aec565b005b34801561037157600080fd5b5061038c60048036038101906103879190612565565b610b7e565b60405161039991906129eb565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c491906122fb565b610c30565b6040516103d69190612cef565b60405180910390f35b3480156103eb57600080fd5b506103f4610ce8565b005b610410600480360381019061040b9190612592565b610d70565b005b34801561041e57600080fd5b50610427610e40565b005b34801561043557600080fd5b5061043e610ee8565b60405161044b91906129eb565b60405180910390f35b34801561046057600080fd5b50610469610f12565b6040516104769190612a6d565b60405180910390f35b34801561048b57600080fd5b50610494610fa4565b6040516104a19190612cef565b60405180910390f35b6104c460048036038101906104bf9190612565565b610faa565b005b3480156104d257600080fd5b506104ed60048036038101906104e8919061243e565b6110f4565b005b3480156104fb57600080fd5b50610516600480360381019061051191906123bb565b611275565b005b34801561052457600080fd5b5061053f600480360381019061053a9190612565565b6112d7565b60405161054c9190612a6d565b60405180910390f35b34801561056157600080fd5b5061056a611381565b6040516105779190612cef565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a29190612328565b611387565b6040516105b49190612a52565b60405180910390f35b3480156105c957600080fd5b506105e460048036038101906105df91906122fb565b61141b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c157506106c082611513565b5b9050919050565b6060600080546106d790612f29565b80601f016020809104026020016040519081016040528092919081815260200182805461070390612f29565b80156107505780601f1061072557610100808354040283529160200191610750565b820191906000526020600020905b81548152906001019060200180831161073357829003601f168201915b5050505050905090565b60006107658261157d565b6107a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079b90612c0f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107ea82610b7e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561085b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085290612c8f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661087a6115e9565b73ffffffffffffffffffffffffffffffffffffffff1614806108a957506108a8816108a36115e9565b611387565b5b6108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df90612b8f565b60405180910390fd5b6108f283836115f1565b505050565b6000610903600d6116aa565b905090565b6109196109136115e9565b826116b8565b610958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094f90612caf565b60405180910390fd5b610963838383611796565b505050565b600c60009054906101000a900460ff1681565b6109836115e9565b73ffffffffffffffffffffffffffffffffffffffff166109a1610ee8565b73ffffffffffffffffffffffffffffffffffffffff16146109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee90612c2f565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a42573d6000803e3d6000fd5b5050565b610a6183838360405180602001604052806000815250611275565b505050565b610a6e6115e9565b73ffffffffffffffffffffffffffffffffffffffff16610a8c610ee8565b73ffffffffffffffffffffffffffffffffffffffff1614610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990612c2f565b60405180910390fd5b8060098190555050565b610af46115e9565b73ffffffffffffffffffffffffffffffffffffffff16610b12610ee8565b73ffffffffffffffffffffffffffffffffffffffff1614610b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5f90612c2f565b60405180910390fd5b8181600a9190610b79929190612129565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e90612bcf565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890612baf565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cf06115e9565b73ffffffffffffffffffffffffffffffffffffffff16610d0e610ee8565b73ffffffffffffffffffffffffffffffffffffffff1614610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b90612c2f565b60405180910390fd5b610d6e60006119f2565b565b610d786115e9565b73ffffffffffffffffffffffffffffffffffffffff16610d96610ee8565b73ffffffffffffffffffffffffffffffffffffffff1614610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390612c2f565b60405180910390fd5b6000610df8600d6116aa565b90506000600190505b838111610e3a57610e1d838284610e189190612db8565b611ab8565b610e27600d611ad6565b8080610e3290612f8c565b915050610e01565b50505050565b610e486115e9565b73ffffffffffffffffffffffffffffffffffffffff16610e66610ee8565b73ffffffffffffffffffffffffffffffffffffffff1614610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390612c2f565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f2190612f29565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4d90612f29565b8015610f9a5780601f10610f6f57610100808354040283529160200191610f9a565b820191906000526020600020905b815481529060010190602001808311610f7d57829003601f168201915b5050505050905090565b60075481565b6000610fb6600d6116aa565b9050600c60009054906101000a900460ff16611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe90612aef565b60405180910390fd5b60008211801561101957506009548211155b611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90612ccf565b60405180910390fd5b60085461106e8383611aec90919063ffffffff16565b11156110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a690612b4f565b60405180910390fd5b6000600190505b8281116110ef576110d23382846110cd9190612db8565b611ab8565b6110dc600d611ad6565b80806110e790612f8c565b9150506110b6565b505050565b6110fc6115e9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561116a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116190612b2f565b60405180910390fd5b80600560006111776115e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112246115e9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112699190612a52565b60405180910390a35050565b6112866112806115e9565b836116b8565b6112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90612caf565b60405180910390fd5b6112d184848484611b02565b50505050565b60606112e28261157d565b611321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131890612c6f565b60405180910390fd5b600061132b611b5e565b9050600081511161134b5760405180602001604052806000815250611379565b8061135584611bf0565b600b604051602001611369939291906129ba565b6040516020818303038152906040525b915050919050565b60085481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114236115e9565b73ffffffffffffffffffffffffffffffffffffffff16611441610ee8565b73ffffffffffffffffffffffffffffffffffffffff1614611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e90612c2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe90612aaf565b60405180910390fd5b611510816119f2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661166483610b7e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006116c38261157d565b611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f990612b6f565b60405180910390fd5b600061170d83610b7e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061177c57508373ffffffffffffffffffffffffffffffffffffffff166117648461075a565b73ffffffffffffffffffffffffffffffffffffffff16145b8061178d575061178c8185611387565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117b682610b7e565b73ffffffffffffffffffffffffffffffffffffffff161461180c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180390612c4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390612b0f565b60405180910390fd5b611887838383611d51565b6118926000826115f1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118e29190612e3f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119399190612db8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ad2828260405180602001604052806000815250611d56565b5050565b6001816000016000828254019250508190555050565b60008183611afa9190612db8565b905092915050565b611b0d848484611796565b611b1984848484611db1565b611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f90612a8f565b60405180910390fd5b50505050565b6060600a8054611b6d90612f29565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9990612f29565b8015611be65780601f10611bbb57610100808354040283529160200191611be6565b820191906000526020600020905b815481529060010190602001808311611bc957829003601f168201915b5050505050905090565b60606000821415611c38576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d4c565b600082905060005b60008214611c6a578080611c5390612f8c565b915050600a82611c639190612e0e565b9150611c40565b60008167ffffffffffffffff811115611c8657611c856130c2565b5b6040519080825280601f01601f191660200182016040528015611cb85781602001600182028036833780820191505090505b5090505b60008514611d4557600182611cd19190612e3f565b9150600a85611ce09190612fd5565b6030611cec9190612db8565b60f81b818381518110611d0257611d01613093565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d3e9190612e0e565b9450611cbc565b8093505050505b919050565b505050565b611d608383611f48565b611d6d6000848484611db1565b611dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da390612a8f565b60405180910390fd5b505050565b6000611dd28473ffffffffffffffffffffffffffffffffffffffff16612116565b15611f3b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611dfb6115e9565b8786866040518563ffffffff1660e01b8152600401611e1d9493929190612a06565b602060405180830381600087803b158015611e3757600080fd5b505af1925050508015611e6857506040513d601f19601f82011682018060405250810190611e6591906124eb565b60015b611eeb573d8060008114611e98576040519150601f19603f3d011682016040523d82523d6000602084013e611e9d565b606091505b50600081511415611ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eda90612a8f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f40565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faf90612bef565b60405180910390fd5b611fc18161157d565b15612001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff890612acf565b60405180910390fd5b61200d60008383611d51565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461205d9190612db8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461213590612f29565b90600052602060002090601f016020900481019282612157576000855561219e565b82601f1061217057803560ff191683800117855561219e565b8280016001018555821561219e579182015b8281111561219d578235825591602001919060010190612182565b5b5090506121ab91906121af565b5090565b5b808211156121c85760008160009055506001016121b0565b5090565b60006121df6121da84612d2f565b612d0a565b9050828152602081018484840111156121fb576121fa613100565b5b612206848285612ee7565b509392505050565b60008135905061221d816135f3565b92915050565b6000813590506122328161360a565b92915050565b60008135905061224781613621565b92915050565b60008151905061225c81613621565b92915050565b600082601f830112612277576122766130f6565b5b81356122878482602086016121cc565b91505092915050565b60008083601f8401126122a6576122a56130f6565b5b8235905067ffffffffffffffff8111156122c3576122c26130f1565b5b6020830191508360018202830111156122df576122de6130fb565b5b9250929050565b6000813590506122f581613638565b92915050565b6000602082840312156123115761231061310a565b5b600061231f8482850161220e565b91505092915050565b6000806040838503121561233f5761233e61310a565b5b600061234d8582860161220e565b925050602061235e8582860161220e565b9150509250929050565b6000806000606084860312156123815761238061310a565b5b600061238f8682870161220e565b93505060206123a08682870161220e565b92505060406123b1868287016122e6565b9150509250925092565b600080600080608085870312156123d5576123d461310a565b5b60006123e38782880161220e565b94505060206123f48782880161220e565b9350506040612405878288016122e6565b925050606085013567ffffffffffffffff81111561242657612425613105565b5b61243287828801612262565b91505092959194509250565b600080604083850312156124555761245461310a565b5b60006124638582860161220e565b925050602061247485828601612223565b9150509250929050565b600080604083850312156124955761249461310a565b5b60006124a38582860161220e565b92505060206124b4858286016122e6565b9150509250929050565b6000602082840312156124d4576124d361310a565b5b60006124e284828501612238565b91505092915050565b6000602082840312156125015761250061310a565b5b600061250f8482850161224d565b91505092915050565b6000806020838503121561252f5761252e61310a565b5b600083013567ffffffffffffffff81111561254d5761254c613105565b5b61255985828601612290565b92509250509250929050565b60006020828403121561257b5761257a61310a565b5b6000612589848285016122e6565b91505092915050565b600080604083850312156125a9576125a861310a565b5b60006125b7858286016122e6565b92505060206125c88582860161220e565b9150509250929050565b6125db81612e73565b82525050565b6125ea81612e85565b82525050565b60006125fb82612d75565b6126058185612d8b565b9350612615818560208601612ef6565b61261e8161310f565b840191505092915050565b600061263482612d80565b61263e8185612d9c565b935061264e818560208601612ef6565b6126578161310f565b840191505092915050565b600061266d82612d80565b6126778185612dad565b9350612687818560208601612ef6565b80840191505092915050565b600081546126a081612f29565b6126aa8186612dad565b945060018216600081146126c557600181146126d657612709565b60ff19831686528186019350612709565b6126df85612d60565b60005b83811015612701578154818901526001820191506020810190506126e2565b838801955050505b50505092915050565b600061271f603283612d9c565b915061272a82613120565b604082019050919050565b6000612742602683612d9c565b915061274d8261316f565b604082019050919050565b6000612765601c83612d9c565b9150612770826131be565b602082019050919050565b6000612788601783612d9c565b9150612793826131e7565b602082019050919050565b60006127ab602483612d9c565b91506127b682613210565b604082019050919050565b60006127ce601983612d9c565b91506127d98261325f565b602082019050919050565b60006127f1601c83612d9c565b91506127fc82613288565b602082019050919050565b6000612814602c83612d9c565b915061281f826132b1565b604082019050919050565b6000612837603883612d9c565b915061284282613300565b604082019050919050565b600061285a602a83612d9c565b91506128658261334f565b604082019050919050565b600061287d602983612d9c565b91506128888261339e565b604082019050919050565b60006128a0602083612d9c565b91506128ab826133ed565b602082019050919050565b60006128c3602c83612d9c565b91506128ce82613416565b604082019050919050565b60006128e6602083612d9c565b91506128f182613465565b602082019050919050565b6000612909602983612d9c565b91506129148261348e565b604082019050919050565b600061292c602f83612d9c565b9150612937826134dd565b604082019050919050565b600061294f602183612d9c565b915061295a8261352c565b604082019050919050565b6000612972603183612d9c565b915061297d8261357b565b604082019050919050565b6000612995601783612d9c565b91506129a0826135ca565b602082019050919050565b6129b481612edd565b82525050565b60006129c68286612662565b91506129d28285612662565b91506129de8284612693565b9150819050949350505050565b6000602082019050612a0060008301846125d2565b92915050565b6000608082019050612a1b60008301876125d2565b612a2860208301866125d2565b612a3560408301856129ab565b8181036060830152612a4781846125f0565b905095945050505050565b6000602082019050612a6760008301846125e1565b92915050565b60006020820190508181036000830152612a878184612629565b905092915050565b60006020820190508181036000830152612aa881612712565b9050919050565b60006020820190508181036000830152612ac881612735565b9050919050565b60006020820190508181036000830152612ae881612758565b9050919050565b60006020820190508181036000830152612b088161277b565b9050919050565b60006020820190508181036000830152612b288161279e565b9050919050565b60006020820190508181036000830152612b48816127c1565b9050919050565b60006020820190508181036000830152612b68816127e4565b9050919050565b60006020820190508181036000830152612b8881612807565b9050919050565b60006020820190508181036000830152612ba88161282a565b9050919050565b60006020820190508181036000830152612bc88161284d565b9050919050565b60006020820190508181036000830152612be881612870565b9050919050565b60006020820190508181036000830152612c0881612893565b9050919050565b60006020820190508181036000830152612c28816128b6565b9050919050565b60006020820190508181036000830152612c48816128d9565b9050919050565b60006020820190508181036000830152612c68816128fc565b9050919050565b60006020820190508181036000830152612c888161291f565b9050919050565b60006020820190508181036000830152612ca881612942565b9050919050565b60006020820190508181036000830152612cc881612965565b9050919050565b60006020820190508181036000830152612ce881612988565b9050919050565b6000602082019050612d0460008301846129ab565b92915050565b6000612d14612d25565b9050612d208282612f5b565b919050565b6000604051905090565b600067ffffffffffffffff821115612d4a57612d496130c2565b5b612d538261310f565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612dc382612edd565b9150612dce83612edd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e0357612e02613006565b5b828201905092915050565b6000612e1982612edd565b9150612e2483612edd565b925082612e3457612e33613035565b5b828204905092915050565b6000612e4a82612edd565b9150612e5583612edd565b925082821015612e6857612e67613006565b5b828203905092915050565b6000612e7e82612ebd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f14578082015181840152602081019050612ef9565b83811115612f23576000848401525b50505050565b60006002820490506001821680612f4157607f821691505b60208210811415612f5557612f54613064565b5b50919050565b612f648261310f565b810181811067ffffffffffffffff82111715612f8357612f826130c2565b5b80604052505050565b6000612f9782612edd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fca57612fc9613006565b5b600182019050919050565b6000612fe082612edd565b9150612feb83612edd565b925082612ffb57612ffa613035565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c65204e6565647320546f20426520416374697665000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5061796d656e74206578636565647320746f74616c20737570706c7900000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e76616c696420707572636861736520616d6f756e74000000000000000000600082015250565b6135fc81612e73565b811461360757600080fd5b50565b61361381612e85565b811461361e57600080fd5b50565b61362a81612e91565b811461363557600080fd5b50565b61364181612edd565b811461364c57600080fd5b5056fea264697066735822122015d3dc036254d9a211e50c98cfe2a00530511caf53bff2b849aa9624f321e4f564736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000a546f426541646465642f00000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101815760003560e01c8063715018a6116100d1578063a0712d681161008a578063c87b56dd11610064578063c87b56dd14610518578063d5abeb0114610555578063e985e9c514610580578063f2fde38b146105bd57610181565b8063a0712d68146104aa578063a22cb465146104c6578063b88d4fde146104ef57610181565b8063715018a6146103df57806371e7e4fb146103f65780637d8966e4146104125780638da5cb5b1461042957806395d89b4114610454578063a035b1fe1461047f57610181565b806324bbd0491161013e578063547520fe11610118578063547520fe1461031357806355f804b31461033c5780636352211e1461036557806370a08231146103a257610181565b806324bbd049146102a85780633ccfd60b146102d357806342842e0e146102ea57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906124be565b6105e6565b6040516101ba9190612a52565b60405180910390f35b3480156101cf57600080fd5b506101d86106c8565b6040516101e59190612a6d565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612565565b61075a565b60405161022291906129eb565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d919061247e565b6107df565b005b34801561026057600080fd5b506102696108f7565b6040516102769190612cef565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a19190612368565b610908565b005b3480156102b457600080fd5b506102bd610968565b6040516102ca9190612a52565b60405180910390f35b3480156102df57600080fd5b506102e861097b565b005b3480156102f657600080fd5b50610311600480360381019061030c9190612368565b610a46565b005b34801561031f57600080fd5b5061033a60048036038101906103359190612565565b610a66565b005b34801561034857600080fd5b50610363600480360381019061035e9190612518565b610aec565b005b34801561037157600080fd5b5061038c60048036038101906103879190612565565b610b7e565b60405161039991906129eb565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c491906122fb565b610c30565b6040516103d69190612cef565b60405180910390f35b3480156103eb57600080fd5b506103f4610ce8565b005b610410600480360381019061040b9190612592565b610d70565b005b34801561041e57600080fd5b50610427610e40565b005b34801561043557600080fd5b5061043e610ee8565b60405161044b91906129eb565b60405180910390f35b34801561046057600080fd5b50610469610f12565b6040516104769190612a6d565b60405180910390f35b34801561048b57600080fd5b50610494610fa4565b6040516104a19190612cef565b60405180910390f35b6104c460048036038101906104bf9190612565565b610faa565b005b3480156104d257600080fd5b506104ed60048036038101906104e8919061243e565b6110f4565b005b3480156104fb57600080fd5b50610516600480360381019061051191906123bb565b611275565b005b34801561052457600080fd5b5061053f600480360381019061053a9190612565565b6112d7565b60405161054c9190612a6d565b60405180910390f35b34801561056157600080fd5b5061056a611381565b6040516105779190612cef565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a29190612328565b611387565b6040516105b49190612a52565b60405180910390f35b3480156105c957600080fd5b506105e460048036038101906105df91906122fb565b61141b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c157506106c082611513565b5b9050919050565b6060600080546106d790612f29565b80601f016020809104026020016040519081016040528092919081815260200182805461070390612f29565b80156107505780601f1061072557610100808354040283529160200191610750565b820191906000526020600020905b81548152906001019060200180831161073357829003601f168201915b5050505050905090565b60006107658261157d565b6107a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079b90612c0f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107ea82610b7e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561085b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085290612c8f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661087a6115e9565b73ffffffffffffffffffffffffffffffffffffffff1614806108a957506108a8816108a36115e9565b611387565b5b6108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df90612b8f565b60405180910390fd5b6108f283836115f1565b505050565b6000610903600d6116aa565b905090565b6109196109136115e9565b826116b8565b610958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094f90612caf565b60405180910390fd5b610963838383611796565b505050565b600c60009054906101000a900460ff1681565b6109836115e9565b73ffffffffffffffffffffffffffffffffffffffff166109a1610ee8565b73ffffffffffffffffffffffffffffffffffffffff16146109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee90612c2f565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a42573d6000803e3d6000fd5b5050565b610a6183838360405180602001604052806000815250611275565b505050565b610a6e6115e9565b73ffffffffffffffffffffffffffffffffffffffff16610a8c610ee8565b73ffffffffffffffffffffffffffffffffffffffff1614610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990612c2f565b60405180910390fd5b8060098190555050565b610af46115e9565b73ffffffffffffffffffffffffffffffffffffffff16610b12610ee8565b73ffffffffffffffffffffffffffffffffffffffff1614610b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5f90612c2f565b60405180910390fd5b8181600a9190610b79929190612129565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e90612bcf565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890612baf565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cf06115e9565b73ffffffffffffffffffffffffffffffffffffffff16610d0e610ee8565b73ffffffffffffffffffffffffffffffffffffffff1614610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b90612c2f565b60405180910390fd5b610d6e60006119f2565b565b610d786115e9565b73ffffffffffffffffffffffffffffffffffffffff16610d96610ee8565b73ffffffffffffffffffffffffffffffffffffffff1614610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390612c2f565b60405180910390fd5b6000610df8600d6116aa565b90506000600190505b838111610e3a57610e1d838284610e189190612db8565b611ab8565b610e27600d611ad6565b8080610e3290612f8c565b915050610e01565b50505050565b610e486115e9565b73ffffffffffffffffffffffffffffffffffffffff16610e66610ee8565b73ffffffffffffffffffffffffffffffffffffffff1614610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390612c2f565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f2190612f29565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4d90612f29565b8015610f9a5780601f10610f6f57610100808354040283529160200191610f9a565b820191906000526020600020905b815481529060010190602001808311610f7d57829003601f168201915b5050505050905090565b60075481565b6000610fb6600d6116aa565b9050600c60009054906101000a900460ff16611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe90612aef565b60405180910390fd5b60008211801561101957506009548211155b611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90612ccf565b60405180910390fd5b60085461106e8383611aec90919063ffffffff16565b11156110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a690612b4f565b60405180910390fd5b6000600190505b8281116110ef576110d23382846110cd9190612db8565b611ab8565b6110dc600d611ad6565b80806110e790612f8c565b9150506110b6565b505050565b6110fc6115e9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561116a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116190612b2f565b60405180910390fd5b80600560006111776115e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112246115e9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112699190612a52565b60405180910390a35050565b6112866112806115e9565b836116b8565b6112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90612caf565b60405180910390fd5b6112d184848484611b02565b50505050565b60606112e28261157d565b611321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131890612c6f565b60405180910390fd5b600061132b611b5e565b9050600081511161134b5760405180602001604052806000815250611379565b8061135584611bf0565b600b604051602001611369939291906129ba565b6040516020818303038152906040525b915050919050565b60085481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114236115e9565b73ffffffffffffffffffffffffffffffffffffffff16611441610ee8565b73ffffffffffffffffffffffffffffffffffffffff1614611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e90612c2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe90612aaf565b60405180910390fd5b611510816119f2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661166483610b7e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006116c38261157d565b611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f990612b6f565b60405180910390fd5b600061170d83610b7e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061177c57508373ffffffffffffffffffffffffffffffffffffffff166117648461075a565b73ffffffffffffffffffffffffffffffffffffffff16145b8061178d575061178c8185611387565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117b682610b7e565b73ffffffffffffffffffffffffffffffffffffffff161461180c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180390612c4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390612b0f565b60405180910390fd5b611887838383611d51565b6118926000826115f1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118e29190612e3f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119399190612db8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ad2828260405180602001604052806000815250611d56565b5050565b6001816000016000828254019250508190555050565b60008183611afa9190612db8565b905092915050565b611b0d848484611796565b611b1984848484611db1565b611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f90612a8f565b60405180910390fd5b50505050565b6060600a8054611b6d90612f29565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9990612f29565b8015611be65780601f10611bbb57610100808354040283529160200191611be6565b820191906000526020600020905b815481529060010190602001808311611bc957829003601f168201915b5050505050905090565b60606000821415611c38576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d4c565b600082905060005b60008214611c6a578080611c5390612f8c565b915050600a82611c639190612e0e565b9150611c40565b60008167ffffffffffffffff811115611c8657611c856130c2565b5b6040519080825280601f01601f191660200182016040528015611cb85781602001600182028036833780820191505090505b5090505b60008514611d4557600182611cd19190612e3f565b9150600a85611ce09190612fd5565b6030611cec9190612db8565b60f81b818381518110611d0257611d01613093565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d3e9190612e0e565b9450611cbc565b8093505050505b919050565b505050565b611d608383611f48565b611d6d6000848484611db1565b611dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da390612a8f565b60405180910390fd5b505050565b6000611dd28473ffffffffffffffffffffffffffffffffffffffff16612116565b15611f3b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611dfb6115e9565b8786866040518563ffffffff1660e01b8152600401611e1d9493929190612a06565b602060405180830381600087803b158015611e3757600080fd5b505af1925050508015611e6857506040513d601f19601f82011682018060405250810190611e6591906124eb565b60015b611eeb573d8060008114611e98576040519150601f19603f3d011682016040523d82523d6000602084013e611e9d565b606091505b50600081511415611ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eda90612a8f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f40565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faf90612bef565b60405180910390fd5b611fc18161157d565b15612001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff890612acf565b60405180910390fd5b61200d60008383611d51565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461205d9190612db8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461213590612f29565b90600052602060002090601f016020900481019282612157576000855561219e565b82601f1061217057803560ff191683800117855561219e565b8280016001018555821561219e579182015b8281111561219d578235825591602001919060010190612182565b5b5090506121ab91906121af565b5090565b5b808211156121c85760008160009055506001016121b0565b5090565b60006121df6121da84612d2f565b612d0a565b9050828152602081018484840111156121fb576121fa613100565b5b612206848285612ee7565b509392505050565b60008135905061221d816135f3565b92915050565b6000813590506122328161360a565b92915050565b60008135905061224781613621565b92915050565b60008151905061225c81613621565b92915050565b600082601f830112612277576122766130f6565b5b81356122878482602086016121cc565b91505092915050565b60008083601f8401126122a6576122a56130f6565b5b8235905067ffffffffffffffff8111156122c3576122c26130f1565b5b6020830191508360018202830111156122df576122de6130fb565b5b9250929050565b6000813590506122f581613638565b92915050565b6000602082840312156123115761231061310a565b5b600061231f8482850161220e565b91505092915050565b6000806040838503121561233f5761233e61310a565b5b600061234d8582860161220e565b925050602061235e8582860161220e565b9150509250929050565b6000806000606084860312156123815761238061310a565b5b600061238f8682870161220e565b93505060206123a08682870161220e565b92505060406123b1868287016122e6565b9150509250925092565b600080600080608085870312156123d5576123d461310a565b5b60006123e38782880161220e565b94505060206123f48782880161220e565b9350506040612405878288016122e6565b925050606085013567ffffffffffffffff81111561242657612425613105565b5b61243287828801612262565b91505092959194509250565b600080604083850312156124555761245461310a565b5b60006124638582860161220e565b925050602061247485828601612223565b9150509250929050565b600080604083850312156124955761249461310a565b5b60006124a38582860161220e565b92505060206124b4858286016122e6565b9150509250929050565b6000602082840312156124d4576124d361310a565b5b60006124e284828501612238565b91505092915050565b6000602082840312156125015761250061310a565b5b600061250f8482850161224d565b91505092915050565b6000806020838503121561252f5761252e61310a565b5b600083013567ffffffffffffffff81111561254d5761254c613105565b5b61255985828601612290565b92509250509250929050565b60006020828403121561257b5761257a61310a565b5b6000612589848285016122e6565b91505092915050565b600080604083850312156125a9576125a861310a565b5b60006125b7858286016122e6565b92505060206125c88582860161220e565b9150509250929050565b6125db81612e73565b82525050565b6125ea81612e85565b82525050565b60006125fb82612d75565b6126058185612d8b565b9350612615818560208601612ef6565b61261e8161310f565b840191505092915050565b600061263482612d80565b61263e8185612d9c565b935061264e818560208601612ef6565b6126578161310f565b840191505092915050565b600061266d82612d80565b6126778185612dad565b9350612687818560208601612ef6565b80840191505092915050565b600081546126a081612f29565b6126aa8186612dad565b945060018216600081146126c557600181146126d657612709565b60ff19831686528186019350612709565b6126df85612d60565b60005b83811015612701578154818901526001820191506020810190506126e2565b838801955050505b50505092915050565b600061271f603283612d9c565b915061272a82613120565b604082019050919050565b6000612742602683612d9c565b915061274d8261316f565b604082019050919050565b6000612765601c83612d9c565b9150612770826131be565b602082019050919050565b6000612788601783612d9c565b9150612793826131e7565b602082019050919050565b60006127ab602483612d9c565b91506127b682613210565b604082019050919050565b60006127ce601983612d9c565b91506127d98261325f565b602082019050919050565b60006127f1601c83612d9c565b91506127fc82613288565b602082019050919050565b6000612814602c83612d9c565b915061281f826132b1565b604082019050919050565b6000612837603883612d9c565b915061284282613300565b604082019050919050565b600061285a602a83612d9c565b91506128658261334f565b604082019050919050565b600061287d602983612d9c565b91506128888261339e565b604082019050919050565b60006128a0602083612d9c565b91506128ab826133ed565b602082019050919050565b60006128c3602c83612d9c565b91506128ce82613416565b604082019050919050565b60006128e6602083612d9c565b91506128f182613465565b602082019050919050565b6000612909602983612d9c565b91506129148261348e565b604082019050919050565b600061292c602f83612d9c565b9150612937826134dd565b604082019050919050565b600061294f602183612d9c565b915061295a8261352c565b604082019050919050565b6000612972603183612d9c565b915061297d8261357b565b604082019050919050565b6000612995601783612d9c565b91506129a0826135ca565b602082019050919050565b6129b481612edd565b82525050565b60006129c68286612662565b91506129d28285612662565b91506129de8284612693565b9150819050949350505050565b6000602082019050612a0060008301846125d2565b92915050565b6000608082019050612a1b60008301876125d2565b612a2860208301866125d2565b612a3560408301856129ab565b8181036060830152612a4781846125f0565b905095945050505050565b6000602082019050612a6760008301846125e1565b92915050565b60006020820190508181036000830152612a878184612629565b905092915050565b60006020820190508181036000830152612aa881612712565b9050919050565b60006020820190508181036000830152612ac881612735565b9050919050565b60006020820190508181036000830152612ae881612758565b9050919050565b60006020820190508181036000830152612b088161277b565b9050919050565b60006020820190508181036000830152612b288161279e565b9050919050565b60006020820190508181036000830152612b48816127c1565b9050919050565b60006020820190508181036000830152612b68816127e4565b9050919050565b60006020820190508181036000830152612b8881612807565b9050919050565b60006020820190508181036000830152612ba88161282a565b9050919050565b60006020820190508181036000830152612bc88161284d565b9050919050565b60006020820190508181036000830152612be881612870565b9050919050565b60006020820190508181036000830152612c0881612893565b9050919050565b60006020820190508181036000830152612c28816128b6565b9050919050565b60006020820190508181036000830152612c48816128d9565b9050919050565b60006020820190508181036000830152612c68816128fc565b9050919050565b60006020820190508181036000830152612c888161291f565b9050919050565b60006020820190508181036000830152612ca881612942565b9050919050565b60006020820190508181036000830152612cc881612965565b9050919050565b60006020820190508181036000830152612ce881612988565b9050919050565b6000602082019050612d0460008301846129ab565b92915050565b6000612d14612d25565b9050612d208282612f5b565b919050565b6000604051905090565b600067ffffffffffffffff821115612d4a57612d496130c2565b5b612d538261310f565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612dc382612edd565b9150612dce83612edd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e0357612e02613006565b5b828201905092915050565b6000612e1982612edd565b9150612e2483612edd565b925082612e3457612e33613035565b5b828204905092915050565b6000612e4a82612edd565b9150612e5583612edd565b925082821015612e6857612e67613006565b5b828203905092915050565b6000612e7e82612ebd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f14578082015181840152602081019050612ef9565b83811115612f23576000848401525b50505050565b60006002820490506001821680612f4157607f821691505b60208210811415612f5557612f54613064565b5b50919050565b612f648261310f565b810181811067ffffffffffffffff82111715612f8357612f826130c2565b5b80604052505050565b6000612f9782612edd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fca57612fc9613006565b5b600182019050919050565b6000612fe082612edd565b9150612feb83612edd565b925082612ffb57612ffa613035565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c65204e6565647320546f20426520416374697665000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5061796d656e74206578636565647320746f74616c20737570706c7900000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e76616c696420707572636861736520616d6f756e74000000000000000000600082015250565b6135fc81612e73565b811461360757600080fd5b50565b61361381612e85565b811461361e57600080fd5b50565b61362a81612e91565b811461363557600080fd5b50565b61364181612edd565b811461364c57600080fd5b5056fea264697066735822122015d3dc036254d9a211e50c98cfe2a00530511caf53bff2b849aa9624f321e4f564736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000a546f426541646465642f00000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _customBaseURI (string): ToBeAdded/

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [2] : 546f426541646465642f00000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

39052:2453:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25246:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26191:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27750:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27273:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39593:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28640:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39373:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41357:143;;;;;;;;;;;;;:::i;:::-;;29050:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41255:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41133:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25885:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25615:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38423:94;;;;;;;;;;;;;:::i;:::-;;39702:296;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40925:78;;;;;;;;;;;;;:::i;:::-;;37772:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26360:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39180:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40006:502;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28043:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29306:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40516:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39217:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28409:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38672:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25246:305;25348:4;25400:25;25385:40;;;:11;:40;;;;:105;;;;25457:33;25442:48;;;:11;:48;;;;25385:105;:158;;;;25507:36;25531:11;25507:23;:36::i;:::-;25385:158;25365:178;;25246:305;;;:::o;26191:100::-;26245:13;26278:5;26271:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26191:100;:::o;27750:221::-;27826:7;27854:16;27862:7;27854;:16::i;:::-;27846:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27939:15;:24;27955:7;27939:24;;;;;;;;;;;;;;;;;;;;;27932:31;;27750:221;;;:::o;27273:411::-;27354:13;27370:23;27385:7;27370:14;:23::i;:::-;27354:39;;27418:5;27412:11;;:2;:11;;;;27404:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27512:5;27496:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27521:37;27538:5;27545:12;:10;:12::i;:::-;27521:16;:37::i;:::-;27496:62;27474:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27655:21;27664:2;27668:7;27655:8;:21::i;:::-;27343:341;27273:411;;:::o;39593:101::-;39637:7;39664:22;:12;:20;:22::i;:::-;39657:29;;39593:101;:::o;28640:339::-;28835:41;28854:12;:10;:12::i;:::-;28868:7;28835:18;:41::i;:::-;28827:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28943:28;28953:4;28959:2;28963:7;28943:9;:28::i;:::-;28640:339;;;:::o;39373:28::-;;;;;;;;;;;;;:::o;41357:143::-;38003:12;:10;:12::i;:::-;37992:23;;:7;:5;:7::i;:::-;:23;;;37984:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41405:15:::1;41423:21;41405:39;;41463:10;41455:28;;:37;41484:7;41455:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;41394:106;41357:143::o:0;29050:185::-;29188:39;29205:4;29211:2;29215:7;29188:39;;;;;;;;;;;;:16;:39::i;:::-;29050:185;;;:::o;41255:94::-;38003:12;:10;:12::i;:::-;37992:23;;:7;:5;:7::i;:::-;:23;;;37984:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41333:8:::1;41323:7;:18;;;;41255:94:::0;:::o;41133:114::-;38003:12;:10;:12::i;:::-;37992:23;;:7;:5;:7::i;:::-;:23;;;37984:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41228:11:::1;;41212:13;:27;;;;;;;:::i;:::-;;41133:114:::0;;:::o;25885:239::-;25957:7;25977:13;25993:7;:16;26001:7;25993:16;;;;;;;;;;;;;;;;;;;;;25977:32;;26045:1;26028:19;;:5;:19;;;;26020:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26111:5;26104:12;;;25885:239;;;:::o;25615:208::-;25687:7;25732:1;25715:19;;:5;:19;;;;25707:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25799:9;:16;25809:5;25799:16;;;;;;;;;;;;;;;;25792:23;;25615:208;;;:::o;38423:94::-;38003:12;:10;:12::i;:::-;37992:23;;:7;:5;:7::i;:::-;:23;;;37984:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38488:21:::1;38506:1;38488:9;:21::i;:::-;38423:94::o:0;39702:296::-;38003:12;:10;:12::i;:::-;37992:23;;:7;:5;:7::i;:::-;:23;;;37984:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39799:14:::1;39816:22;:12;:20;:22::i;:::-;39799:39;;39852:9;39864:1;39852:13;;39848:143;39872:13;39867:1;:18;39848:143;;39906:34;39916:11;39938:1;39929:6;:10;;;;:::i;:::-;39906:9;:34::i;:::-;39955:24;:12;:22;:24::i;:::-;39887:3;;;;;:::i;:::-;;;;39848:143;;;;39788:210;39702:296:::0;;:::o;40925:78::-;38003:12;:10;:12::i;:::-;37992:23;;:7;:5;:7::i;:::-;:23;;;37984:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40987:8:::1;;;;;;;;;;;40986:9;40975:8;;:20;;;;;;;;;;;;;;;;;;40925:78::o:0;37772:87::-;37818:7;37845:6;;;;;;;;;;;37838:13;;37772:87;:::o;26360:104::-;26416:13;26449:7;26442:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26360:104;:::o;39180:30::-;;;;:::o;40006:502::-;40071:14;40088:22;:12;:20;:22::i;:::-;40071:39;;40129:8;;;;;;;;;;;40121:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;40200:1;40184:13;:17;:45;;;;;40222:7;;40205:13;:24;;40184:45;40176:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;40305:9;;40276:25;40287:13;40276:6;:10;;:25;;;;:::i;:::-;:38;;40268:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;40363:9;40375:1;40363:13;;40359:142;40383:13;40378:1;:18;40359:142;;40417:33;40427:10;40448:1;40439:6;:10;;;;:::i;:::-;40417:9;:33::i;:::-;40465:24;:12;:22;:24::i;:::-;40398:3;;;;;:::i;:::-;;;;40359:142;;;;40060:448;40006:502;:::o;28043:295::-;28158:12;:10;:12::i;:::-;28146:24;;:8;:24;;;;28138:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;28258:8;28213:18;:32;28232:12;:10;:12::i;:::-;28213:32;;;;;;;;;;;;;;;:42;28246:8;28213:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28311:8;28282:48;;28297:12;:10;:12::i;:::-;28282:48;;;28321:8;28282:48;;;;;;:::i;:::-;;;;;;;;28043:295;;:::o;29306:328::-;29481:41;29500:12;:10;:12::i;:::-;29514:7;29481:18;:41::i;:::-;29473:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29587:39;29601:4;29607:2;29611:7;29620:5;29587:13;:39::i;:::-;29306:328;;;;:::o;40516:401::-;40589:13;40623:16;40631:7;40623;:16::i;:::-;40615:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;40702:28;40733:10;:8;:10::i;:::-;40702:41;;40792:1;40767:14;40761:28;:32;:148;;;;;;;;;;;;;;;;;40833:14;40849:25;40866:7;40849:16;:25::i;:::-;40876:13;40816:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40761:148;40754:155;;;40516:401;;;:::o;39217:31::-;;;;:::o;28409:164::-;28506:4;28530:18;:25;28549:5;28530:25;;;;;;;;;;;;;;;:35;28556:8;28530:35;;;;;;;;;;;;;;;;;;;;;;;;;28523:42;;28409:164;;;;:::o;38672:192::-;38003:12;:10;:12::i;:::-;37992:23;;:7;:5;:7::i;:::-;:23;;;37984:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38781:1:::1;38761:22;;:8;:22;;;;38753:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38837:19;38847:8;38837:9;:19::i;:::-;38672:192:::0;:::o;12473:157::-;12558:4;12597:25;12582:40;;;:11;:40;;;;12575:47;;12473:157;;;:::o;31144:127::-;31209:4;31261:1;31233:30;;:7;:16;31241:7;31233:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31226:37;;31144:127;;;:::o;3046:98::-;3099:7;3126:10;3119:17;;3046:98;:::o;35126:174::-;35228:2;35201:15;:24;35217:7;35201:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35284:7;35280:2;35246:46;;35255:23;35270:7;35255:14;:23::i;:::-;35246:46;;;;;;;;;;;;35126:174;;:::o;2420:114::-;2485:7;2512;:14;;;2505:21;;2420:114;;;:::o;31438:348::-;31531:4;31556:16;31564:7;31556;:16::i;:::-;31548:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31632:13;31648:23;31663:7;31648:14;:23::i;:::-;31632:39;;31701:5;31690:16;;:7;:16;;;:51;;;;31734:7;31710:31;;:20;31722:7;31710:11;:20::i;:::-;:31;;;31690:51;:87;;;;31745:32;31762:5;31769:7;31745:16;:32::i;:::-;31690:87;31682:96;;;31438:348;;;;:::o;34430:578::-;34589:4;34562:31;;:23;34577:7;34562:14;:23::i;:::-;:31;;;34554:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34672:1;34658:16;;:2;:16;;;;34650:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34728:39;34749:4;34755:2;34759:7;34728:20;:39::i;:::-;34832:29;34849:1;34853:7;34832:8;:29::i;:::-;34893:1;34874:9;:15;34884:4;34874:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34922:1;34905:9;:13;34915:2;34905:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34953:2;34934:7;:16;34942:7;34934:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34992:7;34988:2;34973:27;;34982:4;34973:27;;;;;;;;;;;;34430:578;;;:::o;38872:173::-;38928:16;38947:6;;;;;;;;;;;38928:25;;38973:8;38964:6;;:17;;;;;;;;;;;;;;;;;;39028:8;38997:40;;39018:8;38997:40;;;;;;;;;;;;38917:128;38872:173;:::o;32128:110::-;32204:26;32214:2;32218:7;32204:26;;;;;;;;;;;;:9;:26::i;:::-;32128:110;;:::o;2542:127::-;2649:1;2631:7;:14;;;:19;;;;;;;;;;;2542:127;:::o;20106:98::-;20164:7;20195:1;20191;:5;;;;:::i;:::-;20184:12;;20106:98;;;;:::o;30516:315::-;30673:28;30683:4;30689:2;30693:7;30673:9;:28::i;:::-;30720:48;30743:4;30749:2;30753:7;30762:5;30720:22;:48::i;:::-;30712:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30516:315;;;;:::o;41011:114::-;41071:13;41104;41097:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41011:114;:::o;250:723::-;306:13;536:1;527:5;:10;523:53;;;554:10;;;;;;;;;;;;;;;;;;;;;523:53;586:12;601:5;586:20;;617:14;642:78;657:1;649:4;:9;642:78;;675:8;;;;;:::i;:::-;;;;706:2;698:10;;;;;:::i;:::-;;;642:78;;;730:19;762:6;752:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;730:39;;780:154;796:1;787:5;:10;780:154;;824:1;814:11;;;;;:::i;:::-;;;891:2;883:5;:10;;;;:::i;:::-;870:2;:24;;;;:::i;:::-;857:39;;840:6;847;840:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;920:2;911:11;;;;;:::i;:::-;;;780:154;;;958:6;944:21;;;;;250:723;;;;:::o;37236:126::-;;;;:::o;32465:321::-;32595:18;32601:2;32605:7;32595:5;:18::i;:::-;32646:54;32677:1;32681:2;32685:7;32694:5;32646:22;:54::i;:::-;32624:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32465:321;;;:::o;35865:799::-;36020:4;36041:15;:2;:13;;;:15::i;:::-;36037:620;;;36093:2;36077:36;;;36114:12;:10;:12::i;:::-;36128:4;36134:7;36143:5;36077:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36073:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36336:1;36319:6;:13;:18;36315:272;;;36362:60;;;;;;;;;;:::i;:::-;;;;;;;;36315:272;36537:6;36531:13;36522:6;36518:2;36514:15;36507:38;36073:529;36210:41;;;36200:51;;;:6;:51;;;;36193:58;;;;;36037:620;36641:4;36634:11;;35865:799;;;;;;;:::o;33122:382::-;33216:1;33202:16;;:2;:16;;;;33194:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33275:16;33283:7;33275;:16::i;:::-;33274:17;33266:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33337:45;33366:1;33370:2;33374:7;33337:20;:45::i;:::-;33412:1;33395:9;:13;33405:2;33395:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33443:2;33424:7;:16;33432:7;33424:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33488:7;33484:2;33463:33;;33480:1;33463:33;;;;;;;;;;;;33122:382;;:::o;3870:387::-;3930:4;4138:12;4205:7;4193:20;4185:28;;4248:1;4241:4;:8;4234:15;;;3870:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:474::-;7041:6;7049;7098:2;7086:9;7077:7;7073:23;7069:32;7066:119;;;7104:79;;:::i;:::-;7066:119;7224:1;7249:53;7294:7;7285:6;7274:9;7270:22;7249:53;:::i;:::-;7239:63;;7195:117;7351:2;7377:53;7422:7;7413:6;7402:9;7398:22;7377:53;:::i;:::-;7367:63;;7322:118;6973:474;;;;;:::o;7453:118::-;7540:24;7558:5;7540:24;:::i;:::-;7535:3;7528:37;7453:118;;:::o;7577:109::-;7658:21;7673:5;7658:21;:::i;:::-;7653:3;7646:34;7577:109;;:::o;7692:360::-;7778:3;7806:38;7838:5;7806:38;:::i;:::-;7860:70;7923:6;7918:3;7860:70;:::i;:::-;7853:77;;7939:52;7984:6;7979:3;7972:4;7965:5;7961:16;7939:52;:::i;:::-;8016:29;8038:6;8016:29;:::i;:::-;8011:3;8007:39;8000:46;;7782:270;7692:360;;;;:::o;8058:364::-;8146:3;8174:39;8207:5;8174:39;:::i;:::-;8229:71;8293:6;8288:3;8229:71;:::i;:::-;8222:78;;8309:52;8354:6;8349:3;8342:4;8335:5;8331:16;8309:52;:::i;:::-;8386:29;8408:6;8386:29;:::i;:::-;8381:3;8377:39;8370:46;;8150:272;8058:364;;;;:::o;8428:377::-;8534:3;8562:39;8595:5;8562:39;:::i;:::-;8617:89;8699:6;8694:3;8617:89;:::i;:::-;8610:96;;8715:52;8760:6;8755:3;8748:4;8741:5;8737:16;8715:52;:::i;:::-;8792:6;8787:3;8783:16;8776:23;;8538:267;8428:377;;;;:::o;8835:845::-;8938:3;8975:5;8969:12;9004:36;9030:9;9004:36;:::i;:::-;9056:89;9138:6;9133:3;9056:89;:::i;:::-;9049:96;;9176:1;9165:9;9161:17;9192:1;9187:137;;;;9338:1;9333:341;;;;9154:520;;9187:137;9271:4;9267:9;9256;9252:25;9247:3;9240:38;9307:6;9302:3;9298:16;9291:23;;9187:137;;9333:341;9400:38;9432:5;9400:38;:::i;:::-;9460:1;9474:154;9488:6;9485:1;9482:13;9474:154;;;9562:7;9556:14;9552:1;9547:3;9543:11;9536:35;9612:1;9603:7;9599:15;9588:26;;9510:4;9507:1;9503:12;9498:17;;9474:154;;;9657:6;9652:3;9648:16;9641:23;;9340:334;;9154:520;;8942:738;;8835:845;;;;:::o;9686:366::-;9828:3;9849:67;9913:2;9908:3;9849:67;:::i;:::-;9842:74;;9925:93;10014:3;9925:93;:::i;:::-;10043:2;10038:3;10034:12;10027:19;;9686:366;;;:::o;10058:::-;10200:3;10221:67;10285:2;10280:3;10221:67;:::i;:::-;10214:74;;10297:93;10386:3;10297:93;:::i;:::-;10415:2;10410:3;10406:12;10399:19;;10058:366;;;:::o;10430:::-;10572:3;10593:67;10657:2;10652:3;10593:67;:::i;:::-;10586:74;;10669:93;10758:3;10669:93;:::i;:::-;10787:2;10782:3;10778:12;10771:19;;10430:366;;;:::o;10802:::-;10944:3;10965:67;11029:2;11024:3;10965:67;:::i;:::-;10958:74;;11041:93;11130:3;11041:93;:::i;:::-;11159:2;11154:3;11150:12;11143:19;;10802:366;;;:::o;11174:::-;11316:3;11337:67;11401:2;11396:3;11337:67;:::i;:::-;11330:74;;11413:93;11502:3;11413:93;:::i;:::-;11531:2;11526:3;11522:12;11515:19;;11174:366;;;:::o;11546:::-;11688:3;11709:67;11773:2;11768:3;11709:67;:::i;:::-;11702:74;;11785:93;11874:3;11785:93;:::i;:::-;11903:2;11898:3;11894:12;11887:19;;11546:366;;;:::o;11918:::-;12060:3;12081:67;12145:2;12140:3;12081:67;:::i;:::-;12074:74;;12157:93;12246:3;12157:93;:::i;:::-;12275:2;12270:3;12266:12;12259:19;;11918:366;;;:::o;12290:::-;12432:3;12453:67;12517:2;12512:3;12453:67;:::i;:::-;12446:74;;12529:93;12618:3;12529:93;:::i;:::-;12647:2;12642:3;12638:12;12631:19;;12290:366;;;:::o;12662:::-;12804:3;12825:67;12889:2;12884:3;12825:67;:::i;:::-;12818:74;;12901:93;12990:3;12901:93;:::i;:::-;13019:2;13014:3;13010:12;13003:19;;12662:366;;;:::o;13034:::-;13176:3;13197:67;13261:2;13256:3;13197:67;:::i;:::-;13190:74;;13273:93;13362:3;13273:93;:::i;:::-;13391:2;13386:3;13382:12;13375:19;;13034:366;;;:::o;13406:::-;13548:3;13569:67;13633:2;13628:3;13569:67;:::i;:::-;13562:74;;13645:93;13734:3;13645:93;:::i;:::-;13763:2;13758:3;13754:12;13747:19;;13406:366;;;:::o;13778:::-;13920:3;13941:67;14005:2;14000:3;13941:67;:::i;:::-;13934:74;;14017:93;14106:3;14017:93;:::i;:::-;14135:2;14130:3;14126:12;14119:19;;13778:366;;;:::o;14150:::-;14292:3;14313:67;14377:2;14372:3;14313:67;:::i;:::-;14306:74;;14389:93;14478:3;14389:93;:::i;:::-;14507:2;14502:3;14498:12;14491:19;;14150:366;;;:::o;14522:::-;14664:3;14685:67;14749:2;14744:3;14685:67;:::i;:::-;14678:74;;14761:93;14850:3;14761:93;:::i;:::-;14879:2;14874:3;14870:12;14863:19;;14522:366;;;:::o;14894:::-;15036:3;15057:67;15121:2;15116:3;15057:67;:::i;:::-;15050:74;;15133:93;15222:3;15133:93;:::i;:::-;15251:2;15246:3;15242:12;15235:19;;14894:366;;;:::o;15266:::-;15408:3;15429:67;15493:2;15488:3;15429:67;:::i;:::-;15422:74;;15505:93;15594:3;15505:93;:::i;:::-;15623:2;15618:3;15614:12;15607:19;;15266:366;;;:::o;15638:::-;15780:3;15801:67;15865:2;15860:3;15801:67;:::i;:::-;15794:74;;15877:93;15966:3;15877:93;:::i;:::-;15995:2;15990:3;15986:12;15979:19;;15638:366;;;:::o;16010:::-;16152:3;16173:67;16237:2;16232:3;16173:67;:::i;:::-;16166:74;;16249:93;16338:3;16249:93;:::i;:::-;16367:2;16362:3;16358:12;16351:19;;16010:366;;;:::o;16382:::-;16524:3;16545:67;16609:2;16604:3;16545:67;:::i;:::-;16538:74;;16621:93;16710:3;16621:93;:::i;:::-;16739:2;16734:3;16730:12;16723:19;;16382:366;;;:::o;16754:118::-;16841:24;16859:5;16841:24;:::i;:::-;16836:3;16829:37;16754:118;;:::o;16878:589::-;17103:3;17125:95;17216:3;17207:6;17125:95;:::i;:::-;17118:102;;17237:95;17328:3;17319:6;17237:95;:::i;:::-;17230:102;;17349:92;17437:3;17428:6;17349:92;:::i;:::-;17342:99;;17458:3;17451:10;;16878:589;;;;;;:::o;17473:222::-;17566:4;17604:2;17593:9;17589:18;17581:26;;17617:71;17685:1;17674:9;17670:17;17661:6;17617:71;:::i;:::-;17473:222;;;;:::o;17701:640::-;17896:4;17934:3;17923:9;17919:19;17911:27;;17948:71;18016:1;18005:9;18001:17;17992:6;17948:71;:::i;:::-;18029:72;18097:2;18086:9;18082:18;18073:6;18029:72;:::i;:::-;18111;18179:2;18168:9;18164:18;18155:6;18111:72;:::i;:::-;18230:9;18224:4;18220:20;18215:2;18204:9;18200:18;18193:48;18258:76;18329:4;18320:6;18258:76;:::i;:::-;18250:84;;17701:640;;;;;;;:::o;18347:210::-;18434:4;18472:2;18461:9;18457:18;18449:26;;18485:65;18547:1;18536:9;18532:17;18523:6;18485:65;:::i;:::-;18347:210;;;;:::o;18563:313::-;18676:4;18714:2;18703:9;18699:18;18691:26;;18763:9;18757:4;18753:20;18749:1;18738:9;18734:17;18727:47;18791:78;18864:4;18855:6;18791:78;:::i;:::-;18783:86;;18563:313;;;;:::o;18882:419::-;19048:4;19086:2;19075:9;19071:18;19063:26;;19135:9;19129:4;19125:20;19121:1;19110:9;19106:17;19099:47;19163:131;19289:4;19163:131;:::i;:::-;19155:139;;18882:419;;;:::o;19307:::-;19473:4;19511:2;19500:9;19496:18;19488:26;;19560:9;19554:4;19550:20;19546:1;19535:9;19531:17;19524:47;19588:131;19714:4;19588:131;:::i;:::-;19580:139;;19307:419;;;:::o;19732:::-;19898:4;19936:2;19925:9;19921:18;19913:26;;19985:9;19979:4;19975:20;19971:1;19960:9;19956:17;19949:47;20013:131;20139:4;20013:131;:::i;:::-;20005:139;;19732:419;;;:::o;20157:::-;20323:4;20361:2;20350:9;20346:18;20338:26;;20410:9;20404:4;20400:20;20396:1;20385:9;20381:17;20374:47;20438:131;20564:4;20438:131;:::i;:::-;20430:139;;20157:419;;;:::o;20582:::-;20748:4;20786:2;20775:9;20771:18;20763:26;;20835:9;20829:4;20825:20;20821:1;20810:9;20806:17;20799:47;20863:131;20989:4;20863:131;:::i;:::-;20855:139;;20582:419;;;:::o;21007:::-;21173:4;21211:2;21200:9;21196:18;21188:26;;21260:9;21254:4;21250:20;21246:1;21235:9;21231:17;21224:47;21288:131;21414:4;21288:131;:::i;:::-;21280:139;;21007:419;;;:::o;21432:::-;21598:4;21636:2;21625:9;21621:18;21613:26;;21685:9;21679:4;21675:20;21671:1;21660:9;21656:17;21649:47;21713:131;21839:4;21713:131;:::i;:::-;21705:139;;21432:419;;;:::o;21857:::-;22023:4;22061:2;22050:9;22046:18;22038:26;;22110:9;22104:4;22100:20;22096:1;22085:9;22081:17;22074:47;22138:131;22264:4;22138:131;:::i;:::-;22130:139;;21857:419;;;:::o;22282:::-;22448:4;22486:2;22475:9;22471:18;22463:26;;22535:9;22529:4;22525:20;22521:1;22510:9;22506:17;22499:47;22563:131;22689:4;22563:131;:::i;:::-;22555:139;;22282:419;;;:::o;22707:::-;22873:4;22911:2;22900:9;22896:18;22888:26;;22960:9;22954:4;22950:20;22946:1;22935:9;22931:17;22924:47;22988:131;23114:4;22988:131;:::i;:::-;22980:139;;22707:419;;;:::o;23132:::-;23298:4;23336:2;23325:9;23321:18;23313:26;;23385:9;23379:4;23375:20;23371:1;23360:9;23356:17;23349:47;23413:131;23539:4;23413:131;:::i;:::-;23405:139;;23132:419;;;:::o;23557:::-;23723:4;23761:2;23750:9;23746:18;23738:26;;23810:9;23804:4;23800:20;23796:1;23785:9;23781:17;23774:47;23838:131;23964:4;23838:131;:::i;:::-;23830:139;;23557:419;;;:::o;23982:::-;24148:4;24186:2;24175:9;24171:18;24163:26;;24235:9;24229:4;24225:20;24221:1;24210:9;24206:17;24199:47;24263:131;24389:4;24263:131;:::i;:::-;24255:139;;23982:419;;;:::o;24407:::-;24573:4;24611:2;24600:9;24596:18;24588:26;;24660:9;24654:4;24650:20;24646:1;24635:9;24631:17;24624:47;24688:131;24814:4;24688:131;:::i;:::-;24680:139;;24407:419;;;:::o;24832:::-;24998:4;25036:2;25025:9;25021:18;25013:26;;25085:9;25079:4;25075:20;25071:1;25060:9;25056:17;25049:47;25113:131;25239:4;25113:131;:::i;:::-;25105:139;;24832:419;;;:::o;25257:::-;25423:4;25461:2;25450:9;25446:18;25438:26;;25510:9;25504:4;25500:20;25496:1;25485:9;25481:17;25474:47;25538:131;25664:4;25538:131;:::i;:::-;25530:139;;25257:419;;;:::o;25682:::-;25848:4;25886:2;25875:9;25871:18;25863:26;;25935:9;25929:4;25925:20;25921:1;25910:9;25906:17;25899:47;25963:131;26089:4;25963:131;:::i;:::-;25955:139;;25682:419;;;:::o;26107:::-;26273:4;26311:2;26300:9;26296:18;26288:26;;26360:9;26354:4;26350:20;26346:1;26335:9;26331:17;26324:47;26388:131;26514:4;26388:131;:::i;:::-;26380:139;;26107:419;;;:::o;26532:::-;26698:4;26736:2;26725:9;26721:18;26713:26;;26785:9;26779:4;26775:20;26771:1;26760:9;26756:17;26749:47;26813:131;26939:4;26813:131;:::i;:::-;26805:139;;26532:419;;;:::o;26957:222::-;27050:4;27088:2;27077:9;27073:18;27065:26;;27101:71;27169:1;27158:9;27154:17;27145:6;27101:71;:::i;:::-;26957:222;;;;:::o;27185:129::-;27219:6;27246:20;;:::i;:::-;27236:30;;27275:33;27303:4;27295:6;27275:33;:::i;:::-;27185:129;;;:::o;27320:75::-;27353:6;27386:2;27380:9;27370:19;;27320:75;:::o;27401:307::-;27462:4;27552:18;27544:6;27541:30;27538:56;;;27574:18;;:::i;:::-;27538:56;27612:29;27634:6;27612:29;:::i;:::-;27604:37;;27696:4;27690;27686:15;27678:23;;27401:307;;;:::o;27714:141::-;27763:4;27786:3;27778:11;;27809:3;27806:1;27799:14;27843:4;27840:1;27830:18;27822:26;;27714:141;;;:::o;27861:98::-;27912:6;27946:5;27940:12;27930:22;;27861:98;;;:::o;27965:99::-;28017:6;28051:5;28045:12;28035:22;;27965:99;;;:::o;28070:168::-;28153:11;28187:6;28182:3;28175:19;28227:4;28222:3;28218:14;28203:29;;28070:168;;;;:::o;28244:169::-;28328:11;28362:6;28357:3;28350:19;28402:4;28397:3;28393:14;28378:29;;28244:169;;;;:::o;28419:148::-;28521:11;28558:3;28543:18;;28419:148;;;;:::o;28573:305::-;28613:3;28632:20;28650:1;28632:20;:::i;:::-;28627:25;;28666:20;28684:1;28666:20;:::i;:::-;28661:25;;28820:1;28752:66;28748:74;28745:1;28742:81;28739:107;;;28826:18;;:::i;:::-;28739:107;28870:1;28867;28863:9;28856:16;;28573:305;;;;:::o;28884:185::-;28924:1;28941:20;28959:1;28941:20;:::i;:::-;28936:25;;28975:20;28993:1;28975:20;:::i;:::-;28970:25;;29014:1;29004:35;;29019:18;;:::i;:::-;29004:35;29061:1;29058;29054:9;29049:14;;28884:185;;;;:::o;29075:191::-;29115:4;29135:20;29153:1;29135:20;:::i;:::-;29130:25;;29169:20;29187:1;29169:20;:::i;:::-;29164:25;;29208:1;29205;29202:8;29199:34;;;29213:18;;:::i;:::-;29199:34;29258:1;29255;29251:9;29243:17;;29075:191;;;;:::o;29272:96::-;29309:7;29338:24;29356:5;29338:24;:::i;:::-;29327:35;;29272:96;;;:::o;29374:90::-;29408:7;29451:5;29444:13;29437:21;29426:32;;29374:90;;;:::o;29470:149::-;29506:7;29546:66;29539:5;29535:78;29524:89;;29470:149;;;:::o;29625:126::-;29662:7;29702:42;29695:5;29691:54;29680:65;;29625:126;;;:::o;29757:77::-;29794:7;29823:5;29812:16;;29757:77;;;:::o;29840:154::-;29924:6;29919:3;29914;29901:30;29986:1;29977:6;29972:3;29968:16;29961:27;29840:154;;;:::o;30000:307::-;30068:1;30078:113;30092:6;30089:1;30086:13;30078:113;;;30177:1;30172:3;30168:11;30162:18;30158:1;30153:3;30149:11;30142:39;30114:2;30111:1;30107:10;30102:15;;30078:113;;;30209:6;30206:1;30203:13;30200:101;;;30289:1;30280:6;30275:3;30271:16;30264:27;30200:101;30049:258;30000:307;;;:::o;30313:320::-;30357:6;30394:1;30388:4;30384:12;30374:22;;30441:1;30435:4;30431:12;30462:18;30452:81;;30518:4;30510:6;30506:17;30496:27;;30452:81;30580:2;30572:6;30569:14;30549:18;30546:38;30543:84;;;30599:18;;:::i;:::-;30543:84;30364:269;30313:320;;;:::o;30639:281::-;30722:27;30744:4;30722:27;:::i;:::-;30714:6;30710:40;30852:6;30840:10;30837:22;30816:18;30804:10;30801:34;30798:62;30795:88;;;30863:18;;:::i;:::-;30795:88;30903:10;30899:2;30892:22;30682:238;30639:281;;:::o;30926:233::-;30965:3;30988:24;31006:5;30988:24;:::i;:::-;30979:33;;31034:66;31027:5;31024:77;31021:103;;;31104:18;;:::i;:::-;31021:103;31151:1;31144:5;31140:13;31133:20;;30926:233;;;:::o;31165:176::-;31197:1;31214:20;31232:1;31214:20;:::i;:::-;31209:25;;31248:20;31266:1;31248:20;:::i;:::-;31243:25;;31287:1;31277:35;;31292:18;;:::i;:::-;31277:35;31333:1;31330;31326:9;31321:14;;31165:176;;;;:::o;31347:180::-;31395:77;31392:1;31385:88;31492:4;31489:1;31482:15;31516:4;31513:1;31506:15;31533:180;31581:77;31578:1;31571:88;31678:4;31675:1;31668:15;31702:4;31699:1;31692:15;31719:180;31767:77;31764:1;31757:88;31864:4;31861:1;31854:15;31888:4;31885:1;31878:15;31905:180;31953:77;31950:1;31943:88;32050:4;32047:1;32040:15;32074:4;32071:1;32064:15;32091:180;32139:77;32136:1;32129:88;32236:4;32233:1;32226:15;32260:4;32257:1;32250:15;32277:117;32386:1;32383;32376:12;32400:117;32509:1;32506;32499:12;32523:117;32632:1;32629;32622:12;32646:117;32755:1;32752;32745:12;32769:117;32878:1;32875;32868:12;32892:117;33001:1;32998;32991:12;33015:102;33056:6;33107:2;33103:7;33098:2;33091:5;33087:14;33083:28;33073:38;;33015:102;;;:::o;33123:237::-;33263:34;33259:1;33251:6;33247:14;33240:58;33332:20;33327:2;33319:6;33315:15;33308:45;33123:237;:::o;33366:225::-;33506:34;33502:1;33494:6;33490:14;33483:58;33575:8;33570:2;33562:6;33558:15;33551:33;33366:225;:::o;33597:178::-;33737:30;33733:1;33725:6;33721:14;33714:54;33597:178;:::o;33781:173::-;33921:25;33917:1;33909:6;33905:14;33898:49;33781:173;:::o;33960:223::-;34100:34;34096:1;34088:6;34084:14;34077:58;34169:6;34164:2;34156:6;34152:15;34145:31;33960:223;:::o;34189:175::-;34329:27;34325:1;34317:6;34313:14;34306:51;34189:175;:::o;34370:178::-;34510:30;34506:1;34498:6;34494:14;34487:54;34370:178;:::o;34554:231::-;34694:34;34690:1;34682:6;34678:14;34671:58;34763:14;34758:2;34750:6;34746:15;34739:39;34554:231;:::o;34791:243::-;34931:34;34927:1;34919:6;34915:14;34908:58;35000:26;34995:2;34987:6;34983:15;34976:51;34791:243;:::o;35040:229::-;35180:34;35176:1;35168:6;35164:14;35157:58;35249:12;35244:2;35236:6;35232:15;35225:37;35040:229;:::o;35275:228::-;35415:34;35411:1;35403:6;35399:14;35392:58;35484:11;35479:2;35471:6;35467:15;35460:36;35275:228;:::o;35509:182::-;35649:34;35645:1;35637:6;35633:14;35626:58;35509:182;:::o;35697:231::-;35837:34;35833:1;35825:6;35821:14;35814:58;35906:14;35901:2;35893:6;35889:15;35882:39;35697:231;:::o;35934:182::-;36074:34;36070:1;36062:6;36058:14;36051:58;35934:182;:::o;36122:228::-;36262:34;36258:1;36250:6;36246:14;36239:58;36331:11;36326:2;36318:6;36314:15;36307:36;36122:228;:::o;36356:234::-;36496:34;36492:1;36484:6;36480:14;36473:58;36565:17;36560:2;36552:6;36548:15;36541:42;36356:234;:::o;36596:220::-;36736:34;36732:1;36724:6;36720:14;36713:58;36805:3;36800:2;36792:6;36788:15;36781:28;36596:220;:::o;36822:236::-;36962:34;36958:1;36950:6;36946:14;36939:58;37031:19;37026:2;37018:6;37014:15;37007:44;36822:236;:::o;37064:173::-;37204:25;37200:1;37192:6;37188:14;37181:49;37064:173;:::o;37243:122::-;37316:24;37334:5;37316:24;:::i;:::-;37309:5;37306:35;37296:63;;37355:1;37352;37345:12;37296:63;37243:122;:::o;37371:116::-;37441:21;37456:5;37441:21;:::i;:::-;37434:5;37431:32;37421:60;;37477:1;37474;37467:12;37421:60;37371:116;:::o;37493:120::-;37565:23;37582:5;37565:23;:::i;:::-;37558:5;37555:34;37545:62;;37603:1;37600;37593:12;37545:62;37493:120;:::o;37619:122::-;37692:24;37710:5;37692:24;:::i;:::-;37685:5;37682:35;37672:63;;37731:1;37728;37721:12;37672:63;37619:122;:::o

Swarm Source

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