ETH Price: $3,510.24 (+4.64%)

Token

Squirrels Flow (SF)
 

Overview

Max Total Supply

0 SF

Holders

413

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 SF
0x6af28b7164b39082116Dca7B745027eeF8466D86
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:
SquirrelsFlow

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-28
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

// File: contracts/SquirrelsFlow.sol


pragma solidity ^0.8.11;





contract SquirrelsFlow is ERC721, Ownable {

  using Counters for Counters.Counter;
  Counters.Counter private _tokenSupply;
  Counters.Counter private _nextTokenId;
  
  uint256 public mintPrice = 0.1 ether;
  uint256 public presalePrice = 0.08 ether;

  uint256 private reserveAtATime = 37;
  uint256 private reservedCount = 0;
  uint256 private maxReserveCount = 37;

  string _baseTokenURI;

  bool public isActive = false;
  bool public isPresaleActive = false;

  uint256 public MAX_SUPPLY = 5000;
  uint256 public maximumAllowedTokensPerPurchase = 5;
  uint256 public maximumAllowedTokensPerWallet = 7;
  uint256 public allowListMaxMint = 2;


  // Whitelisted
  mapping(address => bool) private _allowList;
  mapping(address => uint256) private _allowListClaimed;

  event SaleActivation(bool isActive);

  constructor(string memory baseURI) ERC721("Squirrels Flow", "SF") {
    setBaseURI(baseURI);
  }

  modifier saleIsOpen {
    require(_tokenSupply.current() <= MAX_SUPPLY, "Sale has ended.");
    _;
  }

  modifier onlyAuthorized() {
    require(owner() == msg.sender);
    _;
  }

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

  function setMaximumAllowedTokens(uint256 _count) public onlyAuthorized {
    maximumAllowedTokensPerPurchase = _count;
  }

  function setMaximumAllowedTokensPerWallet(uint256 _count) public onlyAuthorized {
    maximumAllowedTokensPerWallet = _count;
  }

  function setActive(bool val) public onlyAuthorized {
    isActive = val;
    emit SaleActivation(val);
  }

  function addToWhitelist(address[] calldata addresses) external onlyAuthorized {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add a null address");
      _allowList[addresses[i]] = true;
      _allowListClaimed[addresses[i]] > 0 ? _allowListClaimed[addresses[i]] : 0;
    }
  }

  function checkIfOnWhitelist(address addr) external view returns (bool) {
    return _allowList[addr];
  }

  function removeFromWhitelist(address[] calldata addresses) external onlyAuthorized {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add a null address");
      _allowList[addresses[i]] = false;
    }
  }

  function setMaxMintSupply(uint256 maxMintSupply) external  onlyAuthorized {
    MAX_SUPPLY = maxMintSupply;
  }

  function setIsPresaleActive(bool _isPresaleActive) external onlyAuthorized {
    isPresaleActive = _isPresaleActive;
  }

  function setAllowListMaxMint(uint256 maxMint) external  onlyAuthorized {
    allowListMaxMint = maxMint;
  }

  function setReserveAtATime(uint256 val) public onlyAuthorized {
    reserveAtATime = val;
  }

  function setMaxReserve(uint256 val) public onlyAuthorized {
    maxReserveCount = val;
  }

  function setPrice(uint256 _price) public onlyAuthorized {
    mintPrice = _price;
  }

  function setPresalePrice(uint256 _preslaePrice) public onlyAuthorized {
    presalePrice = _preslaePrice;
  }

  function setBaseURI(string memory baseURI) public onlyAuthorized {
    _baseTokenURI = baseURI;
  }

  function getReserveAtATime() external view returns (uint256) {
    return reserveAtATime;
  }

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

  function reserveNft() public onlyAuthorized {
    require(reservedCount <= maxReserveCount, "Max Reserves taken already!");
    uint256 i;

    for (i = 0; i < reserveAtATime; i++) {
      _tokenSupply.increment();
      _safeMint(msg.sender, _tokenSupply.current());
      reservedCount++;
    }
  }

  function adminAirdrop(address _walletAddress, uint256 _count) public onlyAuthorized {
    for (uint256 i = 0; i < _count; i++) {
      _tokenSupply.increment();
      _safeMint(_walletAddress, _tokenSupply.current());
    }
  }

  function preSaleMint(uint256 _count) public payable saleIsOpen {
    uint256 mintIndex = _tokenSupply.current();

    require(isPresaleActive, 'Allow List is not active');
    require(_allowList[msg.sender], 'You are not on the Allow List');
    require(mintIndex < MAX_SUPPLY, 'All tokens have been minted');
    require(msg.value >= presalePrice * _count, 'Insuffient ETH amount sent.');

    for (uint256 i = 0; i < _count; i++) {
      _tokenSupply.increment();
      _safeMint(msg.sender, _tokenSupply.current());
    }
  }

  function mint(uint256 _count) public payable saleIsOpen {
    uint256 mintIndex = _tokenSupply.current();

    if (msg.sender != owner()) {
      require(isActive, "Sale is not active currently.");
      require(balanceOf(msg.sender) + _count <= maximumAllowedTokensPerWallet, "Max holding cap reached.");
    }


    require(mintIndex + _count <= MAX_SUPPLY, "Total supply exceeded.");
    require(
      _count <= maximumAllowedTokensPerPurchase,
      "Exceeds maximum allowed tokens"
    );

    require(msg.value >= mintPrice * _count, "Insufficient ETH amount sent.");

    for (uint256 i = 0; i < _count; i++) {
      _tokenSupply.increment();
      _safeMint(msg.sender, _tokenSupply.current());
    }
  }

  function withdraw() external onlyAuthorized {
    uint balance = address(this).balance;
    payable(owner()).transfer(balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","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":false,"internalType":"bool","name":"isActive","type":"bool"}],"name":"SaleActivation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_walletAddress","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"adminAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkIfOnWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserveAtATime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveNft","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":"bool","name":"val","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setAllowListMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPresaleActive","type":"bool"}],"name":"setIsPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preslaePrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setReserveAtATime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensMinted","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"}]

