ETH Price: $3,295.59 (-3.62%)
Gas: 9 Gwei

Token

RR/AZUKI (RR/AZUKI)
 

Overview

Max Total Supply

4,379 RR/AZUKI

Holders

884

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 RR/AZUKI
0x930a12dfc1508db0eecebf268624b23697cc1ada
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:
RRAZUKI

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: nft.sol

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

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

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

    uint256 public price = 0.004 ether;

    uint256 public maxSupply = 5555;

    uint256 public maxPerTx = 5;

    uint256 public maxFreeAmount = 1555;

    uint256 public maxFreePerWallet = 20;

    uint256 public maxFreePerTx = 5;

    string public baseURI;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("RR/AZUKI", "RR/AZUKI") {
        _safeMint(msg.sender, 10);
    }

    function mint(uint256 amount) external payable {
        uint256 cost = price;
        bool free = ((totalSupply() + amount < maxFreeAmount + 1) &&
            (_mintedFreeAmount[msg.sender] + amount <= maxFreePerWallet));
        if (free) {
            cost = 0;
            _mintedFreeAmount[msg.sender] += amount;
            require(amount < maxFreePerTx + 1, "Max per TX reached.");
        } else {
            require(amount < maxPerTx + 1, "Max per TX reached.");
        }

        require(msg.value >= amount * cost, "Please send the exact amount.");
        require(totalSupply() + amount < maxSuply + 1, "No more");

        _safeMint(msg.sender, amount);
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked("https://ikzttp.mypinata.cloud/ipfs/QmQFkLSQysj94s5GvTHPyzTxrawwtjgiiYS2TBLgrvw8CW/", tokenId.toString()));
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 14: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 14: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

