ETH Price: $3,279.68 (+0.44%)
Gas: 31 Gwei

Token

OmniZombie (OmniZombie)
 

Overview

Max Total Supply

720 OmniZombie

Holders

28

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 OmniZombie
0x86b6973fBd70cc0ccd544863e10E35a20Bd2c2e8
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:
OmniZombie

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

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

contract OmniZombie is ERC721A, Ownable {
    using Strings for uint256;

    constructor() ERC721A("OmniZombie", "OmniZombie") {
    }

    uint256 public constant MAX_SUPPLY = 2000;
    
    uint256 private mintCount = 0;

    uint256 public freeMintAmount = 500;

    uint256 public price = 0.003 ether;

    string private baseTokenURI;

    string public unRevealedURI = "https://ipfs.io/ipfs/QmWnroSm2GxRNk3ScV44cQC9ASq3BPed1fxSYaWpytJHUV";
      
    bool public saleOpen = true;

    bool public revealed = false;

    event Minted(uint256 totalMinted);
      
    function totalSupply() public view override returns (uint256) {
        return mintCount;
    }

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

    function setUnRevealedURI(string memory uri) public onlyOwner {
        unRevealedURI = uri;
    }

    function setFreeAmount(uint256 amount) external onlyOwner {
        freeMintAmount = amount;
    }

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

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

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

    function mint(address _to, uint256 _count) external payable {
        uint256 supply = totalSupply();

        require(supply + _count <= MAX_SUPPLY, "Exceeds maximum supply");
        require(_count > 0, "Minimum 1 NFT has to be minted per transaction");

        if (msg.sender != owner() && (mintCount + _count) > freeMintAmount) {
            require(saleOpen, "Sale is not open yet");
            require(
                msg.value >= price * _count,
                "Ether sent with this transaction is not correct"
            );
        }

        if(msg.sender != owner()) {
            require(
                _count <= 20,
                "Maximum 20 NFTs can be minted per transaction"
            );
        }
        
        mintCount += _count;      
        _safeMint(_to, _count);
        emit Minted(_count);       
    }

    function setRevealed(bool _revealed) external onlyOwner {
        revealed = _revealed;
    }

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

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

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;

    // 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":"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":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUnRevealedURI","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":"unRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006009556101f4600a55660aa87bee538000600b556040518060800160405280604381526020016200422560439139600d90805190602001906200004b929190620001ef565b506001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055503480156200008f57600080fd5b506040518060400160405280600a81526020017f4f6d6e695a6f6d626965000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f4f6d6e695a6f6d62696500000000000000000000000000000000000000000000815250816002908051906020019062000114929190620001ef565b5080600390805190602001906200012d929190620001ef565b505050600062000142620001e760201b60201c565b905080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000304565b600033905090565b828054620001fd906200029f565b90600052602060002090601f0160209004810192826200022157600085556200026d565b82601f106200023c57805160ff19168380011785556200026d565b828001600101855582156200026d579182015b828111156200026c5782518255916020019190600101906200024f565b5b5090506200027c919062000280565b5090565b5b808211156200029b57600081600090555060010162000281565b5090565b60006002820490506001821680620002b857607f821691505b60208210811415620002cf57620002ce620002d5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613f1180620003146000396000f3fe6080604052600436106101ee5760003560e01c806355f804b31161010d57806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde146106b8578063c87b56dd146106e1578063e0a808531461071e578063e985e9c514610747578063f2fde38b14610784576101ee565b806395d89b411461060e57806399288dbb14610639578063a035b1fe14610664578063a22cb4651461068f576101ee565b80637ba5e621116100dc5780637ba5e6211461057a5780638da5cb5b1461059157806391b7f5ed146105bc57806392910eec146105e5576101ee565b806355f804b3146104c05780636352211e146104e957806370a0823114610526578063715018a614610563576101ee565b80632f745c591161018557806340c10f191161015457806340c10f191461041357806342842e0e1461042f5780634f6ccce7146104585780635183022714610495576101ee565b80632f745c591461036957806332cb6b0c146103a65780633a467e3d146103d15780633ccfd60b146103fc576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806318160ddd146102ea57806323b872dd14610315578063276306ed1461033e576101ee565b806301aade7b146101f357806301ffc9a71461021c57806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613219565b6107ad565b005b34801561022857600080fd5b50610243600480360381019061023e91906131bf565b610843565b604051610250919061360a565b60405180910390f35b34801561026557600080fd5b5061026e61098d565b60405161027b9190613625565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190613262565b610a1f565b6040516102b891906135a3565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190613152565b610a9b565b005b3480156102f657600080fd5b506102ff610ba6565b60405161030c9190613767565b60405180910390f35b34801561032157600080fd5b5061033c6004803603810190610337919061303c565b610bb0565b005b34801561034a57600080fd5b50610353610bc0565b6040516103609190613625565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b9190613152565b610c4e565b60405161039d9190613767565b60405180910390f35b3480156103b257600080fd5b506103bb610e27565b6040516103c89190613767565b60405180910390f35b3480156103dd57600080fd5b506103e6610e2d565b6040516103f39190613767565b60405180910390f35b34801561040857600080fd5b50610411610e33565b005b61042d60048036038101906104289190613152565b610f5e565b005b34801561043b57600080fd5b506104566004803603810190610451919061303c565b6111d1565b005b34801561046457600080fd5b5061047f600480360381019061047a9190613262565b6111f1565b60405161048c9190613767565b60405180910390f35b3480156104a157600080fd5b506104aa611336565b6040516104b7919061360a565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190613219565b611349565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613262565b6113df565b60405161051d91906135a3565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190612fcf565b6113f5565b60405161055a9190613767565b60405180910390f35b34801561056f57600080fd5b506105786114c5565b005b34801561058657600080fd5b5061058f611602565b005b34801561059d57600080fd5b506105a66116aa565b6040516105b391906135a3565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190613262565b6116d4565b005b3480156105f157600080fd5b5061060c60048036038101906106079190613262565b61175a565b005b34801561061a57600080fd5b506106236117e0565b6040516106309190613625565b60405180910390f35b34801561064557600080fd5b5061064e611872565b60405161065b919061360a565b60405180910390f35b34801561067057600080fd5b50610679611885565b6040516106869190613767565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b19190613112565b61188b565b005b3480156106c457600080fd5b506106df60048036038101906106da919061308f565b611a03565b005b3480156106ed57600080fd5b5061070860048036038101906107039190613262565b611a56565b6040516107159190613625565b60405180910390f35b34801561072a57600080fd5b5061074560048036038101906107409190613192565b611b77565b005b34801561075357600080fd5b5061076e60048036038101906107699190612ffc565b611c10565b60405161077b919061360a565b60405180910390f35b34801561079057600080fd5b506107ab60048036038101906107a69190612fcf565b611ca4565b005b6107b5611e50565b73ffffffffffffffffffffffffffffffffffffffff166107d36116aa565b73ffffffffffffffffffffffffffffffffffffffff1614610829576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610820906136c7565b60405180910390fd5b80600d908051906020019061083f929190612da0565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061097657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610986575061098582611e58565b5b9050919050565b60606002805461099c90613a37565b80601f01602080910402602001604051908101604052809291908181526020018280546109c890613a37565b8015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b5050505050905090565b6000610a2a82611ec2565b610a60576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa6826113df565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b0e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b2d611e50565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b5f5750610b5d81610b58611e50565b611c10565b155b15610b96576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ba1838383611efc565b505050565b6000600954905090565b610bbb838383611fae565b505050565b600d8054610bcd90613a37565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf990613a37565b8015610c465780601f10610c1b57610100808354040283529160200191610c46565b820191906000526020600020905b815481529060010190602001808311610c2957829003601f168201915b505050505081565b6000610c59836113f5565b8210610c91576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610e1b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610d7a5750610e0e565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dba57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e0c5786841415610e03578195505050505050610e21565b83806001019450505b505b8080600101915050610c9d565b50600080fd5b92915050565b6107d081565b600a5481565b610e3b611e50565b73ffffffffffffffffffffffffffffffffffffffff16610e596116aa565b73ffffffffffffffffffffffffffffffffffffffff1614610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea6906136c7565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ed59061358e565b60006040518083038185875af1925050503d8060008114610f12576040519150601f19603f3d011682016040523d82523d6000602084013e610f17565b606091505b5050905080610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290613747565b60405180910390fd5b50565b6000610f68610ba6565b90506107d08282610f79919061386c565b1115610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb190613727565b60405180910390fd5b60008211610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff490613647565b60405180910390fd5b6110056116aa565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561104e5750600a548260095461104c919061386c565b115b156110f357600e60009054906101000a900460ff166110a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109990613687565b60405180910390fd5b81600b546110b091906138f3565b3410156110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e9906136a7565b60405180910390fd5b5b6110fb6116aa565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611172576014821115611171576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611168906136e7565b60405180910390fd5b5b8160096000828254611184919061386c565b92505081905550611195838361249f565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a826040516111c49190613767565b60405180910390a1505050565b6111ec83838360405180602001604052806000815250611a03565b505050565b60008060005490506000805b828110156112fe576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516112f057858314156112e75781945050505050611331565b82806001019350505b5080806001019150506111fd565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600e60019054906101000a900460ff1681565b611351611e50565b73ffffffffffffffffffffffffffffffffffffffff1661136f6116aa565b73ffffffffffffffffffffffffffffffffffffffff16146113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc906136c7565b60405180910390fd5b80600c90805190602001906113db929190612da0565b5050565b60006113ea826124bd565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561145d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114cd611e50565b73ffffffffffffffffffffffffffffffffffffffff166114eb6116aa565b73ffffffffffffffffffffffffffffffffffffffff1614611541576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611538906136c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61160a611e50565b73ffffffffffffffffffffffffffffffffffffffff166116286116aa565b73ffffffffffffffffffffffffffffffffffffffff161461167e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611675906136c7565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116dc611e50565b73ffffffffffffffffffffffffffffffffffffffff166116fa6116aa565b73ffffffffffffffffffffffffffffffffffffffff1614611750576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611747906136c7565b60405180910390fd5b80600b8190555050565b611762611e50565b73ffffffffffffffffffffffffffffffffffffffff166117806116aa565b73ffffffffffffffffffffffffffffffffffffffff16146117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd906136c7565b60405180910390fd5b80600a8190555050565b6060600380546117ef90613a37565b80601f016020809104026020016040519081016040528092919081815260200182805461181b90613a37565b80156118685780601f1061183d57610100808354040283529160200191611868565b820191906000526020600020905b81548152906001019060200180831161184b57829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1681565b600b5481565b611893611e50565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611905611e50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119b2611e50565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f7919061360a565b60405180910390a35050565b611a0e848484611fae565b611a1a84848484612739565b611a50576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611a6182611ec2565b611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9790613707565b60405180910390fd5b600e60019054906101000a900460ff16611b4457600d8054611ac190613a37565b80601f0160208091040260200160405190810160405280929190818152602001828054611aed90613a37565b8015611b3a5780601f10611b0f57610100808354040283529160200191611b3a565b820191906000526020600020905b815481529060010190602001808311611b1d57829003601f168201915b5050505050611b70565b600c611b4f836128c7565b604051602001611b6092919061355f565b6040516020818303038152906040525b9050919050565b611b7f611e50565b73ffffffffffffffffffffffffffffffffffffffff16611b9d6116aa565b73ffffffffffffffffffffffffffffffffffffffff1614611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea906136c7565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cac611e50565b73ffffffffffffffffffffffffffffffffffffffff16611cca6116aa565b73ffffffffffffffffffffffffffffffffffffffff1614611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d17906136c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8790613667565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611ef5575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611fb9826124bd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fe0611e50565b73ffffffffffffffffffffffffffffffffffffffff1614806120135750612012826000015161200d611e50565b611c10565b5b806120585750612021611e50565b73ffffffffffffffffffffffffffffffffffffffff1661204084610a1f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612091576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120fa576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612161576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61216e8585856001612a28565b61217e6000848460000151611efc565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561242f5760005481101561242e5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124988585856001612a2e565b5050505050565b6124b9828260405180602001604052806000815250612a34565b5050565b6124c5612e26565b6000829050600054811015612702576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161270057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125e4578092505050612734565b5b6001156126ff57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126fa578092505050612734565b6125e5565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600061275a8473ffffffffffffffffffffffffffffffffffffffff16612a46565b156128ba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612783611e50565b8786866040518563ffffffff1660e01b81526004016127a594939291906135be565b602060405180830381600087803b1580156127bf57600080fd5b505af19250505080156127f057506040513d601f19601f820116820180604052508101906127ed91906131ec565b60015b61286a573d8060008114612820576040519150601f19603f3d011682016040523d82523d6000602084013e612825565b606091505b50600081511415612862576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128bf565b600190505b949350505050565b6060600082141561290f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a23565b600082905060005b6000821461294157808061292a90613a9a565b915050600a8261293a91906138c2565b9150612917565b60008167ffffffffffffffff81111561295d5761295c613bd0565b5b6040519080825280601f01601f19166020018201604052801561298f5781602001600182028036833780820191505090505b5090505b60008514612a1c576001826129a8919061394d565b9150600a856129b79190613ae3565b60306129c3919061386c565b60f81b8183815181106129d9576129d8613ba1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a1591906138c2565b9450612993565b8093505050505b919050565b50505050565b50505050565b612a418383836001612a69565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ad6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612b11576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b1e6000868387612a28565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612d8357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612d375750612d356000888488612739565b155b15612d6e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612cbc565b508060008190555050612d996000868387612a2e565b5050505050565b828054612dac90613a37565b90600052602060002090601f016020900481019282612dce5760008555612e15565b82601f10612de757805160ff1916838001178555612e15565b82800160010185558215612e15579182015b82811115612e14578251825591602001919060010190612df9565b5b509050612e229190612e69565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e82576000816000905550600101612e6a565b5090565b6000612e99612e94846137a7565b613782565b905082815260208101848484011115612eb557612eb4613c04565b5b612ec08482856139f5565b509392505050565b6000612edb612ed6846137d8565b613782565b905082815260208101848484011115612ef757612ef6613c04565b5b612f028482856139f5565b509392505050565b600081359050612f1981613e7f565b92915050565b600081359050612f2e81613e96565b92915050565b600081359050612f4381613ead565b92915050565b600081519050612f5881613ead565b92915050565b600082601f830112612f7357612f72613bff565b5b8135612f83848260208601612e86565b91505092915050565b600082601f830112612fa157612fa0613bff565b5b8135612fb1848260208601612ec8565b91505092915050565b600081359050612fc981613ec4565b92915050565b600060208284031215612fe557612fe4613c0e565b5b6000612ff384828501612f0a565b91505092915050565b6000806040838503121561301357613012613c0e565b5b600061302185828601612f0a565b925050602061303285828601612f0a565b9150509250929050565b60008060006060848603121561305557613054613c0e565b5b600061306386828701612f0a565b935050602061307486828701612f0a565b925050604061308586828701612fba565b9150509250925092565b600080600080608085870312156130a9576130a8613c0e565b5b60006130b787828801612f0a565b94505060206130c887828801612f0a565b93505060406130d987828801612fba565b925050606085013567ffffffffffffffff8111156130fa576130f9613c09565b5b61310687828801612f5e565b91505092959194509250565b6000806040838503121561312957613128613c0e565b5b600061313785828601612f0a565b925050602061314885828601612f1f565b9150509250929050565b6000806040838503121561316957613168613c0e565b5b600061317785828601612f0a565b925050602061318885828601612fba565b9150509250929050565b6000602082840312156131a8576131a7613c0e565b5b60006131b684828501612f1f565b91505092915050565b6000602082840312156131d5576131d4613c0e565b5b60006131e384828501612f34565b91505092915050565b60006020828403121561320257613201613c0e565b5b600061321084828501612f49565b91505092915050565b60006020828403121561322f5761322e613c0e565b5b600082013567ffffffffffffffff81111561324d5761324c613c09565b5b61325984828501612f8c565b91505092915050565b60006020828403121561327857613277613c0e565b5b600061328684828501612fba565b91505092915050565b61329881613981565b82525050565b6132a781613993565b82525050565b60006132b88261381e565b6132c28185613834565b93506132d2818560208601613a04565b6132db81613c13565b840191505092915050565b60006132f182613829565b6132fb8185613850565b935061330b818560208601613a04565b61331481613c13565b840191505092915050565b600061332a82613829565b6133348185613861565b9350613344818560208601613a04565b80840191505092915050565b6000815461335d81613a37565b6133678186613861565b945060018216600081146133825760018114613393576133c6565b60ff198316865281860193506133c6565b61339c85613809565b60005b838110156133be5781548189015260018201915060208101905061339f565b838801955050505b50505092915050565b60006133dc602e83613850565b91506133e782613c24565b604082019050919050565b60006133ff602683613850565b915061340a82613c73565b604082019050919050565b6000613422601483613850565b915061342d82613cc2565b602082019050919050565b6000613445600583613861565b915061345082613ceb565b600582019050919050565b6000613468602f83613850565b915061347382613d14565b604082019050919050565b600061348b602083613850565b915061349682613d63565b602082019050919050565b60006134ae602d83613850565b91506134b982613d8c565b604082019050919050565b60006134d1602f83613850565b91506134dc82613ddb565b604082019050919050565b60006134f4601683613850565b91506134ff82613e2a565b602082019050919050565b6000613517600083613845565b915061352282613e53565b600082019050919050565b600061353a601083613850565b915061354582613e56565b602082019050919050565b613559816139eb565b82525050565b600061356b8285613350565b9150613577828461331f565b915061358282613438565b91508190509392505050565b60006135998261350a565b9150819050919050565b60006020820190506135b8600083018461328f565b92915050565b60006080820190506135d3600083018761328f565b6135e0602083018661328f565b6135ed6040830185613550565b81810360608301526135ff81846132ad565b905095945050505050565b600060208201905061361f600083018461329e565b92915050565b6000602082019050818103600083015261363f81846132e6565b905092915050565b60006020820190508181036000830152613660816133cf565b9050919050565b60006020820190508181036000830152613680816133f2565b9050919050565b600060208201905081810360008301526136a081613415565b9050919050565b600060208201905081810360008301526136c08161345b565b9050919050565b600060208201905081810360008301526136e08161347e565b9050919050565b60006020820190508181036000830152613700816134a1565b9050919050565b60006020820190508181036000830152613720816134c4565b9050919050565b60006020820190508181036000830152613740816134e7565b9050919050565b600060208201905081810360008301526137608161352d565b9050919050565b600060208201905061377c6000830184613550565b92915050565b600061378c61379d565b90506137988282613a69565b919050565b6000604051905090565b600067ffffffffffffffff8211156137c2576137c1613bd0565b5b6137cb82613c13565b9050602081019050919050565b600067ffffffffffffffff8211156137f3576137f2613bd0565b5b6137fc82613c13565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613877826139eb565b9150613882836139eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138b7576138b6613b14565b5b828201905092915050565b60006138cd826139eb565b91506138d8836139eb565b9250826138e8576138e7613b43565b5b828204905092915050565b60006138fe826139eb565b9150613909836139eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561394257613941613b14565b5b828202905092915050565b6000613958826139eb565b9150613963836139eb565b92508282101561397657613975613b14565b5b828203905092915050565b600061398c826139cb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a22578082015181840152602081019050613a07565b83811115613a31576000848401525b50505050565b60006002820490506001821680613a4f57607f821691505b60208210811415613a6357613a62613b72565b5b50919050565b613a7282613c13565b810181811067ffffffffffffffff82111715613a9157613a90613bd0565b5b80604052505050565b6000613aa5826139eb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ad857613ad7613b14565b5b600182019050919050565b6000613aee826139eb565b9150613af9836139eb565b925082613b0957613b08613b43565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178696d756d203230204e4654732063616e206265206d696e74656420706560008201527f72207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b613e8881613981565b8114613e9357600080fd5b50565b613e9f81613993565b8114613eaa57600080fd5b50565b613eb68161399f565b8114613ec157600080fd5b50565b613ecd816139eb565b8114613ed857600080fd5b5056fea2646970667358221220edd6600bbc955063f913a19f608d06114b347e529f478879235950a17b1f5bd564736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d576e726f536d324778524e6b335363563434635143394153713342506564316678535961577079744a485556

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806355f804b31161010d57806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde146106b8578063c87b56dd146106e1578063e0a808531461071e578063e985e9c514610747578063f2fde38b14610784576101ee565b806395d89b411461060e57806399288dbb14610639578063a035b1fe14610664578063a22cb4651461068f576101ee565b80637ba5e621116100dc5780637ba5e6211461057a5780638da5cb5b1461059157806391b7f5ed146105bc57806392910eec146105e5576101ee565b806355f804b3146104c05780636352211e146104e957806370a0823114610526578063715018a614610563576101ee565b80632f745c591161018557806340c10f191161015457806340c10f191461041357806342842e0e1461042f5780634f6ccce7146104585780635183022714610495576101ee565b80632f745c591461036957806332cb6b0c146103a65780633a467e3d146103d15780633ccfd60b146103fc576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806318160ddd146102ea57806323b872dd14610315578063276306ed1461033e576101ee565b806301aade7b146101f357806301ffc9a71461021c57806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613219565b6107ad565b005b34801561022857600080fd5b50610243600480360381019061023e91906131bf565b610843565b604051610250919061360a565b60405180910390f35b34801561026557600080fd5b5061026e61098d565b60405161027b9190613625565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190613262565b610a1f565b6040516102b891906135a3565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190613152565b610a9b565b005b3480156102f657600080fd5b506102ff610ba6565b60405161030c9190613767565b60405180910390f35b34801561032157600080fd5b5061033c6004803603810190610337919061303c565b610bb0565b005b34801561034a57600080fd5b50610353610bc0565b6040516103609190613625565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b9190613152565b610c4e565b60405161039d9190613767565b60405180910390f35b3480156103b257600080fd5b506103bb610e27565b6040516103c89190613767565b60405180910390f35b3480156103dd57600080fd5b506103e6610e2d565b6040516103f39190613767565b60405180910390f35b34801561040857600080fd5b50610411610e33565b005b61042d60048036038101906104289190613152565b610f5e565b005b34801561043b57600080fd5b506104566004803603810190610451919061303c565b6111d1565b005b34801561046457600080fd5b5061047f600480360381019061047a9190613262565b6111f1565b60405161048c9190613767565b60405180910390f35b3480156104a157600080fd5b506104aa611336565b6040516104b7919061360a565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190613219565b611349565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613262565b6113df565b60405161051d91906135a3565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190612fcf565b6113f5565b60405161055a9190613767565b60405180910390f35b34801561056f57600080fd5b506105786114c5565b005b34801561058657600080fd5b5061058f611602565b005b34801561059d57600080fd5b506105a66116aa565b6040516105b391906135a3565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190613262565b6116d4565b005b3480156105f157600080fd5b5061060c60048036038101906106079190613262565b61175a565b005b34801561061a57600080fd5b506106236117e0565b6040516106309190613625565b60405180910390f35b34801561064557600080fd5b5061064e611872565b60405161065b919061360a565b60405180910390f35b34801561067057600080fd5b50610679611885565b6040516106869190613767565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b19190613112565b61188b565b005b3480156106c457600080fd5b506106df60048036038101906106da919061308f565b611a03565b005b3480156106ed57600080fd5b5061070860048036038101906107039190613262565b611a56565b6040516107159190613625565b60405180910390f35b34801561072a57600080fd5b5061074560048036038101906107409190613192565b611b77565b005b34801561075357600080fd5b5061076e60048036038101906107699190612ffc565b611c10565b60405161077b919061360a565b60405180910390f35b34801561079057600080fd5b506107ab60048036038101906107a69190612fcf565b611ca4565b005b6107b5611e50565b73ffffffffffffffffffffffffffffffffffffffff166107d36116aa565b73ffffffffffffffffffffffffffffffffffffffff1614610829576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610820906136c7565b60405180910390fd5b80600d908051906020019061083f929190612da0565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061097657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610986575061098582611e58565b5b9050919050565b60606002805461099c90613a37565b80601f01602080910402602001604051908101604052809291908181526020018280546109c890613a37565b8015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b5050505050905090565b6000610a2a82611ec2565b610a60576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa6826113df565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b0e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b2d611e50565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b5f5750610b5d81610b58611e50565b611c10565b155b15610b96576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ba1838383611efc565b505050565b6000600954905090565b610bbb838383611fae565b505050565b600d8054610bcd90613a37565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf990613a37565b8015610c465780601f10610c1b57610100808354040283529160200191610c46565b820191906000526020600020905b815481529060010190602001808311610c2957829003601f168201915b505050505081565b6000610c59836113f5565b8210610c91576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610e1b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610d7a5750610e0e565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dba57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e0c5786841415610e03578195505050505050610e21565b83806001019450505b505b8080600101915050610c9d565b50600080fd5b92915050565b6107d081565b600a5481565b610e3b611e50565b73ffffffffffffffffffffffffffffffffffffffff16610e596116aa565b73ffffffffffffffffffffffffffffffffffffffff1614610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea6906136c7565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ed59061358e565b60006040518083038185875af1925050503d8060008114610f12576040519150601f19603f3d011682016040523d82523d6000602084013e610f17565b606091505b5050905080610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290613747565b60405180910390fd5b50565b6000610f68610ba6565b90506107d08282610f79919061386c565b1115610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb190613727565b60405180910390fd5b60008211610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff490613647565b60405180910390fd5b6110056116aa565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561104e5750600a548260095461104c919061386c565b115b156110f357600e60009054906101000a900460ff166110a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109990613687565b60405180910390fd5b81600b546110b091906138f3565b3410156110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e9906136a7565b60405180910390fd5b5b6110fb6116aa565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611172576014821115611171576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611168906136e7565b60405180910390fd5b5b8160096000828254611184919061386c565b92505081905550611195838361249f565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a826040516111c49190613767565b60405180910390a1505050565b6111ec83838360405180602001604052806000815250611a03565b505050565b60008060005490506000805b828110156112fe576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516112f057858314156112e75781945050505050611331565b82806001019350505b5080806001019150506111fd565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600e60019054906101000a900460ff1681565b611351611e50565b73ffffffffffffffffffffffffffffffffffffffff1661136f6116aa565b73ffffffffffffffffffffffffffffffffffffffff16146113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc906136c7565b60405180910390fd5b80600c90805190602001906113db929190612da0565b5050565b60006113ea826124bd565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561145d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114cd611e50565b73ffffffffffffffffffffffffffffffffffffffff166114eb6116aa565b73ffffffffffffffffffffffffffffffffffffffff1614611541576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611538906136c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61160a611e50565b73ffffffffffffffffffffffffffffffffffffffff166116286116aa565b73ffffffffffffffffffffffffffffffffffffffff161461167e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611675906136c7565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116dc611e50565b73ffffffffffffffffffffffffffffffffffffffff166116fa6116aa565b73ffffffffffffffffffffffffffffffffffffffff1614611750576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611747906136c7565b60405180910390fd5b80600b8190555050565b611762611e50565b73ffffffffffffffffffffffffffffffffffffffff166117806116aa565b73ffffffffffffffffffffffffffffffffffffffff16146117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd906136c7565b60405180910390fd5b80600a8190555050565b6060600380546117ef90613a37565b80601f016020809104026020016040519081016040528092919081815260200182805461181b90613a37565b80156118685780601f1061183d57610100808354040283529160200191611868565b820191906000526020600020905b81548152906001019060200180831161184b57829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1681565b600b5481565b611893611e50565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611905611e50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119b2611e50565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f7919061360a565b60405180910390a35050565b611a0e848484611fae565b611a1a84848484612739565b611a50576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611a6182611ec2565b611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9790613707565b60405180910390fd5b600e60019054906101000a900460ff16611b4457600d8054611ac190613a37565b80601f0160208091040260200160405190810160405280929190818152602001828054611aed90613a37565b8015611b3a5780601f10611b0f57610100808354040283529160200191611b3a565b820191906000526020600020905b815481529060010190602001808311611b1d57829003601f168201915b5050505050611b70565b600c611b4f836128c7565b604051602001611b6092919061355f565b6040516020818303038152906040525b9050919050565b611b7f611e50565b73ffffffffffffffffffffffffffffffffffffffff16611b9d6116aa565b73ffffffffffffffffffffffffffffffffffffffff1614611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea906136c7565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cac611e50565b73ffffffffffffffffffffffffffffffffffffffff16611cca6116aa565b73ffffffffffffffffffffffffffffffffffffffff1614611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d17906136c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8790613667565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611ef5575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611fb9826124bd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fe0611e50565b73ffffffffffffffffffffffffffffffffffffffff1614806120135750612012826000015161200d611e50565b611c10565b5b806120585750612021611e50565b73ffffffffffffffffffffffffffffffffffffffff1661204084610a1f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612091576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120fa576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612161576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61216e8585856001612a28565b61217e6000848460000151611efc565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561242f5760005481101561242e5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124988585856001612a2e565b5050505050565b6124b9828260405180602001604052806000815250612a34565b5050565b6124c5612e26565b6000829050600054811015612702576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161270057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125e4578092505050612734565b5b6001156126ff57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126fa578092505050612734565b6125e5565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600061275a8473ffffffffffffffffffffffffffffffffffffffff16612a46565b156128ba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612783611e50565b8786866040518563ffffffff1660e01b81526004016127a594939291906135be565b602060405180830381600087803b1580156127bf57600080fd5b505af19250505080156127f057506040513d601f19601f820116820180604052508101906127ed91906131ec565b60015b61286a573d8060008114612820576040519150601f19603f3d011682016040523d82523d6000602084013e612825565b606091505b50600081511415612862576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128bf565b600190505b949350505050565b6060600082141561290f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a23565b600082905060005b6000821461294157808061292a90613a9a565b915050600a8261293a91906138c2565b9150612917565b60008167ffffffffffffffff81111561295d5761295c613bd0565b5b6040519080825280601f01601f19166020018201604052801561298f5781602001600182028036833780820191505090505b5090505b60008514612a1c576001826129a8919061394d565b9150600a856129b79190613ae3565b60306129c3919061386c565b60f81b8183815181106129d9576129d8613ba1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a1591906138c2565b9450612993565b8093505050505b919050565b50505050565b50505050565b612a418383836001612a69565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ad6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612b11576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b1e6000868387612a28565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612d8357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612d375750612d356000888488612739565b155b15612d6e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612cbc565b508060008190555050612d996000868387612a2e565b5050505050565b828054612dac90613a37565b90600052602060002090601f016020900481019282612dce5760008555612e15565b82601f10612de757805160ff1916838001178555612e15565b82800160010185558215612e15579182015b82811115612e14578251825591602001919060010190612df9565b5b509050612e229190612e69565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e82576000816000905550600101612e6a565b5090565b6000612e99612e94846137a7565b613782565b905082815260208101848484011115612eb557612eb4613c04565b5b612ec08482856139f5565b509392505050565b6000612edb612ed6846137d8565b613782565b905082815260208101848484011115612ef757612ef6613c04565b5b612f028482856139f5565b509392505050565b600081359050612f1981613e7f565b92915050565b600081359050612f2e81613e96565b92915050565b600081359050612f4381613ead565b92915050565b600081519050612f5881613ead565b92915050565b600082601f830112612f7357612f72613bff565b5b8135612f83848260208601612e86565b91505092915050565b600082601f830112612fa157612fa0613bff565b5b8135612fb1848260208601612ec8565b91505092915050565b600081359050612fc981613ec4565b92915050565b600060208284031215612fe557612fe4613c0e565b5b6000612ff384828501612f0a565b91505092915050565b6000806040838503121561301357613012613c0e565b5b600061302185828601612f0a565b925050602061303285828601612f0a565b9150509250929050565b60008060006060848603121561305557613054613c0e565b5b600061306386828701612f0a565b935050602061307486828701612f0a565b925050604061308586828701612fba565b9150509250925092565b600080600080608085870312156130a9576130a8613c0e565b5b60006130b787828801612f0a565b94505060206130c887828801612f0a565b93505060406130d987828801612fba565b925050606085013567ffffffffffffffff8111156130fa576130f9613c09565b5b61310687828801612f5e565b91505092959194509250565b6000806040838503121561312957613128613c0e565b5b600061313785828601612f0a565b925050602061314885828601612f1f565b9150509250929050565b6000806040838503121561316957613168613c0e565b5b600061317785828601612f0a565b925050602061318885828601612fba565b9150509250929050565b6000602082840312156131a8576131a7613c0e565b5b60006131b684828501612f1f565b91505092915050565b6000602082840312156131d5576131d4613c0e565b5b60006131e384828501612f34565b91505092915050565b60006020828403121561320257613201613c0e565b5b600061321084828501612f49565b91505092915050565b60006020828403121561322f5761322e613c0e565b5b600082013567ffffffffffffffff81111561324d5761324c613c09565b5b61325984828501612f8c565b91505092915050565b60006020828403121561327857613277613c0e565b5b600061328684828501612fba565b91505092915050565b61329881613981565b82525050565b6132a781613993565b82525050565b60006132b88261381e565b6132c28185613834565b93506132d2818560208601613a04565b6132db81613c13565b840191505092915050565b60006132f182613829565b6132fb8185613850565b935061330b818560208601613a04565b61331481613c13565b840191505092915050565b600061332a82613829565b6133348185613861565b9350613344818560208601613a04565b80840191505092915050565b6000815461335d81613a37565b6133678186613861565b945060018216600081146133825760018114613393576133c6565b60ff198316865281860193506133c6565b61339c85613809565b60005b838110156133be5781548189015260018201915060208101905061339f565b838801955050505b50505092915050565b60006133dc602e83613850565b91506133e782613c24565b604082019050919050565b60006133ff602683613850565b915061340a82613c73565b604082019050919050565b6000613422601483613850565b915061342d82613cc2565b602082019050919050565b6000613445600583613861565b915061345082613ceb565b600582019050919050565b6000613468602f83613850565b915061347382613d14565b604082019050919050565b600061348b602083613850565b915061349682613d63565b602082019050919050565b60006134ae602d83613850565b91506134b982613d8c565b604082019050919050565b60006134d1602f83613850565b91506134dc82613ddb565b604082019050919050565b60006134f4601683613850565b91506134ff82613e2a565b602082019050919050565b6000613517600083613845565b915061352282613e53565b600082019050919050565b600061353a601083613850565b915061354582613e56565b602082019050919050565b613559816139eb565b82525050565b600061356b8285613350565b9150613577828461331f565b915061358282613438565b91508190509392505050565b60006135998261350a565b9150819050919050565b60006020820190506135b8600083018461328f565b92915050565b60006080820190506135d3600083018761328f565b6135e0602083018661328f565b6135ed6040830185613550565b81810360608301526135ff81846132ad565b905095945050505050565b600060208201905061361f600083018461329e565b92915050565b6000602082019050818103600083015261363f81846132e6565b905092915050565b60006020820190508181036000830152613660816133cf565b9050919050565b60006020820190508181036000830152613680816133f2565b9050919050565b600060208201905081810360008301526136a081613415565b9050919050565b600060208201905081810360008301526136c08161345b565b9050919050565b600060208201905081810360008301526136e08161347e565b9050919050565b60006020820190508181036000830152613700816134a1565b9050919050565b60006020820190508181036000830152613720816134c4565b9050919050565b60006020820190508181036000830152613740816134e7565b9050919050565b600060208201905081810360008301526137608161352d565b9050919050565b600060208201905061377c6000830184613550565b92915050565b600061378c61379d565b90506137988282613a69565b919050565b6000604051905090565b600067ffffffffffffffff8211156137c2576137c1613bd0565b5b6137cb82613c13565b9050602081019050919050565b600067ffffffffffffffff8211156137f3576137f2613bd0565b5b6137fc82613c13565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613877826139eb565b9150613882836139eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138b7576138b6613b14565b5b828201905092915050565b60006138cd826139eb565b91506138d8836139eb565b9250826138e8576138e7613b43565b5b828204905092915050565b60006138fe826139eb565b9150613909836139eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561394257613941613b14565b5b828202905092915050565b6000613958826139eb565b9150613963836139eb565b92508282101561397657613975613b14565b5b828203905092915050565b600061398c826139cb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a22578082015181840152602081019050613a07565b83811115613a31576000848401525b50505050565b60006002820490506001821680613a4f57607f821691505b60208210811415613a6357613a62613b72565b5b50919050565b613a7282613c13565b810181811067ffffffffffffffff82111715613a9157613a90613bd0565b5b80604052505050565b6000613aa5826139eb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ad857613ad7613b14565b5b600182019050919050565b6000613aee826139eb565b9150613af9836139eb565b925082613b0957613b08613b43565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178696d756d203230204e4654732063616e206265206d696e74656420706560008201527f72207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b613e8881613981565b8114613e9357600080fd5b50565b613e9f81613993565b8114613eaa57600080fd5b50565b613eb68161399f565b8114613ec157600080fd5b50565b613ecd816139eb565b8114613ed857600080fd5b5056fea2646970667358221220edd6600bbc955063f913a19f608d06114b347e529f478879235950a17b1f5bd564736f6c63430008070033

Deployed Bytecode Sourcemap

106:2707:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;885:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5929:366:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8472:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9928:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9505:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;679:95:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10759:164:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;452:99:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4785:1077:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;247:41:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;335:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1271:179;;;;;;;;;;;;;:::i;:::-;;1456:841;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10989:179:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3797:695;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;598:28:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;780:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8288:122:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6354:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1693:145:12;;;;;;;;;;;;;:::i;:::-;;1189:76:11;;;;;;;;;;;;;:::i;:::-;;1061:85:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1093:90:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;989:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8634:102:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;564:27:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;377:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10195:274:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11234:332;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2519:292:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2303:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10535:162:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1987:240:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;885:98:11;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;973:3:11::1;957:13;:19;;;;;;;;;;;;:::i;:::-;;885:98:::0;:::o;5929:366:4:-;6031:4;6081:25;6066:40;;;:11;:40;;;;:104;;;;6137:33;6122:48;;;:11;:48;;;;6066:104;:170;;;;6201:35;6186:50;;;:11;:50;;;;6066:170;:222;;;;6252:36;6276:11;6252:23;:36::i;:::-;6066:222;6047:241;;5929:366;;;:::o;8472:98::-;8526:13;8558:5;8551:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8472:98;:::o;9928:200::-;9996:7;10020:16;10028:7;10020;:16::i;:::-;10015:64;;10045:34;;;;;;;;;;;;;;10015:64;10097:15;:24;10113:7;10097:24;;;;;;;;;;;;;;;;;;;;;10090:31;;9928:200;;;:::o;9505:362::-;9577:13;9593:24;9609:7;9593:15;:24::i;:::-;9577:40;;9637:5;9631:11;;:2;:11;;;9627:48;;;9651:24;;;;;;;;;;;;;;9627:48;9706:5;9690:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;9716:37;9733:5;9740:12;:10;:12::i;:::-;9716:16;:37::i;:::-;9715:38;9690:63;9686:136;;;9776:35;;;;;;;;;;;;;;9686:136;9832:28;9841:2;9845:7;9854:5;9832:8;:28::i;:::-;9567:300;9505:362;;:::o;679:95:11:-;732:7;758:9;;751:16;;679:95;:::o;10759:164:4:-;10888:28;10898:4;10904:2;10908:7;10888:9;:28::i;:::-;10759:164;;;:::o;452:99:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4785:1077:4:-;4874:7;4906:16;4916:5;4906:9;:16::i;:::-;4897:5;:25;4893:61;;4931:23;;;;;;;;;;;;;;4893:61;4964:22;4989:13;;4964:38;;5012:19;5041:25;5237:9;5232:543;5252:14;5248:1;:18;5232:543;;;5291:31;5325:11;:14;5337:1;5325:14;;;;;;;;;;;5291:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5361:9;:16;;;5357:71;;;5401:8;;;5357:71;5475:1;5449:28;;:9;:14;;;:28;;;5445:109;;5521:9;:14;;;5501:34;;5445:109;5596:5;5575:26;;:17;:26;;;5571:190;;;5644:5;5629:11;:20;5625:83;;;5684:1;5677:8;;;;;;;;;5625:83;5729:13;;;;;;;5571:190;5273:502;5232:543;5268:3;;;;;;;5232:543;;;;5847:8;;;4785:1077;;;;;:::o;247:41:11:-;284:4;247:41;:::o;335:35::-;;;;:::o;1271:179::-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1321:12:11::1;1347:10;1339:24;;1371:21;1339:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1320:77;;;1415:7;1407:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;1310:140;1271:179::o:0;1456:841::-;1526:14;1543:13;:11;:13::i;:::-;1526:30;;284:4;1584:6;1575;:15;;;;:::i;:::-;:29;;1567:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1658:1;1649:6;:10;1641:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1739:7;:5;:7::i;:::-;1725:21;;:10;:21;;;;:62;;;;;1773:14;;1763:6;1751:9;;:18;;;;:::i;:::-;1750:37;1725:62;1721:281;;;1811:8;;;;;;;;;;;1803:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1904:6;1896:5;;:14;;;;:::i;:::-;1883:9;:27;;1858:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;1721:281;2029:7;:5;:7::i;:::-;2015:21;;:10;:21;;;2012:167;;2087:2;2077:6;:12;;2052:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;2012:167;2210:6;2197:9;;:19;;;;;;;:::i;:::-;;;;;;;;2232:22;2242:3;2247:6;2232:9;:22::i;:::-;2269:14;2276:6;2269:14;;;;;;:::i;:::-;;;;;;;;1516:781;1456:841;;:::o;10989:179:4:-;11122:39;11139:4;11145:2;11149:7;11122:39;;;;;;;;;;;;:16;:39::i;:::-;10989:179;;;:::o;3797:695::-;3864:7;3883:22;3908:13;;3883:38;;3931:19;4121:9;4116:320;4136:14;4132:1;:18;4116:320;;;4175:31;4209:11;:14;4221:1;4209:14;;;;;;;;;;;4175:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4246:9;:16;;;4241:181;;4305:5;4290:11;:20;4286:83;;;4345:1;4338:8;;;;;;;;4286:83;4390:13;;;;;;;4241:181;4157:279;4152:3;;;;;;;4116:320;;;;4462:23;;;;;;;;;;;;;;3797:695;;;;:::o;598:28:11:-;;;;;;;;;;;;;:::o;780:99::-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;865:7:11::1;850:12;:22;;;;;;;;;;;;:::i;:::-;;780:99:::0;:::o;8288:122:4:-;8352:7;8378:20;8390:7;8378:11;:20::i;:::-;:25;;;8371:32;;8288:122;;;:::o;6354:203::-;6418:7;6458:1;6441:19;;:5;:19;;;6437:60;;;6469:28;;;;;;;;;;;;;;6437:60;6522:12;:19;6535:5;6522:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;6514:36;;6507:43;;6354: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;1189:76:11:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1250:8:11::1;;;;;;;;;;;1249:9;1238:8;;:20;;;;;;;;;;;;;;;;;;1189:76::o:0;1061:85:12:-;1107:7;1133:6;;;;;;;;;;;1126:13;;1061:85;:::o;1093:90:11:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1167:9:11::1;1159:5;:17;;;;1093:90:::0;:::o;989:98::-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1074:6:11::1;1057:14;:23;;;;989:98:::0;:::o;8634:102:4:-;8690:13;8722:7;8715:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8634:102;:::o;564:27:11:-;;;;;;;;;;;;;:::o;377:34::-;;;;:::o;10195:274:4:-;10297:12;:10;:12::i;:::-;10285:24;;:8;:24;;;10281:54;;;10318:17;;;;;;;;;;;;;;10281:54;10391:8;10346:18;:32;10365:12;:10;:12::i;:::-;10346:32;;;;;;;;;;;;;;;:42;10379:8;10346:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10443:8;10414:48;;10429:12;:10;:12::i;:::-;10414:48;;;10453:8;10414:48;;;;;;:::i;:::-;;;;;;;;10195:274;;:::o;11234:332::-;11395:28;11405:4;11411:2;11415:7;11395:9;:28::i;:::-;11438:48;11461:4;11467:2;11471:7;11480:5;11438:22;:48::i;:::-;11433:127;;11509:40;;;;;;;;;;;;;;11433:127;11234:332;;;;:::o;2519:292:11:-;2592:13;2625:16;2633:7;2625;:16::i;:::-;2617:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2710:8;;;;;;;;;;;:94;;2791:13;2710:94;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2745:12;2759:18;:7;:16;:18::i;:::-;2728:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2710:94;2703:101;;2519:292;;;:::o;2303:93::-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2380:9:11::1;2369:8;;:20;;;;;;;;;;;;;;;;;;2303:93:::0;:::o;10535:162:4:-;10632:4;10655:18;:25;10674:5;10655:25;;;;;;;;;;;;;;;:35;10681:8;10655:35;;;;;;;;;;;;;;;;;;;;;;;;;10648:42;;10535:162;;;;:::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;;;;2067:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2184:8;2155:38;;2176:6;;;;;;;;;;;2155:38;;;;;;;;;;;;2212:8;2203:6;;:17;;;;;;;;;;;;;;;;;;1987:240:::0;:::o;586:96:1:-;639:7;665:10;658:17;;586:96;:::o;829:155:2:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;11812:142:4:-;11869:4;11902:13;;11892:7;:23;:55;;;;;11920:11;:20;11932:7;11920:20;;;;;;;;;;;:27;;;;;;;;;;;;11919:28;11892:55;11885:62;;11812:142;;;:::o;18831:189::-;18968:2;18941:15;:24;18957:7;18941:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19005:7;19001:2;18985:28;;18994:5;18985:28;;;;;;;;;;;;18831:189;;;:::o;14436:2067::-;14546:35;14584:20;14596:7;14584:11;:20::i;:::-;14546:58;;14615:22;14657:13;:18;;;14641:34;;:12;:10;:12::i;:::-;:34;;;:100;;;;14691:50;14708:13;:18;;;14728:12;:10;:12::i;:::-;14691:16;:50::i;:::-;14641:100;:152;;;;14781:12;:10;:12::i;:::-;14757:36;;:20;14769:7;14757:11;:20::i;:::-;:36;;;14641:152;14615:179;;14810:17;14805:66;;14836:35;;;;;;;;;;;;;;14805:66;14907:4;14885:26;;:13;:18;;;:26;;;14881:67;;14920:28;;;;;;;;;;;;;;14881:67;14976:1;14962:16;;:2;:16;;;14958:52;;;14987:23;;;;;;;;;;;;;;14958:52;15021:43;15043:4;15049:2;15053:7;15062:1;15021:21;:43::i;:::-;15126:49;15143:1;15147:7;15156:13;:18;;;15126:8;:49::i;:::-;15495:1;15465:12;:18;15478:4;15465:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15538:1;15510:12;:16;15523:2;15510:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15582:2;15554:11;:20;15566:7;15554:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;15643:15;15598:11;:20;15610:7;15598:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;15907:19;15939:1;15929:7;:11;15907:33;;15999:1;15958:43;;:11;:24;15970:11;15958:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;15954:438;;;16180:13;;16166:11;:27;16162:216;;;16249:13;:18;;;16217:11;:24;16229:11;16217:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;16331:13;:28;;;16289:11;:24;16301:11;16289:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;16162:216;15954:438;15441:961;16436:7;16432:2;16417:27;;16426:4;16417:27;;;;;;;;;;;;16454:42;16475:4;16481:2;16485:7;16494:1;16454:20;:42::i;:::-;14536:1967;;14436:2067;;;:::o;11960:102::-;12028:27;12038:2;12042:8;12028:27;;;;;;;;;;;;:9;:27::i;:::-;11960:102;;:::o;7173:1058::-;7234:21;;:::i;:::-;7267:12;7282:7;7267:22;;7335:13;;7328:4;:20;7324:843;;;7368:31;7402:11;:17;7414:4;7402:17;;;;;;;;;;;7368:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7442:9;:16;;;7437:716;;7512:1;7486:28;;:9;:14;;;:28;;;7482:99;;7549:9;7542:16;;;;;;7482:99;7880:255;7887:4;7880:255;;;7919:6;;;;;;;;7963:11;:17;7975:4;7963:17;;;;;;;;;;;7951:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8036:1;8010:28;;:9;:14;;;:28;;;8006:107;;8077:9;8070:16;;;;;;8006:107;7880:255;;;7437:716;7350:817;7324:843;8193:31;;;;;;;;;;;;;;7173:1058;;;;:::o;19573:769::-;19723:4;19743:15;:2;:13;;;:15::i;:::-;19739:597;;;19794:2;19778:36;;;19815:12;:10;:12::i;:::-;19829:4;19835:7;19844:5;19778:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;19774:510;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20038:1;20021:6;:13;:18;20017:253;;;20070:40;;;;;;;;;;;;;;20017:253;20222:6;20216:13;20207:6;20203:2;20199:15;20192:38;19774:510;19910:45;;;19900:55;;;:6;:55;;;;19893:62;;;;;19739:597;20321:4;20314:11;;19573:769;;;;;;;:::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;20973:154:4:-;;;;;:::o;21768:153::-;;;;;:::o;12413:157::-;12531:32;12537:2;12541:8;12551:5;12558:4;12531:5;:32::i;:::-;12413:157;;;:::o;1160:320:0:-;1220:4;1472:1;1450:7;:19;;;:23;1443:30;;1160:320;;;:::o;12817:1377:4:-;12950:20;12973:13;;12950:36;;13014:1;13000:16;;:2;:16;;;12996:48;;;13025:19;;;;;;;;;;;;;;12996:48;13070:1;13058:8;:13;13054:44;;;13080:18;;;;;;;;;;;;;;13054:44;13109:61;13139:1;13143:2;13147:12;13161:8;13109:21;:61::i;:::-;13476:8;13441:12;:16;13454:2;13441:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13539:8;13499:12;:16;13512:2;13499:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13596:2;13563:11;:25;13575:12;13563:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;13662:15;13612:11;:25;13624:12;13612:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;13693:20;13716:12;13693:35;;13748:9;13743:322;13763:8;13759:1;:12;13743:322;;;13826:12;13822:2;13801:38;;13818:1;13801:38;;;;;;;;;;;;13861:4;:68;;;;;13870:59;13901:1;13905:2;13909:12;13923:5;13870:22;:59::i;:::-;13869:60;13861:68;13857:162;;;13960:40;;;;;;;;;;;;;;13857:162;14036:14;;;;;;;13773:3;;;;;;;13743:322;;;;14095:12;14079:13;:28;;;;13417:701;14127:60;14156:1;14160:2;14164:12;14178:8;14127:20;:60::i;:::-;12940:1254;12817:1377;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:14:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10092:366;;;:::o;10464:::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10464:366;;;:::o;10836:400::-;10996:3;11017:84;11099:1;11094:3;11017:84;:::i;:::-;11010:91;;11110:93;11199:3;11110:93;:::i;:::-;11228:1;11223:3;11219:11;11212:18;;10836:400;;;:::o;11242:366::-;11384:3;11405:67;11469:2;11464:3;11405:67;:::i;:::-;11398:74;;11481:93;11570:3;11481:93;:::i;:::-;11599:2;11594:3;11590:12;11583:19;;11242:366;;;:::o;11614:::-;11756:3;11777:67;11841:2;11836:3;11777:67;:::i;:::-;11770:74;;11853:93;11942:3;11853:93;:::i;:::-;11971:2;11966:3;11962:12;11955:19;;11614:366;;;:::o;11986:::-;12128:3;12149:67;12213:2;12208:3;12149:67;:::i;:::-;12142:74;;12225:93;12314:3;12225:93;:::i;:::-;12343:2;12338:3;12334:12;12327:19;;11986:366;;;:::o;12358:::-;12500:3;12521:67;12585:2;12580:3;12521:67;:::i;:::-;12514:74;;12597:93;12686:3;12597:93;:::i;:::-;12715:2;12710:3;12706:12;12699:19;;12358:366;;;:::o;12730:::-;12872:3;12893:67;12957:2;12952:3;12893:67;:::i;:::-;12886:74;;12969:93;13058:3;12969:93;:::i;:::-;13087:2;13082:3;13078:12;13071:19;;12730:366;;;:::o;13102:398::-;13261:3;13282:83;13363:1;13358:3;13282:83;:::i;:::-;13275:90;;13374:93;13463:3;13374:93;:::i;:::-;13492:1;13487:3;13483:11;13476:18;;13102:398;;;:::o;13506:366::-;13648:3;13669:67;13733:2;13728:3;13669:67;:::i;:::-;13662:74;;13745:93;13834:3;13745:93;:::i;:::-;13863:2;13858:3;13854:12;13847:19;;13506:366;;;:::o;13878:118::-;13965:24;13983:5;13965:24;:::i;:::-;13960:3;13953:37;13878:118;;:::o;14002:695::-;14280:3;14302:92;14390:3;14381:6;14302:92;:::i;:::-;14295:99;;14411:95;14502:3;14493:6;14411:95;:::i;:::-;14404:102;;14523:148;14667:3;14523:148;:::i;:::-;14516:155;;14688:3;14681:10;;14002:695;;;;;:::o;14703:379::-;14887:3;14909:147;15052:3;14909:147;:::i;:::-;14902:154;;15073:3;15066:10;;14703:379;;;:::o;15088:222::-;15181:4;15219:2;15208:9;15204:18;15196:26;;15232:71;15300:1;15289:9;15285:17;15276:6;15232:71;:::i;:::-;15088:222;;;;:::o;15316:640::-;15511:4;15549:3;15538:9;15534:19;15526:27;;15563:71;15631:1;15620:9;15616:17;15607:6;15563:71;:::i;:::-;15644:72;15712:2;15701:9;15697:18;15688:6;15644:72;:::i;:::-;15726;15794:2;15783:9;15779:18;15770:6;15726:72;:::i;:::-;15845:9;15839:4;15835:20;15830:2;15819:9;15815:18;15808:48;15873:76;15944:4;15935:6;15873:76;:::i;:::-;15865:84;;15316:640;;;;;;;:::o;15962:210::-;16049:4;16087:2;16076:9;16072:18;16064:26;;16100:65;16162:1;16151:9;16147:17;16138:6;16100:65;:::i;:::-;15962:210;;;;:::o;16178:313::-;16291:4;16329:2;16318:9;16314:18;16306:26;;16378:9;16372:4;16368:20;16364:1;16353:9;16349:17;16342:47;16406:78;16479:4;16470:6;16406:78;:::i;:::-;16398:86;;16178:313;;;;:::o;16497:419::-;16663:4;16701:2;16690:9;16686:18;16678:26;;16750:9;16744:4;16740:20;16736:1;16725:9;16721:17;16714:47;16778:131;16904:4;16778:131;:::i;:::-;16770:139;;16497:419;;;:::o;16922:::-;17088:4;17126:2;17115:9;17111:18;17103:26;;17175:9;17169:4;17165:20;17161:1;17150:9;17146:17;17139:47;17203:131;17329:4;17203:131;:::i;:::-;17195:139;;16922:419;;;:::o;17347:::-;17513:4;17551:2;17540:9;17536:18;17528:26;;17600:9;17594:4;17590:20;17586:1;17575:9;17571:17;17564:47;17628:131;17754:4;17628:131;:::i;:::-;17620:139;;17347:419;;;:::o;17772:::-;17938:4;17976:2;17965:9;17961:18;17953:26;;18025:9;18019:4;18015:20;18011:1;18000:9;17996:17;17989:47;18053:131;18179:4;18053:131;:::i;:::-;18045:139;;17772:419;;;:::o;18197:::-;18363:4;18401:2;18390:9;18386:18;18378:26;;18450:9;18444:4;18440:20;18436:1;18425:9;18421:17;18414:47;18478:131;18604:4;18478:131;:::i;:::-;18470:139;;18197:419;;;:::o;18622:::-;18788:4;18826:2;18815:9;18811:18;18803:26;;18875:9;18869:4;18865:20;18861:1;18850:9;18846:17;18839:47;18903:131;19029:4;18903:131;:::i;:::-;18895:139;;18622:419;;;:::o;19047:::-;19213:4;19251:2;19240:9;19236:18;19228:26;;19300:9;19294:4;19290:20;19286:1;19275:9;19271:17;19264:47;19328:131;19454:4;19328:131;:::i;:::-;19320:139;;19047:419;;;:::o;19472:::-;19638:4;19676:2;19665:9;19661:18;19653:26;;19725:9;19719:4;19715:20;19711:1;19700:9;19696:17;19689:47;19753:131;19879:4;19753:131;:::i;:::-;19745:139;;19472:419;;;:::o;19897:::-;20063:4;20101:2;20090:9;20086:18;20078:26;;20150:9;20144:4;20140:20;20136:1;20125:9;20121:17;20114:47;20178:131;20304:4;20178:131;:::i;:::-;20170:139;;19897:419;;;:::o;20322:222::-;20415:4;20453:2;20442:9;20438:18;20430:26;;20466:71;20534:1;20523:9;20519:17;20510:6;20466:71;:::i;:::-;20322:222;;;;:::o;20550:129::-;20584:6;20611:20;;:::i;:::-;20601:30;;20640:33;20668:4;20660:6;20640:33;:::i;:::-;20550:129;;;:::o;20685:75::-;20718:6;20751:2;20745:9;20735:19;;20685:75;:::o;20766:307::-;20827:4;20917:18;20909:6;20906:30;20903:56;;;20939:18;;:::i;:::-;20903:56;20977:29;20999:6;20977:29;:::i;:::-;20969:37;;21061:4;21055;21051:15;21043:23;;20766:307;;;:::o;21079:308::-;21141:4;21231:18;21223:6;21220:30;21217:56;;;21253:18;;:::i;:::-;21217:56;21291:29;21313:6;21291:29;:::i;:::-;21283:37;;21375:4;21369;21365:15;21357:23;;21079:308;;;:::o;21393:141::-;21442:4;21465:3;21457:11;;21488:3;21485:1;21478:14;21522:4;21519:1;21509:18;21501:26;;21393:141;;;:::o;21540:98::-;21591:6;21625:5;21619:12;21609:22;;21540:98;;;:::o;21644:99::-;21696:6;21730:5;21724:12;21714:22;;21644:99;;;:::o;21749:168::-;21832:11;21866:6;21861:3;21854:19;21906:4;21901:3;21897:14;21882:29;;21749:168;;;;:::o;21923:147::-;22024:11;22061:3;22046:18;;21923:147;;;;:::o;22076:169::-;22160:11;22194:6;22189:3;22182:19;22234:4;22229:3;22225:14;22210:29;;22076:169;;;;:::o;22251:148::-;22353:11;22390:3;22375:18;;22251:148;;;;:::o;22405:305::-;22445:3;22464:20;22482:1;22464:20;:::i;:::-;22459:25;;22498:20;22516:1;22498:20;:::i;:::-;22493:25;;22652:1;22584:66;22580:74;22577:1;22574:81;22571:107;;;22658:18;;:::i;:::-;22571:107;22702:1;22699;22695:9;22688:16;;22405:305;;;;:::o;22716:185::-;22756:1;22773:20;22791:1;22773:20;:::i;:::-;22768:25;;22807:20;22825:1;22807:20;:::i;:::-;22802:25;;22846:1;22836:35;;22851:18;;:::i;:::-;22836:35;22893:1;22890;22886:9;22881:14;;22716:185;;;;:::o;22907:348::-;22947:7;22970:20;22988:1;22970:20;:::i;:::-;22965:25;;23004:20;23022:1;23004:20;:::i;:::-;22999:25;;23192:1;23124:66;23120:74;23117:1;23114:81;23109:1;23102:9;23095:17;23091:105;23088:131;;;23199:18;;:::i;:::-;23088:131;23247:1;23244;23240:9;23229:20;;22907:348;;;;:::o;23261:191::-;23301:4;23321:20;23339:1;23321:20;:::i;:::-;23316:25;;23355:20;23373:1;23355:20;:::i;:::-;23350:25;;23394:1;23391;23388:8;23385:34;;;23399:18;;:::i;:::-;23385:34;23444:1;23441;23437:9;23429:17;;23261:191;;;;:::o;23458:96::-;23495:7;23524:24;23542:5;23524:24;:::i;:::-;23513:35;;23458:96;;;:::o;23560:90::-;23594:7;23637:5;23630:13;23623:21;23612:32;;23560:90;;;:::o;23656:149::-;23692:7;23732:66;23725:5;23721:78;23710:89;;23656:149;;;:::o;23811:126::-;23848:7;23888:42;23881:5;23877:54;23866:65;;23811:126;;;:::o;23943:77::-;23980:7;24009:5;23998:16;;23943:77;;;:::o;24026:154::-;24110:6;24105:3;24100;24087:30;24172:1;24163:6;24158:3;24154:16;24147:27;24026:154;;;:::o;24186:307::-;24254:1;24264:113;24278:6;24275:1;24272:13;24264:113;;;24363:1;24358:3;24354:11;24348:18;24344:1;24339:3;24335:11;24328:39;24300:2;24297:1;24293:10;24288:15;;24264:113;;;24395:6;24392:1;24389:13;24386:101;;;24475:1;24466:6;24461:3;24457:16;24450:27;24386:101;24235:258;24186:307;;;:::o;24499:320::-;24543:6;24580:1;24574:4;24570:12;24560:22;;24627:1;24621:4;24617:12;24648:18;24638:81;;24704:4;24696:6;24692:17;24682:27;;24638:81;24766:2;24758:6;24755:14;24735:18;24732:38;24729:84;;;24785:18;;:::i;:::-;24729:84;24550:269;24499:320;;;:::o;24825:281::-;24908:27;24930:4;24908:27;:::i;:::-;24900:6;24896:40;25038:6;25026:10;25023:22;25002:18;24990:10;24987:34;24984:62;24981:88;;;25049:18;;:::i;:::-;24981:88;25089:10;25085:2;25078:22;24868:238;24825:281;;:::o;25112:233::-;25151:3;25174:24;25192:5;25174:24;:::i;:::-;25165:33;;25220:66;25213:5;25210:77;25207:103;;;25290:18;;:::i;:::-;25207:103;25337:1;25330:5;25326:13;25319:20;;25112:233;;;:::o;25351:176::-;25383:1;25400:20;25418:1;25400:20;:::i;:::-;25395:25;;25434:20;25452:1;25434:20;:::i;:::-;25429:25;;25473:1;25463:35;;25478:18;;:::i;:::-;25463:35;25519:1;25516;25512:9;25507:14;;25351:176;;;;:::o;25533:180::-;25581:77;25578:1;25571:88;25678:4;25675:1;25668:15;25702:4;25699:1;25692:15;25719:180;25767:77;25764:1;25757:88;25864:4;25861:1;25854:15;25888:4;25885:1;25878:15;25905:180;25953:77;25950:1;25943:88;26050:4;26047:1;26040:15;26074:4;26071:1;26064:15;26091:180;26139:77;26136:1;26129:88;26236:4;26233:1;26226:15;26260:4;26257:1;26250:15;26277:180;26325:77;26322:1;26315:88;26422:4;26419:1;26412:15;26446:4;26443:1;26436:15;26463:117;26572:1;26569;26562:12;26586:117;26695:1;26692;26685:12;26709:117;26818:1;26815;26808:12;26832:117;26941:1;26938;26931:12;26955:102;26996:6;27047:2;27043:7;27038:2;27031:5;27027:14;27023:28;27013:38;;26955:102;;;:::o;27063:233::-;27203:34;27199:1;27191:6;27187:14;27180:58;27272:16;27267:2;27259:6;27255:15;27248:41;27063:233;:::o;27302:225::-;27442:34;27438:1;27430:6;27426:14;27419:58;27511:8;27506:2;27498:6;27494:15;27487:33;27302:225;:::o;27533:170::-;27673:22;27669:1;27661:6;27657:14;27650:46;27533:170;:::o;27709:155::-;27849:7;27845:1;27837:6;27833:14;27826:31;27709:155;:::o;27870:234::-;28010:34;28006:1;27998:6;27994:14;27987:58;28079:17;28074:2;28066:6;28062:15;28055:42;27870:234;:::o;28110:182::-;28250:34;28246:1;28238:6;28234:14;28227:58;28110:182;:::o;28298:232::-;28438:34;28434:1;28426:6;28422:14;28415:58;28507:15;28502:2;28494:6;28490:15;28483:40;28298:232;:::o;28536:234::-;28676:34;28672:1;28664:6;28660:14;28653:58;28745:17;28740:2;28732:6;28728:15;28721:42;28536:234;:::o;28776:172::-;28916:24;28912:1;28904:6;28900:14;28893:48;28776:172;:::o;28954:114::-;;:::o;29074:166::-;29214:18;29210:1;29202:6;29198:14;29191:42;29074:166;:::o;29246:122::-;29319:24;29337:5;29319:24;:::i;:::-;29312:5;29309:35;29299:63;;29358:1;29355;29348:12;29299:63;29246:122;:::o;29374:116::-;29444:21;29459:5;29444:21;:::i;:::-;29437:5;29434:32;29424:60;;29480:1;29477;29470:12;29424:60;29374:116;:::o;29496:120::-;29568:23;29585:5;29568:23;:::i;:::-;29561:5;29558:34;29548:62;;29606:1;29603;29596:12;29548:62;29496:120;:::o;29622:122::-;29695:24;29713:5;29695:24;:::i;:::-;29688:5;29685:35;29675:63;;29734:1;29731;29724:12;29675:63;29622:122;:::o

Swarm Source

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