608060405267016345785d8a000060095567011c37937e080000600a556025600b556000600c556025600d556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506113886010556005601155600760125560026013553480156200008357600080fd5b5060405162004e9c38038062004e9c8339818101604052810190620000a991906200052a565b6040518060400160405280600e81526020017f537175697272656c7320466c6f770000000000000000000000000000000000008152506040518060400160405280600281526020017f534600000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200012d929190620002dd565b50806001908051906020019062000146929190620002dd565b505050620001696200015d6200018160201b60201c565b6200018960201b60201c565b6200017a816200024f60201b60201c565b50620005e0565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff1662000276620002b360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200029757600080fd5b80600e9080519060200190620002af929190620002dd565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002eb90620005aa565b90600052602060002090601f0160209004810192826200030f57600085556200035b565b82601f106200032a57805160ff19168380011785556200035b565b828001600101855582156200035b579182015b828111156200035a5782518255916020019190600101906200033d565b5b5090506200036a91906200036e565b5090565b5b80821115620003895760008160009055506001016200036f565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003f682620003ab565b810181811067ffffffffffffffff82111715620004185762000417620003bc565b5b80604052505050565b60006200042d6200038d565b90506200043b8282620003eb565b919050565b600067ffffffffffffffff8211156200045e576200045d620003bc565b5b6200046982620003ab565b9050602081019050919050565b60005b838110156200049657808201518184015260208101905062000479565b83811115620004a6576000848401525b50505050565b6000620004c3620004bd8462000440565b62000421565b905082815260208101848484011115620004e257620004e1620003a6565b5b620004ef84828562000476565b509392505050565b600082601f8301126200050f576200050e620003a1565b5b815162000521848260208601620004ac565b91505092915050565b60006020828403121562000543576200054262000397565b5b600082015167ffffffffffffffff8111156200056457620005636200039c565b5b6200057284828501620004f7565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005c357607f821691505b60208210811415620005da57620005d96200057b565b5b50919050565b6148ac80620005f06000396000f3fe6080604052600436106102715760003560e01c8063715018a61161014f578063a0712d68116100c1578063dd42a2aa1161007a578063dd42a2aa146108e1578063e7b62d961461091e578063e985e9c514610949578063ea6eb83614610986578063f2fde38b146109af578063f6c9d9e3146109d857610271565b8063a0712d68146107e2578063a22cb465146107fe578063acec338a14610827578063b88d4fde14610850578063c87b56dd14610879578063cadf8818146108b657610271565b80637f44ab2f116101135780637f44ab2f146106e45780637f6497831461070f5780638da5cb5b1461073857806391b7f5ed1461076357806395d89b411461078c5780639a3bf728146107b757610271565b8063715018a61461064857806371e3500c1461065f5780637389fbb7146106765780637835c6351461069f5780637a6685f1146106bb57610271565b8063443da2a2116101e857806356a87caa116101ac57806356a87caa1461052457806360d938dc1461054d5780636352211e146105785780636817c76c146105b55780636de9f32b146105e057806370a082311461060b57610271565b8063443da2a21461045757806348fbb79a146104805780634dfea627146104a9578063548db174146104d257806355f804b3146104fb57610271565b806322f3e2d41161023a57806322f3e2d41461036f57806323b872dd1461039a57806332cb6b0c146103c35780633549345e146103ee5780633ccfd60b1461041757806342842e0e1461042e57610271565b80620e7fa81461027657806301ffc9a7146102a157806306fdde03146102de578063081812fc14610309578063095ea7b314610346575b600080fd5b34801561028257600080fd5b5061028b610a01565b6040516102989190612fb0565b60405180910390f35b3480156102ad57600080fd5b506102c860048036038101906102c39190613037565b610a07565b6040516102d5919061307f565b60405180910390f35b3480156102ea57600080fd5b506102f3610ae9565b6040516103009190613133565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b9190613181565b610b7b565b60405161033d91906131ef565b60405180910390f35b34801561035257600080fd5b5061036d60048036038101906103689190613236565b610c00565b005b34801561037b57600080fd5b50610384610d18565b604051610391919061307f565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc9190613276565b610d2b565b005b3480156103cf57600080fd5b506103d8610d8b565b6040516103e59190612fb0565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613181565b610d91565b005b34801561042357600080fd5b5061042c610dda565b005b34801561043a57600080fd5b5061045560048036038101906104509190613276565b610e6f565b005b34801561046357600080fd5b5061047e600480360381019061047991906132f5565b610e8f565b005b34801561048c57600080fd5b506104a760048036038101906104a29190613236565b610eeb565b005b3480156104b557600080fd5b506104d060048036038101906104cb9190613181565b610f6a565b005b3480156104de57600080fd5b506104f960048036038101906104f49190613387565b610fb3565b005b34801561050757600080fd5b50610522600480360381019061051d9190613504565b61112e565b005b34801561053057600080fd5b5061054b60048036038101906105469190613181565b611187565b005b34801561055957600080fd5b506105626111d0565b60405161056f919061307f565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a9190613181565b6111e3565b6040516105ac91906131ef565b60405180910390f35b3480156105c157600080fd5b506105ca611295565b6040516105d79190612fb0565b60405180910390f35b3480156105ec57600080fd5b506105f561129b565b6040516106029190612fb0565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d919061354d565b6112ac565b60405161063f9190612fb0565b60405180910390f35b34801561065457600080fd5b5061065d611364565b005b34801561066b57600080fd5b506106746113ec565b005b34801561068257600080fd5b5061069d60048036038101906106989190613181565b6114ca565b005b6106b960048036038101906106b49190613181565b611513565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190613181565b61171e565b005b3480156106f057600080fd5b506106f9611767565b6040516107069190612fb0565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190613387565b61176d565b005b34801561074457600080fd5b5061074d6119c6565b60405161075a91906131ef565b60405180910390f35b34801561076f57600080fd5b5061078a60048036038101906107859190613181565b6119f0565b005b34801561079857600080fd5b506107a1611a39565b6040516107ae9190613133565b60405180910390f35b3480156107c357600080fd5b506107cc611acb565b6040516107d99190612fb0565b60405180910390f35b6107fc60048036038101906107f79190613181565b611ad1565b005b34801561080a57600080fd5b506108256004803603810190610820919061357a565b611d34565b005b34801561083357600080fd5b5061084e600480360381019061084991906132f5565b611d4a565b005b34801561085c57600080fd5b506108776004803603810190610872919061365b565b611ddd565b005b34801561088557600080fd5b506108a0600480360381019061089b9190613181565b611e3f565b6040516108ad9190613133565b60405180910390f35b3480156108c257600080fd5b506108cb611ee6565b6040516108d89190612fb0565b60405180910390f35b3480156108ed57600080fd5b506109086004803603810190610903919061354d565b611eec565b604051610915919061307f565b60405180910390f35b34801561092a57600080fd5b50610933611f42565b6040516109409190612fb0565b60405180910390f35b34801561095557600080fd5b50610970600480360381019061096b91906136de565b611f4c565b60405161097d919061307f565b60405180910390f35b34801561099257600080fd5b506109ad60048036038101906109a89190613181565b611fe0565b005b3480156109bb57600080fd5b506109d660048036038101906109d1919061354d565b612029565b005b3480156109e457600080fd5b506109ff60048036038101906109fa9190613181565b612121565b005b600a5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ae25750610ae18261216a565b5b9050919050565b606060008054610af89061374d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b249061374d565b8015610b715780601f10610b4657610100808354040283529160200191610b71565b820191906000526020600020905b815481529060010190602001808311610b5457829003601f168201915b5050505050905090565b6000610b86826121d4565b610bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbc906137f1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c0b826111e3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390613883565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c9b612240565b73ffffffffffffffffffffffffffffffffffffffff161480610cca5750610cc981610cc4612240565b611f4c565b5b610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0090613915565b60405180910390fd5b610d138383612248565b505050565b600f60009054906101000a900460ff1681565b610d3c610d36612240565b82612301565b610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d72906139a7565b60405180910390fd5b610d868383836123df565b505050565b60105481565b3373ffffffffffffffffffffffffffffffffffffffff16610db06119c6565b73ffffffffffffffffffffffffffffffffffffffff1614610dd057600080fd5b80600a8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16610df96119c6565b73ffffffffffffffffffffffffffffffffffffffff1614610e1957600080fd5b6000479050610e266119c6565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e6b573d6000803e3d6000fd5b5050565b610e8a83838360405180602001604052806000815250611ddd565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610eae6119c6565b73ffffffffffffffffffffffffffffffffffffffff1614610ece57600080fd5b80600f60016101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16610f0a6119c6565b73ffffffffffffffffffffffffffffffffffffffff1614610f2a57600080fd5b60005b81811015610f6557610f3f6007612646565b610f5283610f4d600761265c565b61266a565b8080610f5d906139f6565b915050610f2d565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610f896119c6565b73ffffffffffffffffffffffffffffffffffffffff1614610fa957600080fd5b8060118190555050565b3373ffffffffffffffffffffffffffffffffffffffff16610fd26119c6565b73ffffffffffffffffffffffffffffffffffffffff1614610ff257600080fd5b60005b8282905081101561112957600073ffffffffffffffffffffffffffffffffffffffff1683838381811061102b5761102a613a3f565b5b9050602002016020810190611040919061354d565b73ffffffffffffffffffffffffffffffffffffffff161415611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90613aba565b60405180910390fd5b6000601460008585858181106110b0576110af613a3f565b5b90506020020160208101906110c5919061354d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611121906139f6565b915050610ff5565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1661114d6119c6565b73ffffffffffffffffffffffffffffffffffffffff161461116d57600080fd5b80600e9080519060200190611183929190612ef4565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166111a66119c6565b73ffffffffffffffffffffffffffffffffffffffff16146111c657600080fd5b80600d8190555050565b600f60019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390613b4c565b60405180910390fd5b80915050919050565b60095481565b60006112a7600761265c565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561131d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131490613bde565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61136c612240565b73ffffffffffffffffffffffffffffffffffffffff1661138a6119c6565b73ffffffffffffffffffffffffffffffffffffffff16146113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d790613c4a565b60405180910390fd5b6113ea6000612688565b565b3373ffffffffffffffffffffffffffffffffffffffff1661140b6119c6565b73ffffffffffffffffffffffffffffffffffffffff161461142b57600080fd5b600d54600c541115611472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146990613cb6565b60405180910390fd5b60005b600b548110156114c7576114896007612646565b61149c33611497600761265c565b61266a565b600c60008154809291906114af906139f6565b919050555080806114bf906139f6565b915050611475565b50565b3373ffffffffffffffffffffffffffffffffffffffff166114e96119c6565b73ffffffffffffffffffffffffffffffffffffffff161461150957600080fd5b8060108190555050565b601054611520600761265c565b1115611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890613d22565b60405180910390fd5b600061156d600761265c565b9050600f60019054906101000a900460ff166115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b590613d8e565b60405180910390fd5b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661164a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164190613dfa565b60405180910390fd5b601054811061168e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168590613e66565b60405180910390fd5b81600a5461169c9190613e86565b3410156116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d590613f2c565b60405180910390fd5b60005b82811015611719576116f36007612646565b61170633611701600761265c565b61266a565b8080611711906139f6565b9150506116e1565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1661173d6119c6565b73ffffffffffffffffffffffffffffffffffffffff161461175d57600080fd5b8060138190555050565b60135481565b3373ffffffffffffffffffffffffffffffffffffffff1661178c6119c6565b73ffffffffffffffffffffffffffffffffffffffff16146117ac57600080fd5b60005b828290508110156119c157600073ffffffffffffffffffffffffffffffffffffffff168383838181106117e5576117e4613a3f565b5b90506020020160208101906117fa919061354d565b73ffffffffffffffffffffffffffffffffffffffff161415611851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184890613aba565b60405180910390fd5b60016014600085858581811061186a57611869613a3f565b5b905060200201602081019061187f919061354d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000601560008585858181106118e9576118e8613a3f565b5b90506020020160208101906118fe919061354d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116119455760006119ad565b6015600084848481811061195c5761195b613a3f565b5b9050602002016020810190611971919061354d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b5080806119b9906139f6565b9150506117af565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16611a0f6119c6565b73ffffffffffffffffffffffffffffffffffffffff1614611a2f57600080fd5b8060098190555050565b606060018054611a489061374d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a749061374d565b8015611ac15780601f10611a9657610100808354040283529160200191611ac1565b820191906000526020600020905b815481529060010190602001808311611aa457829003601f168201915b5050505050905090565b60115481565b601054611ade600761265c565b1115611b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1690613d22565b60405180910390fd5b6000611b2b600761265c565b9050611b356119c6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c0f57600f60009054906101000a900460ff16611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad90613f98565b60405180910390fd5b60125482611bc3336112ac565b611bcd9190613fb8565b1115611c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c059061405a565b60405180910390fd5b5b6010548282611c1e9190613fb8565b1115611c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c56906140c6565b60405180910390fd5b601154821115611ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9b90614132565b60405180910390fd5b81600954611cb29190613e86565b341015611cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ceb9061419e565b60405180910390fd5b60005b82811015611d2f57611d096007612646565b611d1c33611d17600761265c565b61266a565b8080611d27906139f6565b915050611cf7565b505050565b611d46611d3f612240565b838361274e565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611d696119c6565b73ffffffffffffffffffffffffffffffffffffffff1614611d8957600080fd5b80600f60006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f81604051611dd2919061307f565b60405180910390a150565b611dee611de8612240565b83612301565b611e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e24906139a7565b60405180910390fd5b611e39848484846128bb565b50505050565b6060611e4a826121d4565b611e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8090614230565b60405180910390fd5b6000611e93612917565b90506000815111611eb35760405180602001604052806000815250611ede565b80611ebd846129a9565b604051602001611ece92919061428c565b6040516020818303038152906040525b915050919050565b60125481565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600b54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16611fff6119c6565b73ffffffffffffffffffffffffffffffffffffffff161461201f57600080fd5b8060128190555050565b612031612240565b73ffffffffffffffffffffffffffffffffffffffff1661204f6119c6565b73ffffffffffffffffffffffffffffffffffffffff16146120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c90613c4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210c90614322565b60405180910390fd5b61211e81612688565b50565b3373ffffffffffffffffffffffffffffffffffffffff166121406119c6565b73ffffffffffffffffffffffffffffffffffffffff161461216057600080fd5b80600b8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122bb836111e3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061230c826121d4565b61234b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612342906143b4565b60405180910390fd5b6000612356836111e3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061239857506123978185611f4c565b5b806123d657508373ffffffffffffffffffffffffffffffffffffffff166123be84610b7b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123ff826111e3565b73ffffffffffffffffffffffffffffffffffffffff1614612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c90614446565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bc906144d8565b60405180910390fd5b6124d0838383612b0a565b6124db600082612248565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461252b91906144f8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125829190613fb8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612641838383612b0f565b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b612684828260405180602001604052806000815250612b14565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b490614578565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128ae919061307f565b60405180910390a3505050565b6128c68484846123df565b6128d284848484612b6f565b612911576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129089061460a565b60405180910390fd5b50505050565b6060600e80546129269061374d565b80601f01602080910402602001604051908101604052809291908181526020018280546129529061374d565b801561299f5780601f106129745761010080835404028352916020019161299f565b820191906000526020600020905b81548152906001019060200180831161298257829003601f168201915b5050505050905090565b606060008214156129f1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b05565b600082905060005b60008214612a23578080612a0c906139f6565b915050600a82612a1c9190614659565b91506129f9565b60008167ffffffffffffffff811115612a3f57612a3e6133d9565b5b6040519080825280601f01601f191660200182016040528015612a715781602001600182028036833780820191505090505b5090505b60008514612afe57600182612a8a91906144f8565b9150600a85612a99919061468a565b6030612aa59190613fb8565b60f81b818381518110612abb57612aba613a3f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612af79190614659565b9450612a75565b8093505050505b919050565b505050565b505050565b612b1e8383612cf7565b612b2b6000848484612b6f565b612b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b619061460a565b60405180910390fd5b505050565b6000612b908473ffffffffffffffffffffffffffffffffffffffff16612ed1565b15612cea578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bb9612240565b8786866040518563ffffffff1660e01b8152600401612bdb9493929190614710565b6020604051808303816000875af1925050508015612c1757506040513d601f19601f82011682018060405250810190612c149190614771565b60015b612c9a573d8060008114612c47576040519150601f19603f3d011682016040523d82523d6000602084013e612c4c565b606091505b50600081511415612c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c899061460a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612cef565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5e906147ea565b60405180910390fd5b612d70816121d4565b15612db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da790614856565b60405180910390fd5b612dbc60008383612b0a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e0c9190613fb8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ecd60008383612b0f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612f009061374d565b90600052602060002090601f016020900481019282612f225760008555612f69565b82601f10612f3b57805160ff1916838001178555612f69565b82800160010185558215612f69579182015b82811115612f68578251825591602001919060010190612f4d565b5b509050612f769190612f7a565b5090565b5b80821115612f93576000816000905550600101612f7b565b5090565b6000819050919050565b612faa81612f97565b82525050565b6000602082019050612fc56000830184612fa1565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61301481612fdf565b811461301f57600080fd5b50565b6000813590506130318161300b565b92915050565b60006020828403121561304d5761304c612fd5565b5b600061305b84828501613022565b91505092915050565b60008115159050919050565b61307981613064565b82525050565b60006020820190506130946000830184613070565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130d45780820151818401526020810190506130b9565b838111156130e3576000848401525b50505050565b6000601f19601f8301169050919050565b60006131058261309a565b61310f81856130a5565b935061311f8185602086016130b6565b613128816130e9565b840191505092915050565b6000602082019050818103600083015261314d81846130fa565b905092915050565b61315e81612f97565b811461316957600080fd5b50565b60008135905061317b81613155565b92915050565b60006020828403121561319757613196612fd5565b5b60006131a58482850161316c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131d9826131ae565b9050919050565b6131e9816131ce565b82525050565b600060208201905061320460008301846131e0565b92915050565b613213816131ce565b811461321e57600080fd5b50565b6000813590506132308161320a565b92915050565b6000806040838503121561324d5761324c612fd5565b5b600061325b85828601613221565b925050602061326c8582860161316c565b9150509250929050565b60008060006060848603121561328f5761328e612fd5565b5b600061329d86828701613221565b93505060206132ae86828701613221565b92505060406132bf8682870161316c565b9150509250925092565b6132d281613064565b81146132dd57600080fd5b50565b6000813590506132ef816132c9565b92915050565b60006020828403121561330b5761330a612fd5565b5b6000613319848285016132e0565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261334757613346613322565b5b8235905067ffffffffffffffff81111561336457613363613327565b5b6020830191508360208202830111156133805761337f61332c565b5b9250929050565b6000806020838503121561339e5761339d612fd5565b5b600083013567ffffffffffffffff8111156133bc576133bb612fda565b5b6133c885828601613331565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613411826130e9565b810181811067ffffffffffffffff821117156134305761342f6133d9565b5b80604052505050565b6000613443612fcb565b905061344f8282613408565b919050565b600067ffffffffffffffff82111561346f5761346e6133d9565b5b613478826130e9565b9050602081019050919050565b82818337600083830152505050565b60006134a76134a284613454565b613439565b9050828152602081018484840111156134c3576134c26133d4565b5b6134ce848285613485565b509392505050565b600082601f8301126134eb576134ea613322565b5b81356134fb848260208601613494565b91505092915050565b60006020828403121561351a57613519612fd5565b5b600082013567ffffffffffffffff81111561353857613537612fda565b5b613544848285016134d6565b91505092915050565b60006020828403121561356357613562612fd5565b5b600061357184828501613221565b91505092915050565b6000806040838503121561359157613590612fd5565b5b600061359f85828601613221565b92505060206135b0858286016132e0565b9150509250929050565b600067ffffffffffffffff8211156135d5576135d46133d9565b5b6135de826130e9565b9050602081019050919050565b60006135fe6135f9846135ba565b613439565b90508281526020810184848401111561361a576136196133d4565b5b613625848285613485565b509392505050565b600082601f83011261364257613641613322565b5b81356136528482602086016135eb565b91505092915050565b6000806000806080858703121561367557613674612fd5565b5b600061368387828801613221565b945050602061369487828801613221565b93505060406136a58782880161316c565b925050606085013567ffffffffffffffff8111156136c6576136c5612fda565b5b6136d28782880161362d565b91505092959194509250565b600080604083850312156136f5576136f4612fd5565b5b600061370385828601613221565b925050602061371485828601613221565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061376557607f821691505b602082108114156137795761377861371e565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006137db602c836130a5565b91506137e68261377f565b604082019050919050565b6000602082019050818103600083015261380a816137ce565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061386d6021836130a5565b915061387882613811565b604082019050919050565b6000602082019050818103600083015261389c81613860565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006138ff6038836130a5565b915061390a826138a3565b604082019050919050565b6000602082019050818103600083015261392e816138f2565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006139916031836130a5565b915061399c82613935565b604082019050919050565b600060208201905081810360008301526139c081613984565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a0182612f97565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a3457613a336139c7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b6000613aa46018836130a5565b9150613aaf82613a6e565b602082019050919050565b60006020820190508181036000830152613ad381613a97565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613b366029836130a5565b9150613b4182613ada565b604082019050919050565b60006020820190508181036000830152613b6581613b29565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613bc8602a836130a5565b9150613bd382613b6c565b604082019050919050565b60006020820190508181036000830152613bf781613bbb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c346020836130a5565b9150613c3f82613bfe565b602082019050919050565b60006020820190508181036000830152613c6381613c27565b9050919050565b7f4d61782052657365727665732074616b656e20616c7265616479210000000000600082015250565b6000613ca0601b836130a5565b9150613cab82613c6a565b602082019050919050565b60006020820190508181036000830152613ccf81613c93565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000613d0c600f836130a5565b9150613d1782613cd6565b602082019050919050565b60006020820190508181036000830152613d3b81613cff565b9050919050565b7f416c6c6f77204c697374206973206e6f74206163746976650000000000000000600082015250565b6000613d786018836130a5565b9150613d8382613d42565b602082019050919050565b60006020820190508181036000830152613da781613d6b565b9050919050565b7f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000600082015250565b6000613de4601d836130a5565b9150613def82613dae565b602082019050919050565b60006020820190508181036000830152613e1381613dd7565b9050919050565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b6000613e50601b836130a5565b9150613e5b82613e1a565b602082019050919050565b60006020820190508181036000830152613e7f81613e43565b9050919050565b6000613e9182612f97565b9150613e9c83612f97565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ed557613ed46139c7565b5b828202905092915050565b7f496e7375666669656e742045544820616d6f756e742073656e742e0000000000600082015250565b6000613f16601b836130a5565b9150613f2182613ee0565b602082019050919050565b60006020820190508181036000830152613f4581613f09565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b6000613f82601d836130a5565b9150613f8d82613f4c565b602082019050919050565b60006020820190508181036000830152613fb181613f75565b9050919050565b6000613fc382612f97565b9150613fce83612f97565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614003576140026139c7565b5b828201905092915050565b7f4d617820686f6c64696e672063617020726561636865642e0000000000000000600082015250565b60006140446018836130a5565b915061404f8261400e565b602082019050919050565b6000602082019050818103600083015261407381614037565b9050919050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b60006140b06016836130a5565b91506140bb8261407a565b602082019050919050565b600060208201905081810360008301526140df816140a3565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b600061411c601e836130a5565b9150614127826140e6565b602082019050919050565b6000602082019050818103600083015261414b8161410f565b9050919050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000614188601d836130a5565b915061419382614152565b602082019050919050565b600060208201905081810360008301526141b78161417b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061421a602f836130a5565b9150614225826141be565b604082019050919050565b600060208201905081810360008301526142498161420d565b9050919050565b600081905092915050565b60006142668261309a565b6142708185614250565b93506142808185602086016130b6565b80840191505092915050565b6000614298828561425b565b91506142a4828461425b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061430c6026836130a5565b9150614317826142b0565b604082019050919050565b6000602082019050818103600083015261433b816142ff565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061439e602c836130a5565b91506143a982614342565b604082019050919050565b600060208201905081810360008301526143cd81614391565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006144306025836130a5565b915061443b826143d4565b604082019050919050565b6000602082019050818103600083015261445f81614423565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006144c26024836130a5565b91506144cd82614466565b604082019050919050565b600060208201905081810360008301526144f1816144b5565b9050919050565b600061450382612f97565b915061450e83612f97565b925082821015614521576145206139c7565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006145626019836130a5565b915061456d8261452c565b602082019050919050565b6000602082019050818103600083015261459181614555565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006145f46032836130a5565b91506145ff82614598565b604082019050919050565b60006020820190508181036000830152614623816145e7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061466482612f97565b915061466f83612f97565b92508261467f5761467e61462a565b5b828204905092915050565b600061469582612f97565b91506146a083612f97565b9250826146b0576146af61462a565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006146e2826146bb565b6146ec81856146c6565b93506146fc8185602086016130b6565b614705816130e9565b840191505092915050565b600060808201905061472560008301876131e0565b61473260208301866131e0565b61473f6040830185612fa1565b818103606083015261475181846146d7565b905095945050505050565b60008151905061476b8161300b565b92915050565b60006020828403121561478757614786612fd5565b5b60006147958482850161475c565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006147d46020836130a5565b91506147df8261479e565b602082019050919050565b60006020820190508181036000830152614803816147c7565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614840601c836130a5565b915061484b8261480a565b602082019050919050565b6000602082019050818103600083015261486f81614833565b905091905056fea264697066735822122072bb2a47829efbea5965596489c05b9f2cf911a2e6631f7d52c1e96d7d5e6b2b64736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102715760003560e01c8063715018a61161014f578063a0712d68116100c1578063dd42a2aa1161007a578063dd42a2aa146108e1578063e7b62d961461091e578063e985e9c514610949578063ea6eb83614610986578063f2fde38b146109af578063f6c9d9e3146109d857610271565b8063a0712d68146107e2578063a22cb465146107fe578063acec338a14610827578063b88d4fde14610850578063c87b56dd14610879578063cadf8818146108b657610271565b80637f44ab2f116101135780637f44ab2f146106e45780637f6497831461070f5780638da5cb5b1461073857806391b7f5ed1461076357806395d89b411461078c5780639a3bf728146107b757610271565b8063715018a61461064857806371e3500c1461065f5780637389fbb7146106765780637835c6351461069f5780637a6685f1146106bb57610271565b8063443da2a2116101e857806356a87caa116101ac57806356a87caa1461052457806360d938dc1461054d5780636352211e146105785780636817c76c146105b55780636de9f32b146105e057806370a082311461060b57610271565b8063443da2a21461045757806348fbb79a146104805780634dfea627146104a9578063548db174146104d257806355f804b3146104fb57610271565b806322f3e2d41161023a57806322f3e2d41461036f57806323b872dd1461039a57806332cb6b0c146103c35780633549345e146103ee5780633ccfd60b1461041757806342842e0e1461042e57610271565b80620e7fa81461027657806301ffc9a7146102a157806306fdde03146102de578063081812fc14610309578063095ea7b314610346575b600080fd5b34801561028257600080fd5b5061028b610a01565b6040516102989190612fb0565b60405180910390f35b3480156102ad57600080fd5b506102c860048036038101906102c39190613037565b610a07565b6040516102d5919061307f565b60405180910390f35b3480156102ea57600080fd5b506102f3610ae9565b6040516103009190613133565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b9190613181565b610b7b565b60405161033d91906131ef565b60405180910390f35b34801561035257600080fd5b5061036d60048036038101906103689190613236565b610c00565b005b34801561037b57600080fd5b50610384610d18565b604051610391919061307f565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc9190613276565b610d2b565b005b3480156103cf57600080fd5b506103d8610d8b565b6040516103e59190612fb0565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613181565b610d91565b005b34801561042357600080fd5b5061042c610dda565b005b34801561043a57600080fd5b5061045560048036038101906104509190613276565b610e6f565b005b34801561046357600080fd5b5061047e600480360381019061047991906132f5565b610e8f565b005b34801561048c57600080fd5b506104a760048036038101906104a29190613236565b610eeb565b005b3480156104b557600080fd5b506104d060048036038101906104cb9190613181565b610f6a565b005b3480156104de57600080fd5b506104f960048036038101906104f49190613387565b610fb3565b005b34801561050757600080fd5b50610522600480360381019061051d9190613504565b61112e565b005b34801561053057600080fd5b5061054b60048036038101906105469190613181565b611187565b005b34801561055957600080fd5b506105626111d0565b60405161056f919061307f565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a9190613181565b6111e3565b6040516105ac91906131ef565b60405180910390f35b3480156105c157600080fd5b506105ca611295565b6040516105d79190612fb0565b60405180910390f35b3480156105ec57600080fd5b506105f561129b565b6040516106029190612fb0565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d919061354d565b6112ac565b60405161063f9190612fb0565b60405180910390f35b34801561065457600080fd5b5061065d611364565b005b34801561066b57600080fd5b506106746113ec565b005b34801561068257600080fd5b5061069d60048036038101906106989190613181565b6114ca565b005b6106b960048036038101906106b49190613181565b611513565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190613181565b61171e565b005b3480156106f057600080fd5b506106f9611767565b6040516107069190612fb0565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190613387565b61176d565b005b34801561074457600080fd5b5061074d6119c6565b60405161075a91906131ef565b60405180910390f35b34801561076f57600080fd5b5061078a60048036038101906107859190613181565b6119f0565b005b34801561079857600080fd5b506107a1611a39565b6040516107ae9190613133565b60405180910390f35b3480156107c357600080fd5b506107cc611acb565b6040516107d99190612fb0565b60405180910390f35b6107fc60048036038101906107f79190613181565b611ad1565b005b34801561080a57600080fd5b506108256004803603810190610820919061357a565b611d34565b005b34801561083357600080fd5b5061084e600480360381019061084991906132f5565b611d4a565b005b34801561085c57600080fd5b506108776004803603810190610872919061365b565b611ddd565b005b34801561088557600080fd5b506108a0600480360381019061089b9190613181565b611e3f565b6040516108ad9190613133565b60405180910390f35b3480156108c257600080fd5b506108cb611ee6565b6040516108d89190612fb0565b60405180910390f35b3480156108ed57600080fd5b506109086004803603810190610903919061354d565b611eec565b604051610915919061307f565b60405180910390f35b34801561092a57600080fd5b50610933611f42565b6040516109409190612fb0565b60405180910390f35b34801561095557600080fd5b50610970600480360381019061096b91906136de565b611f4c565b60405161097d919061307f565b60405180910390f35b34801561099257600080fd5b506109ad60048036038101906109a89190613181565b611fe0565b005b3480156109bb57600080fd5b506109d660048036038101906109d1919061354d565b612029565b005b3480156109e457600080fd5b506109ff60048036038101906109fa9190613181565b612121565b005b600a5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ae25750610ae18261216a565b5b9050919050565b606060008054610af89061374d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b249061374d565b8015610b715780601f10610b4657610100808354040283529160200191610b71565b820191906000526020600020905b815481529060010190602001808311610b5457829003601f168201915b5050505050905090565b6000610b86826121d4565b610bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbc906137f1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c0b826111e3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390613883565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c9b612240565b73ffffffffffffffffffffffffffffffffffffffff161480610cca5750610cc981610cc4612240565b611f4c565b5b610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0090613915565b60405180910390fd5b610d138383612248565b505050565b600f60009054906101000a900460ff1681565b610d3c610d36612240565b82612301565b610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d72906139a7565b60405180910390fd5b610d868383836123df565b505050565b60105481565b3373ffffffffffffffffffffffffffffffffffffffff16610db06119c6565b73ffffffffffffffffffffffffffffffffffffffff1614610dd057600080fd5b80600a8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16610df96119c6565b73ffffffffffffffffffffffffffffffffffffffff1614610e1957600080fd5b6000479050610e266119c6565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e6b573d6000803e3d6000fd5b5050565b610e8a83838360405180602001604052806000815250611ddd565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610eae6119c6565b73ffffffffffffffffffffffffffffffffffffffff1614610ece57600080fd5b80600f60016101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16610f0a6119c6565b73ffffffffffffffffffffffffffffffffffffffff1614610f2a57600080fd5b60005b81811015610f6557610f3f6007612646565b610f5283610f4d600761265c565b61266a565b8080610f5d906139f6565b915050610f2d565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610f896119c6565b73ffffffffffffffffffffffffffffffffffffffff1614610fa957600080fd5b8060118190555050565b3373ffffffffffffffffffffffffffffffffffffffff16610fd26119c6565b73ffffffffffffffffffffffffffffffffffffffff1614610ff257600080fd5b60005b8282905081101561112957600073ffffffffffffffffffffffffffffffffffffffff1683838381811061102b5761102a613a3f565b5b9050602002016020810190611040919061354d565b73ffffffffffffffffffffffffffffffffffffffff161415611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90613aba565b60405180910390fd5b6000601460008585858181106110b0576110af613a3f565b5b90506020020160208101906110c5919061354d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611121906139f6565b915050610ff5565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1661114d6119c6565b73ffffffffffffffffffffffffffffffffffffffff161461116d57600080fd5b80600e9080519060200190611183929190612ef4565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166111a66119c6565b73ffffffffffffffffffffffffffffffffffffffff16146111c657600080fd5b80600d8190555050565b600f60019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390613b4c565b60405180910390fd5b80915050919050565b60095481565b60006112a7600761265c565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561131d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131490613bde565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61136c612240565b73ffffffffffffffffffffffffffffffffffffffff1661138a6119c6565b73ffffffffffffffffffffffffffffffffffffffff16146113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d790613c4a565b60405180910390fd5b6113ea6000612688565b565b3373ffffffffffffffffffffffffffffffffffffffff1661140b6119c6565b73ffffffffffffffffffffffffffffffffffffffff161461142b57600080fd5b600d54600c541115611472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146990613cb6565b60405180910390fd5b60005b600b548110156114c7576114896007612646565b61149c33611497600761265c565b61266a565b600c60008154809291906114af906139f6565b919050555080806114bf906139f6565b915050611475565b50565b3373ffffffffffffffffffffffffffffffffffffffff166114e96119c6565b73ffffffffffffffffffffffffffffffffffffffff161461150957600080fd5b8060108190555050565b601054611520600761265c565b1115611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890613d22565b60405180910390fd5b600061156d600761265c565b9050600f60019054906101000a900460ff166115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b590613d8e565b60405180910390fd5b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661164a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164190613dfa565b60405180910390fd5b601054811061168e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168590613e66565b60405180910390fd5b81600a5461169c9190613e86565b3410156116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d590613f2c565b60405180910390fd5b60005b82811015611719576116f36007612646565b61170633611701600761265c565b61266a565b8080611711906139f6565b9150506116e1565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1661173d6119c6565b73ffffffffffffffffffffffffffffffffffffffff161461175d57600080fd5b8060138190555050565b60135481565b3373ffffffffffffffffffffffffffffffffffffffff1661178c6119c6565b73ffffffffffffffffffffffffffffffffffffffff16146117ac57600080fd5b60005b828290508110156119c157600073ffffffffffffffffffffffffffffffffffffffff168383838181106117e5576117e4613a3f565b5b90506020020160208101906117fa919061354d565b73ffffffffffffffffffffffffffffffffffffffff161415611851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184890613aba565b60405180910390fd5b60016014600085858581811061186a57611869613a3f565b5b905060200201602081019061187f919061354d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000601560008585858181106118e9576118e8613a3f565b5b90506020020160208101906118fe919061354d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116119455760006119ad565b6015600084848481811061195c5761195b613a3f565b5b9050602002016020810190611971919061354d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b5080806119b9906139f6565b9150506117af565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16611a0f6119c6565b73ffffffffffffffffffffffffffffffffffffffff1614611a2f57600080fd5b8060098190555050565b606060018054611a489061374d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a749061374d565b8015611ac15780601f10611a9657610100808354040283529160200191611ac1565b820191906000526020600020905b815481529060010190602001808311611aa457829003601f168201915b5050505050905090565b60115481565b601054611ade600761265c565b1115611b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1690613d22565b60405180910390fd5b6000611b2b600761265c565b9050611b356119c6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c0f57600f60009054906101000a900460ff16611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad90613f98565b60405180910390fd5b60125482611bc3336112ac565b611bcd9190613fb8565b1115611c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c059061405a565b60405180910390fd5b5b6010548282611c1e9190613fb8565b1115611c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c56906140c6565b60405180910390fd5b601154821115611ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9b90614132565b60405180910390fd5b81600954611cb29190613e86565b341015611cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ceb9061419e565b60405180910390fd5b60005b82811015611d2f57611d096007612646565b611d1c33611d17600761265c565b61266a565b8080611d27906139f6565b915050611cf7565b505050565b611d46611d3f612240565b838361274e565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611d696119c6565b73ffffffffffffffffffffffffffffffffffffffff1614611d8957600080fd5b80600f60006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f81604051611dd2919061307f565b60405180910390a150565b611dee611de8612240565b83612301565b611e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e24906139a7565b60405180910390fd5b611e39848484846128bb565b50505050565b6060611e4a826121d4565b611e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8090614230565b60405180910390fd5b6000611e93612917565b90506000815111611eb35760405180602001604052806000815250611ede565b80611ebd846129a9565b604051602001611ece92919061428c565b6040516020818303038152906040525b915050919050565b60125481565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600b54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16611fff6119c6565b73ffffffffffffffffffffffffffffffffffffffff161461201f57600080fd5b8060128190555050565b612031612240565b73ffffffffffffffffffffffffffffffffffffffff1661204f6119c6565b73ffffffffffffffffffffffffffffffffffffffff16146120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c90613c4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210c90614322565b60405180910390fd5b61211e81612688565b50565b3373ffffffffffffffffffffffffffffffffffffffff166121406119c6565b73ffffffffffffffffffffffffffffffffffffffff161461216057600080fd5b80600b8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122bb836111e3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061230c826121d4565b61234b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612342906143b4565b60405180910390fd5b6000612356836111e3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061239857506123978185611f4c565b5b806123d657508373ffffffffffffffffffffffffffffffffffffffff166123be84610b7b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123ff826111e3565b73ffffffffffffffffffffffffffffffffffffffff1614612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c90614446565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bc906144d8565b60405180910390fd5b6124d0838383612b0a565b6124db600082612248565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461252b91906144f8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125829190613fb8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612641838383612b0f565b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b612684828260405180602001604052806000815250612b14565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b490614578565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128ae919061307f565b60405180910390a3505050565b6128c68484846123df565b6128d284848484612b6f565b612911576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129089061460a565b60405180910390fd5b50505050565b6060600e80546129269061374d565b80601f01602080910402602001604051908101604052809291908181526020018280546129529061374d565b801561299f5780601f106129745761010080835404028352916020019161299f565b820191906000526020600020905b81548152906001019060200180831161298257829003601f168201915b5050505050905090565b606060008214156129f1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b05565b600082905060005b60008214612a23578080612a0c906139f6565b915050600a82612a1c9190614659565b91506129f9565b60008167ffffffffffffffff811115612a3f57612a3e6133d9565b5b6040519080825280601f01601f191660200182016040528015612a715781602001600182028036833780820191505090505b5090505b60008514612afe57600182612a8a91906144f8565b9150600a85612a99919061468a565b6030612aa59190613fb8565b60f81b818381518110612abb57612aba613a3f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612af79190614659565b9450612a75565b8093505050505b919050565b505050565b505050565b612b1e8383612cf7565b612b2b6000848484612b6f565b612b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b619061460a565b60405180910390fd5b505050565b6000612b908473ffffffffffffffffffffffffffffffffffffffff16612ed1565b15612cea578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bb9612240565b8786866040518563ffffffff1660e01b8152600401612bdb9493929190614710565b6020604051808303816000875af1925050508015612c1757506040513d601f19601f82011682018060405250810190612c149190614771565b60015b612c9a573d8060008114612c47576040519150601f19603f3d011682016040523d82523d6000602084013e612c4c565b606091505b50600081511415612c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c899061460a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612cef565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5e906147ea565b60405180910390fd5b612d70816121d4565b15612db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da790614856565b60405180910390fd5b612dbc60008383612b0a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e0c9190613fb8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ecd60008383612b0f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612f009061374d565b90600052602060002090601f016020900481019282612f225760008555612f69565b82601f10612f3b57805160ff1916838001178555612f69565b82800160010185558215612f69579182015b82811115612f68578251825591602001919060010190612f4d565b5b509050612f769190612f7a565b5090565b5b80821115612f93576000816000905550600101612f7b565b5090565b6000819050919050565b612faa81612f97565b82525050565b6000602082019050612fc56000830184612fa1565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61301481612fdf565b811461301f57600080fd5b50565b6000813590506130318161300b565b92915050565b60006020828403121561304d5761304c612fd5565b5b600061305b84828501613022565b91505092915050565b60008115159050919050565b61307981613064565b82525050565b60006020820190506130946000830184613070565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130d45780820151818401526020810190506130b9565b838111156130e3576000848401525b50505050565b6000601f19601f8301169050919050565b60006131058261309a565b61310f81856130a5565b935061311f8185602086016130b6565b613128816130e9565b840191505092915050565b6000602082019050818103600083015261314d81846130fa565b905092915050565b61315e81612f97565b811461316957600080fd5b50565b60008135905061317b81613155565b92915050565b60006020828403121561319757613196612fd5565b5b60006131a58482850161316c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131d9826131ae565b9050919050565b6131e9816131ce565b82525050565b600060208201905061320460008301846131e0565b92915050565b613213816131ce565b811461321e57600080fd5b50565b6000813590506132308161320a565b92915050565b6000806040838503121561324d5761324c612fd5565b5b600061325b85828601613221565b925050602061326c8582860161316c565b9150509250929050565b60008060006060848603121561328f5761328e612fd5565b5b600061329d86828701613221565b93505060206132ae86828701613221565b92505060406132bf8682870161316c565b9150509250925092565b6132d281613064565b81146132dd57600080fd5b50565b6000813590506132ef816132c9565b92915050565b60006020828403121561330b5761330a612fd5565b5b6000613319848285016132e0565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261334757613346613322565b5b8235905067ffffffffffffffff81111561336457613363613327565b5b6020830191508360208202830111156133805761337f61332c565b5b9250929050565b6000806020838503121561339e5761339d612fd5565b5b600083013567ffffffffffffffff8111156133bc576133bb612fda565b5b6133c885828601613331565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613411826130e9565b810181811067ffffffffffffffff821117156134305761342f6133d9565b5b80604052505050565b6000613443612fcb565b905061344f8282613408565b919050565b600067ffffffffffffffff82111561346f5761346e6133d9565b5b613478826130e9565b9050602081019050919050565b82818337600083830152505050565b60006134a76134a284613454565b613439565b9050828152602081018484840111156134c3576134c26133d4565b5b6134ce848285613485565b509392505050565b600082601f8301126134eb576134ea613322565b5b81356134fb848260208601613494565b91505092915050565b60006020828403121561351a57613519612fd5565b5b600082013567ffffffffffffffff81111561353857613537612fda565b5b613544848285016134d6565b91505092915050565b60006020828403121561356357613562612fd5565b5b600061357184828501613221565b91505092915050565b6000806040838503121561359157613590612fd5565b5b600061359f85828601613221565b92505060206135b0858286016132e0565b9150509250929050565b600067ffffffffffffffff8211156135d5576135d46133d9565b5b6135de826130e9565b9050602081019050919050565b60006135fe6135f9846135ba565b613439565b90508281526020810184848401111561361a576136196133d4565b5b613625848285613485565b509392505050565b600082601f83011261364257613641613322565b5b81356136528482602086016135eb565b91505092915050565b6000806000806080858703121561367557613674612fd5565b5b600061368387828801613221565b945050602061369487828801613221565b93505060406136a58782880161316c565b925050606085013567ffffffffffffffff8111156136c6576136c5612fda565b5b6136d28782880161362d565b91505092959194509250565b600080604083850312156136f5576136f4612fd5565b5b600061370385828601613221565b925050602061371485828601613221565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061376557607f821691505b602082108114156137795761377861371e565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006137db602c836130a5565b91506137e68261377f565b604082019050919050565b6000602082019050818103600083015261380a816137ce565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061386d6021836130a5565b915061387882613811565b604082019050919050565b6000602082019050818103600083015261389c81613860565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006138ff6038836130a5565b915061390a826138a3565b604082019050919050565b6000602082019050818103600083015261392e816138f2565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006139916031836130a5565b915061399c82613935565b604082019050919050565b600060208201905081810360008301526139c081613984565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a0182612f97565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a3457613a336139c7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b6000613aa46018836130a5565b9150613aaf82613a6e565b602082019050919050565b60006020820190508181036000830152613ad381613a97565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613b366029836130a5565b9150613b4182613ada565b604082019050919050565b60006020820190508181036000830152613b6581613b29565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613bc8602a836130a5565b9150613bd382613b6c565b604082019050919050565b60006020820190508181036000830152613bf781613bbb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c346020836130a5565b9150613c3f82613bfe565b602082019050919050565b60006020820190508181036000830152613c6381613c27565b9050919050565b7f4d61782052657365727665732074616b656e20616c7265616479210000000000600082015250565b6000613ca0601b836130a5565b9150613cab82613c6a565b602082019050919050565b60006020820190508181036000830152613ccf81613c93565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000613d0c600f836130a5565b9150613d1782613cd6565b602082019050919050565b60006020820190508181036000830152613d3b81613cff565b9050919050565b7f416c6c6f77204c697374206973206e6f74206163746976650000000000000000600082015250565b6000613d786018836130a5565b9150613d8382613d42565b602082019050919050565b60006020820190508181036000830152613da781613d6b565b9050919050565b7f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000600082015250565b6000613de4601d836130a5565b9150613def82613dae565b602082019050919050565b60006020820190508181036000830152613e1381613dd7565b9050919050565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b6000613e50601b836130a5565b9150613e5b82613e1a565b602082019050919050565b60006020820190508181036000830152613e7f81613e43565b9050919050565b6000613e9182612f97565b9150613e9c83612f97565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ed557613ed46139c7565b5b828202905092915050565b7f496e7375666669656e742045544820616d6f756e742073656e742e0000000000600082015250565b6000613f16601b836130a5565b9150613f2182613ee0565b602082019050919050565b60006020820190508181036000830152613f4581613f09565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b6000613f82601d836130a5565b9150613f8d82613f4c565b602082019050919050565b60006020820190508181036000830152613fb181613f75565b9050919050565b6000613fc382612f97565b9150613fce83612f97565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614003576140026139c7565b5b828201905092915050565b7f4d617820686f6c64696e672063617020726561636865642e0000000000000000600082015250565b60006140446018836130a5565b915061404f8261400e565b602082019050919050565b6000602082019050818103600083015261407381614037565b9050919050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b60006140b06016836130a5565b91506140bb8261407a565b602082019050919050565b600060208201905081810360008301526140df816140a3565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b600061411c601e836130a5565b9150614127826140e6565b602082019050919050565b6000602082019050818103600083015261414b8161410f565b9050919050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000614188601d836130a5565b915061419382614152565b602082019050919050565b600060208201905081810360008301526141b78161417b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061421a602f836130a5565b9150614225826141be565b604082019050919050565b600060208201905081810360008301526142498161420d565b9050919050565b600081905092915050565b60006142668261309a565b6142708185614250565b93506142808185602086016130b6565b80840191505092915050565b6000614298828561425b565b91506142a4828461425b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061430c6026836130a5565b9150614317826142b0565b604082019050919050565b6000602082019050818103600083015261433b816142ff565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061439e602c836130a5565b91506143a982614342565b604082019050919050565b600060208201905081810360008301526143cd81614391565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006144306025836130a5565b915061443b826143d4565b604082019050919050565b6000602082019050818103600083015261445f81614423565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006144c26024836130a5565b91506144cd82614466565b604082019050919050565b600060208201905081810360008301526144f1816144b5565b9050919050565b600061450382612f97565b915061450e83612f97565b925082821015614521576145206139c7565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006145626019836130a5565b915061456d8261452c565b602082019050919050565b6000602082019050818103600083015261459181614555565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006145f46032836130a5565b91506145ff82614598565b604082019050919050565b60006020820190508181036000830152614623816145e7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061466482612f97565b915061466f83612f97565b92508261467f5761467e61462a565b5b828204905092915050565b600061469582612f97565b91506146a083612f97565b9250826146b0576146af61462a565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006146e2826146bb565b6146ec81856146c6565b93506146fc8185602086016130b6565b614705816130e9565b840191505092915050565b600060808201905061472560008301876131e0565b61473260208301866131e0565b61473f6040830185612fa1565b818103606083015261475181846146d7565b905095945050505050565b60008151905061476b8161300b565b92915050565b60006020828403121561478757614786612fd5565b5b60006147958482850161475c565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006147d46020836130a5565b91506147df8261479e565b602082019050919050565b60006020820190508181036000830152614803816147c7565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614840601c836130a5565b915061484b8261480a565b602082019050919050565b6000602082019050818103600083015261486f81614833565b905091905056fea264697066735822122072bb2a47829efbea5965596489c05b9f2cf911a2e6631f7d52c1e96d7d5e6b2b64736f6c634300080b0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