File 5 of 14: ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

    uint256 public maxSuply = 10000;

    // 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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSuply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600155660e35fa931a0000600a556115b3600b556005600c55610613600d556014600e556005600f553480156200003d57600080fd5b506040518060400160405280600881526020017f52522f415a554b490000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f52522f415a554b490000000000000000000000000000000000000000000000008152508160039080519060200190620000c292919062000723565b508060049080519060200190620000db92919062000723565b5050506000620000f0620001a860201b60201c565b905080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001a233600a620001b060201b60201c565b62000a24565b600033905090565b620001d2828260405180602001604052806000815250620001d660201b60201c565b5050565b620001eb8383836001620001f060201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156200025e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156200029a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002af60008683876200054560201b60201c565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156200052057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015620004d25750620004d060008884886200054b60201b60201c565b155b156200050a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506200044d565b5080600081905550506200053e6000868387620006fa60201b60201c565b5050505050565b50505050565b6000620005798473ffffffffffffffffffffffffffffffffffffffff166200070060201b62001c3a1760201c565b15620006ed578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005ab620001a860201b60201c565b8786866040518563ffffffff1660e01b8152600401620005cf94939291906200087f565b602060405180830381600087803b158015620005ea57600080fd5b505af19250505080156200061e57506040513d601f19601f820116820180604052508101906200061b9190620007ea565b60015b6200069c573d806000811462000651576040519150601f19603f3d011682016040523d82523d6000602084013e62000656565b606091505b5060008151141562000694576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620006f2565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805462000731906200098f565b90600052602060002090601f016020900481019282620007555760008555620007a1565b82601f106200077057805160ff1916838001178555620007a1565b82800160010185558215620007a1579182015b82811115620007a057825182559160200191906001019062000783565b5b509050620007b09190620007b4565b5090565b5b80821115620007cf576000816000905550600101620007b5565b5090565b600081519050620007e48162000a0a565b92915050565b600060208284031215620008035762000802620009f4565b5b60006200081384828501620007d3565b91505092915050565b6200082781620008ef565b82525050565b60006200083a82620008d3565b620008468185620008de565b93506200085881856020860162000959565b6200086381620009f9565b840191505092915050565b62000879816200094f565b82525050565b60006080820190506200089660008301876200081c565b620008a560208301866200081c565b620008b460408301856200086e565b8181036060830152620008c881846200082d565b905095945050505050565b600081519050919050565b600082825260208201905092915050565b6000620008fc826200092f565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620009795780820151818401526020810190506200095c565b8381111562000989576000848401525b50505050565b60006002820490506001821680620009a857607f821691505b60208210811415620009bf57620009be620009c5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b62000a158162000903565b811462000a2157600080fd5b50565b613b2f8062000a346000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146106dc578063e985e9c514610707578063f2fde38b14610744578063f892c6e21461076d578063f968adbe14610798576101ee565b8063a22cb46514610622578063a70273571461064b578063b88d4fde14610676578063c87b56dd1461069f576101ee565b806391b7f5ed116100dc57806391b7f5ed1461058757806395d89b41146105b0578063a035b1fe146105db578063a0712d6814610606576101ee565b8063715018a6146104ef5780637dc949b2146105065780638da5cb5b14610531578063908ea4711461055c576101ee565b80633ccfd60b116101855780636352211e116101545780636352211e146104215780636c0360eb1461045e5780636d7c4a4b1461048957806370a08231146104b2576101ee565b80633ccfd60b1461037b57806342842e0e146103925780634f6ccce7146103bb57806355f804b3146103f8576101ee565b80630c23bb3f116101c15780630c23bb3f146102c157806318160ddd146102ea57806323b872dd146103155780632f745c591461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612f7c565b6107c3565b60405161022791906132f5565b60405180910390f35b34801561023c57600080fd5b5061024561090d565b6040516102529190613310565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d919061301f565b61099f565b60405161028f919061328e565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612f3c565b610a1b565b005b3480156102cd57600080fd5b506102e860048036038101906102e3919061301f565b610b26565b005b3480156102f657600080fd5b506102ff610bac565b60405161030c9190613412565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612e26565b610bba565b005b34801561034a57600080fd5b5061036560048036038101906103609190612f3c565b610bca565b6040516103729190613412565b60405180910390f35b34801561038757600080fd5b50610390610da3565b005b34801561039e57600080fd5b506103b960048036038101906103b49190612e26565b610ece565b005b3480156103c757600080fd5b506103e260048036038101906103dd919061301f565b610eee565b6040516103ef9190613412565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a9190612fd6565b611033565b005b34801561042d57600080fd5b506104486004803603810190610443919061301f565b6110c9565b604051610455919061328e565b60405180910390f35b34801561046a57600080fd5b506104736110df565b6040516104809190613310565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab919061301f565b61116d565b005b3480156104be57600080fd5b506104d960048036038101906104d49190612db9565b6111f3565b6040516104e69190613412565b60405180910390f35b3480156104fb57600080fd5b506105046112c3565b005b34801561051257600080fd5b5061051b611400565b6040516105289190613412565b60405180910390f35b34801561053d57600080fd5b50610546611406565b604051610553919061328e565b60405180910390f35b34801561056857600080fd5b50610571611430565b60405161057e9190613412565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a9919061301f565b611436565b005b3480156105bc57600080fd5b506105c56114bc565b6040516105d29190613310565b60405180910390f35b3480156105e757600080fd5b506105f061154e565b6040516105fd9190613412565b60405180910390f35b610620600480360381019061061b919061301f565b611554565b005b34801561062e57600080fd5b5061064960048036038101906106449190612efc565b61179e565b005b34801561065757600080fd5b50610660611916565b60405161066d9190613412565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190612e79565b61191c565b005b3480156106ab57600080fd5b506106c660048036038101906106c1919061301f565b61196f565b6040516106d39190613310565b60405180910390f35b3480156106e857600080fd5b506106f16119e8565b6040516106fe9190613412565b60405180910390f35b34801561071357600080fd5b5061072e60048036038101906107299190612de6565b6119ee565b60405161073b91906132f5565b60405180910390f35b34801561075057600080fd5b5061076b60048036038101906107669190612db9565b611a82565b005b34801561077957600080fd5b50610782611c2e565b60405161078f9190613412565b60405180910390f35b3480156107a457600080fd5b506107ad611c34565b6040516107ba9190613412565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610906575061090582611c5d565b5b9050919050565b60606003805461091c906136cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610948906136cd565b80156109955780601f1061096a57610100808354040283529160200191610995565b820191906000526020600020905b81548152906001019060200180831161097857829003601f168201915b5050505050905090565b60006109aa82611cc7565b6109e0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a26826110c9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a8e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aad611d01565b73ffffffffffffffffffffffffffffffffffffffff1614158015610adf5750610add81610ad8611d01565b6119ee565b155b15610b16576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b21838383611d09565b505050565b610b2e611d01565b73ffffffffffffffffffffffffffffffffffffffff16610b4c611406565b73ffffffffffffffffffffffffffffffffffffffff1614610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9990613372565b60405180910390fd5b80600d8190555050565b600060025460005403905090565b610bc5838383611dbb565b505050565b6000610bd5836111f3565b8210610c0d576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610d97576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610cf65750610d8a565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d3657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d885786841415610d7f578195505050505050610d9d565b83806001019450505b505b8080600101915050610c19565b50600080fd5b92915050565b610dab611d01565b73ffffffffffffffffffffffffffffffffffffffff16610dc9611406565b73ffffffffffffffffffffffffffffffffffffffff1614610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690613372565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e4590613279565b60006040518083038185875af1925050503d8060008114610e82576040519150601f19603f3d011682016040523d82523d6000602084013e610e87565b606091505b5050905080610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec2906133d2565b60405180910390fd5b50565b610ee98383836040518060200160405280600081525061191c565b505050565b60008060005490506000805b82811015610ffb576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610fed5785831415610fe4578194505050505061102e565b82806001019350505b508080600101915050610efa565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61103b611d01565b73ffffffffffffffffffffffffffffffffffffffff16611059611406565b73ffffffffffffffffffffffffffffffffffffffff16146110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a690613372565b60405180910390fd5b80601090805190602001906110c5929190612b8a565b5050565b60006110d4826122ac565b600001519050919050565b601080546110ec906136cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611118906136cd565b80156111655780601f1061113a57610100808354040283529160200191611165565b820191906000526020600020905b81548152906001019060200180831161114857829003601f168201915b505050505081565b611175611d01565b73ffffffffffffffffffffffffffffffffffffffff16611193611406565b73ffffffffffffffffffffffffffffffffffffffff16146111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090613372565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561125b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112cb611d01565b73ffffffffffffffffffffffffffffffffffffffff166112e9611406565b73ffffffffffffffffffffffffffffffffffffffff161461133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690613372565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600f5481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60015481565b61143e611d01565b73ffffffffffffffffffffffffffffffffffffffff1661145c611406565b73ffffffffffffffffffffffffffffffffffffffff16146114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990613372565b60405180910390fd5b80600a8190555050565b6060600480546114cb906136cd565b80601f01602080910402602001604051908101604052809291908181526020018280546114f7906136cd565b80156115445780601f1061151957610100808354040283529160200191611544565b820191906000526020600020905b81548152906001019060200180831161152757829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d5461156c9190613502565b83611575610bac565b61157f9190613502565b1080156115d85750600e5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115d59190613502565b11155b9050801561168f576000915082601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116339190613502565b925050819055506001600f546116499190613502565b831061168a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611681906133f2565b60405180910390fd5b6116e0565b6001600c5461169e9190613502565b83106116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d6906133f2565b60405180910390fd5b5b81836116ec9190613589565b34101561172e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611725906133b2565b60405180910390fd5b6001805461173c9190613502565b83611745610bac565b61174f9190613502565b1061178f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178690613332565b60405180910390fd5b6117993384612528565b505050565b6117a6611d01565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561180b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611818611d01565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118c5611d01565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161190a91906132f5565b60405180910390a35050565b600e5481565b611927848484611dbb565b61193384848484612546565b611969576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061197a82611cc7565b6119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b090613392565b60405180910390fd5b6119c2826126d4565b6040516020016119d29190613257565b6040516020818303038152906040529050919050565b600b5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a8a611d01565b73ffffffffffffffffffffffffffffffffffffffff16611aa8611406565b73ffffffffffffffffffffffffffffffffffffffff1614611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af590613372565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6590613352565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d5481565b600c5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611cfa575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611dc6826122ac565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ded611d01565b73ffffffffffffffffffffffffffffffffffffffff161480611e205750611e1f8260000151611e1a611d01565b6119ee565b5b80611e655750611e2e611d01565b73ffffffffffffffffffffffffffffffffffffffff16611e4d8461099f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e9e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f07576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f6e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f7b8585856001612835565b611f8b6000848460000151611d09565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561223c5760005481101561223b5782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122a5858585600161283b565b5050505050565b6122b4612c10565b60008290506000548110156124f1576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124ef57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123d3578092505050612523565b5b6001156124ee57818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124e9578092505050612523565b6123d4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612542828260405180602001604052806000815250612841565b5050565b60006125678473ffffffffffffffffffffffffffffffffffffffff16611c3a565b156126c7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612590611d01565b8786866040518563ffffffff1660e01b81526004016125b294939291906132a9565b602060405180830381600087803b1580156125cc57600080fd5b505af19250505080156125fd57506040513d601f19601f820116820180604052508101906125fa9190612fa9565b60015b612677573d806000811461262d576040519150601f19603f3d011682016040523d82523d6000602084013e612632565b606091505b5060008151141561266f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126cc565b600190505b949350505050565b6060600082141561271c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612830565b600082905060005b6000821461274e57808061273790613730565b915050600a826127479190613558565b9150612724565b60008167ffffffffffffffff81111561276a57612769613866565b5b6040519080825280601f01601f19166020018201604052801561279c5781602001600182028036833780820191505090505b5090505b60008514612829576001826127b591906135e3565b9150600a856127c49190613779565b60306127d09190613502565b60f81b8183815181106127e6576127e5613837565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128229190613558565b94506127a0565b8093505050505b919050565b50505050565b50505050565b61284e8383836001612853565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156128c0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156128fb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129086000868387612835565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612b6d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612b215750612b1f6000888488612546565b155b15612b58576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612aa6565b508060008190555050612b83600086838761283b565b5050505050565b828054612b96906136cd565b90600052602060002090601f016020900481019282612bb85760008555612bff565b82601f10612bd157805160ff1916838001178555612bff565b82800160010185558215612bff579182015b82811115612bfe578251825591602001919060010190612be3565b5b509050612c0c9190612c53565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c6c576000816000905550600101612c54565b5090565b6000612c83612c7e84613452565b61342d565b905082815260208101848484011115612c9f57612c9e61389a565b5b612caa84828561368b565b509392505050565b6000612cc5612cc084613483565b61342d565b905082815260208101848484011115612ce157612ce061389a565b5b612cec84828561368b565b509392505050565b600081359050612d0381613a9d565b92915050565b600081359050612d1881613ab4565b92915050565b600081359050612d2d81613acb565b92915050565b600081519050612d4281613acb565b92915050565b600082601f830112612d5d57612d5c613895565b5b8135612d6d848260208601612c70565b91505092915050565b600082601f830112612d8b57612d8a613895565b5b8135612d9b848260208601612cb2565b91505092915050565b600081359050612db381613ae2565b92915050565b600060208284031215612dcf57612dce6138a4565b5b6000612ddd84828501612cf4565b91505092915050565b60008060408385031215612dfd57612dfc6138a4565b5b6000612e0b85828601612cf4565b9250506020612e1c85828601612cf4565b9150509250929050565b600080600060608486031215612e3f57612e3e6138a4565b5b6000612e4d86828701612cf4565b9350506020612e5e86828701612cf4565b9250506040612e6f86828701612da4565b9150509250925092565b60008060008060808587031215612e9357612e926138a4565b5b6000612ea187828801612cf4565b9450506020612eb287828801612cf4565b9350506040612ec387828801612da4565b925050606085013567ffffffffffffffff811115612ee457612ee361389f565b5b612ef087828801612d48565b91505092959194509250565b60008060408385031215612f1357612f126138a4565b5b6000612f2185828601612cf4565b9250506020612f3285828601612d09565b9150509250929050565b60008060408385031215612f5357612f526138a4565b5b6000612f6185828601612cf4565b9250506020612f7285828601612da4565b9150509250929050565b600060208284031215612f9257612f916138a4565b5b6000612fa084828501612d1e565b91505092915050565b600060208284031215612fbf57612fbe6138a4565b5b6000612fcd84828501612d33565b91505092915050565b600060208284031215612fec57612feb6138a4565b5b600082013567ffffffffffffffff81111561300a5761300961389f565b5b61301684828501612d76565b91505092915050565b600060208284031215613035576130346138a4565b5b600061304384828501612da4565b91505092915050565b61305581613617565b82525050565b61306481613629565b82525050565b6000613075826134b4565b61307f81856134ca565b935061308f81856020860161369a565b613098816138a9565b840191505092915050565b60006130ae826134bf565b6130b881856134e6565b93506130c881856020860161369a565b6130d1816138a9565b840191505092915050565b60006130e7826134bf565b6130f181856134f7565b935061310181856020860161369a565b80840191505092915050565b600061311a6007836134e6565b9150613125826138ba565b602082019050919050565b600061313d6026836134e6565b9150613148826138e3565b604082019050919050565b60006131606020836134e6565b915061316b82613932565b602082019050919050565b6000613183602f836134e6565b915061318e8261395b565b604082019050919050565b60006131a66052836134f7565b91506131b1826139aa565b605282019050919050565b60006131c9601d836134e6565b91506131d482613a1f565b602082019050919050565b60006131ec6000836134db565b91506131f782613a48565b600082019050919050565b600061320f6010836134e6565b915061321a82613a4b565b602082019050919050565b60006132326013836134e6565b915061323d82613a74565b602082019050919050565b61325181613681565b82525050565b600061326282613199565b915061326e82846130dc565b915081905092915050565b6000613284826131df565b9150819050919050565b60006020820190506132a3600083018461304c565b92915050565b60006080820190506132be600083018761304c565b6132cb602083018661304c565b6132d86040830185613248565b81810360608301526132ea818461306a565b905095945050505050565b600060208201905061330a600083018461305b565b92915050565b6000602082019050818103600083015261332a81846130a3565b905092915050565b6000602082019050818103600083015261334b8161310d565b9050919050565b6000602082019050818103600083015261336b81613130565b9050919050565b6000602082019050818103600083015261338b81613153565b9050919050565b600060208201905081810360008301526133ab81613176565b9050919050565b600060208201905081810360008301526133cb816131bc565b9050919050565b600060208201905081810360008301526133eb81613202565b9050919050565b6000602082019050818103600083015261340b81613225565b9050919050565b60006020820190506134276000830184613248565b92915050565b6000613437613448565b905061344382826136ff565b919050565b6000604051905090565b600067ffffffffffffffff82111561346d5761346c613866565b5b613476826138a9565b9050602081019050919050565b600067ffffffffffffffff82111561349e5761349d613866565b5b6134a7826138a9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061350d82613681565b915061351883613681565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561354d5761354c6137aa565b5b828201905092915050565b600061356382613681565b915061356e83613681565b92508261357e5761357d6137d9565b5b828204905092915050565b600061359482613681565b915061359f83613681565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135d8576135d76137aa565b5b828202905092915050565b60006135ee82613681565b91506135f983613681565b92508282101561360c5761360b6137aa565b5b828203905092915050565b600061362282613661565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136b857808201518184015260208101905061369d565b838111156136c7576000848401525b50505050565b600060028204905060018216806136e557607f821691505b602082108114156136f9576136f8613808565b5b50919050565b613708826138a9565b810181811067ffffffffffffffff8211171561372757613726613866565b5b80604052505050565b600061373b82613681565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561376e5761376d6137aa565b5b600182019050919050565b600061378482613681565b915061378f83613681565b92508261379f5761379e6137d9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f68747470733a2f2f696b7a7474702e6d7970696e6174612e636c6f75642f697060008201527f66732f516d51466b4c535179736a393473354776544850797a5478726177777460208201527f6a67696959533254424c677276773843572f0000000000000000000000000000604082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b613aa681613617565b8114613ab157600080fd5b50565b613abd81613629565b8114613ac857600080fd5b50565b613ad481613635565b8114613adf57600080fd5b50565b613aeb81613681565b8114613af657600080fd5b5056fea2646970667358221220fd26d3869eebe550e920a42f7d90a2f7722e7f94e303ff172fc9c9cd96db3a8a64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c8063715018a61161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146106dc578063e985e9c514610707578063f2fde38b14610744578063f892c6e21461076d578063f968adbe14610798576101ee565b8063a22cb46514610622578063a70273571461064b578063b88d4fde14610676578063c87b56dd1461069f576101ee565b806391b7f5ed116100dc57806391b7f5ed1461058757806395d89b41146105b0578063a035b1fe146105db578063a0712d6814610606576101ee565b8063715018a6146104ef5780637dc949b2146105065780638da5cb5b14610531578063908ea4711461055c576101ee565b80633ccfd60b116101855780636352211e116101545780636352211e146104215780636c0360eb1461045e5780636d7c4a4b1461048957806370a08231146104b2576101ee565b80633ccfd60b1461037b57806342842e0e146103925780634f6ccce7146103bb57806355f804b3146103f8576101ee565b80630c23bb3f116101c15780630c23bb3f146102c157806318160ddd146102ea57806323b872dd146103155780632f745c591461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612f7c565b6107c3565b60405161022791906132f5565b60405180910390f35b34801561023c57600080fd5b5061024561090d565b6040516102529190613310565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d919061301f565b61099f565b60405161028f919061328e565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612f3c565b610a1b565b005b3480156102cd57600080fd5b506102e860048036038101906102e3919061301f565b610b26565b005b3480156102f657600080fd5b506102ff610bac565b60405161030c9190613412565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612e26565b610bba565b005b34801561034a57600080fd5b5061036560048036038101906103609190612f3c565b610bca565b6040516103729190613412565b60405180910390f35b34801561038757600080fd5b50610390610da3565b005b34801561039e57600080fd5b506103b960048036038101906103b49190612e26565b610ece565b005b3480156103c757600080fd5b506103e260048036038101906103dd919061301f565b610eee565b6040516103ef9190613412565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a9190612fd6565b611033565b005b34801561042d57600080fd5b506104486004803603810190610443919061301f565b6110c9565b604051610455919061328e565b60405180910390f35b34801561046a57600080fd5b506104736110df565b6040516104809190613310565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab919061301f565b61116d565b005b3480156104be57600080fd5b506104d960048036038101906104d49190612db9565b6111f3565b6040516104e69190613412565b60405180910390f35b3480156104fb57600080fd5b506105046112c3565b005b34801561051257600080fd5b5061051b611400565b6040516105289190613412565b60405180910390f35b34801561053d57600080fd5b50610546611406565b604051610553919061328e565b60405180910390f35b34801561056857600080fd5b50610571611430565b60405161057e9190613412565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a9919061301f565b611436565b005b3480156105bc57600080fd5b506105c56114bc565b6040516105d29190613310565b60405180910390f35b3480156105e757600080fd5b506105f061154e565b6040516105fd9190613412565b60405180910390f35b610620600480360381019061061b919061301f565b611554565b005b34801561062e57600080fd5b5061064960048036038101906106449190612efc565b61179e565b005b34801561065757600080fd5b50610660611916565b60405161066d9190613412565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190612e79565b61191c565b005b3480156106ab57600080fd5b506106c660048036038101906106c1919061301f565b61196f565b6040516106d39190613310565b60405180910390f35b3480156106e857600080fd5b506106f16119e8565b6040516106fe9190613412565b60405180910390f35b34801561071357600080fd5b5061072e60048036038101906107299190612de6565b6119ee565b60405161073b91906132f5565b60405180910390f35b34801561075057600080fd5b5061076b60048036038101906107669190612db9565b611a82565b005b34801561077957600080fd5b50610782611c2e565b60405161078f9190613412565b60405180910390f35b3480156107a457600080fd5b506107ad611c34565b6040516107ba9190613412565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610906575061090582611c5d565b5b9050919050565b60606003805461091c906136cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610948906136cd565b80156109955780601f1061096a57610100808354040283529160200191610995565b820191906000526020600020905b81548152906001019060200180831161097857829003601f168201915b5050505050905090565b60006109aa82611cc7565b6109e0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a26826110c9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a8e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aad611d01565b73ffffffffffffffffffffffffffffffffffffffff1614158015610adf5750610add81610ad8611d01565b6119ee565b155b15610b16576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b21838383611d09565b505050565b610b2e611d01565b73ffffffffffffffffffffffffffffffffffffffff16610b4c611406565b73ffffffffffffffffffffffffffffffffffffffff1614610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9990613372565b60405180910390fd5b80600d8190555050565b600060025460005403905090565b610bc5838383611dbb565b505050565b6000610bd5836111f3565b8210610c0d576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610d97576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610cf65750610d8a565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d3657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d885786841415610d7f578195505050505050610d9d565b83806001019450505b505b8080600101915050610c19565b50600080fd5b92915050565b610dab611d01565b73ffffffffffffffffffffffffffffffffffffffff16610dc9611406565b73ffffffffffffffffffffffffffffffffffffffff1614610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690613372565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e4590613279565b60006040518083038185875af1925050503d8060008114610e82576040519150601f19603f3d011682016040523d82523d6000602084013e610e87565b606091505b5050905080610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec2906133d2565b60405180910390fd5b50565b610ee98383836040518060200160405280600081525061191c565b505050565b60008060005490506000805b82811015610ffb576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610fed5785831415610fe4578194505050505061102e565b82806001019350505b508080600101915050610efa565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61103b611d01565b73ffffffffffffffffffffffffffffffffffffffff16611059611406565b73ffffffffffffffffffffffffffffffffffffffff16146110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a690613372565b60405180910390fd5b80601090805190602001906110c5929190612b8a565b5050565b60006110d4826122ac565b600001519050919050565b601080546110ec906136cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611118906136cd565b80156111655780601f1061113a57610100808354040283529160200191611165565b820191906000526020600020905b81548152906001019060200180831161114857829003601f168201915b505050505081565b611175611d01565b73ffffffffffffffffffffffffffffffffffffffff16611193611406565b73ffffffffffffffffffffffffffffffffffffffff16146111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090613372565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561125b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112cb611d01565b73ffffffffffffffffffffffffffffffffffffffff166112e9611406565b73ffffffffffffffffffffffffffffffffffffffff161461133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690613372565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600f5481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60015481565b61143e611d01565b73ffffffffffffffffffffffffffffffffffffffff1661145c611406565b73ffffffffffffffffffffffffffffffffffffffff16146114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990613372565b60405180910390fd5b80600a8190555050565b6060600480546114cb906136cd565b80601f01602080910402602001604051908101604052809291908181526020018280546114f7906136cd565b80156115445780601f1061151957610100808354040283529160200191611544565b820191906000526020600020905b81548152906001019060200180831161152757829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d5461156c9190613502565b83611575610bac565b61157f9190613502565b1080156115d85750600e5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115d59190613502565b11155b9050801561168f576000915082601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116339190613502565b925050819055506001600f546116499190613502565b831061168a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611681906133f2565b60405180910390fd5b6116e0565b6001600c5461169e9190613502565b83106116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d6906133f2565b60405180910390fd5b5b81836116ec9190613589565b34101561172e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611725906133b2565b60405180910390fd5b6001805461173c9190613502565b83611745610bac565b61174f9190613502565b1061178f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178690613332565b60405180910390fd5b6117993384612528565b505050565b6117a6611d01565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561180b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611818611d01565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118c5611d01565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161190a91906132f5565b60405180910390a35050565b600e5481565b611927848484611dbb565b61193384848484612546565b611969576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061197a82611cc7565b6119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b090613392565b60405180910390fd5b6119c2826126d4565b6040516020016119d29190613257565b6040516020818303038152906040529050919050565b600b5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a8a611d01565b73ffffffffffffffffffffffffffffffffffffffff16611aa8611406565b73ffffffffffffffffffffffffffffffffffffffff1614611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af590613372565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6590613352565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d5481565b600c5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611cfa575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611dc6826122ac565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ded611d01565b73ffffffffffffffffffffffffffffffffffffffff161480611e205750611e1f8260000151611e1a611d01565b6119ee565b5b80611e655750611e2e611d01565b73ffffffffffffffffffffffffffffffffffffffff16611e4d8461099f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e9e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f07576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f6e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f7b8585856001612835565b611f8b6000848460000151611d09565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561223c5760005481101561223b5782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122a5858585600161283b565b5050505050565b6122b4612c10565b60008290506000548110156124f1576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124ef57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123d3578092505050612523565b5b6001156124ee57818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124e9578092505050612523565b6123d4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612542828260405180602001604052806000815250612841565b5050565b60006125678473ffffffffffffffffffffffffffffffffffffffff16611c3a565b156126c7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612590611d01565b8786866040518563ffffffff1660e01b81526004016125b294939291906132a9565b602060405180830381600087803b1580156125cc57600080fd5b505af19250505080156125fd57506040513d601f19601f820116820180604052508101906125fa9190612fa9565b60015b612677573d806000811461262d576040519150601f19603f3d011682016040523d82523d6000602084013e612632565b606091505b5060008151141561266f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126cc565b600190505b949350505050565b6060600082141561271c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612830565b600082905060005b6000821461274e57808061273790613730565b915050600a826127479190613558565b9150612724565b60008167ffffffffffffffff81111561276a57612769613866565b5b6040519080825280601f01601f19166020018201604052801561279c5781602001600182028036833780820191505090505b5090505b60008514612829576001826127b591906135e3565b9150600a856127c49190613779565b60306127d09190613502565b60f81b8183815181106127e6576127e5613837565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128229190613558565b94506127a0565b8093505050505b919050565b50505050565b50505050565b61284e8383836001612853565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156128c0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156128fb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129086000868387612835565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612b6d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612b215750612b1f6000888488612546565b155b15612b58576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612aa6565b508060008190555050612b83600086838761283b565b5050505050565b828054612b96906136cd565b90600052602060002090601f016020900481019282612bb85760008555612bff565b82601f10612bd157805160ff1916838001178555612bff565b82800160010185558215612bff579182015b82811115612bfe578251825591602001919060010190612be3565b5b509050612c0c9190612c53565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c6c576000816000905550600101612c54565b5090565b6000612c83612c7e84613452565b61342d565b905082815260208101848484011115612c9f57612c9e61389a565b5b612caa84828561368b565b509392505050565b6000612cc5612cc084613483565b61342d565b905082815260208101848484011115612ce157612ce061389a565b5b612cec84828561368b565b509392505050565b600081359050612d0381613a9d565b92915050565b600081359050612d1881613ab4565b92915050565b600081359050612d2d81613acb565b92915050565b600081519050612d4281613acb565b92915050565b600082601f830112612d5d57612d5c613895565b5b8135612d6d848260208601612c70565b91505092915050565b600082601f830112612d8b57612d8a613895565b5b8135612d9b848260208601612cb2565b91505092915050565b600081359050612db381613ae2565b92915050565b600060208284031215612dcf57612dce6138a4565b5b6000612ddd84828501612cf4565b91505092915050565b60008060408385031215612dfd57612dfc6138a4565b5b6000612e0b85828601612cf4565b9250506020612e1c85828601612cf4565b9150509250929050565b600080600060608486031215612e3f57612e3e6138a4565b5b6000612e4d86828701612cf4565b9350506020612e5e86828701612cf4565b9250506040612e6f86828701612da4565b9150509250925092565b60008060008060808587031215612e9357612e926138a4565b5b6000612ea187828801612cf4565b9450506020612eb287828801612cf4565b9350506040612ec387828801612da4565b925050606085013567ffffffffffffffff811115612ee457612ee361389f565b5b612ef087828801612d48565b91505092959194509250565b60008060408385031215612f1357612f126138a4565b5b6000612f2185828601612cf4565b9250506020612f3285828601612d09565b9150509250929050565b60008060408385031215612f5357612f526138a4565b5b6000612f6185828601612cf4565b9250506020612f7285828601612da4565b9150509250929050565b600060208284031215612f9257612f916138a4565b5b6000612fa084828501612d1e565b91505092915050565b600060208284031215612fbf57612fbe6138a4565b5b6000612fcd84828501612d33565b91505092915050565b600060208284031215612fec57612feb6138a4565b5b600082013567ffffffffffffffff81111561300a5761300961389f565b5b61301684828501612d76565b91505092915050565b600060208284031215613035576130346138a4565b5b600061304384828501612da4565b91505092915050565b61305581613617565b82525050565b61306481613629565b82525050565b6000613075826134b4565b61307f81856134ca565b935061308f81856020860161369a565b613098816138a9565b840191505092915050565b60006130ae826134bf565b6130b881856134e6565b93506130c881856020860161369a565b6130d1816138a9565b840191505092915050565b60006130e7826134bf565b6130f181856134f7565b935061310181856020860161369a565b80840191505092915050565b600061311a6007836134e6565b9150613125826138ba565b602082019050919050565b600061313d6026836134e6565b9150613148826138e3565b604082019050919050565b60006131606020836134e6565b915061316b82613932565b602082019050919050565b6000613183602f836134e6565b915061318e8261395b565b604082019050919050565b60006131a66052836134f7565b91506131b1826139aa565b605282019050919050565b60006131c9601d836134e6565b91506131d482613a1f565b602082019050919050565b60006131ec6000836134db565b91506131f782613a48565b600082019050919050565b600061320f6010836134e6565b915061321a82613a4b565b602082019050919050565b60006132326013836134e6565b915061323d82613a74565b602082019050919050565b61325181613681565b82525050565b600061326282613199565b915061326e82846130dc565b915081905092915050565b6000613284826131df565b9150819050919050565b60006020820190506132a3600083018461304c565b92915050565b60006080820190506132be600083018761304c565b6132cb602083018661304c565b6132d86040830185613248565b81810360608301526132ea818461306a565b905095945050505050565b600060208201905061330a600083018461305b565b92915050565b6000602082019050818103600083015261332a81846130a3565b905092915050565b6000602082019050818103600083015261334b8161310d565b9050919050565b6000602082019050818103600083015261336b81613130565b9050919050565b6000602082019050818103600083015261338b81613153565b9050919050565b600060208201905081810360008301526133ab81613176565b9050919050565b600060208201905081810360008301526133cb816131bc565b9050919050565b600060208201905081810360008301526133eb81613202565b9050919050565b6000602082019050818103600083015261340b81613225565b9050919050565b60006020820190506134276000830184613248565b92915050565b6000613437613448565b905061344382826136ff565b919050565b6000604051905090565b600067ffffffffffffffff82111561346d5761346c613866565b5b613476826138a9565b9050602081019050919050565b600067ffffffffffffffff82111561349e5761349d613866565b5b6134a7826138a9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061350d82613681565b915061351883613681565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561354d5761354c6137aa565b5b828201905092915050565b600061356382613681565b915061356e83613681565b92508261357e5761357d6137d9565b5b828204905092915050565b600061359482613681565b915061359f83613681565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135d8576135d76137aa565b5b828202905092915050565b60006135ee82613681565b91506135f983613681565b92508282101561360c5761360b6137aa565b5b828203905092915050565b600061362282613661565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136b857808201518184015260208101905061369d565b838111156136c7576000848401525b50505050565b600060028204905060018216806136e557607f821691505b602082108114156136f9576136f8613808565b5b50919050565b613708826138a9565b810181811067ffffffffffffffff8211171561372757613726613866565b5b80604052505050565b600061373b82613681565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561376e5761376d6137aa565b5b600182019050919050565b600061378482613681565b915061378f83613681565b92508261379f5761379e6137d9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f68747470733a2f2f696b7a7474702e6d7970696e6174612e636c6f75642f697060008201527f66732f516d51466b4c535179736a393473354776544850797a5478726177777460208201527f6a67696959533254424c677276773843572f0000000000000000000000000000604082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b613aa681613617565b8114613ab157600080fd5b50565b613abd81613629565b8114613ac857600080fd5b50565b613ad481613635565b8114613adf57600080fd5b50565b613aeb81613681565b8114613af657600080fd5b5056fea2646970667358221220fd26d3869eebe550e920a42f7d90a2f7722e7f94e303ff172fc9c9cd96db3a8a64736f6c63430008070033

