ETH Price: $3,403.94 (-1.99%)
Gas: 5 Gwei

Token

Opepen PFP (PEPE)
 

Overview

Max Total Supply

5,040 PEPE

Holders

1,033

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
thephotograbbear.eth
Balance
5 PEPE
0x8c8b692ee84fc1370163151d53edf13529a296a5
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:
OpepenPFP

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 12 of 14: OpepenPFP.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "./ERC721A.sol";
import "./Ownable.sol";

contract OpepenPFP is ERC721A, Ownable {
    using Strings for uint256;
    uint256 public maxSupply = 5555;
    uint256 public maxFreeAmount = 2000;
    uint256 public price = 0.001 ether;
    uint256 public maxPerTx = 10;
    uint256 public maxPerWallet = 50;
    uint256 public maxFreePerWallet = 5;
    bool public mintEnabled = true;
    string public baseURI;

    constructor() ERC721A("Opepen PFP", "PEPE") {}

    function publicMint(uint256 quantity) external payable {
        require(mintEnabled, "Minting is not live yet.");
        require(totalSupply() + quantity < maxSuply + 1, "No more");
        uint256 cost = getPrice();
        uint256 _maxPerWallet = maxPerWallet;
        if (cost == 0) {
            _maxPerWallet = maxFreePerWallet;
        }
        require(
            _numberMinted(msg.sender) + quantity <= _maxPerWallet,
            "Max per wallet"
        );
        require(msg.value >= quantity * cost, "Please send the exact amount.");
        _safeMint(msg.sender, quantity);
    }

    function getPrice() public view returns (uint256) {
        uint256 minted = totalSupply();
        uint256 cost = 0;
        if (minted < maxFreeAmount) {
            cost = 0;
        } else {
            cost = 0.002 ether;
        }
        return cost;
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

    function flipSale() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setMaxFreeAmount(uint256 _amount) external onlyOwner {
        maxFreeAmount = _amount;
    }

    function setMaxFreePerWallet(uint256 _amount) external onlyOwner {
        maxFreePerWallet = _amount;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Transfer failed.");
    }
}

File 1 of 14: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [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 2 of 14: Context.sol
// SPDX-License-Identifier: MIT

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 3 of 14: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 4 of 14: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @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 || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

        _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 5 of 14: ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    uint256 public maxSuply = 200000;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index)
        public
        view
        override
        returns (uint256)
    {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        override
        returns (address)
    {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        override
    {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (
                    safe &&
                    !_checkOnERC721Received(address(0), to, updatedIndex, _data)
                ) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership
                        .startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership
                        .startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 6 of 14: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 14: IERC165.sol
// SPDX-License-Identifier: MIT

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 8 of 14: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

File 9 of 14: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

File 10 of 14: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 11 of 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 13 of 14: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";
/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 14 of 14: Strings.sol
// SPDX-License-Identifier: MIT
// 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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSuply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405262030d406002556115b3600a556107d0600b5566038d7ea4c68000600c55600a600d556032600e556005600f556001601060006101000a81548160ff0219169083151502179055503480156200005957600080fd5b506040518060400160405280600a81526020017f4f706570656e20504650000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f50455045000000000000000000000000000000000000000000000000000000008152508160039081620000d7919062000425565b508060049081620000e9919062000425565b5050506000620000fe620001a360201b60201c565b905080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200050c565b600033905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200022d57607f821691505b602082108103620002435762000242620001e5565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002ad7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200026e565b620002b986836200026e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200030662000300620002fa84620002d1565b620002db565b620002d1565b9050919050565b6000819050919050565b6200032283620002e5565b6200033a62000331826200030d565b8484546200027b565b825550505050565b600090565b6200035162000342565b6200035e81848462000317565b505050565b5b8181101562000386576200037a60008262000347565b60018101905062000364565b5050565b601f821115620003d5576200039f8162000249565b620003aa846200025e565b81016020851015620003ba578190505b620003d2620003c9856200025e565b83018262000363565b50505b505050565b600082821c905092915050565b6000620003fa60001984600802620003da565b1980831691505092915050565b6000620004158383620003e7565b9150826002028217905092915050565b6200043082620001ab565b67ffffffffffffffff8111156200044c576200044b620001b6565b5b62000458825462000214565b620004658282856200038a565b600060209050601f8311600181146200049d576000841562000488578287015190505b62000494858262000407565b86555062000504565b601f198416620004ad8662000249565b60005b82811015620004d757848901518255600182019150602085019450602081019050620004b0565b86831015620004f75784890151620004f3601f891682620003e7565b8355505b6001600288020188555050505b505050505050565b613edc806200051c6000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063a7027357116100a0578063d5abeb011161006f578063d5abeb011461076a578063e985e9c514610795578063f2fde38b146107d2578063f892c6e2146107fb578063f968adbe146108265761020f565b8063a7027357146106ae578063b88d4fde146106d9578063c87b56dd14610702578063d12397301461073f5761020f565b806391b7f5ed116100e757806391b7f5ed146105db57806395d89b411461060457806398d5fdca1461062f578063a035b1fe1461065a578063a22cb465146106855761020f565b8063715018a6146105575780637ba5e6211461056e5780638da5cb5b14610585578063908ea471146105b05761020f565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146104605780636352211e146104895780636c0360eb146104c65780636d7c4a4b146104f157806370a082311461051a5761020f565b80633ccfd60b146103b857806342842e0e146103cf578063453c2310146103f85780634f6ccce7146104235761020f565b80630c23bb3f116101e25780630c23bb3f146102e257806318160ddd1461030b57806323b872dd146103365780632db115441461035f5780632f745c591461037b5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612da0565b610851565b6040516102489190612de8565b60405180910390f35b34801561025d57600080fd5b5061026661099b565b6040516102739190612e93565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612eeb565b610a2d565b6040516102b09190612f59565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612fa0565b610aa9565b005b3480156102ee57600080fd5b5061030960048036038101906103049190612eeb565b610bb3565b005b34801561031757600080fd5b50610320610c39565b60405161032d9190612fef565b60405180910390f35b34801561034257600080fd5b5061035d6004803603810190610358919061300a565b610c47565b005b61037960048036038101906103749190612eeb565b610c57565b005b34801561038757600080fd5b506103a2600480360381019061039d9190612fa0565b610ddc565b6040516103af9190612fef565b60405180910390f35b3480156103c457600080fd5b506103cd610fb2565b005b3480156103db57600080fd5b506103f660048036038101906103f1919061300a565b6110dd565b005b34801561040457600080fd5b5061040d6110fd565b60405161041a9190612fef565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190612eeb565b611103565b6040516104579190612fef565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190613192565b611247565b005b34801561049557600080fd5b506104b060048036038101906104ab9190612eeb565b6112d6565b6040516104bd9190612f59565b60405180910390f35b3480156104d257600080fd5b506104db6112ec565b6040516104e89190612e93565b60405180910390f35b3480156104fd57600080fd5b5061051860048036038101906105139190612eeb565b61137a565b005b34801561052657600080fd5b50610541600480360381019061053c91906131db565b611400565b60405161054e9190612fef565b60405180910390f35b34801561056357600080fd5b5061056c6114cf565b005b34801561057a57600080fd5b5061058361160c565b005b34801561059157600080fd5b5061059a6116b4565b6040516105a79190612f59565b60405180910390f35b3480156105bc57600080fd5b506105c56116de565b6040516105d29190612fef565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190612eeb565b6116e4565b005b34801561061057600080fd5b5061061961176a565b6040516106269190612e93565b60405180910390f35b34801561063b57600080fd5b506106446117fc565b6040516106519190612fef565b60405180910390f35b34801561066657600080fd5b5061066f611831565b60405161067c9190612fef565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a79190613234565b611837565b005b3480156106ba57600080fd5b506106c36119ae565b6040516106d09190612fef565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb9190613315565b6119b4565b005b34801561070e57600080fd5b5061072960048036038101906107249190612eeb565b611a07565b6040516107369190612e93565b60405180910390f35b34801561074b57600080fd5b50610754611a83565b6040516107619190612de8565b60405180910390f35b34801561077657600080fd5b5061077f611a96565b60405161078c9190612fef565b60405180910390f35b3480156107a157600080fd5b506107bc60048036038101906107b79190613398565b611a9c565b6040516107c99190612de8565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f491906131db565b611b30565b005b34801561080757600080fd5b50610810611cdb565b60405161081d9190612fef565b60405180910390f35b34801561083257600080fd5b5061083b611ce1565b6040516108489190612fef565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610994575061099382611ce7565b5b9050919050565b6060600380546109aa90613407565b80601f01602080910402602001604051908101604052809291908181526020018280546109d690613407565b8015610a235780601f106109f857610100808354040283529160200191610a23565b820191906000526020600020905b815481529060010190602001808311610a0657829003601f168201915b5050505050905090565b6000610a3882611d51565b610a6e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab4826112d6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b1b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3a611d8b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b6c5750610b6a81610b65611d8b565b611a9c565b155b15610ba3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bae838383611d93565b505050565b610bbb611d8b565b73ffffffffffffffffffffffffffffffffffffffff16610bd96116b4565b73ffffffffffffffffffffffffffffffffffffffff1614610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2690613484565b60405180910390fd5b80600b8190555050565b600060015460005403905090565b610c52838383611e45565b505050565b601060009054906101000a900460ff16610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d906134f0565b60405180910390fd5b6001600254610cb5919061353f565b81610cbe610c39565b610cc8919061353f565b10610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff906135bf565b60405180910390fd5b6000610d126117fc565b90506000600e54905060008203610d2957600f5490505b8083610d3433612334565b610d3e919061353f565b1115610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d769061362b565b60405180910390fd5b8183610d8b919061364b565b341015610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc4906136d9565b60405180910390fd5b610dd73384612403565b505050565b6000610de783611400565b8210610e1f576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610fa7576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610f085750610f9a565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f4857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f9857868403610f8f578195505050505050610fac565b83806001019450505b505b8080600101915050610e2b565b600080fd5b92915050565b610fba611d8b565b73ffffffffffffffffffffffffffffffffffffffff16610fd86116b4565b73ffffffffffffffffffffffffffffffffffffffff161461102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590613484565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110549061372a565b60006040518083038185875af1925050503d8060008114611091576040519150601f19603f3d011682016040523d82523d6000602084013e611096565b606091505b50509050806110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d19061378b565b60405180910390fd5b50565b6110f8838383604051806020016040528060008152506119b4565b505050565b600e5481565b60008060005490506000805b8281101561120f576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611201578583036111f85781945050505050611242565b82806001019350505b50808060010191505061110f565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61124f611d8b565b73ffffffffffffffffffffffffffffffffffffffff1661126d6116b4565b73ffffffffffffffffffffffffffffffffffffffff16146112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba90613484565b60405180910390fd5b80601190816112d29190613957565b5050565b60006112e182612421565b600001519050919050565b601180546112f990613407565b80601f016020809104026020016040519081016040528092919081815260200182805461132590613407565b80156113725780601f1061134757610100808354040283529160200191611372565b820191906000526020600020905b81548152906001019060200180831161135557829003601f168201915b505050505081565b611382611d8b565b73ffffffffffffffffffffffffffffffffffffffff166113a06116b4565b73ffffffffffffffffffffffffffffffffffffffff16146113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed90613484565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611467576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114d7611d8b565b73ffffffffffffffffffffffffffffffffffffffff166114f56116b4565b73ffffffffffffffffffffffffffffffffffffffff161461154b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154290613484565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611614611d8b565b73ffffffffffffffffffffffffffffffffffffffff166116326116b4565b73ffffffffffffffffffffffffffffffffffffffff1614611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f90613484565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60025481565b6116ec611d8b565b73ffffffffffffffffffffffffffffffffffffffff1661170a6116b4565b73ffffffffffffffffffffffffffffffffffffffff1614611760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175790613484565b60405180910390fd5b80600c8190555050565b60606004805461177990613407565b80601f01602080910402602001604051908101604052809291908181526020018280546117a590613407565b80156117f25780601f106117c7576101008083540402835291602001916117f2565b820191906000526020600020905b8154815290600101906020018083116117d557829003601f168201915b5050505050905090565b600080611807610c39565b90506000600b5482101561181e5760009050611829565b66071afd498d000090505b809250505090565b600c5481565b61183f611d8b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118a3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006118b0611d8b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661195d611d8b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119a29190612de8565b60405180910390a35050565b600f5481565b6119bf848484611e45565b6119cb8484848461269d565b611a01576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611a1282611d51565b611a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4890613a9b565b60405180910390fd5b6011611a5c8361281b565b604051602001611a6d929190613bc6565b6040516020818303038152906040529050919050565b601060009054906101000a900460ff1681565b600a5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b38611d8b565b73ffffffffffffffffffffffffffffffffffffffff16611b566116b4565b73ffffffffffffffffffffffffffffffffffffffff1614611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba390613484565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1290613c67565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b5481565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611d84575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611e5082612421565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e77611d8b565b73ffffffffffffffffffffffffffffffffffffffff161480611eaa5750611ea98260000151611ea4611d8b565b611a9c565b5b80611eef5750611eb8611d8b565b73ffffffffffffffffffffffffffffffffffffffff16611ed784610a2d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f28576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f91576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ff7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612004858585600161297b565b6120146000848460000151611d93565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036122c4576000548110156122c35782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461232d8585856001612981565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361239b576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61241d828260405180602001604052806000815250612987565b5050565b612429612cf1565b6000829050600054811015612666576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161266457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612548578092505050612698565b5b60011561266357818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461265e578092505050612698565b612549565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60006126be8473ffffffffffffffffffffffffffffffffffffffff16612999565b1561280e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126e7611d8b565b8786866040518563ffffffff1660e01b81526004016127099493929190613cdc565b6020604051808303816000875af192505050801561274557506040513d601f19601f820116820180604052508101906127429190613d3d565b60015b6127be573d8060008114612775576040519150601f19603f3d011682016040523d82523d6000602084013e61277a565b606091505b5060008151036127b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612813565b600190505b949350505050565b606060008203612862576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612976565b600082905060005b6000821461289457808061287d90613d6a565b915050600a8261288d9190613de1565b915061286a565b60008167ffffffffffffffff8111156128b0576128af613067565b5b6040519080825280601f01601f1916602001820160405280156128e25781602001600182028036833780820191505090505b5090505b6000851461296f576001826128fb9190613e12565b9150600a8561290a9190613e46565b6030612916919061353f565b60f81b81838151811061292c5761292b613e77565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129689190613de1565b94506128e6565b8093505050505b919050565b50505050565b50505050565b61299483838360016129bc565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612a28576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612a62576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a6f600086838761297b565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612cd457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612c885750612c86600088848861269d565b155b15612cbf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612c0d565b508060008190555050612cea6000868387612981565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d7d81612d48565b8114612d8857600080fd5b50565b600081359050612d9a81612d74565b92915050565b600060208284031215612db657612db5612d3e565b5b6000612dc484828501612d8b565b91505092915050565b60008115159050919050565b612de281612dcd565b82525050565b6000602082019050612dfd6000830184612dd9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e3d578082015181840152602081019050612e22565b60008484015250505050565b6000601f19601f8301169050919050565b6000612e6582612e03565b612e6f8185612e0e565b9350612e7f818560208601612e1f565b612e8881612e49565b840191505092915050565b60006020820190508181036000830152612ead8184612e5a565b905092915050565b6000819050919050565b612ec881612eb5565b8114612ed357600080fd5b50565b600081359050612ee581612ebf565b92915050565b600060208284031215612f0157612f00612d3e565b5b6000612f0f84828501612ed6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f4382612f18565b9050919050565b612f5381612f38565b82525050565b6000602082019050612f6e6000830184612f4a565b92915050565b612f7d81612f38565b8114612f8857600080fd5b50565b600081359050612f9a81612f74565b92915050565b60008060408385031215612fb757612fb6612d3e565b5b6000612fc585828601612f8b565b9250506020612fd685828601612ed6565b9150509250929050565b612fe981612eb5565b82525050565b60006020820190506130046000830184612fe0565b92915050565b60008060006060848603121561302357613022612d3e565b5b600061303186828701612f8b565b935050602061304286828701612f8b565b925050604061305386828701612ed6565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61309f82612e49565b810181811067ffffffffffffffff821117156130be576130bd613067565b5b80604052505050565b60006130d1612d34565b90506130dd8282613096565b919050565b600067ffffffffffffffff8211156130fd576130fc613067565b5b61310682612e49565b9050602081019050919050565b82818337600083830152505050565b6000613135613130846130e2565b6130c7565b90508281526020810184848401111561315157613150613062565b5b61315c848285613113565b509392505050565b600082601f8301126131795761317861305d565b5b8135613189848260208601613122565b91505092915050565b6000602082840312156131a8576131a7612d3e565b5b600082013567ffffffffffffffff8111156131c6576131c5612d43565b5b6131d284828501613164565b91505092915050565b6000602082840312156131f1576131f0612d3e565b5b60006131ff84828501612f8b565b91505092915050565b61321181612dcd565b811461321c57600080fd5b50565b60008135905061322e81613208565b92915050565b6000806040838503121561324b5761324a612d3e565b5b600061325985828601612f8b565b925050602061326a8582860161321f565b9150509250929050565b600067ffffffffffffffff82111561328f5761328e613067565b5b61329882612e49565b9050602081019050919050565b60006132b86132b384613274565b6130c7565b9050828152602081018484840111156132d4576132d3613062565b5b6132df848285613113565b509392505050565b600082601f8301126132fc576132fb61305d565b5b813561330c8482602086016132a5565b91505092915050565b6000806000806080858703121561332f5761332e612d3e565b5b600061333d87828801612f8b565b945050602061334e87828801612f8b565b935050604061335f87828801612ed6565b925050606085013567ffffffffffffffff8111156133805761337f612d43565b5b61338c878288016132e7565b91505092959194509250565b600080604083850312156133af576133ae612d3e565b5b60006133bd85828601612f8b565b92505060206133ce85828601612f8b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061341f57607f821691505b602082108103613432576134316133d8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061346e602083612e0e565b915061347982613438565b602082019050919050565b6000602082019050818103600083015261349d81613461565b9050919050565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b60006134da601883612e0e565b91506134e5826134a4565b602082019050919050565b60006020820190508181036000830152613509816134cd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061354a82612eb5565b915061355583612eb5565b925082820190508082111561356d5761356c613510565b5b92915050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b60006135a9600783612e0e565b91506135b482613573565b602082019050919050565b600060208201905081810360008301526135d88161359c565b9050919050565b7f4d6178207065722077616c6c6574000000000000000000000000000000000000600082015250565b6000613615600e83612e0e565b9150613620826135df565b602082019050919050565b6000602082019050818103600083015261364481613608565b9050919050565b600061365682612eb5565b915061366183612eb5565b925082820261366f81612eb5565b9150828204841483151761368657613685613510565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b60006136c3601d83612e0e565b91506136ce8261368d565b602082019050919050565b600060208201905081810360008301526136f2816136b6565b9050919050565b600081905092915050565b50565b60006137146000836136f9565b915061371f82613704565b600082019050919050565b600061373582613707565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613775601083612e0e565b91506137808261373f565b602082019050919050565b600060208201905081810360008301526137a481613768565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261380d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826137d0565b61381786836137d0565b95508019841693508086168417925050509392505050565b6000819050919050565b600061385461384f61384a84612eb5565b61382f565b612eb5565b9050919050565b6000819050919050565b61386e83613839565b61388261387a8261385b565b8484546137dd565b825550505050565b600090565b61389761388a565b6138a2818484613865565b505050565b5b818110156138c6576138bb60008261388f565b6001810190506138a8565b5050565b601f82111561390b576138dc816137ab565b6138e5846137c0565b810160208510156138f4578190505b613908613900856137c0565b8301826138a7565b50505b505050565b600082821c905092915050565b600061392e60001984600802613910565b1980831691505092915050565b6000613947838361391d565b9150826002028217905092915050565b61396082612e03565b67ffffffffffffffff81111561397957613978613067565b5b6139838254613407565b61398e8282856138ca565b600060209050601f8311600181146139c157600084156139af578287015190505b6139b9858261393b565b865550613a21565b601f1984166139cf866137ab565b60005b828110156139f7578489015182556001820191506020850194506020810190506139d2565b86831015613a145784890151613a10601f89168261391d565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a85602f83612e0e565b9150613a9082613a29565b604082019050919050565b60006020820190508181036000830152613ab481613a78565b9050919050565b600081905092915050565b60008154613ad381613407565b613add8186613abb565b94506001821660008114613af85760018114613b0d57613b40565b60ff1983168652811515820286019350613b40565b613b16856137ab565b60005b83811015613b3857815481890152600182019150602081019050613b19565b838801955050505b50505092915050565b6000613b5482612e03565b613b5e8185613abb565b9350613b6e818560208601612e1f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613bb0600583613abb565b9150613bbb82613b7a565b600582019050919050565b6000613bd28285613ac6565b9150613bde8284613b49565b9150613be982613ba3565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c51602683612e0e565b9150613c5c82613bf5565b604082019050919050565b60006020820190508181036000830152613c8081613c44565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613cae82613c87565b613cb88185613c92565b9350613cc8818560208601612e1f565b613cd181612e49565b840191505092915050565b6000608082019050613cf16000830187612f4a565b613cfe6020830186612f4a565b613d0b6040830185612fe0565b8181036060830152613d1d8184613ca3565b905095945050505050565b600081519050613d3781612d74565b92915050565b600060208284031215613d5357613d52612d3e565b5b6000613d6184828501613d28565b91505092915050565b6000613d7582612eb5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613da757613da6613510565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613dec82612eb5565b9150613df783612eb5565b925082613e0757613e06613db2565b5b828204905092915050565b6000613e1d82612eb5565b9150613e2883612eb5565b9250828203905081811115613e4057613e3f613510565b5b92915050565b6000613e5182612eb5565b9150613e5c83612eb5565b925082613e6c57613e6b613db2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220e4aeab779d7a6f5137af0727766540e64ab472eb2ea1c68f27894734edfb833f64736f6c63430008110033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063a7027357116100a0578063d5abeb011161006f578063d5abeb011461076a578063e985e9c514610795578063f2fde38b146107d2578063f892c6e2146107fb578063f968adbe146108265761020f565b8063a7027357146106ae578063b88d4fde146106d9578063c87b56dd14610702578063d12397301461073f5761020f565b806391b7f5ed116100e757806391b7f5ed146105db57806395d89b411461060457806398d5fdca1461062f578063a035b1fe1461065a578063a22cb465146106855761020f565b8063715018a6146105575780637ba5e6211461056e5780638da5cb5b14610585578063908ea471146105b05761020f565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146104605780636352211e146104895780636c0360eb146104c65780636d7c4a4b146104f157806370a082311461051a5761020f565b80633ccfd60b146103b857806342842e0e146103cf578063453c2310146103f85780634f6ccce7146104235761020f565b80630c23bb3f116101e25780630c23bb3f146102e257806318160ddd1461030b57806323b872dd146103365780632db115441461035f5780632f745c591461037b5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612da0565b610851565b6040516102489190612de8565b60405180910390f35b34801561025d57600080fd5b5061026661099b565b6040516102739190612e93565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612eeb565b610a2d565b6040516102b09190612f59565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612fa0565b610aa9565b005b3480156102ee57600080fd5b5061030960048036038101906103049190612eeb565b610bb3565b005b34801561031757600080fd5b50610320610c39565b60405161032d9190612fef565b60405180910390f35b34801561034257600080fd5b5061035d6004803603810190610358919061300a565b610c47565b005b61037960048036038101906103749190612eeb565b610c57565b005b34801561038757600080fd5b506103a2600480360381019061039d9190612fa0565b610ddc565b6040516103af9190612fef565b60405180910390f35b3480156103c457600080fd5b506103cd610fb2565b005b3480156103db57600080fd5b506103f660048036038101906103f1919061300a565b6110dd565b005b34801561040457600080fd5b5061040d6110fd565b60405161041a9190612fef565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190612eeb565b611103565b6040516104579190612fef565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190613192565b611247565b005b34801561049557600080fd5b506104b060048036038101906104ab9190612eeb565b6112d6565b6040516104bd9190612f59565b60405180910390f35b3480156104d257600080fd5b506104db6112ec565b6040516104e89190612e93565b60405180910390f35b3480156104fd57600080fd5b5061051860048036038101906105139190612eeb565b61137a565b005b34801561052657600080fd5b50610541600480360381019061053c91906131db565b611400565b60405161054e9190612fef565b60405180910390f35b34801561056357600080fd5b5061056c6114cf565b005b34801561057a57600080fd5b5061058361160c565b005b34801561059157600080fd5b5061059a6116b4565b6040516105a79190612f59565b60405180910390f35b3480156105bc57600080fd5b506105c56116de565b6040516105d29190612fef565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190612eeb565b6116e4565b005b34801561061057600080fd5b5061061961176a565b6040516106269190612e93565b60405180910390f35b34801561063b57600080fd5b506106446117fc565b6040516106519190612fef565b60405180910390f35b34801561066657600080fd5b5061066f611831565b60405161067c9190612fef565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a79190613234565b611837565b005b3480156106ba57600080fd5b506106c36119ae565b6040516106d09190612fef565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb9190613315565b6119b4565b005b34801561070e57600080fd5b5061072960048036038101906107249190612eeb565b611a07565b6040516107369190612e93565b60405180910390f35b34801561074b57600080fd5b50610754611a83565b6040516107619190612de8565b60405180910390f35b34801561077657600080fd5b5061077f611a96565b60405161078c9190612fef565b60405180910390f35b3480156107a157600080fd5b506107bc60048036038101906107b79190613398565b611a9c565b6040516107c99190612de8565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f491906131db565b611b30565b005b34801561080757600080fd5b50610810611cdb565b60405161081d9190612fef565b60405180910390f35b34801561083257600080fd5b5061083b611ce1565b6040516108489190612fef565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610994575061099382611ce7565b5b9050919050565b6060600380546109aa90613407565b80601f01602080910402602001604051908101604052809291908181526020018280546109d690613407565b8015610a235780601f106109f857610100808354040283529160200191610a23565b820191906000526020600020905b815481529060010190602001808311610a0657829003601f168201915b5050505050905090565b6000610a3882611d51565b610a6e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab4826112d6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b1b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3a611d8b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b6c5750610b6a81610b65611d8b565b611a9c565b155b15610ba3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bae838383611d93565b505050565b610bbb611d8b565b73ffffffffffffffffffffffffffffffffffffffff16610bd96116b4565b73ffffffffffffffffffffffffffffffffffffffff1614610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2690613484565b60405180910390fd5b80600b8190555050565b600060015460005403905090565b610c52838383611e45565b505050565b601060009054906101000a900460ff16610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d906134f0565b60405180910390fd5b6001600254610cb5919061353f565b81610cbe610c39565b610cc8919061353f565b10610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff906135bf565b60405180910390fd5b6000610d126117fc565b90506000600e54905060008203610d2957600f5490505b8083610d3433612334565b610d3e919061353f565b1115610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d769061362b565b60405180910390fd5b8183610d8b919061364b565b341015610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc4906136d9565b60405180910390fd5b610dd73384612403565b505050565b6000610de783611400565b8210610e1f576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610fa7576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610f085750610f9a565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f4857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f9857868403610f8f578195505050505050610fac565b83806001019450505b505b8080600101915050610e2b565b600080fd5b92915050565b610fba611d8b565b73ffffffffffffffffffffffffffffffffffffffff16610fd86116b4565b73ffffffffffffffffffffffffffffffffffffffff161461102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590613484565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110549061372a565b60006040518083038185875af1925050503d8060008114611091576040519150601f19603f3d011682016040523d82523d6000602084013e611096565b606091505b50509050806110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d19061378b565b60405180910390fd5b50565b6110f8838383604051806020016040528060008152506119b4565b505050565b600e5481565b60008060005490506000805b8281101561120f576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611201578583036111f85781945050505050611242565b82806001019350505b50808060010191505061110f565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61124f611d8b565b73ffffffffffffffffffffffffffffffffffffffff1661126d6116b4565b73ffffffffffffffffffffffffffffffffffffffff16146112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba90613484565b60405180910390fd5b80601190816112d29190613957565b5050565b60006112e182612421565b600001519050919050565b601180546112f990613407565b80601f016020809104026020016040519081016040528092919081815260200182805461132590613407565b80156113725780601f1061134757610100808354040283529160200191611372565b820191906000526020600020905b81548152906001019060200180831161135557829003601f168201915b505050505081565b611382611d8b565b73ffffffffffffffffffffffffffffffffffffffff166113a06116b4565b73ffffffffffffffffffffffffffffffffffffffff16146113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed90613484565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611467576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114d7611d8b565b73ffffffffffffffffffffffffffffffffffffffff166114f56116b4565b73ffffffffffffffffffffffffffffffffffffffff161461154b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154290613484565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611614611d8b565b73ffffffffffffffffffffffffffffffffffffffff166116326116b4565b73ffffffffffffffffffffffffffffffffffffffff1614611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f90613484565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60025481565b6116ec611d8b565b73ffffffffffffffffffffffffffffffffffffffff1661170a6116b4565b73ffffffffffffffffffffffffffffffffffffffff1614611760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175790613484565b60405180910390fd5b80600c8190555050565b60606004805461177990613407565b80601f01602080910402602001604051908101604052809291908181526020018280546117a590613407565b80156117f25780601f106117c7576101008083540402835291602001916117f2565b820191906000526020600020905b8154815290600101906020018083116117d557829003601f168201915b5050505050905090565b600080611807610c39565b90506000600b5482101561181e5760009050611829565b66071afd498d000090505b809250505090565b600c5481565b61183f611d8b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118a3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006118b0611d8b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661195d611d8b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119a29190612de8565b60405180910390a35050565b600f5481565b6119bf848484611e45565b6119cb8484848461269d565b611a01576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611a1282611d51565b611a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4890613a9b565b60405180910390fd5b6011611a5c8361281b565b604051602001611a6d929190613bc6565b6040516020818303038152906040529050919050565b601060009054906101000a900460ff1681565b600a5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b38611d8b565b73ffffffffffffffffffffffffffffffffffffffff16611b566116b4565b73ffffffffffffffffffffffffffffffffffffffff1614611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba390613484565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1290613c67565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b5481565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611d84575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611e5082612421565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e77611d8b565b73ffffffffffffffffffffffffffffffffffffffff161480611eaa5750611ea98260000151611ea4611d8b565b611a9c565b5b80611eef5750611eb8611d8b565b73ffffffffffffffffffffffffffffffffffffffff16611ed784610a2d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f28576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f91576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ff7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612004858585600161297b565b6120146000848460000151611d93565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036122c4576000548110156122c35782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461232d8585856001612981565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361239b576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61241d828260405180602001604052806000815250612987565b5050565b612429612cf1565b6000829050600054811015612666576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161266457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612548578092505050612698565b5b60011561266357818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461265e578092505050612698565b612549565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60006126be8473ffffffffffffffffffffffffffffffffffffffff16612999565b1561280e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126e7611d8b565b8786866040518563ffffffff1660e01b81526004016127099493929190613cdc565b6020604051808303816000875af192505050801561274557506040513d601f19601f820116820180604052508101906127429190613d3d565b60015b6127be573d8060008114612775576040519150601f19603f3d011682016040523d82523d6000602084013e61277a565b606091505b5060008151036127b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612813565b600190505b949350505050565b606060008203612862576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612976565b600082905060005b6000821461289457808061287d90613d6a565b915050600a8261288d9190613de1565b915061286a565b60008167ffffffffffffffff8111156128b0576128af613067565b5b6040519080825280601f01601f1916602001820160405280156128e25781602001600182028036833780820191505090505b5090505b6000851461296f576001826128fb9190613e12565b9150600a8561290a9190613e46565b6030612916919061353f565b60f81b81838151811061292c5761292b613e77565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129689190613de1565b94506128e6565b8093505050505b919050565b50505050565b50505050565b61299483838360016129bc565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612a28576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612a62576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a6f600086838761297b565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612cd457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612c885750612c86600088848861269d565b155b15612cbf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612c0d565b508060008190555050612cea6000868387612981565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d7d81612d48565b8114612d8857600080fd5b50565b600081359050612d9a81612d74565b92915050565b600060208284031215612db657612db5612d3e565b5b6000612dc484828501612d8b565b91505092915050565b60008115159050919050565b612de281612dcd565b82525050565b6000602082019050612dfd6000830184612dd9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e3d578082015181840152602081019050612e22565b60008484015250505050565b6000601f19601f8301169050919050565b6000612e6582612e03565b612e6f8185612e0e565b9350612e7f818560208601612e1f565b612e8881612e49565b840191505092915050565b60006020820190508181036000830152612ead8184612e5a565b905092915050565b6000819050919050565b612ec881612eb5565b8114612ed357600080fd5b50565b600081359050612ee581612ebf565b92915050565b600060208284031215612f0157612f00612d3e565b5b6000612f0f84828501612ed6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f4382612f18565b9050919050565b612f5381612f38565b82525050565b6000602082019050612f6e6000830184612f4a565b92915050565b612f7d81612f38565b8114612f8857600080fd5b50565b600081359050612f9a81612f74565b92915050565b60008060408385031215612fb757612fb6612d3e565b5b6000612fc585828601612f8b565b9250506020612fd685828601612ed6565b9150509250929050565b612fe981612eb5565b82525050565b60006020820190506130046000830184612fe0565b92915050565b60008060006060848603121561302357613022612d3e565b5b600061303186828701612f8b565b935050602061304286828701612f8b565b925050604061305386828701612ed6565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61309f82612e49565b810181811067ffffffffffffffff821117156130be576130bd613067565b5b80604052505050565b60006130d1612d34565b90506130dd8282613096565b919050565b600067ffffffffffffffff8211156130fd576130fc613067565b5b61310682612e49565b9050602081019050919050565b82818337600083830152505050565b6000613135613130846130e2565b6130c7565b90508281526020810184848401111561315157613150613062565b5b61315c848285613113565b509392505050565b600082601f8301126131795761317861305d565b5b8135613189848260208601613122565b91505092915050565b6000602082840312156131a8576131a7612d3e565b5b600082013567ffffffffffffffff8111156131c6576131c5612d43565b5b6131d284828501613164565b91505092915050565b6000602082840312156131f1576131f0612d3e565b5b60006131ff84828501612f8b565b91505092915050565b61321181612dcd565b811461321c57600080fd5b50565b60008135905061322e81613208565b92915050565b6000806040838503121561324b5761324a612d3e565b5b600061325985828601612f8b565b925050602061326a8582860161321f565b9150509250929050565b600067ffffffffffffffff82111561328f5761328e613067565b5b61329882612e49565b9050602081019050919050565b60006132b86132b384613274565b6130c7565b9050828152602081018484840111156132d4576132d3613062565b5b6132df848285613113565b509392505050565b600082601f8301126132fc576132fb61305d565b5b813561330c8482602086016132a5565b91505092915050565b6000806000806080858703121561332f5761332e612d3e565b5b600061333d87828801612f8b565b945050602061334e87828801612f8b565b935050604061335f87828801612ed6565b925050606085013567ffffffffffffffff8111156133805761337f612d43565b5b61338c878288016132e7565b91505092959194509250565b600080604083850312156133af576133ae612d3e565b5b60006133bd85828601612f8b565b92505060206133ce85828601612f8b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061341f57607f821691505b602082108103613432576134316133d8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061346e602083612e0e565b915061347982613438565b602082019050919050565b6000602082019050818103600083015261349d81613461565b9050919050565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b60006134da601883612e0e565b91506134e5826134a4565b602082019050919050565b60006020820190508181036000830152613509816134cd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061354a82612eb5565b915061355583612eb5565b925082820190508082111561356d5761356c613510565b5b92915050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b60006135a9600783612e0e565b91506135b482613573565b602082019050919050565b600060208201905081810360008301526135d88161359c565b9050919050565b7f4d6178207065722077616c6c6574000000000000000000000000000000000000600082015250565b6000613615600e83612e0e565b9150613620826135df565b602082019050919050565b6000602082019050818103600083015261364481613608565b9050919050565b600061365682612eb5565b915061366183612eb5565b925082820261366f81612eb5565b9150828204841483151761368657613685613510565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b60006136c3601d83612e0e565b91506136ce8261368d565b602082019050919050565b600060208201905081810360008301526136f2816136b6565b9050919050565b600081905092915050565b50565b60006137146000836136f9565b915061371f82613704565b600082019050919050565b600061373582613707565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613775601083612e0e565b91506137808261373f565b602082019050919050565b600060208201905081810360008301526137a481613768565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261380d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826137d0565b61381786836137d0565b95508019841693508086168417925050509392505050565b6000819050919050565b600061385461384f61384a84612eb5565b61382f565b612eb5565b9050919050565b6000819050919050565b61386e83613839565b61388261387a8261385b565b8484546137dd565b825550505050565b600090565b61389761388a565b6138a2818484613865565b505050565b5b818110156138c6576138bb60008261388f565b6001810190506138a8565b5050565b601f82111561390b576138dc816137ab565b6138e5846137c0565b810160208510156138f4578190505b613908613900856137c0565b8301826138a7565b50505b505050565b600082821c905092915050565b600061392e60001984600802613910565b1980831691505092915050565b6000613947838361391d565b9150826002028217905092915050565b61396082612e03565b67ffffffffffffffff81111561397957613978613067565b5b6139838254613407565b61398e8282856138ca565b600060209050601f8311600181146139c157600084156139af578287015190505b6139b9858261393b565b865550613a21565b601f1984166139cf866137ab565b60005b828110156139f7578489015182556001820191506020850194506020810190506139d2565b86831015613a145784890151613a10601f89168261391d565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a85602f83612e0e565b9150613a9082613a29565b604082019050919050565b60006020820190508181036000830152613ab481613a78565b9050919050565b600081905092915050565b60008154613ad381613407565b613add8186613abb565b94506001821660008114613af85760018114613b0d57613b40565b60ff1983168652811515820286019350613b40565b613b16856137ab565b60005b83811015613b3857815481890152600182019150602081019050613b19565b838801955050505b50505092915050565b6000613b5482612e03565b613b5e8185613abb565b9350613b6e818560208601612e1f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613bb0600583613abb565b9150613bbb82613b7a565b600582019050919050565b6000613bd28285613ac6565b9150613bde8284613b49565b9150613be982613ba3565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c51602683612e0e565b9150613c5c82613bf5565b604082019050919050565b60006020820190508181036000830152613c8081613c44565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613cae82613c87565b613cb88185613c92565b9350613cc8818560208601612e1f565b613cd181612e49565b840191505092915050565b6000608082019050613cf16000830187612f4a565b613cfe6020830186612f4a565b613d0b6040830185612fe0565b8181036060830152613d1d8184613ca3565b905095945050505050565b600081519050613d3781612d74565b92915050565b600060208284031215613d5357613d52612d3e565b5b6000613d6184828501613d28565b91505092915050565b6000613d7582612eb5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613da757613da6613510565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613dec82612eb5565b9150613df783612eb5565b925082613e0757613e06613db2565b5b828204905092915050565b6000613e1d82612eb5565b9150613e2883612eb5565b9250828203905081811115613e4057613e3f613510565b5b92915050565b6000613e5182612eb5565b9150613e5c83612eb5565b925082613e6c57613e6b613db2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220e4aeab779d7a6f5137af0727766540e64ab472eb2ea1c68f27894734edfb833f64736f6c63430008110033

Deployed Bytecode Sourcemap

107:2445:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6055:410:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8668:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10212:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9789:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2127:102:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3287:278:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11143:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;530:596:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4875:1113:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2349:201:11;;;;;;;;;;;;;:::i;:::-;;11373:179:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;335:32:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3851:731:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1945:86:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8484:122:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;450:21:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2235:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6524:203:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1693:145:12;;;;;;;;;;;;;:::i;:::-;;1857:82:11;;;;;;;;;;;;;:::i;:::-;;1061:85:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2400:32:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2037:84:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8830:102:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1132:263:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;261:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10515:294:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;373:35:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11618:332:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1513:338:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;414:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;183:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10875:206:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1987:240:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;220:35:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;301:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6055:410:4;6197:4;6251:25;6236:40;;;:11;:40;;;;:104;;;;6307:33;6292:48;;;:11;:48;;;;6236:104;:170;;;;6371:35;6356:50;;;:11;:50;;;;6236:170;:222;;;;6422:36;6446:11;6422:23;:36::i;:::-;6236:222;6217:241;;6055:410;;;:::o;8668:98::-;8722:13;8754:5;8747:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8668:98;:::o;10212:236::-;10312:7;10340:16;10348:7;10340;:16::i;:::-;10335:64;;10365:34;;;;;;;;;;;;;;10335:64;10417:15;:24;10433:7;10417:24;;;;;;;;;;;;;;;;;;;;;10410:31;;10212:236;;;:::o;9789:362::-;9861:13;9877:24;9893:7;9877:15;:24::i;:::-;9861:40;;9921:5;9915:11;;:2;:11;;;9911:48;;9935:24;;;;;;;;;;;;;;9911:48;9990:5;9974:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;10000:37;10017:5;10024:12;:10;:12::i;:::-;10000:16;:37::i;:::-;9999:38;9974:63;9970:136;;;10060:35;;;;;;;;;;;;;;9970:136;10116:28;10125:2;10129:7;10138:5;10116:8;:28::i;:::-;9851:300;9789:362;;:::o;2127:102:11:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2215:7:11::1;2199:13;:23;;;;2127:102:::0;:::o;3287:278:4:-;3348:7;3536:12;;3520:13;;:28;3513:35;;3287:278;:::o;11143:164::-;11272:28;11282:4;11288:2;11292:7;11272:9;:28::i;:::-;11143:164;;;:::o;530:596:11:-;603:11;;;;;;;;;;;595:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;699:1;688:8;;:12;;;;:::i;:::-;677:8;661:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:39;653:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;722:12;737:10;:8;:10::i;:::-;722:25;;757:21;781:12;;757:36;;815:1;807:4;:9;803:72;;848:16;;832:32;;803:72;945:13;933:8;905:25;919:10;905:13;:25::i;:::-;:36;;;;:::i;:::-;:53;;884:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;1040:4;1029:8;:15;;;;:::i;:::-;1016:9;:28;;1008:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;1088:31;1098:10;1110:8;1088:9;:31::i;:::-;585:541;;530:596;:::o;4875:1113:4:-;4996:7;5032:16;5042:5;5032:9;:16::i;:::-;5023:5;:25;5019:61;;5057:23;;;;;;;;;;;;;;5019:61;5090:22;5115:13;;5090:38;;5138:19;5167:25;5363:9;5358:543;5378:14;5374:1;:18;5358:543;;;5417:31;5451:11;:14;5463:1;5451:14;;;;;;;;;;;5417:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5487:9;:16;;;5483:71;;;5527:8;;;5483:71;5601:1;5575:28;;:9;:14;;;:28;;;5571:109;;5647:9;:14;;;5627:34;;5571:109;5722:5;5701:26;;:17;:26;;;5697:190;;5770:5;5755:11;:20;5751:83;;5810:1;5803:8;;;;;;;;;5751:83;5855:13;;;;;;;5697:190;5399:502;5358:543;5394:3;;;;;;;5358:543;;;5973:8;;;4875:1113;;;;;:::o;2349:201:11:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2399:12:11::1;2425:10;2417:24;;2462:21;2417:80;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2398:99;;;2515:7;2507:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;2388:162;2349:201::o:0;11373:179:4:-;11506:39;11523:4;11529:2;11533:7;11506:39;;;;;;;;;;;;:16;:39::i;:::-;11373:179;;;:::o;335:32:11:-;;;;:::o;3851:731:4:-;3950:7;3973:22;3998:13;;3973:38;;4021:19;4211:9;4206:320;4226:14;4222:1;:18;4206:320;;;4265:31;4299:11;:14;4311:1;4299:14;;;;;;;;;;;4265:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4336:9;:16;;;4331:181;;4395:5;4380:11;:20;4376:83;;4435:1;4428:8;;;;;;;;4376:83;4480:13;;;;;;;4331:181;4247:279;4242:3;;;;;;;4206:320;;;;4552:23;;;;;;;;;;;;;;3851:731;;;;:::o;1945:86:11:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2021:3:11::1;2011:7;:13;;;;;;:::i;:::-;;1945:86:::0;:::o;8484:122:4:-;8548:7;8574:20;8586:7;8574:11;:20::i;:::-;:25;;;8567:32;;8484:122;;;:::o;450:21:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2235:108::-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2329:7:11::1;2310:16;:26;;;;2235:108:::0;:::o;6524:203:4:-;6588:7;6628:1;6611:19;;:5;:19;;;6607:60;;6639:28;;;;;;;;;;;;;;6607:60;6692:12;:19;6705:5;6692:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;6684:36;;6677:43;;6524:203;;;:::o;1693:145:12:-;1284:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1799:1:::1;1762:40;;1783:6;;;;;;;;;;;1762:40;;;;;;;;;;;;1829:1;1812:6;;:19;;;;;;;;;;;;;;;;;;1693:145::o:0;1857:82:11:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1921:11:11::1;;;;;;;;;;;1920:12;1906:11;;:26;;;;;;;;;;;;;;;;;;1857:82::o:0;1061:85:12:-;1107:7;1133:6;;;;;;;;;;;1126:13;;1061:85;:::o;2400:32:4:-;;;;:::o;2037:84:11:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2108:6:11::1;2100:5;:14;;;;2037:84:::0;:::o;8830:102:4:-;8886:13;8918:7;8911:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8830:102;:::o;1132:263:11:-;1173:7;1192:14;1209:13;:11;:13::i;:::-;1192:30;;1232:12;1271:13;;1262:6;:22;1258:110;;;1307:1;1300:8;;1258:110;;;1346:11;1339:18;;1258:110;1384:4;1377:11;;;;1132:263;:::o;261:34::-;;;;:::o;10515:294:4:-;10637:12;:10;:12::i;:::-;10625:24;;:8;:24;;;10621:54;;10658:17;;;;;;;;;;;;;;10621:54;10731:8;10686:18;:32;10705:12;:10;:12::i;:::-;10686:32;;;;;;;;;;;;;;;:42;10719:8;10686:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10783:8;10754:48;;10769:12;:10;:12::i;:::-;10754:48;;;10793:8;10754:48;;;;;;:::i;:::-;;;;;;;;10515:294;;:::o;373:35:11:-;;;;:::o;11618:332:4:-;11779:28;11789:4;11795:2;11799:7;11779:9;:28::i;:::-;11822:48;11845:4;11851:2;11855:7;11864:5;11822:22;:48::i;:::-;11817:127;;11893:40;;;;;;;;;;;;;;11817:127;11618:332;;;;:::o;1513:338:11:-;1626:13;1676:16;1684:7;1676;:16::i;:::-;1655:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;1806:7;1815:18;:7;:16;:18::i;:::-;1789:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1775:69;;1513:338;;;:::o;414:30::-;;;;;;;;;;;;;:::o;183:31::-;;;;:::o;10875:206:4:-;11012:4;11039:18;:25;11058:5;11039:25;;;;;;;;;;;;;;;:35;11065:8;11039:35;;;;;;;;;;;;;;;;;;;;;;;;;11032:42;;10875:206;;;;:::o;1987:240:12:-;1284:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2095:1:::1;2075:22;;:8;:22;;::::0;2067:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2184:8;2155:38;;2176:6;;;;;;;;;;;2155:38;;;;;;;;;;;;2212:8;2203:6;;:17;;;;;;;;;;;;;;;;;;1987:240:::0;:::o;220:35:11:-;;;;:::o;301:28::-;;;;:::o;829:155:2:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;12196:142:4:-;12253:4;12286:13;;12276:7;:23;:55;;;;;12304:11;:20;12316:7;12304:20;;;;;;;;;;;:27;;;;;;;;;;;;12303:28;12276:55;12269:62;;12196:142;;;:::o;586:96:1:-;639:7;665:10;658:17;;586:96;:::o;19322:189:4:-;19459:2;19432:15;:24;19448:7;19432:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19496:7;19492:2;19476:28;;19485:5;19476:28;;;;;;;;;;;;19322:189;;;:::o;14878:2092::-;14988:35;15026:20;15038:7;15026:11;:20::i;:::-;14988:58;;15057:22;15099:13;:18;;;15083:34;;:12;:10;:12::i;:::-;:34;;;:100;;;;15133:50;15150:13;:18;;;15170:12;:10;:12::i;:::-;15133:16;:50::i;:::-;15083:100;:152;;;;15223:12;:10;:12::i;:::-;15199:36;;:20;15211:7;15199:11;:20::i;:::-;:36;;;15083:152;15057:179;;15252:17;15247:66;;15278:35;;;;;;;;;;;;;;15247:66;15349:4;15327:26;;:13;:18;;;:26;;;15323:67;;15362:28;;;;;;;;;;;;;;15323:67;15418:1;15404:16;;:2;:16;;;15400:52;;15429:23;;;;;;;;;;;;;;15400:52;15463:43;15485:4;15491:2;15495:7;15504:1;15463:21;:43::i;:::-;15568:49;15585:1;15589:7;15598:13;:18;;;15568:8;:49::i;:::-;15937:1;15907:12;:18;15920:4;15907:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15980:1;15952:12;:16;15965:2;15952:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16024:2;15996:11;:20;16008:7;15996:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16085:15;16040:11;:20;16052:7;16040:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16349:19;16381:1;16371:7;:11;16349:33;;16441:1;16400:43;;:11;:24;16412:11;16400:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16396:463;;16622:13;;16608:11;:27;16604:241;;;16691:13;:18;;;16659:11;:24;16671:11;16659:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;16773:13;:53;;;16731:11;:24;16743:11;16731:24;;;;;;;;;;;:39;;;:95;;;;;;;;;;;;;;;;;;16604:241;16396:463;15883:986;16903:7;16899:2;16884:27;;16893:4;16884:27;;;;;;;;;;;;16921:42;16942:4;16948:2;16952:7;16961:1;16921:20;:42::i;:::-;14978:1992;;14878:2092;;;:::o;6733:204::-;6794:7;6834:1;6817:19;;:5;:19;;;6813:59;;6845:27;;;;;;;;;;;;;;6813:59;6897:12;:19;6910:5;6897:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;6889:41;;6882:48;;6733:204;;;:::o;12344:102::-;12412:27;12422:2;12426:8;12412:27;;;;;;;;;;;;:9;:27::i;:::-;12344:102;;:::o;7343:1084::-;7428:21;;:::i;:::-;7465:12;7480:7;7465:22;;7533:13;;7526:4;:20;7522:841;;;7566:31;7600:11;:17;7612:4;7600:17;;;;;;;;;;;7566:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7640:9;:16;;;7635:714;;7710:1;7684:28;;:9;:14;;;:28;;;7680:99;;7747:9;7740:16;;;;;;7680:99;8076:255;8083:4;8076:255;;;8115:6;;;;;;;;8159:11;:17;8171:4;8159:17;;;;;;;;;;;8147:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8232:1;8206:28;;:9;:14;;;:28;;;8202:107;;8273:9;8266:16;;;;;;8202:107;8076:255;;;7635:714;7548:815;7522:841;8389:31;;;;;;;;;;;;;;7343:1084;;;;:::o;20064:895::-;20214:4;20234:15;:2;:13;;;:15::i;:::-;20230:723;;;20301:2;20285:36;;;20343:12;:10;:12::i;:::-;20377:4;20403:7;20432:5;20285:170;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20265:636;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20655:1;20638:6;:13;:18;20634:253;;20687:40;;;;;;;;;;;;;;20634:253;20839:6;20833:13;20824:6;20820:2;20816:15;20809:38;20265:636;20527:45;;;20517:55;;;:6;:55;;;;20510:62;;;;;20230:723;20938:4;20931:11;;20064:895;;;;;;;:::o;328:703:13:-;384:13;610:1;601:5;:10;597:51;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;21590:154:4:-;;;;;:::o;22385:153::-;;;;;:::o;12797:157::-;12915:32;12921:2;12925:8;12935:5;12942:4;12915:5;:32::i;:::-;12797:157;;;:::o;1160:320:0:-;1220:4;1472:1;1450:7;:19;;;:23;1443:30;;1160:320;;;:::o;13201:1435:4:-;13334:20;13357:13;;13334:36;;13398:1;13384:16;;:2;:16;;;13380:48;;13409:19;;;;;;;;;;;;;;13380:48;13454:1;13442:8;:13;13438:44;;13464:18;;;;;;;;;;;;;;13438:44;13493:61;13523:1;13527:2;13531:12;13545:8;13493:21;:61::i;:::-;13860:8;13825:12;:16;13838:2;13825:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13923:8;13883:12;:16;13896:2;13883:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13980:2;13947:11;:25;13959:12;13947:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;14046:15;13996:11;:25;14008:12;13996:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;14077:20;14100:12;14077:35;;14132:9;14127:380;14147:8;14143:1;:12;14127:380;;;14210:12;14206:2;14185:38;;14202:1;14185:38;;;;;;;;;;;;14266:4;:88;;;;;14295:59;14326:1;14330:2;14334:12;14348:5;14295:22;:59::i;:::-;14294:60;14266:88;14241:220;;;14402:40;;;;;;;;;;;;;;14241:220;14478:14;;;;;;;14157:3;;;;;;;14127:380;;;;14537:12;14521:13;:28;;;;13801:759;14569:60;14598:1;14602:2;14606:12;14620:8;14569:20;:60::i;:::-;13324:1312;13201:1435;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:14:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:182::-;12743:34;12739:1;12731:6;12727:14;12720:58;12603:182;:::o;12791:366::-;12933:3;12954:67;13018:2;13013:3;12954:67;:::i;:::-;12947:74;;13030:93;13119:3;13030:93;:::i;:::-;13148:2;13143:3;13139:12;13132:19;;12791:366;;;:::o;13163:419::-;13329:4;13367:2;13356:9;13352:18;13344:26;;13416:9;13410:4;13406:20;13402:1;13391:9;13387:17;13380:47;13444:131;13570:4;13444:131;:::i;:::-;13436:139;;13163:419;;;:::o;13588:174::-;13728:26;13724:1;13716:6;13712:14;13705:50;13588:174;:::o;13768:366::-;13910:3;13931:67;13995:2;13990:3;13931:67;:::i;:::-;13924:74;;14007:93;14096:3;14007:93;:::i;:::-;14125:2;14120:3;14116:12;14109:19;;13768:366;;;:::o;14140:419::-;14306:4;14344:2;14333:9;14329:18;14321:26;;14393:9;14387:4;14383:20;14379:1;14368:9;14364:17;14357:47;14421:131;14547:4;14421:131;:::i;:::-;14413:139;;14140:419;;;:::o;14565:180::-;14613:77;14610:1;14603:88;14710:4;14707:1;14700:15;14734:4;14731:1;14724:15;14751:191;14791:3;14810:20;14828:1;14810:20;:::i;:::-;14805:25;;14844:20;14862:1;14844:20;:::i;:::-;14839:25;;14887:1;14884;14880:9;14873:16;;14908:3;14905:1;14902:10;14899:36;;;14915:18;;:::i;:::-;14899:36;14751:191;;;;:::o;14948:157::-;15088:9;15084:1;15076:6;15072:14;15065:33;14948:157;:::o;15111:365::-;15253:3;15274:66;15338:1;15333:3;15274:66;:::i;:::-;15267:73;;15349:93;15438:3;15349:93;:::i;:::-;15467:2;15462:3;15458:12;15451:19;;15111:365;;;:::o;15482:419::-;15648:4;15686:2;15675:9;15671:18;15663:26;;15735:9;15729:4;15725:20;15721:1;15710:9;15706:17;15699:47;15763:131;15889:4;15763:131;:::i;:::-;15755:139;;15482:419;;;:::o;15907:164::-;16047:16;16043:1;16035:6;16031:14;16024:40;15907:164;:::o;16077:366::-;16219:3;16240:67;16304:2;16299:3;16240:67;:::i;:::-;16233:74;;16316:93;16405:3;16316:93;:::i;:::-;16434:2;16429:3;16425:12;16418:19;;16077:366;;;:::o;16449:419::-;16615:4;16653:2;16642:9;16638:18;16630:26;;16702:9;16696:4;16692:20;16688:1;16677:9;16673:17;16666:47;16730:131;16856:4;16730:131;:::i;:::-;16722:139;;16449:419;;;:::o;16874:410::-;16914:7;16937:20;16955:1;16937:20;:::i;:::-;16932:25;;16971:20;16989:1;16971:20;:::i;:::-;16966:25;;17026:1;17023;17019:9;17048:30;17066:11;17048:30;:::i;:::-;17037:41;;17227:1;17218:7;17214:15;17211:1;17208:22;17188:1;17181:9;17161:83;17138:139;;17257:18;;:::i;:::-;17138:139;16922:362;16874:410;;;;:::o;17290:179::-;17430:31;17426:1;17418:6;17414:14;17407:55;17290:179;:::o;17475:366::-;17617:3;17638:67;17702:2;17697:3;17638:67;:::i;:::-;17631:74;;17714:93;17803:3;17714:93;:::i;:::-;17832:2;17827:3;17823:12;17816:19;;17475:366;;;:::o;17847:419::-;18013:4;18051:2;18040:9;18036:18;18028:26;;18100:9;18094:4;18090:20;18086:1;18075:9;18071:17;18064:47;18128:131;18254:4;18128:131;:::i;:::-;18120:139;;17847:419;;;:::o;18272:147::-;18373:11;18410:3;18395:18;;18272:147;;;;:::o;18425:114::-;;:::o;18545:398::-;18704:3;18725:83;18806:1;18801:3;18725:83;:::i;:::-;18718:90;;18817:93;18906:3;18817:93;:::i;:::-;18935:1;18930:3;18926:11;18919:18;;18545:398;;;:::o;18949:379::-;19133:3;19155:147;19298:3;19155:147;:::i;:::-;19148:154;;19319:3;19312:10;;18949:379;;;:::o;19334:166::-;19474:18;19470:1;19462:6;19458:14;19451:42;19334:166;:::o;19506:366::-;19648:3;19669:67;19733:2;19728:3;19669:67;:::i;:::-;19662:74;;19745:93;19834:3;19745:93;:::i;:::-;19863:2;19858:3;19854:12;19847:19;;19506:366;;;:::o;19878:419::-;20044:4;20082:2;20071:9;20067:18;20059:26;;20131:9;20125:4;20121:20;20117:1;20106:9;20102:17;20095:47;20159:131;20285:4;20159:131;:::i;:::-;20151:139;;19878:419;;;:::o;20303:141::-;20352:4;20375:3;20367:11;;20398:3;20395:1;20388:14;20432:4;20429:1;20419:18;20411:26;;20303:141;;;:::o;20450:93::-;20487:6;20534:2;20529;20522:5;20518:14;20514:23;20504:33;;20450:93;;;:::o;20549:107::-;20593:8;20643:5;20637:4;20633:16;20612:37;;20549:107;;;;:::o;20662:393::-;20731:6;20781:1;20769:10;20765:18;20804:97;20834:66;20823:9;20804:97;:::i;:::-;20922:39;20952:8;20941:9;20922:39;:::i;:::-;20910:51;;20994:4;20990:9;20983:5;20979:21;20970:30;;21043:4;21033:8;21029:19;21022:5;21019:30;21009:40;;20738:317;;20662:393;;;;;:::o;21061:60::-;21089:3;21110:5;21103:12;;21061:60;;;:::o;21127:142::-;21177:9;21210:53;21228:34;21237:24;21255:5;21237:24;:::i;:::-;21228:34;:::i;:::-;21210:53;:::i;:::-;21197:66;;21127:142;;;:::o;21275:75::-;21318:3;21339:5;21332:12;;21275:75;;;:::o;21356:269::-;21466:39;21497:7;21466:39;:::i;:::-;21527:91;21576:41;21600:16;21576:41;:::i;:::-;21568:6;21561:4;21555:11;21527:91;:::i;:::-;21521:4;21514:105;21432:193;21356:269;;;:::o;21631:73::-;21676:3;21631:73;:::o;21710:189::-;21787:32;;:::i;:::-;21828:65;21886:6;21878;21872:4;21828:65;:::i;:::-;21763:136;21710:189;;:::o;21905:186::-;21965:120;21982:3;21975:5;21972:14;21965:120;;;22036:39;22073:1;22066:5;22036:39;:::i;:::-;22009:1;22002:5;21998:13;21989:22;;21965:120;;;21905:186;;:::o;22097:543::-;22198:2;22193:3;22190:11;22187:446;;;22232:38;22264:5;22232:38;:::i;:::-;22316:29;22334:10;22316:29;:::i;:::-;22306:8;22302:44;22499:2;22487:10;22484:18;22481:49;;;22520:8;22505:23;;22481:49;22543:80;22599:22;22617:3;22599:22;:::i;:::-;22589:8;22585:37;22572:11;22543:80;:::i;:::-;22202:431;;22187:446;22097:543;;;:::o;22646:117::-;22700:8;22750:5;22744:4;22740:16;22719:37;;22646:117;;;;:::o;22769:169::-;22813:6;22846:51;22894:1;22890:6;22882:5;22879:1;22875:13;22846:51;:::i;:::-;22842:56;22927:4;22921;22917:15;22907:25;;22820:118;22769:169;;;;:::o;22943:295::-;23019:4;23165:29;23190:3;23184:4;23165:29;:::i;:::-;23157:37;;23227:3;23224:1;23220:11;23214:4;23211:21;23203:29;;22943:295;;;;:::o;23243:1395::-;23360:37;23393:3;23360:37;:::i;:::-;23462:18;23454:6;23451:30;23448:56;;;23484:18;;:::i;:::-;23448:56;23528:38;23560:4;23554:11;23528:38;:::i;:::-;23613:67;23673:6;23665;23659:4;23613:67;:::i;:::-;23707:1;23731:4;23718:17;;23763:2;23755:6;23752:14;23780:1;23775:618;;;;24437:1;24454:6;24451:77;;;24503:9;24498:3;24494:19;24488:26;24479:35;;24451:77;24554:67;24614:6;24607:5;24554:67;:::i;:::-;24548:4;24541:81;24410:222;23745:887;;23775:618;23827:4;23823:9;23815:6;23811:22;23861:37;23893:4;23861:37;:::i;:::-;23920:1;23934:208;23948:7;23945:1;23942:14;23934:208;;;24027:9;24022:3;24018:19;24012:26;24004:6;23997:42;24078:1;24070:6;24066:14;24056:24;;24125:2;24114:9;24110:18;24097:31;;23971:4;23968:1;23964:12;23959:17;;23934:208;;;24170:6;24161:7;24158:19;24155:179;;;24228:9;24223:3;24219:19;24213:26;24271:48;24313:4;24305:6;24301:17;24290:9;24271:48;:::i;:::-;24263:6;24256:64;24178:156;24155:179;24380:1;24376;24368:6;24364:14;24360:22;24354:4;24347:36;23782:611;;;23745:887;;23335:1303;;;23243:1395;;:::o;24644:234::-;24784:34;24780:1;24772:6;24768:14;24761:58;24853:17;24848:2;24840:6;24836:15;24829:42;24644:234;:::o;24884:366::-;25026:3;25047:67;25111:2;25106:3;25047:67;:::i;:::-;25040:74;;25123:93;25212:3;25123:93;:::i;:::-;25241:2;25236:3;25232:12;25225:19;;24884:366;;;:::o;25256:419::-;25422:4;25460:2;25449:9;25445:18;25437:26;;25509:9;25503:4;25499:20;25495:1;25484:9;25480:17;25473:47;25537:131;25663:4;25537:131;:::i;:::-;25529:139;;25256:419;;;:::o;25681:148::-;25783:11;25820:3;25805:18;;25681:148;;;;:::o;25859:874::-;25962:3;25999:5;25993:12;26028:36;26054:9;26028:36;:::i;:::-;26080:89;26162:6;26157:3;26080:89;:::i;:::-;26073:96;;26200:1;26189:9;26185:17;26216:1;26211:166;;;;26391:1;26386:341;;;;26178:549;;26211:166;26295:4;26291:9;26280;26276:25;26271:3;26264:38;26357:6;26350:14;26343:22;26335:6;26331:35;26326:3;26322:45;26315:52;;26211:166;;26386:341;26453:38;26485:5;26453:38;:::i;:::-;26513:1;26527:154;26541:6;26538:1;26535:13;26527:154;;;26615:7;26609:14;26605:1;26600:3;26596:11;26589:35;26665:1;26656:7;26652:15;26641:26;;26563:4;26560:1;26556:12;26551:17;;26527:154;;;26710:6;26705:3;26701:16;26694:23;;26393:334;;26178:549;;25966:767;;25859:874;;;;:::o;26739:390::-;26845:3;26873:39;26906:5;26873:39;:::i;:::-;26928:89;27010:6;27005:3;26928:89;:::i;:::-;26921:96;;27026:65;27084:6;27079:3;27072:4;27065:5;27061:16;27026:65;:::i;:::-;27116:6;27111:3;27107:16;27100:23;;26849:280;26739:390;;;;:::o;27135:155::-;27275:7;27271:1;27263:6;27259:14;27252:31;27135:155;:::o;27296:400::-;27456:3;27477:84;27559:1;27554:3;27477:84;:::i;:::-;27470:91;;27570:93;27659:3;27570:93;:::i;:::-;27688:1;27683:3;27679:11;27672:18;;27296:400;;;:::o;27702:695::-;27980:3;28002:92;28090:3;28081:6;28002:92;:::i;:::-;27995:99;;28111:95;28202:3;28193:6;28111:95;:::i;:::-;28104:102;;28223:148;28367:3;28223:148;:::i;:::-;28216:155;;28388:3;28381:10;;27702:695;;;;;:::o;28403:225::-;28543:34;28539:1;28531:6;28527:14;28520:58;28612:8;28607:2;28599:6;28595:15;28588:33;28403:225;:::o;28634:366::-;28776:3;28797:67;28861:2;28856:3;28797:67;:::i;:::-;28790:74;;28873:93;28962:3;28873:93;:::i;:::-;28991:2;28986:3;28982:12;28975:19;;28634:366;;;:::o;29006:419::-;29172:4;29210:2;29199:9;29195:18;29187:26;;29259:9;29253:4;29249:20;29245:1;29234:9;29230:17;29223:47;29287:131;29413:4;29287:131;:::i;:::-;29279:139;;29006:419;;;:::o;29431:98::-;29482:6;29516:5;29510:12;29500:22;;29431:98;;;:::o;29535:168::-;29618:11;29652:6;29647:3;29640:19;29692:4;29687:3;29683:14;29668:29;;29535:168;;;;:::o;29709:373::-;29795:3;29823:38;29855:5;29823:38;:::i;:::-;29877:70;29940:6;29935:3;29877:70;:::i;:::-;29870:77;;29956:65;30014:6;30009:3;30002:4;29995:5;29991:16;29956:65;:::i;:::-;30046:29;30068:6;30046:29;:::i;:::-;30041:3;30037:39;30030:46;;29799:283;29709:373;;;;:::o;30088:640::-;30283:4;30321:3;30310:9;30306:19;30298:27;;30335:71;30403:1;30392:9;30388:17;30379:6;30335:71;:::i;:::-;30416:72;30484:2;30473:9;30469:18;30460:6;30416:72;:::i;:::-;30498;30566:2;30555:9;30551:18;30542:6;30498:72;:::i;:::-;30617:9;30611:4;30607:20;30602:2;30591:9;30587:18;30580:48;30645:76;30716:4;30707:6;30645:76;:::i;:::-;30637:84;;30088:640;;;;;;;:::o;30734:141::-;30790:5;30821:6;30815:13;30806:22;;30837:32;30863:5;30837:32;:::i;:::-;30734:141;;;;:::o;30881:349::-;30950:6;30999:2;30987:9;30978:7;30974:23;30970:32;30967:119;;;31005:79;;:::i;:::-;30967:119;31125:1;31150:63;31205:7;31196:6;31185:9;31181:22;31150:63;:::i;:::-;31140:73;;31096:127;30881:349;;;;:::o;31236:233::-;31275:3;31298:24;31316:5;31298:24;:::i;:::-;31289:33;;31344:66;31337:5;31334:77;31331:103;;31414:18;;:::i;:::-;31331:103;31461:1;31454:5;31450:13;31443:20;;31236:233;;;:::o;31475:180::-;31523:77;31520:1;31513:88;31620:4;31617:1;31610:15;31644:4;31641:1;31634:15;31661:185;31701:1;31718:20;31736:1;31718:20;:::i;:::-;31713:25;;31752:20;31770:1;31752:20;:::i;:::-;31747:25;;31791:1;31781:35;;31796:18;;:::i;:::-;31781:35;31838:1;31835;31831:9;31826:14;;31661:185;;;;:::o;31852:194::-;31892:4;31912:20;31930:1;31912:20;:::i;:::-;31907:25;;31946:20;31964:1;31946:20;:::i;:::-;31941:25;;31990:1;31987;31983:9;31975:17;;32014:1;32008:4;32005:11;32002:37;;;32019:18;;:::i;:::-;32002:37;31852:194;;;;:::o;32052:176::-;32084:1;32101:20;32119:1;32101:20;:::i;:::-;32096:25;;32135:20;32153:1;32135:20;:::i;:::-;32130:25;;32174:1;32164:35;;32179:18;;:::i;:::-;32164:35;32220:1;32217;32213:9;32208:14;;32052:176;;;;:::o;32234:180::-;32282:77;32279:1;32272:88;32379:4;32376:1;32369:15;32403:4;32400:1;32393:15

Swarm Source

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