38805:5424:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39023:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25612:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26557:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28117:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27640:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39218:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28867:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39293:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41814:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44092:134;;;;;;;;;;;;;:::i;:::-;;29277:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41278:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42568:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40050:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40890:263;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41931:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41623:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39251:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26251:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38982:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39948:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25981:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6195:103;;;;;;;;;;;;;:::i;:::-;;42253:309;;;;;;;;;;;;;:::i;:::-;;41159:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42806:540;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41406:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39438:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40432:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5544:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41721;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26726:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39330:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43352:734;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28410:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40317:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29533:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26901:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39385:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40777:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42038:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28636:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40180:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6453:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41522:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39023:40;;;;:::o;25612:305::-;25714:4;25766:25;25751:40;;;:11;:40;;;;:105;;;;25823:33;25808:48;;;:11;:48;;;;25751:105;:158;;;;25873:36;25897:11;25873:23;:36::i;:::-;25751:158;25731:178;;25612:305;;;:::o;26557:100::-;26611:13;26644:5;26637:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26557:100;:::o;28117:221::-;28193:7;28221:16;28229:7;28221;:16::i;:::-;28213:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28306:15;:24;28322:7;28306:24;;;;;;;;;;;;;;;;;;;;;28299:31;;28117:221;;;:::o;27640:411::-;27721:13;27737:23;27752:7;27737:14;:23::i;:::-;27721:39;;27785:5;27779:11;;:2;:11;;;;27771:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27879:5;27863:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27888:37;27905:5;27912:12;:10;:12::i;:::-;27888:16;:37::i;:::-;27863:62;27841:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28022:21;28031:2;28035:7;28022:8;:21::i;:::-;27710:341;27640:411;;:::o;39218:28::-;;;;;;;;;;;;;:::o;28867:339::-;29062:41;29081:12;:10;:12::i;:::-;29095:7;29062:18;:41::i;:::-;29054:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29170:28;29180:4;29186:2;29190:7;29170:9;:28::i;:::-;28867:339;;;:::o;39293:32::-;;;;:::o;41814:111::-;39917:10;39906:21;;:7;:5;:7::i;:::-;:21;;;39898:30;;;;;;41906:13:::1;41891:12;:28;;;;41814:111:::0;:::o;44092:134::-;39917:10;39906:21;;:7;:5;:7::i;:::-;:21;;;39898:30;;;;;;44143:12:::1;44158:21;44143:36;;44194:7;:5;:7::i;:::-;44186:25;;:34;44212:7;44186:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;44136:90;44092:134::o:0;29277:185::-;29415:39;29432:4;29438:2;29442:7;29415:39;;;;;;;;;;;;:16;:39::i;:::-;29277:185;;;:::o;41278:122::-;39917:10;39906:21;;:7;:5;:7::i;:::-;:21;;;39898:30;;;;;;41378:16:::1;41360:15;;:34;;;;;;;;;;;;;;;;;;41278:122:::0;:::o;42568:232::-;39917:10;39906:21;;:7;:5;:7::i;:::-;:21;;;39898:30;;;;;;42664:9:::1;42659:136;42683:6;42679:1;:10;42659:136;;;42705:24;:12;:22;:24::i;:::-;42738:49;42748:14;42764:22;:12;:20;:22::i;:::-;42738:9;:49::i;:::-;42691:3;;;;;:::i;:::-;;;;42659:136;;;;42568:232:::0;;:::o;40050:124::-;39917:10;39906:21;;:7;:5;:7::i;:::-;:21;;;39898:30;;;;;;40162:6:::1;40128:31;:40;;;;40050:124:::0;:::o;40890:263::-;39917:10;39906:21;;:7;:5;:7::i;:::-;:21;;;39898:30;;;;;;40985:9:::1;40980:168;41004:9;;:16;;41000:1;:20;40980:168;;;41068:1;41044:26;;:9;;41054:1;41044:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:26;;;;41036:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41135:5;41108:10;:24;41119:9;;41129:1;41119:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;41108:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;41022:3;;;;;:::i;:::-;;;;40980:168;;;;40890:263:::0;;:::o;41931:101::-;39917:10;39906:21;;:7;:5;:7::i;:::-;:21;;;39898:30;;;;;;42019:7:::1;42003:13;:23;;;;;;;;;;;;:::i;:::-;;41931:101:::0;:::o;41623:92::-;39917:10;39906:21;;:7;:5;:7::i;:::-;:21;;;39898:30;;;;;;41706:3:::1;41688:15;:21;;;;41623:92:::0;:::o;39251:35::-;;;;;;;;;;;;;:::o;26251:239::-;26323:7;26343:13;26359:7;:16;26367:7;26359:16;;;;;;;;;;;;;;;;;;;;;26343:32;;26411:1;26394:19;;:5;:19;;;;26386:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26477:5;26470:12;;;26251:239;;;:::o;38982:36::-;;;;:::o;39948:96::-;39993:7;40016:22;:12;:20;:22::i;:::-;40009:29;;39948:96;:::o;25981:208::-;26053:7;26098:1;26081:19;;:5;:19;;;;26073:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26165:9;:16;26175:5;26165:16;;;;;;;;;;;;;;;;26158:23;;25981:208;;;:::o;6195:103::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;42253:309::-;39917:10;39906:21;;:7;:5;:7::i;:::-;:21;;;39898:30;;;;;;42329:15:::1;;42312:13;;:32;;42304:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;42383:9;42401:156;42417:14;;42413:1;:18;42401:156;;;42447:24;:12;:22;:24::i;:::-;42480:45;42490:10;42502:22;:12;:20;:22::i;:::-;42480:9;:45::i;:::-;42534:13;;:15;;;;;;;;;:::i;:::-;;;;;;42433:3;;;;;:::i;:::-;;;;42401:156;;;42297:265;42253:309::o:0;41159:113::-;39917:10;39906:21;;:7;:5;:7::i;:::-;:21;;;39898:30;;;;;;41253:13:::1;41240:10;:26;;;;41159:113:::0;:::o;42806:540::-;39815:10;;39789:22;:12;:20;:22::i;:::-;:36;;39781:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42876:17:::1;42896:22;:12;:20;:22::i;:::-;42876:42;;42935:15;;;;;;;;;;;42927:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;42994:10;:22;43005:10;42994:22;;;;;;;;;;;;;;;;;;;;;;;;;42986:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43077:10;;43065:9;:22;43057:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43162:6;43147:12;;:21;;;;:::i;:::-;43134:9;:34;;43126:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;43214:9;43209:132;43233:6;43229:1;:10;43209:132;;;43255:24;:12;:22;:24::i;:::-;43288:45;43298:10;43310:22;:12;:20;:22::i;:::-;43288:9;:45::i;:::-;43241:3;;;;;:::i;:::-;;;;43209:132;;;;42869:477;42806:540:::0;:::o;41406:110::-;39917:10;39906:21;;:7;:5;:7::i;:::-;:21;;;39898:30;;;;;;41503:7:::1;41484:16;:26;;;;41406:110:::0;:::o;39438:35::-;;;;:::o;40432:339::-;39917:10;39906:21;;:7;:5;:7::i;:::-;:21;;;39898:30;;;;;;40522:9:::1;40517:249;40541:9;;:16;;40537:1;:20;40517:249;;;40605:1;40581:26;;:9;;40591:1;40581:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:26;;;;40573:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40672:4;40645:10;:24;40656:9;;40666:1;40656:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;40645:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;40719:1;40685:17;:31;40703:9;;40713:1;40703:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;40685:31;;;;;;;;;;;;;;;;:35;:73;;40757:1;40685:73;;;40723:17;:31;40741:9;;40751:1;40741:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;40723:31;;;;;;;;;;;;;;;;40685:73;;40559:3;;;;;:::i;:::-;;;;40517:249;;;;40432:339:::0;;:::o;5544:87::-;5590:7;5617:6;;;;;;;;;;;5610:13;;5544:87;:::o;41721:::-;39917:10;39906:21;;:7;:5;:7::i;:::-;:21;;;39898:30;;;;;;41796:6:::1;41784:9;:18;;;;41721:87:::0;:::o;26726:104::-;26782:13;26815:7;26808:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26726:104;:::o;39330:50::-;;;;:::o;43352:734::-;39815:10;;39789:22;:12;:20;:22::i;:::-;:36;;39781:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43415:17:::1;43435:22;:12;:20;:22::i;:::-;43415:42;;43484:7;:5;:7::i;:::-;43470:21;;:10;:21;;;43466:203;;43510:8;;;;;;;;;;;43502:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;43603:29;;43593:6;43569:21;43579:10;43569:9;:21::i;:::-;:30;;;;:::i;:::-;:63;;43561:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;43466:203;43709:10;;43699:6;43687:9;:18;;;;:::i;:::-;:32;;43679:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;43779:31;;43769:6;:41;;43753:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;43900:6;43888:9;;:18;;;;:::i;:::-;43875:9;:31;;43867:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43954:9;43949:132;43973:6;43969:1;:10;43949:132;;;43995:24;:12;:22;:24::i;:::-;44028:45;44038:10;44050:22;:12;:20;:22::i;:::-;44028:9;:45::i;:::-;43981:3;;;;;:::i;:::-;;;;43949:132;;;;43408:678;43352:734:::0;:::o;28410:155::-;28505:52;28524:12;:10;:12::i;:::-;28538:8;28548;28505:18;:52::i;:::-;28410:155;;:::o;40317:109::-;39917:10;39906:21;;:7;:5;:7::i;:::-;:21;;;39898:30;;;;;;40386:3:::1;40375:8;;:14;;;;;;;;;;;;;;;;;;40401:19;40416:3;40401:19;;;;;;:::i;:::-;;;;;;;;40317:109:::0;:::o;29533:328::-;29708:41;29727:12;:10;:12::i;:::-;29741:7;29708:18;:41::i;:::-;29700:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29814:39;29828:4;29834:2;29838:7;29847:5;29814:13;:39::i;:::-;29533:328;;;;:::o;26901:334::-;26974:13;27008:16;27016:7;27008;:16::i;:::-;27000:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;27089:21;27113:10;:8;:10::i;:::-;27089:34;;27165:1;27147:7;27141:21;:25;:86;;;;;;;;;;;;;;;;;27193:7;27202:18;:7;:16;:18::i;:::-;27176:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27141:86;27134:93;;;26901:334;;;:::o;39385:48::-;;;;:::o;40777:107::-;40842:4;40862:10;:16;40873:4;40862:16;;;;;;;;;;;;;;;;;;;;;;;;;40855:23;;40777:107;;;:::o;42038:95::-;42090:7;42113:14;;42106:21;;42038:95;:::o;28636:164::-;28733:4;28757:18;:25;28776:5;28757:25;;;;;;;;;;;;;;;:35;28783:8;28757:35;;;;;;;;;;;;;;;;;;;;;;;;;28750:42;;28636:164;;;;:::o;40180:131::-;39917:10;39906:21;;:7;:5;:7::i;:::-;:21;;;39898:30;;;;;;40299:6:::1;40267:29;:38;;;;40180:131:::0;:::o;6453:201::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6562:1:::1;6542:22;;:8;:22;;;;6534:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;41522:95::-;39917:10;39906:21;;:7;:5;:7::i;:::-;:21;;;39898:30;;;;;;41608:3:::1;41591:14;:20;;;;41522:95:::0;:::o;18351:157::-;18436:4;18475:25;18460:40;;;:11;:40;;;;18453:47;;18351:157;;;:::o;31371:127::-;31436:4;31488:1;31460:30;;:7;:16;31468:7;31460:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31453:37;;31371:127;;;:::o;4268:98::-;4321:7;4348:10;4341:17;;4268:98;:::o;35517:174::-;35619:2;35592:15;:24;35608:7;35592:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35675:7;35671:2;35637:46;;35646:23;35661:7;35646:14;:23::i;:::-;35637:46;;;;;;;;;;;;35517:174;;:::o;31665:348::-;31758:4;31783:16;31791:7;31783;:16::i;:::-;31775:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31859:13;31875:23;31890:7;31875:14;:23::i;:::-;31859:39;;31928:5;31917:16;;:7;:16;;;:52;;;;31937:32;31954:5;31961:7;31937:16;:32::i;:::-;31917:52;:87;;;;31997:7;31973:31;;:20;31985:7;31973:11;:20::i;:::-;:31;;;31917:87;31909:96;;;31665:348;;;;:::o;34774:625::-;34933:4;34906:31;;:23;34921:7;34906:14;:23::i;:::-;:31;;;34898:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35012:1;34998:16;;:2;:16;;;;34990:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35068:39;35089:4;35095:2;35099:7;35068:20;:39::i;:::-;35172:29;35189:1;35193:7;35172:8;:29::i;:::-;35233:1;35214:9;:15;35224:4;35214:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35262:1;35245:9;:13;35255:2;35245:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35293:2;35274:7;:16;35282:7;35274:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35332:7;35328:2;35313:27;;35322:4;35313:27;;;;;;;;;;;;35353:38;35373:4;35379:2;35383:7;35353:19;:38::i;:::-;34774:625;;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;32355:110::-;32431:26;32441:2;32445:7;32431:26;;;;;;;;;;;;:9;:26::i;:::-;32355:110;;:::o;6814:191::-;6888:16;6907:6;;;;;;;;;;;6888:25;;6933:8;6924:6;;:17;;;;;;;;;;;;;;;;;;6988:8;6957:40;;6978:8;6957:40;;;;;;;;;;;;6877:128;6814:191;:::o;35833:315::-;35988:8;35979:17;;:5;:17;;;;35971:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36075:8;36037:18;:25;36056:5;36037:25;;;;;;;;;;;;;;;:35;36063:8;36037:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36121:8;36099:41;;36114:5;36099:41;;;36131:8;36099:41;;;;;;:::i;:::-;;;;;;;;35833:315;;;:::o;30743:::-;30900:28;30910:4;30916:2;30920:7;30900:9;:28::i;:::-;30947:48;30970:4;30976:2;30980:7;30989:5;30947:22;:48::i;:::-;30939:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30743:315;;;;:::o;42139:108::-;42199:13;42228;42221:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42139:108;:::o;1830:723::-;1886:13;2116:1;2107:5;:10;2103:53;;;2134:10;;;;;;;;;;;;;;;;;;;;;2103:53;2166:12;2181:5;2166:20;;2197:14;2222:78;2237:1;2229:4;:9;2222:78;;2255:8;;;;;:::i;:::-;;;;2286:2;2278:10;;;;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2310:39;;2360:154;2376:1;2367:5;:10;2360:154;;2404:1;2394:11;;;;;:::i;:::-;;;2471:2;2463:5;:10;;;;:::i;:::-;2450:2;:24;;;;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2500:2;2491:11;;;;;:::i;:::-;;;2360:154;;;2538:6;2524:21;;;;;1830:723;;;;:::o;38084:126::-;;;;:::o;38595:125::-;;;;:::o;32692:321::-;32822:18;32828:2;32832:7;32822:5;:18::i;:::-;32873:54;32904:1;32908:2;32912:7;32921:5;32873:22;:54::i;:::-;32851:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32692:321;;;:::o;36713:799::-;36868:4;36889:15;:2;:13;;;:15::i;:::-;36885:620;;;36941:2;36925:36;;;36962:12;:10;:12::i;:::-;36976:4;36982:7;36991:5;36925:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36921:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37184:1;37167:6;:13;:18;37163:272;;;37210:60;;;;;;;;;;:::i;:::-;;;;;;;;37163:272;37385:6;37379:13;37370:6;37366:2;37362:15;37355:38;36921:529;37058:41;;;37048:51;;;:6;:51;;;;37041:58;;;;;36885:620;37489:4;37482:11;;36713:799;;;;;;;:::o;33349:439::-;33443:1;33429:16;;:2;:16;;;;33421:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33502:16;33510:7;33502;:16::i;:::-;33501:17;33493:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33564:45;33593:1;33597:2;33601:7;33564:20;:45::i;:::-;33639:1;33622:9;:13;33632:2;33622:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33670:2;33651:7;:16;33659:7;33651:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33715:7;33711:2;33690:33;;33707:1;33690:33;;;;;;;;;;;;33736:44;33764:1;33768:2;33772:7;33736:19;:44::i;:::-;33349:439;;:::o;8245:326::-;8305:4;8562:1;8540:7;:19;;;:23;8533:30;;8245:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:149;805:7;845:66;838:5;834:78;823:89;;769:149;;;:::o;924:120::-;996:23;1013:5;996:23;:::i;:::-;989:5;986:34;976:62;;1034:1;1031;1024:12;976:62;924:120;:::o;1050:137::-;1095:5;1133:6;1120:20;1111:29;;1149:32;1175:5;1149:32;:::i;:::-;1050:137;;;;:::o;1193:327::-;1251:6;1300:2;1288:9;1279:7;1275:23;1271:32;1268:119;;;1306:79;;:::i;:::-;1268:119;1426:1;1451:52;1495:7;1486:6;1475:9;1471:22;1451:52;:::i;:::-;1441:62;;1397:116;1193:327;;;;:::o;1526:90::-;1560:7;1603:5;1596:13;1589:21;1578:32;;1526:90;;;:::o;1622:109::-;1703:21;1718:5;1703:21;:::i;:::-;1698:3;1691:34;1622:109;;:::o;1737:210::-;1824:4;1862:2;1851:9;1847:18;1839:26;;1875:65;1937:1;1926:9;1922:17;1913:6;1875:65;:::i;:::-;1737:210;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:116::-;5985:21;6000:5;5985:21;:::i;:::-;5978:5;5975:32;5965:60;;6021:1;6018;6011:12;5965:60;5915:116;:::o;6037:133::-;6080:5;6118:6;6105:20;6096:29;;6134:30;6158:5;6134:30;:::i;:::-;6037:133;;;;:::o;6176:323::-;6232:6;6281:2;6269:9;6260:7;6256:23;6252:32;6249:119;;;6287:79;;:::i;:::-;6249:119;6407:1;6432:50;6474:7;6465:6;6454:9;6450:22;6432:50;:::i;:::-;6422:60;;6378:114;6176:323;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:117;6860:1;6857;6850:12;6891:568;6964:8;6974:6;7024:3;7017:4;7009:6;7005:17;7001:27;6991:122;;7032:79;;:::i;:::-;6991:122;7145:6;7132:20;7122:30;;7175:18;7167:6;7164:30;7161:117;;;7197:79;;:::i;:::-;7161:117;7311:4;7303:6;7299:17;7287:29;;7365:3;7357:4;7349:6;7345:17;7335:8;7331:32;7328:41;7325:128;;;7372:79;;:::i;:::-;7325:128;6891:568;;;;;:::o;7465:559::-;7551:6;7559;7608:2;7596:9;7587:7;7583:23;7579:32;7576:119;;;7614:79;;:::i;:::-;7576:119;7762:1;7751:9;7747:17;7734:31;7792:18;7784:6;7781:30;7778:117;;;7814:79;;:::i;:::-;7778:117;7927:80;7999:7;7990:6;7979:9;7975:22;7927:80;:::i;:::-;7909:98;;;;7705:312;7465:559;;;;;:::o;8030:117::-;8139:1;8136;8129:12;8153:180;8201:77;8198:1;8191:88;8298:4;8295:1;8288:15;8322:4;8319:1;8312:15;8339:281;8422:27;8444:4;8422:27;:::i;:::-;8414:6;8410:40;8552:6;8540:10;8537:22;8516:18;8504:10;8501:34;8498:62;8495:88;;;8563:18;;:::i;:::-;8495:88;8603:10;8599:2;8592:22;8382:238;8339:281;;:::o;8626:129::-;8660:6;8687:20;;:::i;:::-;8677:30;;8716:33;8744:4;8736:6;8716:33;:::i;:::-;8626:129;;;:::o;8761:308::-;8823:4;8913:18;8905:6;8902:30;8899:56;;;8935:18;;:::i;:::-;8899:56;8973:29;8995:6;8973:29;:::i;:::-;8965:37;;9057:4;9051;9047:15;9039:23;;8761:308;;;:::o;9075:154::-;9159:6;9154:3;9149;9136:30;9221:1;9212:6;9207:3;9203:16;9196:27;9075:154;;;:::o;9235:412::-;9313:5;9338:66;9354:49;9396:6;9354:49;:::i;:::-;9338:66;:::i;:::-;9329:75;;9427:6;9420:5;9413:21;9465:4;9458:5;9454:16;9503:3;9494:6;9489:3;9485:16;9482:25;9479:112;;;9510:79;;:::i;:::-;9479:112;9600:41;9634:6;9629:3;9624;9600:41;:::i;:::-;9319:328;9235:412;;;;;:::o;9667:340::-;9723:5;9772:3;9765:4;9757:6;9753:17;9749:27;9739:122;;9780:79;;:::i;:::-;9739:122;9897:6;9884:20;9922:79;9997:3;9989:6;9982:4;9974:6;9970:17;9922:79;:::i;:::-;9913:88;;9729:278;9667:340;;;;:::o;10013:509::-;10082:6;10131:2;10119:9;10110:7;10106:23;10102:32;10099:119;;;10137:79;;:::i;:::-;10099:119;10285:1;10274:9;10270:17;10257:31;10315:18;10307:6;10304:30;10301:117;;;10337:79;;:::i;:::-;10301:117;10442:63;10497:7;10488:6;10477:9;10473:22;10442:63;:::i;:::-;10432:73;;10228:287;10013:509;;;;:::o;10528:329::-;10587:6;10636:2;10624:9;10615:7;10611:23;10607:32;10604:119;;;10642:79;;:::i;:::-;10604:119;10762:1;10787:53;10832:7;10823:6;10812:9;10808:22;10787:53;:::i;:::-;10777:63;;10733:117;10528:329;;;;:::o;10863:468::-;10928:6;10936;10985:2;10973:9;10964:7;10960:23;10956:32;10953:119;;;10991:79;;:::i;:::-;10953:119;11111:1;11136:53;11181:7;11172:6;11161:9;11157:22;11136:53;:::i;:::-;11126:63;;11082:117;11238:2;11264:50;11306:7;11297:6;11286:9;11282:22;11264:50;:::i;:::-;11254:60;;11209:115;10863:468;;;;;:::o;11337:307::-;11398:4;11488:18;11480:6;11477:30;11474:56;;;11510:18;;:::i;:::-;11474:56;11548:29;11570:6;11548:29;:::i;:::-;11540:37;;11632:4;11626;11622:15;11614:23;;11337:307;;;:::o;11650:410::-;11727:5;11752:65;11768:48;11809:6;11768:48;:::i;:::-;11752:65;:::i;:::-;11743:74;;11840:6;11833:5;11826:21;11878:4;11871:5;11867:16;11916:3;11907:6;11902:3;11898:16;11895:25;11892:112;;;11923:79;;:::i;:::-;11892:112;12013:41;12047:6;12042:3;12037;12013:41;:::i;:::-;11733:327;11650:410;;;;;:::o;12079:338::-;12134:5;12183:3;12176:4;12168:6;12164:17;12160:27;12150:122;;12191:79;;:::i;:::-;12150:122;12308:6;12295:20;12333:78;12407:3;12399:6;12392:4;12384:6;12380:17;12333:78;:::i;:::-;12324:87;;12140:277;12079:338;;;;:::o;12423:943::-;12518:6;12526;12534;12542;12591:3;12579:9;12570:7;12566:23;12562:33;12559:120;;;12598:79;;:::i;:::-;12559:120;12718:1;12743:53;12788:7;12779:6;12768:9;12764:22;12743:53;:::i;:::-;12733:63;;12689:117;12845:2;12871:53;12916:7;12907:6;12896:9;12892:22;12871:53;:::i;:::-;12861:63;;12816:118;12973:2;12999:53;13044:7;13035:6;13024:9;13020:22;12999:53;:::i;:::-;12989:63;;12944:118;13129:2;13118:9;13114:18;13101:32;13160:18;13152:6;13149:30;13146:117;;;13182:79;;:::i;:::-;13146:117;13287:62;13341:7;13332:6;13321:9;13317:22;13287:62;:::i;:::-;13277:72;;13072:287;12423:943;;;;;;;:::o;13372:474::-;13440:6;13448;13497:2;13485:9;13476:7;13472:23;13468:32;13465:119;;;13503:79;;:::i;:::-;13465:119;13623:1;13648:53;13693:7;13684:6;13673:9;13669:22;13648:53;:::i;:::-;13638:63;;13594:117;13750:2;13776:53;13821:7;13812:6;13801:9;13797:22;13776:53;:::i;:::-;13766:63;;13721:118;13372:474;;;;;:::o;13852:180::-;13900:77;13897:1;13890:88;13997:4;13994:1;13987:15;14021:4;14018:1;14011:15;14038:320;14082:6;14119:1;14113:4;14109:12;14099:22;;14166:1;14160:4;14156:12;14187:18;14177:81;;14243:4;14235:6;14231:17;14221:27;;14177:81;14305:2;14297:6;14294:14;14274:18;14271:38;14268:84;;;14324:18;;:::i;:::-;14268:84;14089:269;14038:320;;;:::o;14364:231::-;14504:34;14500:1;14492:6;14488:14;14481:58;14573:14;14568:2;14560:6;14556:15;14549:39;14364:231;:::o;14601:366::-;14743:3;14764:67;14828:2;14823:3;14764:67;:::i;:::-;14757:74;;14840:93;14929:3;14840:93;:::i;:::-;14958:2;14953:3;14949:12;14942:19;;14601:366;;;:::o;14973:419::-;15139:4;15177:2;15166:9;15162:18;15154:26;;15226:9;15220:4;15216:20;15212:1;15201:9;15197:17;15190:47;15254:131;15380:4;15254:131;:::i;:::-;15246:139;;14973:419;;;:::o;15398:220::-;15538:34;15534:1;15526:6;15522:14;15515:58;15607:3;15602:2;15594:6;15590:15;15583:28;15398:220;:::o;15624:366::-;15766:3;15787:67;15851:2;15846:3;15787:67;:::i;:::-;15780:74;;15863:93;15952:3;15863:93;:::i;:::-;15981:2;15976:3;15972:12;15965:19;;15624:366;;;:::o;15996:419::-;16162:4;16200:2;16189:9;16185:18;16177:26;;16249:9;16243:4;16239:20;16235:1;16224:9;16220:17;16213:47;16277:131;16403:4;16277:131;:::i;:::-;16269:139;;15996:419;;;:::o;16421:243::-;16561:34;16557:1;16549:6;16545:14;16538:58;16630:26;16625:2;16617:6;16613:15;16606:51;16421:243;:::o;16670:366::-;16812:3;16833:67;16897:2;16892:3;16833:67;:::i;:::-;16826:74;;16909:93;16998:3;16909:93;:::i;:::-;17027:2;17022:3;17018:12;17011:19;;16670:366;;;:::o;17042:419::-;17208:4;17246:2;17235:9;17231:18;17223:26;;17295:9;17289:4;17285:20;17281:1;17270:9;17266:17;17259:47;17323:131;17449:4;17323:131;:::i;:::-;17315:139;;17042:419;;;:::o;17467:236::-;17607:34;17603:1;17595:6;17591:14;17584:58;17676:19;17671:2;17663:6;17659:15;17652:44;17467:236;:::o;17709:366::-;17851:3;17872:67;17936:2;17931:3;17872:67;:::i;:::-;17865:74;;17948:93;18037:3;17948:93;:::i;:::-;18066:2;18061:3;18057:12;18050:19;;17709:366;;;:::o;18081:419::-;18247:4;18285:2;18274:9;18270:18;18262:26;;18334:9;18328:4;18324:20;18320:1;18309:9;18305:17;18298:47;18362:131;18488:4;18362:131;:::i;:::-;18354:139;;18081:419;;;:::o;18506:180::-;18554:77;18551:1;18544:88;18651:4;18648:1;18641:15;18675:4;18672:1;18665:15;18692:233;18731:3;18754:24;18772:5;18754:24;:::i;:::-;18745:33;;18800:66;18793:5;18790:77;18787:103;;;18870:18;;:::i;:::-;18787:103;18917:1;18910:5;18906:13;18899:20;;18692:233;;;:::o;18931:180::-;18979:77;18976:1;18969:88;19076:4;19073:1;19066:15;19100:4;19097:1;19090:15;19117:174;19257:26;19253:1;19245:6;19241:14;19234:50;19117:174;:::o;19297:366::-;19439:3;19460:67;19524:2;19519:3;19460:67;:::i;:::-;19453:74;;19536:93;19625:3;19536:93;:::i;:::-;19654:2;19649:3;19645:12;19638:19;;19297:366;;;:::o;19669:419::-;19835:4;19873:2;19862:9;19858:18;19850:26;;19922:9;19916:4;19912:20;19908:1;19897:9;19893:17;19886:47;19950:131;20076:4;19950:131;:::i;:::-;19942:139;;19669:419;;;:::o;20094:228::-;20234:34;20230:1;20222:6;20218:14;20211:58;20303:11;20298:2;20290:6;20286:15;20279:36;20094:228;:::o;20328:366::-;20470:3;20491:67;20555:2;20550:3;20491:67;:::i;:::-;20484:74;;20567:93;20656:3;20567:93;:::i;:::-;20685:2;20680:3;20676:12;20669:19;;20328:366;;;:::o;20700:419::-;20866:4;20904:2;20893:9;20889:18;20881:26;;20953:9;20947:4;20943:20;20939:1;20928:9;20924:17;20917:47;20981:131;21107:4;20981:131;:::i;:::-;20973:139;;20700:419;;;:::o;21125:229::-;21265:34;21261:1;21253:6;21249:14;21242:58;21334:12;21329:2;21321:6;21317:15;21310:37;21125:229;:::o;21360:366::-;21502:3;21523:67;21587:2;21582:3;21523:67;:::i;:::-;21516:74;;21599:93;21688:3;21599:93;:::i;:::-;21717:2;21712:3;21708:12;21701:19;;21360:366;;;:::o;21732:419::-;21898:4;21936:2;21925:9;21921:18;21913:26;;21985:9;21979:4;21975:20;21971:1;21960:9;21956:17;21949:47;22013:131;22139:4;22013:131;:::i;:::-;22005:139;;21732:419;;;:::o;22157:182::-;22297:34;22293:1;22285:6;22281:14;22274:58;22157:182;:::o;22345:366::-;22487:3;22508:67;22572:2;22567:3;22508:67;:::i;:::-;22501:74;;22584:93;22673:3;22584:93;:::i;:::-;22702:2;22697:3;22693:12;22686:19;;22345:366;;;:::o;22717:419::-;22883:4;22921:2;22910:9;22906:18;22898:26;;22970:9;22964:4;22960:20;22956:1;22945:9;22941:17;22934:47;22998:131;23124:4;22998:131;:::i;:::-;22990:139;;22717:419;;;:::o;23142:177::-;23282:29;23278:1;23270:6;23266:14;23259:53;23142:177;:::o;23325:366::-;23467:3;23488:67;23552:2;23547:3;23488:67;:::i;:::-;23481:74;;23564:93;23653:3;23564:93;:::i;:::-;23682:2;23677:3;23673:12;23666:19;;23325:366;;;:::o;23697:419::-;23863:4;23901:2;23890:9;23886:18;23878:26;;23950:9;23944:4;23940:20;23936:1;23925:9;23921:17;23914:47;23978:131;24104:4;23978:131;:::i;:::-;23970:139;;23697:419;;;:::o;24122:165::-;24262:17;24258:1;24250:6;24246:14;24239:41;24122:165;:::o;24293:366::-;24435:3;24456:67;24520:2;24515:3;24456:67;:::i;:::-;24449:74;;24532:93;24621:3;24532:93;:::i;:::-;24650:2;24645:3;24641:12;24634:19;;24293:366;;;:::o;24665:419::-;24831:4;24869:2;24858:9;24854:18;24846:26;;24918:9;24912:4;24908:20;24904:1;24893:9;24889:17;24882:47;24946:131;25072:4;24946:131;:::i;:::-;24938:139;;24665:419;;;:::o;25090:174::-;25230:26;25226:1;25218:6;25214:14;25207:50;25090:174;:::o;25270:366::-;25412:3;25433:67;25497:2;25492:3;25433:67;:::i;:::-;25426:74;;25509:93;25598:3;25509:93;:::i;:::-;25627:2;25622:3;25618:12;25611:19;;25270:366;;;:::o;25642:419::-;25808:4;25846:2;25835:9;25831:18;25823:26;;25895:9;25889:4;25885:20;25881:1;25870:9;25866:17;25859:47;25923:131;26049:4;25923:131;:::i;:::-;25915:139;;25642:419;;;:::o;26067:179::-;26207:31;26203:1;26195:6;26191:14;26184:55;26067:179;:::o;26252:366::-;26394:3;26415:67;26479:2;26474:3;26415:67;:::i;:::-;26408:74;;26491:93;26580:3;26491:93;:::i;:::-;26609:2;26604:3;26600:12;26593:19;;26252:366;;;:::o;26624:419::-;26790:4;26828:2;26817:9;26813:18;26805:26;;26877:9;26871:4;26867:20;26863:1;26852:9;26848:17;26841:47;26905:131;27031:4;26905:131;:::i;:::-;26897:139;;26624:419;;;:::o;27049:177::-;27189:29;27185:1;27177:6;27173:14;27166:53;27049:177;:::o;27232:366::-;27374:3;27395:67;27459:2;27454:3;27395:67;:::i;:::-;27388:74;;27471:93;27560:3;27471:93;:::i;:::-;27589:2;27584:3;27580:12;27573:19;;27232:366;;;:::o;27604:419::-;27770:4;27808:2;27797:9;27793:18;27785:26;;27857:9;27851:4;27847:20;27843:1;27832:9;27828:17;27821:47;27885:131;28011:4;27885:131;:::i;:::-;27877:139;;27604:419;;;:::o;28029:348::-;28069:7;28092:20;28110:1;28092:20;:::i;:::-;28087:25;;28126:20;28144:1;28126:20;:::i;:::-;28121:25;;28314:1;28246:66;28242:74;28239:1;28236:81;28231:1;28224:9;28217:17;28213:105;28210:131;;;28321:18;;:::i;:::-;28210:131;28369:1;28366;28362:9;28351:20;;28029:348;;;;:::o;28383:177::-;28523:29;28519:1;28511:6;28507:14;28500:53;28383:177;:::o;28566:366::-;28708:3;28729:67;28793:2;28788:3;28729:67;:::i;:::-;28722:74;;28805:93;28894:3;28805:93;:::i;:::-;28923:2;28918:3;28914:12;28907:19;;28566:366;;;:::o;28938:419::-;29104:4;29142:2;29131:9;29127:18;29119:26;;29191:9;29185:4;29181:20;29177:1;29166:9;29162:17;29155:47;29219:131;29345:4;29219:131;:::i;:::-;29211:139;;28938:419;;;:::o;29363:179::-;29503:31;29499:1;29491:6;29487:14;29480:55;29363:179;:::o;29548:366::-;29690:3;29711:67;29775:2;29770:3;29711:67;:::i;:::-;29704:74;;29787:93;29876:3;29787:93;:::i;:::-;29905:2;29900:3;29896:12;29889:19;;29548:366;;;:::o;29920:419::-;30086:4;30124:2;30113:9;30109:18;30101:26;;30173:9;30167:4;30163:20;30159:1;30148:9;30144:17;30137:47;30201:131;30327:4;30201:131;:::i;:::-;30193:139;;29920:419;;;:::o;30345:305::-;30385:3;30404:20;30422:1;30404:20;:::i;:::-;30399:25;;30438:20;30456:1;30438:20;:::i;:::-;30433:25;;30592:1;30524:66;30520:74;30517:1;30514:81;30511:107;;;30598:18;;:::i;:::-;30511:107;30642:1;30639;30635:9;30628:16;;30345:305;;;;:::o;30656:174::-;30796:26;30792:1;30784:6;30780:14;30773:50;30656:174;:::o;30836:366::-;30978:3;30999:67;31063:2;31058:3;30999:67;:::i;:::-;30992:74;;31075:93;31164:3;31075:93;:::i;:::-;31193:2;31188:3;31184:12;31177:19;;30836:366;;;:::o;31208:419::-;31374:4;31412:2;31401:9;31397:18;31389:26;;31461:9;31455:4;31451:20;31447:1;31436:9;31432:17;31425:47;31489:131;31615:4;31489:131;:::i;:::-;31481:139;;31208:419;;;:::o;31633:172::-;31773:24;31769:1;31761:6;31757:14;31750:48;31633:172;:::o;31811:366::-;31953:3;31974:67;32038:2;32033:3;31974:67;:::i;:::-;31967:74;;32050:93;32139:3;32050:93;:::i;:::-;32168:2;32163:3;32159:12;32152:19;;31811:366;;;:::o;32183:419::-;32349:4;32387:2;32376:9;32372:18;32364:26;;32436:9;32430:4;32426:20;32422:1;32411:9;32407:17;32400:47;32464:131;32590:4;32464:131;:::i;:::-;32456:139;;32183:419;;;:::o;32608:180::-;32748:32;32744:1;32736:6;32732:14;32725:56;32608:180;:::o;32794:366::-;32936:3;32957:67;33021:2;33016:3;32957:67;:::i;:::-;32950:74;;33033:93;33122:3;33033:93;:::i;:::-;33151:2;33146:3;33142:12;33135:19;;32794:366;;;:::o;33166:419::-;33332:4;33370:2;33359:9;33355:18;33347:26;;33419:9;33413:4;33409:20;33405:1;33394:9;33390:17;33383:47;33447:131;33573:4;33447:131;:::i;:::-;33439:139;;33166:419;;;:::o;33591:179::-;33731:31;33727:1;33719:6;33715:14;33708:55;33591:179;:::o;33776:366::-;33918:3;33939:67;34003:2;33998:3;33939:67;:::i;:::-;33932:74;;34015:93;34104:3;34015:93;:::i;:::-;34133:2;34128:3;34124:12;34117:19;;33776:366;;;:::o;34148:419::-;34314:4;34352:2;34341:9;34337:18;34329:26;;34401:9;34395:4;34391:20;34387:1;34376:9;34372:17;34365:47;34429:131;34555:4;34429:131;:::i;:::-;34421:139;;34148:419;;;:::o;34573:234::-;34713:34;34709:1;34701:6;34697:14;34690:58;34782:17;34777:2;34769:6;34765:15;34758:42;34573:234;:::o;34813:366::-;34955:3;34976:67;35040:2;35035:3;34976:67;:::i;:::-;34969:74;;35052:93;35141:3;35052:93;:::i;:::-;35170:2;35165:3;35161:12;35154:19;;34813:366;;;:::o;35185:419::-;35351:4;35389:2;35378:9;35374:18;35366:26;;35438:9;35432:4;35428:20;35424:1;35413:9;35409:17;35402:47;35466:131;35592:4;35466:131;:::i;:::-;35458:139;;35185:419;;;:::o;35610:148::-;35712:11;35749:3;35734:18;;35610:148;;;;:::o;35764:377::-;35870:3;35898:39;35931:5;35898:39;:::i;:::-;35953:89;36035:6;36030:3;35953:89;:::i;:::-;35946:96;;36051:52;36096:6;36091:3;36084:4;36077:5;36073:16;36051:52;:::i;:::-;36128:6;36123:3;36119:16;36112:23;;35874:267;35764:377;;;;:::o;36147:435::-;36327:3;36349:95;36440:3;36431:6;36349:95;:::i;:::-;36342:102;;36461:95;36552:3;36543:6;36461:95;:::i;:::-;36454:102;;36573:3;36566:10;;36147:435;;;;;:::o;36588:225::-;36728:34;36724:1;36716:6;36712:14;36705:58;36797:8;36792:2;36784:6;36780:15;36773:33;36588:225;:::o;36819:366::-;36961:3;36982:67;37046:2;37041:3;36982:67;:::i;:::-;36975:74;;37058:93;37147:3;37058:93;:::i;:::-;37176:2;37171:3;37167:12;37160:19;;36819:366;;;:::o;37191:419::-;37357:4;37395:2;37384:9;37380:18;37372:26;;37444:9;37438:4;37434:20;37430:1;37419:9;37415:17;37408:47;37472:131;37598:4;37472:131;:::i;:::-;37464:139;;37191:419;;;:::o;37616:231::-;37756:34;37752:1;37744:6;37740:14;37733:58;37825:14;37820:2;37812:6;37808:15;37801:39;37616:231;:::o;37853:366::-;37995:3;38016:67;38080:2;38075:3;38016:67;:::i;:::-;38009:74;;38092:93;38181:3;38092:93;:::i;:::-;38210:2;38205:3;38201:12;38194:19;;37853:366;;;:::o;38225:419::-;38391:4;38429:2;38418:9;38414:18;38406:26;;38478:9;38472:4;38468:20;38464:1;38453:9;38449:17;38442:47;38506:131;38632:4;38506:131;:::i;:::-;38498:139;;38225:419;;;:::o;38650:224::-;38790:34;38786:1;38778:6;38774:14;38767:58;38859:7;38854:2;38846:6;38842:15;38835:32;38650:224;:::o;38880:366::-;39022:3;39043:67;39107:2;39102:3;39043:67;:::i;:::-;39036:74;;39119:93;39208:3;39119:93;:::i;:::-;39237:2;39232:3;39228:12;39221:19;;38880:366;;;:::o;39252:419::-;39418:4;39456:2;39445:9;39441:18;39433:26;;39505:9;39499:4;39495:20;39491:1;39480:9;39476:17;39469:47;39533:131;39659:4;39533:131;:::i;:::-;39525:139;;39252:419;;;:::o;39677:223::-;39817:34;39813:1;39805:6;39801:14;39794:58;39886:6;39881:2;39873:6;39869:15;39862:31;39677:223;:::o;39906:366::-;40048:3;40069:67;40133:2;40128:3;40069:67;:::i;:::-;40062:74;;40145:93;40234:3;40145:93;:::i;:::-;40263:2;40258:3;40254:12;40247:19;;39906:366;;;:::o;40278:419::-;40444:4;40482:2;40471:9;40467:18;40459:26;;40531:9;40525:4;40521:20;40517:1;40506:9;40502:17;40495:47;40559:131;40685:4;40559:131;:::i;:::-;40551:139;;40278:419;;;:::o;40703:191::-;40743:4;40763:20;40781:1;40763:20;:::i;:::-;40758:25;;40797:20;40815:1;40797:20;:::i;:::-;40792:25;;40836:1;40833;40830:8;40827:34;;;40841:18;;:::i;:::-;40827:34;40886:1;40883;40879:9;40871:17;;40703:191;;;;:::o;40900:175::-;41040:27;41036:1;41028:6;41024:14;41017:51;40900:175;:::o;41081:366::-;41223:3;41244:67;41308:2;41303:3;41244:67;:::i;:::-;41237:74;;41320:93;41409:3;41320:93;:::i;:::-;41438:2;41433:3;41429:12;41422:19;;41081:366;;;:::o;41453:419::-;41619:4;41657:2;41646:9;41642:18;41634:26;;41706:9;41700:4;41696:20;41692:1;41681:9;41677:17;41670:47;41734:131;41860:4;41734:131;:::i;:::-;41726:139;;41453:419;;;:::o;41878:237::-;42018:34;42014:1;42006:6;42002:14;41995:58;42087:20;42082:2;42074:6;42070:15;42063:45;41878:237;:::o;42121:366::-;42263:3;42284:67;42348:2;42343:3;42284:67;:::i;:::-;42277:74;;42360:93;42449:3;42360:93;:::i;:::-;42478:2;42473:3;42469:12;42462:19;;42121:366;;;:::o;42493:419::-;42659:4;42697:2;42686:9;42682:18;42674:26;;42746:9;42740:4;42736:20;42732:1;42721:9;42717:17;42710:47;42774:131;42900:4;42774:131;:::i;:::-;42766:139;;42493:419;;;:::o;42918:180::-;42966:77;42963:1;42956:88;43063:4;43060:1;43053:15;43087:4;43084:1;43077:15;43104:185;43144:1;43161:20;43179:1;43161:20;:::i;:::-;43156:25;;43195:20;43213:1;43195:20;:::i;:::-;43190:25;;43234:1;43224:35;;43239:18;;:::i;:::-;43224:35;43281:1;43278;43274:9;43269:14;;43104:185;;;;:::o;43295:176::-;43327:1;43344:20;43362:1;43344:20;:::i;:::-;43339:25;;43378:20;43396:1;43378:20;:::i;:::-;43373:25;;43417:1;43407:35;;43422:18;;:::i;:::-;43407:35;43463:1;43460;43456:9;43451:14;;43295:176;;;;:::o;43477:98::-;43528:6;43562:5;43556:12;43546:22;;43477:98;;;:::o;43581:168::-;43664:11;43698:6;43693:3;43686:19;43738:4;43733:3;43729:14;43714:29;;43581:168;;;;:::o;43755:360::-;43841:3;43869:38;43901:5;43869:38;:::i;:::-;43923:70;43986:6;43981:3;43923:70;:::i;:::-;43916:77;;44002:52;44047:6;44042:3;44035:4;44028:5;44024:16;44002:52;:::i;:::-;44079:29;44101:6;44079:29;:::i;:::-;44074:3;44070:39;44063:46;;43845:270;43755:360;;;;:::o;44121:640::-;44316:4;44354:3;44343:9;44339:19;44331:27;;44368:71;44436:1;44425:9;44421:17;44412:6;44368:71;:::i;:::-;44449:72;44517:2;44506:9;44502:18;44493:6;44449:72;:::i;:::-;44531;44599:2;44588:9;44584:18;44575:6;44531:72;:::i;:::-;44650:9;44644:4;44640:20;44635:2;44624:9;44620:18;44613:48;44678:76;44749:4;44740:6;44678:76;:::i;:::-;44670:84;;44121:640;;;;;;;:::o;44767:141::-;44823:5;44854:6;44848:13;44839:22;;44870:32;44896:5;44870:32;:::i;:::-;44767:141;;;;:::o;44914:349::-;44983:6;45032:2;45020:9;45011:7;45007:23;45003:32;45000:119;;;45038:79;;:::i;:::-;45000:119;45158:1;45183:63;45238:7;45229:6;45218:9;45214:22;45183:63;:::i;:::-;45173:73;;45129:127;44914:349;;;;:::o;45269:182::-;45409:34;45405:1;45397:6;45393:14;45386:58;45269:182;:::o;45457:366::-;45599:3;45620:67;45684:2;45679:3;45620:67;:::i;:::-;45613:74;;45696:93;45785:3;45696:93;:::i;:::-;45814:2;45809:3;45805:12;45798:19;;45457:366;;;:::o;45829:419::-;45995:4;46033:2;46022:9;46018:18;46010:26;;46082:9;46076:4;46072:20;46068:1;46057:9;46053:17;46046:47;46110:131;46236:4;46110:131;:::i;:::-;46102:139;;45829:419;;;:::o;46254:178::-;46394:30;46390:1;46382:6;46378:14;46371:54;46254:178;:::o;46438:366::-;46580:3;46601:67;46665:2;46660:3;46601:67;:::i;:::-;46594:74;;46677:93;46766:3;46677:93;:::i;:::-;46795:2;46790:3;46786:12;46779:19;;46438:366;;;:::o;46810:419::-;46976:4;47014:2;47003:9;46999:18;46991:26;;47063:9;47057:4;47053:20;47049:1;47038:9;47034:17;47027:47;47091:131;47217:4;47091:131;:::i;:::-;47083:139;;46810:419;;;:::o

Swarm Source

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