Deployed Bytecode Sourcemap

108:2310:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6054:410:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8667:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10211:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9788:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1993:102:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3286:278:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11142:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4874:1113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2215:201:13;;;;;;;;;;;;;:::i;:::-;;11372:179:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3850:731;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1805:86:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8483:122:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;419:21:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2101:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6523:203:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1693:145:11;;;;;;;;;;;;;:::i;:::-;;381:31:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1061:85:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2328:31:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1897:90:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8829:102:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;183:34:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;601:674;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10514:294:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;338:36:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11617:332:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1393:406:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;224:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10874:206:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1987:240:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;296:35:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;262:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6054:410:4;6196:4;6250:25;6235:40;;;:11;:40;;;;:104;;;;6306:33;6291:48;;;:11;:48;;;;6235:104;:170;;;;6370:35;6355:50;;;:11;:50;;;;6235:170;:222;;;;6421:36;6445:11;6421:23;:36::i;:::-;6235:222;6216:241;;6054:410;;;:::o;8667:98::-;8721:13;8753:5;8746:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8667:98;:::o;10211:236::-;10311:7;10339:16;10347:7;10339;:16::i;:::-;10334:64;;10364:34;;;;;;;;;;;;;;10334:64;10416:15;:24;10432:7;10416:24;;;;;;;;;;;;;;;;;;;;;10409:31;;10211:236;;;:::o;9788:362::-;9860:13;9876:24;9892:7;9876:15;:24::i;:::-;9860:40;;9920:5;9914:11;;:2;:11;;;9910:48;;;9934:24;;;;;;;;;;;;;;9910:48;9989:5;9973:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;9999:37;10016:5;10023:12;:10;:12::i;:::-;9999:16;:37::i;:::-;9998:38;9973:63;9969:136;;;10059:35;;;;;;;;;;;;;;9969:136;10115:28;10124:2;10128:7;10137:5;10115:8;:28::i;:::-;9850:300;9788:362;;:::o;1993:102:13:-;1284:12:11;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:7:13::1;2065:13;:23;;;;1993:102:::0;:::o;3286:278:4:-;3347:7;3535:12;;3519:13;;:28;3512:35;;3286:278;:::o;11142:164::-;11271:28;11281:4;11287:2;11291:7;11271:9;:28::i;:::-;11142:164;;;:::o;4874:1113::-;4995:7;5031:16;5041:5;5031:9;:16::i;:::-;5022:5;:25;5018:61;;5056:23;;;;;;;;;;;;;;5018:61;5089:22;5114:13;;5089:38;;5137:19;5166:25;5362:9;5357:543;5377:14;5373:1;:18;5357:543;;;5416:31;5450:11;:14;5462:1;5450:14;;;;;;;;;;;5416:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5486:9;:16;;;5482:71;;;5526:8;;;5482:71;5600:1;5574:28;;:9;:14;;;:28;;;5570:109;;5646:9;:14;;;5626:34;;5570:109;5721:5;5700:26;;:17;:26;;;5696:190;;;5769:5;5754:11;:20;5750:83;;;5809:1;5802:8;;;;;;;;;5750:83;5854:13;;;;;;;5696:190;5398:502;5357:543;5393:3;;;;;;;5357:543;;;;5972:8;;;4874:1113;;;;;:::o;2215:201:13:-;1284:12:11;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2265:12:13::1;2291:10;2283:24;;2328:21;2283:80;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2264:99;;;2381:7;2373:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;2254:162;2215:201::o:0;11372:179:4:-;11505:39;11522:4;11528:2;11532:7;11505:39;;;;;;;;;;;;:16;:39::i;:::-;11372:179;;;:::o;3850:731::-;3949:7;3972:22;3997:13;;3972:38;;4020:19;4210:9;4205:320;4225:14;4221:1;:18;4205:320;;;4264:31;4298:11;:14;4310:1;4298:14;;;;;;;;;;;4264:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4335:9;:16;;;4330:181;;4394:5;4379:11;:20;4375:83;;;4434:1;4427:8;;;;;;;;4375:83;4479:13;;;;;;;4330:181;4246:279;4241:3;;;;;;;4205:320;;;;4551:23;;;;;;;;;;;;;;3850:731;;;;:::o;1805:86:13:-;1284:12:11;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1881:3:13::1;1871:7;:13;;;;;;;;;;;;:::i;:::-;;1805:86:::0;:::o;8483:122:4:-;8547:7;8573:20;8585:7;8573:11;:20::i;:::-;:25;;;8566:32;;8483:122;;;:::o;419:21:13:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2101:108::-;1284:12:11;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2195:7:13::1;2176:16;:26;;;;2101:108:::0;:::o;6523:203:4:-;6587:7;6627:1;6610:19;;:5;:19;;;6606:60;;;6638:28;;;;;;;;;;;;;;6606:60;6691:12;:19;6704:5;6691:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;6683:36;;6676:43;;6523:203;;;:::o;1693:145:11:-;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;381:31:13:-;;;;:::o;1061:85:11:-;1107:7;1133:6;;;;;;;;;;;1126:13;;1061:85;:::o;2328:31:4:-;;;;:::o;1897:90:13:-;1284:12:11;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1971:9:13::1;1963:5;:17;;;;1897:90:::0;:::o;8829:102:4:-;8885:13;8917:7;8910:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8829:102;:::o;183:34:13:-;;;;:::o;601:674::-;658:12;673:5;;658:20;;688:9;743:1;727:13;;:17;;;;:::i;:::-;718:6;702:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:42;701:120;;;;;804:16;;794:6;762:17;:29;780:10;762:29;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:58;;701:120;688:134;;836:4;832:251;;;863:1;856:8;;911:6;878:17;:29;896:10;878:29;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;963:1;948:12;;:16;;;;:::i;:::-;939:6;:25;931:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;832:251;;;1047:1;1036:8;;:12;;;;:::i;:::-;1027:6;:21;1019:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;832:251;1123:4;1114:6;:13;;;;:::i;:::-;1101:9;:26;;1093:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1215:1;1204:8;;:12;;;;:::i;:::-;1195:6;1179:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:37;1171:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;1239:29;1249:10;1261:6;1239:9;:29::i;:::-;648:627;;601:674;:::o;10514:294:4:-;10636:12;:10;:12::i;:::-;10624:24;;:8;:24;;;10620:54;;;10657:17;;;;;;;;;;;;;;10620:54;10730:8;10685:18;:32;10704:12;:10;:12::i;:::-;10685:32;;;;;;;;;;;;;;;:42;10718:8;10685:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10782:8;10753:48;;10768:12;:10;:12::i;:::-;10753:48;;;10792:8;10753:48;;;;;;:::i;:::-;;;;;;;;10514:294;;:::o;338:36:13:-;;;;:::o;11617:332:4:-;11778:28;11788:4;11794:2;11798:7;11778:9;:28::i;:::-;11821:48;11844:4;11850:2;11854:7;11863:5;11821:22;:48::i;:::-;11816:127;;11892:40;;;;;;;;;;;;;;11816:127;11617:332;;;;:::o;1393:406:13:-;1506:13;1556:16;1564:7;1556;:16::i;:::-;1535:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;1772:18;:7;:16;:18::i;:::-;1669:122;;;;;;;;:::i;:::-;;;;;;;;;;;;;1655:137;;1393:406;;;:::o;224:31::-;;;;:::o;10874:206:4:-;11011:4;11038:18;:25;11057:5;11038:25;;;;;;;;;;;;;;;:35;11064:8;11038:35;;;;;;;;;;;;;;;;;;;;;;;;;11031:42;;10874:206;;;;:::o;1987:240:11:-;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;296:35:13:-;;;;:::o;262:27::-;;;;:::o;1160:320:0:-;1220:4;1472:1;1450:7;:19;;;:23;1443:30;;1160:320;;;:::o;829:155:2:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;12195:142:4:-;12252:4;12285:13;;12275:7;:23;:55;;;;;12303:11;:20;12315:7;12303:20;;;;;;;;;;;:27;;;;;;;;;;;;12302:28;12275:55;12268:62;;12195:142;;;:::o;586:96:1:-;639:7;665:10;658:17;;586:96;:::o;19321:189:4:-;19458:2;19431:15;:24;19447:7;19431:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19495:7;19491:2;19475:28;;19484:5;19475:28;;;;;;;;;;;;19321:189;;;:::o;14877:2092::-;14987:35;15025:20;15037:7;15025:11;:20::i;:::-;14987:58;;15056:22;15098:13;:18;;;15082:34;;:12;:10;:12::i;:::-;:34;;;:100;;;;15132:50;15149:13;:18;;;15169:12;:10;:12::i;:::-;15132:16;:50::i;:::-;15082:100;:152;;;;15222:12;:10;:12::i;:::-;15198:36;;:20;15210:7;15198:11;:20::i;:::-;:36;;;15082:152;15056:179;;15251:17;15246:66;;15277:35;;;;;;;;;;;;;;15246:66;15348:4;15326:26;;:13;:18;;;:26;;;15322:67;;15361:28;;;;;;;;;;;;;;15322:67;15417:1;15403:16;;:2;:16;;;15399:52;;;15428:23;;;;;;;;;;;;;;15399:52;15462:43;15484:4;15490:2;15494:7;15503:1;15462:21;:43::i;:::-;15567:49;15584:1;15588:7;15597:13;:18;;;15567:8;:49::i;:::-;15936:1;15906:12;:18;15919:4;15906:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15979:1;15951:12;:16;15964:2;15951:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16023:2;15995:11;:20;16007:7;15995:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16084:15;16039:11;:20;16051:7;16039:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16348:19;16380:1;16370:7;:11;16348:33;;16440:1;16399:43;;:11;:24;16411:11;16399:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16395:463;;;16621:13;;16607:11;:27;16603:241;;;16690:13;:18;;;16658:11;:24;16670:11;16658:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;16772:13;:53;;;16730:11;:24;16742:11;16730:24;;;;;;;;;;;:39;;;:95;;;;;;;;;;;;;;;;;;16603:241;16395:463;15882:986;16902:7;16898:2;16883:27;;16892:4;16883:27;;;;;;;;;;;;16920:42;16941:4;16947:2;16951:7;16960:1;16920:20;:42::i;:::-;14977:1992;;14877:2092;;;:::o;7342:1084::-;7427:21;;:::i;:::-;7464:12;7479:7;7464:22;;7532:13;;7525:4;:20;7521:841;;;7565:31;7599:11;:17;7611:4;7599:17;;;;;;;;;;;7565:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7639:9;:16;;;7634:714;;7709:1;7683:28;;:9;:14;;;:28;;;7679:99;;7746:9;7739:16;;;;;;7679:99;8075:255;8082:4;8075:255;;;8114:6;;;;;;;;8158:11;:17;8170:4;8158:17;;;;;;;;;;;8146:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8231:1;8205:28;;:9;:14;;;:28;;;8201:107;;8272:9;8265:16;;;;;;8201:107;8075:255;;;7634:714;7547:815;7521:841;8388:31;;;;;;;;;;;;;;7342:1084;;;;:::o;12343:102::-;12411:27;12421:2;12425:8;12411:27;;;;;;;;;;;;:9;:27::i;:::-;12343:102;;:::o;20063:895::-;20213:4;20233:15;:2;:13;;;:15::i;:::-;20229:723;;;20300:2;20284:36;;;20342:12;:10;:12::i;:::-;20376:4;20402:7;20431:5;20284:170;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20264:636;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20654:1;20637:6;:13;:18;20633:253;;;20686:40;;;;;;;;;;;;;;20633:253;20838:6;20832:13;20823:6;20819:2;20815:15;20808:38;20264:636;20526:45;;;20516:55;;;:6;:55;;;;20509:62;;;;;20229:723;20937:4;20930:11;;20063:895;;;;;;;:::o;328:703:12:-;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;21589:154:4:-;;;;;:::o;22384:153::-;;;;;:::o;12796:157::-;12914:32;12920:2;12924:8;12934:5;12941:4;12914:5;:32::i;:::-;12796:157;;;:::o;13200:1435::-;13333:20;13356:13;;13333:36;;13397:1;13383:16;;:2;:16;;;13379:48;;;13408:19;;;;;;;;;;;;;;13379:48;13453:1;13441:8;:13;13437:44;;;13463:18;;;;;;;;;;;;;;13437:44;13492:61;13522:1;13526:2;13530:12;13544:8;13492:21;:61::i;:::-;13859:8;13824:12;:16;13837:2;13824:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13922:8;13882:12;:16;13895:2;13882:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13979:2;13946:11;:25;13958:12;13946:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;14045:15;13995:11;:25;14007:12;13995:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;14076:20;14099:12;14076:35;;14131:9;14126:380;14146:8;14142:1;:12;14126:380;;;14209:12;14205:2;14184:38;;14201:1;14184:38;;;;;;;;;;;;14265:4;:88;;;;;14294:59;14325:1;14329:2;14333:12;14347:5;14294:22;:59::i;:::-;14293:60;14265:88;14240:220;;;14401:40;;;;;;;;;;;;;;14240:220;14477:14;;;;;;;14156:3;;;;;;;14126:380;;;;14536:12;14520:13;:28;;;;13800:759;14568:60;14597:1;14601:2;14605:12;14619:8;14568:20;:60::i;:::-;13323:1312;13200:1435;;;;:::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:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:365::-;8658:3;8679:66;8743:1;8738:3;8679:66;:::i;:::-;8672:73;;8754:93;8843:3;8754:93;:::i;:::-;8872:2;8867:3;8863:12;8856:19;;8516:365;;;:::o;8887:366::-;9029:3;9050:67;9114:2;9109:3;9050:67;:::i;:::-;9043:74;;9126:93;9215:3;9126:93;:::i;:::-;9244:2;9239:3;9235:12;9228:19;;8887:366;;;:::o;9259:::-;9401:3;9422:67;9486:2;9481:3;9422:67;:::i;:::-;9415:74;;9498:93;9587:3;9498:93;:::i;:::-;9616:2;9611:3;9607:12;9600:19;;9259:366;;;:::o;9631:::-;9773:3;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9631:366;;;:::o;10003:402::-;10163:3;10184:85;10266:2;10261:3;10184:85;:::i;:::-;10177:92;;10278:93;10367:3;10278:93;:::i;:::-;10396:2;10391:3;10387:12;10380:19;;10003:402;;;:::o;10411:366::-;10553:3;10574:67;10638:2;10633:3;10574:67;:::i;:::-;10567:74;;10650:93;10739:3;10650:93;:::i;:::-;10768:2;10763:3;10759:12;10752:19;;10411:366;;;:::o;10783:398::-;10942:3;10963:83;11044:1;11039:3;10963:83;:::i;:::-;10956:90;;11055:93;11144:3;11055:93;:::i;:::-;11173:1;11168:3;11164:11;11157:18;;10783:398;;;:::o;11187:366::-;11329:3;11350:67;11414:2;11409:3;11350:67;:::i;:::-;11343:74;;11426:93;11515:3;11426:93;:::i;:::-;11544:2;11539:3;11535:12;11528:19;;11187:366;;;:::o;11559:::-;11701:3;11722:67;11786:2;11781:3;11722:67;:::i;:::-;11715:74;;11798:93;11887:3;11798:93;:::i;:::-;11916:2;11911:3;11907:12;11900:19;;11559:366;;;:::o;11931:118::-;12018:24;12036:5;12018:24;:::i;:::-;12013:3;12006:37;11931:118;;:::o;12055:541::-;12288:3;12310:148;12454:3;12310:148;:::i;:::-;12303:155;;12475:95;12566:3;12557:6;12475:95;:::i;:::-;12468:102;;12587:3;12580:10;;12055:541;;;;:::o;12602:379::-;12786:3;12808:147;12951:3;12808:147;:::i;:::-;12801:154;;12972:3;12965:10;;12602:379;;;:::o;12987:222::-;13080:4;13118:2;13107:9;13103:18;13095:26;;13131:71;13199:1;13188:9;13184:17;13175:6;13131:71;:::i;:::-;12987:222;;;;:::o;13215:640::-;13410:4;13448:3;13437:9;13433:19;13425:27;;13462:71;13530:1;13519:9;13515:17;13506:6;13462:71;:::i;:::-;13543:72;13611:2;13600:9;13596:18;13587:6;13543:72;:::i;:::-;13625;13693:2;13682:9;13678:18;13669:6;13625:72;:::i;:::-;13744:9;13738:4;13734:20;13729:2;13718:9;13714:18;13707:48;13772:76;13843:4;13834:6;13772:76;:::i;:::-;13764:84;;13215:640;;;;;;;:::o;13861:210::-;13948:4;13986:2;13975:9;13971:18;13963:26;;13999:65;14061:1;14050:9;14046:17;14037:6;13999:65;:::i;:::-;13861:210;;;;:::o;14077:313::-;14190:4;14228:2;14217:9;14213:18;14205:26;;14277:9;14271:4;14267:20;14263:1;14252:9;14248:17;14241:47;14305:78;14378:4;14369:6;14305:78;:::i;:::-;14297:86;;14077:313;;;;:::o;14396:419::-;14562:4;14600:2;14589:9;14585:18;14577:26;;14649:9;14643:4;14639:20;14635:1;14624:9;14620:17;14613:47;14677:131;14803:4;14677:131;:::i;:::-;14669:139;;14396:419;;;:::o;14821:::-;14987:4;15025:2;15014:9;15010:18;15002:26;;15074:9;15068:4;15064:20;15060:1;15049:9;15045:17;15038:47;15102:131;15228:4;15102:131;:::i;:::-;15094:139;;14821:419;;;:::o;15246:::-;15412:4;15450:2;15439:9;15435:18;15427:26;;15499:9;15493:4;15489:20;15485:1;15474:9;15470:17;15463:47;15527:131;15653:4;15527:131;:::i;:::-;15519:139;;15246:419;;;:::o;15671:::-;15837:4;15875:2;15864:9;15860:18;15852:26;;15924:9;15918:4;15914:20;15910:1;15899:9;15895:17;15888:47;15952:131;16078:4;15952:131;:::i;:::-;15944:139;;15671:419;;;:::o;16096:::-;16262:4;16300:2;16289:9;16285:18;16277:26;;16349:9;16343:4;16339:20;16335:1;16324:9;16320:17;16313:47;16377:131;16503:4;16377:131;:::i;:::-;16369:139;;16096:419;;;:::o;16521:::-;16687:4;16725:2;16714:9;16710:18;16702:26;;16774:9;16768:4;16764:20;16760:1;16749:9;16745:17;16738:47;16802:131;16928:4;16802:131;:::i;:::-;16794:139;;16521:419;;;:::o;16946:::-;17112:4;17150:2;17139:9;17135:18;17127:26;;17199:9;17193:4;17189:20;17185:1;17174:9;17170:17;17163:47;17227:131;17353:4;17227:131;:::i;:::-;17219:139;;16946:419;;;:::o;17371:222::-;17464:4;17502:2;17491:9;17487:18;17479:26;;17515:71;17583:1;17572:9;17568:17;17559:6;17515:71;:::i;:::-;17371:222;;;;:::o;17599:129::-;17633:6;17660:20;;:::i;:::-;17650:30;;17689:33;17717:4;17709:6;17689:33;:::i;:::-;17599:129;;;:::o;17734:75::-;17767:6;17800:2;17794:9;17784:19;;17734:75;:::o;17815:307::-;17876:4;17966:18;17958:6;17955:30;17952:56;;;17988:18;;:::i;:::-;17952:56;18026:29;18048:6;18026:29;:::i;:::-;18018:37;;18110:4;18104;18100:15;18092:23;;17815:307;;;:::o;18128:308::-;18190:4;18280:18;18272:6;18269:30;18266:56;;;18302:18;;:::i;:::-;18266:56;18340:29;18362:6;18340:29;:::i;:::-;18332:37;;18424:4;18418;18414:15;18406:23;;18128:308;;;:::o;18442:98::-;18493:6;18527:5;18521:12;18511:22;;18442:98;;;:::o;18546:99::-;18598:6;18632:5;18626:12;18616:22;;18546:99;;;:::o;18651:168::-;18734:11;18768:6;18763:3;18756:19;18808:4;18803:3;18799:14;18784:29;;18651:168;;;;:::o;18825:147::-;18926:11;18963:3;18948:18;;18825:147;;;;:::o;18978:169::-;19062:11;19096:6;19091:3;19084:19;19136:4;19131:3;19127:14;19112:29;;18978:169;;;;:::o;19153:148::-;19255:11;19292:3;19277:18;;19153:148;;;;:::o;19307:305::-;19347:3;19366:20;19384:1;19366:20;:::i;:::-;19361:25;;19400:20;19418:1;19400:20;:::i;:::-;19395:25;;19554:1;19486:66;19482:74;19479:1;19476:81;19473:107;;;19560:18;;:::i;:::-;19473:107;19604:1;19601;19597:9;19590:16;;19307:305;;;;:::o;19618:185::-;19658:1;19675:20;19693:1;19675:20;:::i;:::-;19670:25;;19709:20;19727:1;19709:20;:::i;:::-;19704:25;;19748:1;19738:35;;19753:18;;:::i;:::-;19738:35;19795:1;19792;19788:9;19783:14;;19618:185;;;;:::o;19809:348::-;19849:7;19872:20;19890:1;19872:20;:::i;:::-;19867:25;;19906:20;19924:1;19906:20;:::i;:::-;19901:25;;20094:1;20026:66;20022:74;20019:1;20016:81;20011:1;20004:9;19997:17;19993:105;19990:131;;;20101:18;;:::i;:::-;19990:131;20149:1;20146;20142:9;20131:20;;19809:348;;;;:::o;20163:191::-;20203:4;20223:20;20241:1;20223:20;:::i;:::-;20218:25;;20257:20;20275:1;20257:20;:::i;:::-;20252:25;;20296:1;20293;20290:8;20287:34;;;20301:18;;:::i;:::-;20287:34;20346:1;20343;20339:9;20331:17;;20163:191;;;;:::o;20360:96::-;20397:7;20426:24;20444:5;20426:24;:::i;:::-;20415:35;;20360:96;;;:::o;20462:90::-;20496:7;20539:5;20532:13;20525:21;20514:32;;20462:90;;;:::o;20558:149::-;20594:7;20634:66;20627:5;20623:78;20612:89;;20558:149;;;:::o;20713:126::-;20750:7;20790:42;20783:5;20779:54;20768:65;;20713:126;;;:::o;20845:77::-;20882:7;20911:5;20900:16;;20845:77;;;:::o;20928:154::-;21012:6;21007:3;21002;20989:30;21074:1;21065:6;21060:3;21056:16;21049:27;20928:154;;;:::o;21088:307::-;21156:1;21166:113;21180:6;21177:1;21174:13;21166:113;;;21265:1;21260:3;21256:11;21250:18;21246:1;21241:3;21237:11;21230:39;21202:2;21199:1;21195:10;21190:15;;21166:113;;;21297:6;21294:1;21291:13;21288:101;;;21377:1;21368:6;21363:3;21359:16;21352:27;21288:101;21137:258;21088:307;;;:::o;21401:320::-;21445:6;21482:1;21476:4;21472:12;21462:22;;21529:1;21523:4;21519:12;21550:18;21540:81;;21606:4;21598:6;21594:17;21584:27;;21540:81;21668:2;21660:6;21657:14;21637:18;21634:38;21631:84;;;21687:18;;:::i;:::-;21631:84;21452:269;21401:320;;;:::o;21727:281::-;21810:27;21832:4;21810:27;:::i;:::-;21802:6;21798:40;21940:6;21928:10;21925:22;21904:18;21892:10;21889:34;21886:62;21883:88;;;21951:18;;:::i;:::-;21883:88;21991:10;21987:2;21980:22;21770:238;21727:281;;:::o;22014:233::-;22053:3;22076:24;22094:5;22076:24;:::i;:::-;22067:33;;22122:66;22115:5;22112:77;22109:103;;;22192:18;;:::i;:::-;22109:103;22239:1;22232:5;22228:13;22221:20;;22014:233;;;:::o;22253:176::-;22285:1;22302:20;22320:1;22302:20;:::i;:::-;22297:25;;22336:20;22354:1;22336:20;:::i;:::-;22331:25;;22375:1;22365:35;;22380:18;;:::i;:::-;22365:35;22421:1;22418;22414:9;22409:14;;22253:176;;;;:::o;22435:180::-;22483:77;22480:1;22473:88;22580:4;22577:1;22570:15;22604:4;22601:1;22594:15;22621:180;22669:77;22666:1;22659:88;22766:4;22763:1;22756:15;22790:4;22787:1;22780:15;22807:180;22855:77;22852:1;22845:88;22952:4;22949:1;22942:15;22976:4;22973:1;22966:15;22993:180;23041:77;23038:1;23031:88;23138:4;23135:1;23128:15;23162:4;23159:1;23152:15;23179:180;23227:77;23224:1;23217:88;23324:4;23321:1;23314:15;23348:4;23345:1;23338:15;23365:117;23474:1;23471;23464:12;23488:117;23597:1;23594;23587:12;23611:117;23720:1;23717;23710:12;23734:117;23843:1;23840;23833:12;23857:102;23898:6;23949:2;23945:7;23940:2;23933:5;23929:14;23925:28;23915:38;;23857:102;;;:::o;23965:157::-;24105:9;24101:1;24093:6;24089:14;24082:33;23965:157;:::o;24128:225::-;24268:34;24264:1;24256:6;24252:14;24245:58;24337:8;24332:2;24324:6;24320:15;24313:33;24128:225;:::o;24359:182::-;24499:34;24495:1;24487:6;24483:14;24476:58;24359:182;:::o;24547:234::-;24687:34;24683:1;24675:6;24671:14;24664:58;24756:17;24751:2;24743:6;24739:15;24732:42;24547:234;:::o;24787:318::-;24927:34;24923:1;24915:6;24911:14;24904:58;25000:34;24995:2;24987:6;24983:15;24976:59;25073:20;25068:2;25060:6;25056:15;25049:45;24787:318;:::o;25115:187::-;25259:31;25255:1;25247:6;25243:14;25236:55;25115:187;:::o;25312:118::-;;:::o;25440:174::-;25584:18;25580:1;25572:6;25568:14;25561:42;25440:174;:::o;25624:177::-;25768:21;25764:1;25756:6;25752:14;25745:45;25624:177;:::o;25811:130::-;25888:24;25906:5;25888:24;:::i;:::-;25881:5;25878:35;25868:63;;25927:1;25924;25917:12;25868:63;25811:130;:::o;25951:124::-;26025:21;26040:5;26025:21;:::i;:::-;26018:5;26015:32;26005:60;;26061:1;26058;26051:12;26005:60;25951:124;:::o;26085:128::-;26161:23;26178:5;26161:23;:::i;:::-;26154:5;26151:34;26141:62;;26199:1;26196;26189:12;26141:62;26085:128;:::o;26223:130::-;26300:24;26318:5;26300:24;:::i;:::-;26293:5;26290:35;26280:63;;26339:1;26336;26329:12;26280:63;26223:130;:::o

Swarm Source

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