ETH Price: $3,468.59 (+2.39%)
Gas: 14 Gwei

Token

Hype Birdz (HBirdz)
 

Overview

Max Total Supply

1,067 HBirdz

Holders

85

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 HBirdz
0x01389d3e091189c95cac118ce9cecdf775725d14
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:
HypeBirdz

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 7 of 14: HypeBirdz.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721A.sol";

contract HypeBirdz is ERC721A {

    constructor(string memory baseURI) ERC721A("Hype Birdz", "HBirdz") {
        setBaseURI(baseURI);
    }

    uint256 public MAX_SUPPLY = 5000;

    uint256 private mintCount = 0;

    uint256 public price = 9900000000000000;

    string private baseTokenURI;
      
    bool public saleOpen = false;

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

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

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

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

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

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

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

        if (msg.sender != owner()) {
            require(saleOpen, "Sale is not open yet");
            require(
                _count <= 20,
                "Maximum 20 NFTs can be minted per transaction"
            );
            require(
                msg.value >= price * _count,
                "Ether sent with this transaction is not correct"
            );
        }
        mintCount += _count;      
        _safeMint(_to, _count);
        emit Minted(_count);       
    }

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

    function changeMaxsupply(uint256 _supply) public onlyOwner {
        MAX_SUPPLY = _supply;
    }
}

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 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"
        );
        if (to.isContract()) {
            revert ("Token transfer to contract address is not allowed.");
        } else {
            _approve(to, tokenId);
        }
        // _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';
import './Ownable.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, Ownable {
    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 = 1;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    //Allow all tokens to transfer to contract
    bool public allowedToContract = false;

    function setAllowToContract() external onlyOwner {
        allowedToContract = !allowedToContract;
    }

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

    // Mapping token to allow to transfer to contract
    mapping(uint256 => bool) public _transferToContract;

    function setAllowTokenToContract(uint256 _tokenId, bool _allow) external onlyOwner {
        _transferToContract[_tokenId] = _allow;
    }

    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();
        }
        if(!allowedToContract && !_transferToContract[tokenId]){
            if (to.isContract()) {
                revert ("Token transfer to contract address is not allowed.");
            } else {
                _approve(to, tokenId, owner);
            }
        } else {
            _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();
        
        if(!allowedToContract){
            if (operator.isContract()) {
                revert ("Token transfer to contract address is not allowed.");
            } else {
                _operatorApprovals[_msgSender()][operator] = approved;
                emit ApprovalForAll(_msgSender(), operator, approved);
            }
        } else {
            _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) {
        require(tokenId > 0, "Invalid TokenId");
        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(!allowedToContract && !_transferToContract[tokenId]){
            if (to.isContract()) {
                revert ("Token transfer to contract address is not allowed.");
            } else {
                return true;
            }
        } 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 8 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 9 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 10 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 11 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 12 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":[{"internalType":"string","name":"baseURI","type":"string"}],"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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_transferToContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowedToContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"changeMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"setAllowToContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_allow","type":"bool"}],"name":"setAllowTokenToContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]

6080604052600180556000600560006101000a81548160ff021916908315150217905550611388600b556000600c5566232bff5f46c000600d556000600f60006101000a81548160ff0219169083151502179055503480156200006157600080fd5b50604051620044ed380380620044ed8339818101604052810190620000879190620003f9565b6040518060400160405280600a81526020017f4879706520426972647a000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f48426972647a0000000000000000000000000000000000000000000000000000815250600062000105620001ef60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508160039080519060200190620001bb929190620002cb565b508060049080519060200190620001d4929190620002cb565b505050620001e881620001f760201b60201c565b5062000651565b600033905090565b62000207620001ef60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200022d620002a260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000286576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027d9062000471565b60405180910390fd5b80600e90805190602001906200029e929190620002cb565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002d99062000539565b90600052602060002090601f016020900481019282620002fd576000855562000349565b82601f106200031857805160ff191683800117855562000349565b8280016001018555821562000349579182015b82811115620003485782518255916020019190600101906200032b565b5b5090506200035891906200035c565b5090565b5b80821115620003775760008160009055506001016200035d565b5090565b6000620003926200038c84620004bc565b62000493565b905082815260208101848484011115620003b157620003b062000608565b5b620003be84828562000503565b509392505050565b600082601f830112620003de57620003dd62000603565b5b8151620003f08482602086016200037b565b91505092915050565b60006020828403121562000412576200041162000612565b5b600082015167ffffffffffffffff8111156200043357620004326200060d565b5b6200044184828501620003c6565b91505092915050565b600062000459602083620004f2565b9150620004668262000628565b602082019050919050565b600060208201905081810360008301526200048c816200044a565b9050919050565b60006200049f620004b2565b9050620004ad82826200056f565b919050565b6000604051905090565b600067ffffffffffffffff821115620004da57620004d9620005d4565b5b620004e58262000617565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200052357808201518184015260208101905062000506565b8381111562000533576000848401525b50505050565b600060028204905060018216806200055257607f821691505b60208210811415620005695762000568620005a5565b5b50919050565b6200057a8262000617565b810181811067ffffffffffffffff821117156200059c576200059b620005d4565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613e8c80620006616000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063a22cb46511610095578063c785d1ec11610064578063c785d1ec146106ab578063c87b56dd146106d4578063e985e9c514610711578063f2fde38b1461074e576101e3565b8063a22cb465146105f3578063a2b40d191461061c578063b88d4fde14610645578063c08051971461066e576101e3565b80638da5cb5b116100d15780638da5cb5b1461054757806395d89b411461057257806399288dbb1461059d578063a035b1fe146105c8576101e3565b806370a08231146104c5578063715018a6146105025780637ba5e62114610519578063801fe59b14610530576101e3565b80633ccfd60b1161017a5780634f6ccce7116101495780634f6ccce7146103f957806355a554651461043657806355f804b31461045f5780636352211e14610488576101e3565b80633ccfd60b1461037257806340c10f191461038957806342842e0e146103a55780634aaf78f1146103ce576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780632f745c591461030a57806332cb6b0c14610347576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613247565b610777565b60405161021c9190613596565b60405180910390f35b34801561023157600080fd5b5061023a6108c1565b60405161024791906135b1565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906132bd565b610953565b604051610284919061357b565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190613207565b6109cf565b005b3480156102c257600080fd5b506102cb610b8a565b6040516102d89190613713565b60405180910390f35b3480156102ed57600080fd5b50610308600480360381019061030391906130f1565b610b94565b005b34801561031657600080fd5b50610331600480360381019061032c9190613207565b610ba4565b60405161033e9190613713565b60405180910390f35b34801561035357600080fd5b5061035c610d7e565b6040516103699190613713565b60405180910390f35b34801561037e57600080fd5b50610387610d84565b005b6103a3600480360381019061039e9190613207565b610eaf565b005b3480156103b157600080fd5b506103cc60048036038101906103c791906130f1565b6110cb565b005b3480156103da57600080fd5b506103e36110eb565b6040516103f09190613596565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b91906132bd565b6110fe565b60405161042d9190613713565b60405180910390f35b34801561044257600080fd5b5061045d600480360381019061045891906132ea565b611243565b005b34801561046b57600080fd5b5061048660048036038101906104819190613274565b6112ee565b005b34801561049457600080fd5b506104af60048036038101906104aa91906132bd565b611384565b6040516104bc919061357b565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e79190613084565b61139a565b6040516104f99190613713565b60405180910390f35b34801561050e57600080fd5b5061051761146a565b005b34801561052557600080fd5b5061052e6115a4565b005b34801561053c57600080fd5b5061054561164c565b005b34801561055357600080fd5b5061055c6116f4565b604051610569919061357b565b60405180910390f35b34801561057e57600080fd5b5061058761171d565b60405161059491906135b1565b60405180910390f35b3480156105a957600080fd5b506105b26117af565b6040516105bf9190613596565b60405180910390f35b3480156105d457600080fd5b506105dd6117c2565b6040516105ea9190613713565b60405180910390f35b3480156105ff57600080fd5b5061061a600480360381019061061591906131c7565b6117c8565b005b34801561062857600080fd5b50610643600480360381019061063e91906132bd565b611ac0565b005b34801561065157600080fd5b5061066c60048036038101906106679190613144565b611b46565b005b34801561067a57600080fd5b50610695600480360381019061069091906132bd565b611b99565b6040516106a29190613596565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd91906132bd565b611bb9565b005b3480156106e057600080fd5b506106fb60048036038101906106f691906132bd565b611c3f565b60405161070891906135b1565b60405180910390f35b34801561071d57600080fd5b50610738600480360381019061073391906130b1565b611cde565b6040516107459190613596565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190613084565b611d72565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ba57506108b982611f1b565b5b9050919050565b6060600380546108d0906139b2565b80601f01602080910402602001604051908101604052809291908181526020018280546108fc906139b2565b80156109495780601f1061091e57610100808354040283529160200191610949565b820191906000526020600020905b81548152906001019060200180831161092c57829003601f168201915b5050505050905090565b600061095e82611f85565b610994576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109da82611384565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a42576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a61612002565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a935750610a9181610a8c612002565b611cde565b155b15610aca576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560009054906101000a900460ff16158015610b055750600a600083815260200190815260200160002060009054906101000a900460ff16155b15610b7957610b298373ffffffffffffffffffffffffffffffffffffffff1661200a565b15610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6090613633565b60405180910390fd5b610b7483838361202d565b610b85565b610b8483838361202d565b5b505050565b6000600c54905090565b610b9f8383836120df565b505050565b6000610baf8361139a565b8210610be7576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600154905060008060005b83811015610d72576000600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610cd15750610d65565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d1157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d635786841415610d5a578195505050505050610d78565b83806001019450505b505b8080600101915050610bf4565b50600080fd5b92915050565b600b5481565b610d8c612002565b73ffffffffffffffffffffffffffffffffffffffff16610daa6116f4565b73ffffffffffffffffffffffffffffffffffffffff1614610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df790613693565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e2690613566565b60006040518083038185875af1925050503d8060008114610e63576040519150601f19603f3d011682016040523d82523d6000602084013e610e68565b606091505b5050905080610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea3906136f3565b60405180910390fd5b50565b6000610eb9610b8a565b9050600b548282610eca91906137e7565b1115610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f02906136d3565b60405180910390fd5b60008211610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f45906135d3565b60405180910390fd5b610f566116f4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461106c57600f60009054906101000a900460ff16610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90613613565b60405180910390fd5b601482111561101b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611012906136b3565b60405180910390fd5b81600d54611029919061386e565b34101561106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106290613673565b60405180910390fd5b5b81600c600082825461107e91906137e7565b9250508190555061108f83836125d0565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a826040516110be9190613713565b60405180910390a1505050565b6110e683838360405180602001604052806000815250611b46565b505050565b600560009054906101000a900460ff1681565b60008060015490506000805b8281101561120b576000600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516111fd57858314156111f4578194505050505061123e565b82806001019350505b50808060010191505061110a565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61124b612002565b73ffffffffffffffffffffffffffffffffffffffff166112696116f4565b73ffffffffffffffffffffffffffffffffffffffff16146112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b690613693565b60405180910390fd5b80600a600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6112f6612002565b73ffffffffffffffffffffffffffffffffffffffff166113146116f4565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190613693565b60405180910390fd5b80600e9080519060200190611380929190612e6a565b5050565b600061138f826125ee565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611402576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611472612002565b73ffffffffffffffffffffffffffffffffffffffff166114906116f4565b73ffffffffffffffffffffffffffffffffffffffff16146114e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dd90613693565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6115ac612002565b73ffffffffffffffffffffffffffffffffffffffff166115ca6116f4565b73ffffffffffffffffffffffffffffffffffffffff1614611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161790613693565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b611654612002565b73ffffffffffffffffffffffffffffffffffffffff166116726116f4565b73ffffffffffffffffffffffffffffffffffffffff16146116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90613693565b60405180910390fd5b600560009054906101000a900460ff1615600560006101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461172c906139b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611758906139b2565b80156117a55780601f1061177a576101008083540402835291602001916117a5565b820191906000526020600020905b81548152906001019060200180831161178857829003601f168201915b5050505050905090565b600f60009054906101000a900460ff1681565b600d5481565b6117d0612002565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611835576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560009054906101000a900460ff166119b4576118688273ffffffffffffffffffffffffffffffffffffffff1661200a565b156118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f90613633565b60405180910390fd5b80600960006118b5612002565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611962612002565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119a79190613596565b60405180910390a3611abc565b80600960006119c1612002565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a6e612002565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ab39190613596565b60405180910390a35b5050565b611ac8612002565b73ffffffffffffffffffffffffffffffffffffffff16611ae66116f4565b73ffffffffffffffffffffffffffffffffffffffff1614611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390613693565b60405180910390fd5b80600d8190555050565b611b518484846120df565b611b5d8484848461286a565b611b93576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b611bc1612002565b73ffffffffffffffffffffffffffffffffffffffff16611bdf6116f4565b73ffffffffffffffffffffffffffffffffffffffff1614611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c90613693565b60405180910390fd5b80600b8190555050565b6060611c4a82611f85565b611c80576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c8a612921565b9050600081511415611cab5760405180602001604052806000815250611cd6565b80611cb5846129b3565b604051602001611cc6929190613542565b6040516020818303038152906040525b915050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d7a612002565b73ffffffffffffffffffffffffffffffffffffffff16611d986116f4565b73ffffffffffffffffffffffffffffffffffffffff1614611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de590613693565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e55906135f3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000808211611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc090613653565b60405180910390fd5b60015482108015611ffb575060066000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120ea826125ee565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612111612002565b73ffffffffffffffffffffffffffffffffffffffff1614806121445750612143826000015161213e612002565b611cde565b5b806121895750612152612002565b73ffffffffffffffffffffffffffffffffffffffff1661217184610953565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806121c2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461222b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612292576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61229f8585856001612b14565b6122af600084846000015161202d565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125605760015481101561255f5782600001516006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125c98585856001612b1a565b5050505050565b6125ea828260405180602001604052806000815250612b20565b5050565b6125f6612ef0565b6000829050600154811015612833576000600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161283157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612715578092505050612865565b5b60011561283057818060019003925050600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461282b578092505050612865565b612716565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600560009054906101000a900460ff161580156128a75750600a600084815260200190815260200160002060009054906101000a900460ff16155b15612914576128cb8473ffffffffffffffffffffffffffffffffffffffff1661200a565b1561290b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290290613633565b60405180910390fd5b60019050612919565b600190505b949350505050565b6060600e8054612930906139b2565b80601f016020809104026020016040519081016040528092919081815260200182805461295c906139b2565b80156129a95780601f1061297e576101008083540402835291602001916129a9565b820191906000526020600020905b81548152906001019060200180831161298c57829003601f168201915b5050505050905090565b606060008214156129fb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b0f565b600082905060005b60008214612a2d578080612a1690613a15565b915050600a82612a26919061383d565b9150612a03565b60008167ffffffffffffffff811115612a4957612a48613b4b565b5b6040519080825280601f01601f191660200182016040528015612a7b5781602001600182028036833780820191505090505b5090505b60008514612b0857600182612a9491906138c8565b9150600a85612aa39190613a5e565b6030612aaf91906137e7565b60f81b818381518110612ac557612ac4613b1c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b01919061383d565b9450612a7f565b8093505050505b919050565b50505050565b50505050565b612b2d8383836001612b32565b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ba0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612bdb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612be86000868387612b14565b83600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612e4d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612e015750612dff600088848861286a565b155b15612e38576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612d86565b508060018190555050612e636000868387612b1a565b5050505050565b828054612e76906139b2565b90600052602060002090601f016020900481019282612e985760008555612edf565b82601f10612eb157805160ff1916838001178555612edf565b82800160010185558215612edf579182015b82811115612ede578251825591602001919060010190612ec3565b5b509050612eec9190612f33565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f4c576000816000905550600101612f34565b5090565b6000612f63612f5e84613753565b61372e565b905082815260208101848484011115612f7f57612f7e613b7f565b5b612f8a848285613970565b509392505050565b6000612fa5612fa084613784565b61372e565b905082815260208101848484011115612fc157612fc0613b7f565b5b612fcc848285613970565b509392505050565b600081359050612fe381613dfa565b92915050565b600081359050612ff881613e11565b92915050565b60008135905061300d81613e28565b92915050565b600082601f83011261302857613027613b7a565b5b8135613038848260208601612f50565b91505092915050565b600082601f83011261305657613055613b7a565b5b8135613066848260208601612f92565b91505092915050565b60008135905061307e81613e3f565b92915050565b60006020828403121561309a57613099613b89565b5b60006130a884828501612fd4565b91505092915050565b600080604083850312156130c8576130c7613b89565b5b60006130d685828601612fd4565b92505060206130e785828601612fd4565b9150509250929050565b60008060006060848603121561310a57613109613b89565b5b600061311886828701612fd4565b935050602061312986828701612fd4565b925050604061313a8682870161306f565b9150509250925092565b6000806000806080858703121561315e5761315d613b89565b5b600061316c87828801612fd4565b945050602061317d87828801612fd4565b935050604061318e8782880161306f565b925050606085013567ffffffffffffffff8111156131af576131ae613b84565b5b6131bb87828801613013565b91505092959194509250565b600080604083850312156131de576131dd613b89565b5b60006131ec85828601612fd4565b92505060206131fd85828601612fe9565b9150509250929050565b6000806040838503121561321e5761321d613b89565b5b600061322c85828601612fd4565b925050602061323d8582860161306f565b9150509250929050565b60006020828403121561325d5761325c613b89565b5b600061326b84828501612ffe565b91505092915050565b60006020828403121561328a57613289613b89565b5b600082013567ffffffffffffffff8111156132a8576132a7613b84565b5b6132b484828501613041565b91505092915050565b6000602082840312156132d3576132d2613b89565b5b60006132e18482850161306f565b91505092915050565b6000806040838503121561330157613300613b89565b5b600061330f8582860161306f565b925050602061332085828601612fe9565b9150509250929050565b613333816138fc565b82525050565b6133428161390e565b82525050565b6000613353826137b5565b61335d81856137cb565b935061336d81856020860161397f565b61337681613b8e565b840191505092915050565b600061338c826137b5565b61339681856137dc565b93506133a681856020860161397f565b80840191505092915050565b60006133bf602e836137cb565b91506133ca82613b9f565b604082019050919050565b60006133e26026836137cb565b91506133ed82613bee565b604082019050919050565b60006134056014836137cb565b915061341082613c3d565b602082019050919050565b60006134286032836137cb565b915061343382613c66565b604082019050919050565b600061344b600f836137cb565b915061345682613cb5565b602082019050919050565b600061346e602f836137cb565b915061347982613cde565b604082019050919050565b60006134916020836137cb565b915061349c82613d2d565b602082019050919050565b60006134b4602d836137cb565b91506134bf82613d56565b604082019050919050565b60006134d76016836137cb565b91506134e282613da5565b602082019050919050565b60006134fa6000836137c0565b915061350582613dce565b600082019050919050565b600061351d6010836137cb565b915061352882613dd1565b602082019050919050565b61353c81613966565b82525050565b600061354e8285613381565b915061355a8284613381565b91508190509392505050565b6000613571826134ed565b9150819050919050565b6000602082019050613590600083018461332a565b92915050565b60006020820190506135ab6000830184613339565b92915050565b600060208201905081810360008301526135cb8184613348565b905092915050565b600060208201905081810360008301526135ec816133b2565b9050919050565b6000602082019050818103600083015261360c816133d5565b9050919050565b6000602082019050818103600083015261362c816133f8565b9050919050565b6000602082019050818103600083015261364c8161341b565b9050919050565b6000602082019050818103600083015261366c8161343e565b9050919050565b6000602082019050818103600083015261368c81613461565b9050919050565b600060208201905081810360008301526136ac81613484565b9050919050565b600060208201905081810360008301526136cc816134a7565b9050919050565b600060208201905081810360008301526136ec816134ca565b9050919050565b6000602082019050818103600083015261370c81613510565b9050919050565b60006020820190506137286000830184613533565b92915050565b6000613738613749565b905061374482826139e4565b919050565b6000604051905090565b600067ffffffffffffffff82111561376e5761376d613b4b565b5b61377782613b8e565b9050602081019050919050565b600067ffffffffffffffff82111561379f5761379e613b4b565b5b6137a882613b8e565b9050602081019050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137f282613966565b91506137fd83613966565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561383257613831613a8f565b5b828201905092915050565b600061384882613966565b915061385383613966565b92508261386357613862613abe565b5b828204905092915050565b600061387982613966565b915061388483613966565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138bd576138bc613a8f565b5b828202905092915050565b60006138d382613966565b91506138de83613966565b9250828210156138f1576138f0613a8f565b5b828203905092915050565b600061390782613946565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561399d578082015181840152602081019050613982565b838111156139ac576000848401525b50505050565b600060028204905060018216806139ca57607f821691505b602082108114156139de576139dd613aed565b5b50919050565b6139ed82613b8e565b810181811067ffffffffffffffff82111715613a0c57613a0b613b4b565b5b80604052505050565b6000613a2082613966565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a5357613a52613a8f565b5b600182019050919050565b6000613a6982613966565b9150613a7483613966565b925082613a8457613a83613abe565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f546f6b656e207472616e7366657220746f20636f6e747261637420616464726560008201527f7373206973206e6f7420616c6c6f7765642e0000000000000000000000000000602082015250565b7f496e76616c696420546f6b656e49640000000000000000000000000000000000600082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178696d756d203230204e4654732063616e206265206d696e74656420706560008201527f72207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b613e03816138fc565b8114613e0e57600080fd5b50565b613e1a8161390e565b8114613e2557600080fd5b50565b613e318161391a565b8114613e3c57600080fd5b50565b613e4881613966565b8114613e5357600080fd5b5056fea2646970667358221220d46b2b60d86bb8ea95857a811e747a8862647e108bf57d2ca5f14550f2c4488a64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806370a0823111610102578063a22cb46511610095578063c785d1ec11610064578063c785d1ec146106ab578063c87b56dd146106d4578063e985e9c514610711578063f2fde38b1461074e576101e3565b8063a22cb465146105f3578063a2b40d191461061c578063b88d4fde14610645578063c08051971461066e576101e3565b80638da5cb5b116100d15780638da5cb5b1461054757806395d89b411461057257806399288dbb1461059d578063a035b1fe146105c8576101e3565b806370a08231146104c5578063715018a6146105025780637ba5e62114610519578063801fe59b14610530576101e3565b80633ccfd60b1161017a5780634f6ccce7116101495780634f6ccce7146103f957806355a554651461043657806355f804b31461045f5780636352211e14610488576101e3565b80633ccfd60b1461037257806340c10f191461038957806342842e0e146103a55780634aaf78f1146103ce576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780632f745c591461030a57806332cb6b0c14610347576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613247565b610777565b60405161021c9190613596565b60405180910390f35b34801561023157600080fd5b5061023a6108c1565b60405161024791906135b1565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906132bd565b610953565b604051610284919061357b565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190613207565b6109cf565b005b3480156102c257600080fd5b506102cb610b8a565b6040516102d89190613713565b60405180910390f35b3480156102ed57600080fd5b50610308600480360381019061030391906130f1565b610b94565b005b34801561031657600080fd5b50610331600480360381019061032c9190613207565b610ba4565b60405161033e9190613713565b60405180910390f35b34801561035357600080fd5b5061035c610d7e565b6040516103699190613713565b60405180910390f35b34801561037e57600080fd5b50610387610d84565b005b6103a3600480360381019061039e9190613207565b610eaf565b005b3480156103b157600080fd5b506103cc60048036038101906103c791906130f1565b6110cb565b005b3480156103da57600080fd5b506103e36110eb565b6040516103f09190613596565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b91906132bd565b6110fe565b60405161042d9190613713565b60405180910390f35b34801561044257600080fd5b5061045d600480360381019061045891906132ea565b611243565b005b34801561046b57600080fd5b5061048660048036038101906104819190613274565b6112ee565b005b34801561049457600080fd5b506104af60048036038101906104aa91906132bd565b611384565b6040516104bc919061357b565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e79190613084565b61139a565b6040516104f99190613713565b60405180910390f35b34801561050e57600080fd5b5061051761146a565b005b34801561052557600080fd5b5061052e6115a4565b005b34801561053c57600080fd5b5061054561164c565b005b34801561055357600080fd5b5061055c6116f4565b604051610569919061357b565b60405180910390f35b34801561057e57600080fd5b5061058761171d565b60405161059491906135b1565b60405180910390f35b3480156105a957600080fd5b506105b26117af565b6040516105bf9190613596565b60405180910390f35b3480156105d457600080fd5b506105dd6117c2565b6040516105ea9190613713565b60405180910390f35b3480156105ff57600080fd5b5061061a600480360381019061061591906131c7565b6117c8565b005b34801561062857600080fd5b50610643600480360381019061063e91906132bd565b611ac0565b005b34801561065157600080fd5b5061066c60048036038101906106679190613144565b611b46565b005b34801561067a57600080fd5b50610695600480360381019061069091906132bd565b611b99565b6040516106a29190613596565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd91906132bd565b611bb9565b005b3480156106e057600080fd5b506106fb60048036038101906106f691906132bd565b611c3f565b60405161070891906135b1565b60405180910390f35b34801561071d57600080fd5b50610738600480360381019061073391906130b1565b611cde565b6040516107459190613596565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190613084565b611d72565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ba57506108b982611f1b565b5b9050919050565b6060600380546108d0906139b2565b80601f01602080910402602001604051908101604052809291908181526020018280546108fc906139b2565b80156109495780601f1061091e57610100808354040283529160200191610949565b820191906000526020600020905b81548152906001019060200180831161092c57829003601f168201915b5050505050905090565b600061095e82611f85565b610994576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109da82611384565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a42576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a61612002565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a935750610a9181610a8c612002565b611cde565b155b15610aca576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560009054906101000a900460ff16158015610b055750600a600083815260200190815260200160002060009054906101000a900460ff16155b15610b7957610b298373ffffffffffffffffffffffffffffffffffffffff1661200a565b15610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6090613633565b60405180910390fd5b610b7483838361202d565b610b85565b610b8483838361202d565b5b505050565b6000600c54905090565b610b9f8383836120df565b505050565b6000610baf8361139a565b8210610be7576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600154905060008060005b83811015610d72576000600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610cd15750610d65565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d1157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d635786841415610d5a578195505050505050610d78565b83806001019450505b505b8080600101915050610bf4565b50600080fd5b92915050565b600b5481565b610d8c612002565b73ffffffffffffffffffffffffffffffffffffffff16610daa6116f4565b73ffffffffffffffffffffffffffffffffffffffff1614610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df790613693565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e2690613566565b60006040518083038185875af1925050503d8060008114610e63576040519150601f19603f3d011682016040523d82523d6000602084013e610e68565b606091505b5050905080610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea3906136f3565b60405180910390fd5b50565b6000610eb9610b8a565b9050600b548282610eca91906137e7565b1115610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f02906136d3565b60405180910390fd5b60008211610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f45906135d3565b60405180910390fd5b610f566116f4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461106c57600f60009054906101000a900460ff16610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90613613565b60405180910390fd5b601482111561101b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611012906136b3565b60405180910390fd5b81600d54611029919061386e565b34101561106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106290613673565b60405180910390fd5b5b81600c600082825461107e91906137e7565b9250508190555061108f83836125d0565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a826040516110be9190613713565b60405180910390a1505050565b6110e683838360405180602001604052806000815250611b46565b505050565b600560009054906101000a900460ff1681565b60008060015490506000805b8281101561120b576000600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516111fd57858314156111f4578194505050505061123e565b82806001019350505b50808060010191505061110a565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61124b612002565b73ffffffffffffffffffffffffffffffffffffffff166112696116f4565b73ffffffffffffffffffffffffffffffffffffffff16146112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b690613693565b60405180910390fd5b80600a600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6112f6612002565b73ffffffffffffffffffffffffffffffffffffffff166113146116f4565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190613693565b60405180910390fd5b80600e9080519060200190611380929190612e6a565b5050565b600061138f826125ee565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611402576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611472612002565b73ffffffffffffffffffffffffffffffffffffffff166114906116f4565b73ffffffffffffffffffffffffffffffffffffffff16146114e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dd90613693565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6115ac612002565b73ffffffffffffffffffffffffffffffffffffffff166115ca6116f4565b73ffffffffffffffffffffffffffffffffffffffff1614611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161790613693565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b611654612002565b73ffffffffffffffffffffffffffffffffffffffff166116726116f4565b73ffffffffffffffffffffffffffffffffffffffff16146116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90613693565b60405180910390fd5b600560009054906101000a900460ff1615600560006101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461172c906139b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611758906139b2565b80156117a55780601f1061177a576101008083540402835291602001916117a5565b820191906000526020600020905b81548152906001019060200180831161178857829003601f168201915b5050505050905090565b600f60009054906101000a900460ff1681565b600d5481565b6117d0612002565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611835576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560009054906101000a900460ff166119b4576118688273ffffffffffffffffffffffffffffffffffffffff1661200a565b156118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f90613633565b60405180910390fd5b80600960006118b5612002565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611962612002565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119a79190613596565b60405180910390a3611abc565b80600960006119c1612002565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a6e612002565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ab39190613596565b60405180910390a35b5050565b611ac8612002565b73ffffffffffffffffffffffffffffffffffffffff16611ae66116f4565b73ffffffffffffffffffffffffffffffffffffffff1614611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390613693565b60405180910390fd5b80600d8190555050565b611b518484846120df565b611b5d8484848461286a565b611b93576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b611bc1612002565b73ffffffffffffffffffffffffffffffffffffffff16611bdf6116f4565b73ffffffffffffffffffffffffffffffffffffffff1614611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c90613693565b60405180910390fd5b80600b8190555050565b6060611c4a82611f85565b611c80576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c8a612921565b9050600081511415611cab5760405180602001604052806000815250611cd6565b80611cb5846129b3565b604051602001611cc6929190613542565b6040516020818303038152906040525b915050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d7a612002565b73ffffffffffffffffffffffffffffffffffffffff16611d986116f4565b73ffffffffffffffffffffffffffffffffffffffff1614611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de590613693565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e55906135f3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000808211611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc090613653565b60405180910390fd5b60015482108015611ffb575060066000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120ea826125ee565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612111612002565b73ffffffffffffffffffffffffffffffffffffffff1614806121445750612143826000015161213e612002565b611cde565b5b806121895750612152612002565b73ffffffffffffffffffffffffffffffffffffffff1661217184610953565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806121c2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461222b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612292576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61229f8585856001612b14565b6122af600084846000015161202d565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125605760015481101561255f5782600001516006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125c98585856001612b1a565b5050505050565b6125ea828260405180602001604052806000815250612b20565b5050565b6125f6612ef0565b6000829050600154811015612833576000600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161283157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612715578092505050612865565b5b60011561283057818060019003925050600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461282b578092505050612865565b612716565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600560009054906101000a900460ff161580156128a75750600a600084815260200190815260200160002060009054906101000a900460ff16155b15612914576128cb8473ffffffffffffffffffffffffffffffffffffffff1661200a565b1561290b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290290613633565b60405180910390fd5b60019050612919565b600190505b949350505050565b6060600e8054612930906139b2565b80601f016020809104026020016040519081016040528092919081815260200182805461295c906139b2565b80156129a95780601f1061297e576101008083540402835291602001916129a9565b820191906000526020600020905b81548152906001019060200180831161298c57829003601f168201915b5050505050905090565b606060008214156129fb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b0f565b600082905060005b60008214612a2d578080612a1690613a15565b915050600a82612a26919061383d565b9150612a03565b60008167ffffffffffffffff811115612a4957612a48613b4b565b5b6040519080825280601f01601f191660200182016040528015612a7b5781602001600182028036833780820191505090505b5090505b60008514612b0857600182612a9491906138c8565b9150600a85612aa39190613a5e565b6030612aaf91906137e7565b60f81b818381518110612ac557612ac4613b1c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b01919061383d565b9450612a7f565b8093505050505b919050565b50505050565b50505050565b612b2d8383836001612b32565b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ba0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612bdb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612be86000868387612b14565b83600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612e4d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612e015750612dff600088848861286a565b155b15612e38576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612d86565b508060018190555050612e636000868387612b1a565b5050505050565b828054612e76906139b2565b90600052602060002090601f016020900481019282612e985760008555612edf565b82601f10612eb157805160ff1916838001178555612edf565b82800160010185558215612edf579182015b82811115612ede578251825591602001919060010190612ec3565b5b509050612eec9190612f33565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f4c576000816000905550600101612f34565b5090565b6000612f63612f5e84613753565b61372e565b905082815260208101848484011115612f7f57612f7e613b7f565b5b612f8a848285613970565b509392505050565b6000612fa5612fa084613784565b61372e565b905082815260208101848484011115612fc157612fc0613b7f565b5b612fcc848285613970565b509392505050565b600081359050612fe381613dfa565b92915050565b600081359050612ff881613e11565b92915050565b60008135905061300d81613e28565b92915050565b600082601f83011261302857613027613b7a565b5b8135613038848260208601612f50565b91505092915050565b600082601f83011261305657613055613b7a565b5b8135613066848260208601612f92565b91505092915050565b60008135905061307e81613e3f565b92915050565b60006020828403121561309a57613099613b89565b5b60006130a884828501612fd4565b91505092915050565b600080604083850312156130c8576130c7613b89565b5b60006130d685828601612fd4565b92505060206130e785828601612fd4565b9150509250929050565b60008060006060848603121561310a57613109613b89565b5b600061311886828701612fd4565b935050602061312986828701612fd4565b925050604061313a8682870161306f565b9150509250925092565b6000806000806080858703121561315e5761315d613b89565b5b600061316c87828801612fd4565b945050602061317d87828801612fd4565b935050604061318e8782880161306f565b925050606085013567ffffffffffffffff8111156131af576131ae613b84565b5b6131bb87828801613013565b91505092959194509250565b600080604083850312156131de576131dd613b89565b5b60006131ec85828601612fd4565b92505060206131fd85828601612fe9565b9150509250929050565b6000806040838503121561321e5761321d613b89565b5b600061322c85828601612fd4565b925050602061323d8582860161306f565b9150509250929050565b60006020828403121561325d5761325c613b89565b5b600061326b84828501612ffe565b91505092915050565b60006020828403121561328a57613289613b89565b5b600082013567ffffffffffffffff8111156132a8576132a7613b84565b5b6132b484828501613041565b91505092915050565b6000602082840312156132d3576132d2613b89565b5b60006132e18482850161306f565b91505092915050565b6000806040838503121561330157613300613b89565b5b600061330f8582860161306f565b925050602061332085828601612fe9565b9150509250929050565b613333816138fc565b82525050565b6133428161390e565b82525050565b6000613353826137b5565b61335d81856137cb565b935061336d81856020860161397f565b61337681613b8e565b840191505092915050565b600061338c826137b5565b61339681856137dc565b93506133a681856020860161397f565b80840191505092915050565b60006133bf602e836137cb565b91506133ca82613b9f565b604082019050919050565b60006133e26026836137cb565b91506133ed82613bee565b604082019050919050565b60006134056014836137cb565b915061341082613c3d565b602082019050919050565b60006134286032836137cb565b915061343382613c66565b604082019050919050565b600061344b600f836137cb565b915061345682613cb5565b602082019050919050565b600061346e602f836137cb565b915061347982613cde565b604082019050919050565b60006134916020836137cb565b915061349c82613d2d565b602082019050919050565b60006134b4602d836137cb565b91506134bf82613d56565b604082019050919050565b60006134d76016836137cb565b91506134e282613da5565b602082019050919050565b60006134fa6000836137c0565b915061350582613dce565b600082019050919050565b600061351d6010836137cb565b915061352882613dd1565b602082019050919050565b61353c81613966565b82525050565b600061354e8285613381565b915061355a8284613381565b91508190509392505050565b6000613571826134ed565b9150819050919050565b6000602082019050613590600083018461332a565b92915050565b60006020820190506135ab6000830184613339565b92915050565b600060208201905081810360008301526135cb8184613348565b905092915050565b600060208201905081810360008301526135ec816133b2565b9050919050565b6000602082019050818103600083015261360c816133d5565b9050919050565b6000602082019050818103600083015261362c816133f8565b9050919050565b6000602082019050818103600083015261364c8161341b565b9050919050565b6000602082019050818103600083015261366c8161343e565b9050919050565b6000602082019050818103600083015261368c81613461565b9050919050565b600060208201905081810360008301526136ac81613484565b9050919050565b600060208201905081810360008301526136cc816134a7565b9050919050565b600060208201905081810360008301526136ec816134ca565b9050919050565b6000602082019050818103600083015261370c81613510565b9050919050565b60006020820190506137286000830184613533565b92915050565b6000613738613749565b905061374482826139e4565b919050565b6000604051905090565b600067ffffffffffffffff82111561376e5761376d613b4b565b5b61377782613b8e565b9050602081019050919050565b600067ffffffffffffffff82111561379f5761379e613b4b565b5b6137a882613b8e565b9050602081019050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137f282613966565b91506137fd83613966565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561383257613831613a8f565b5b828201905092915050565b600061384882613966565b915061385383613966565b92508261386357613862613abe565b5b828204905092915050565b600061387982613966565b915061388483613966565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138bd576138bc613a8f565b5b828202905092915050565b60006138d382613966565b91506138de83613966565b9250828210156138f1576138f0613a8f565b5b828203905092915050565b600061390782613946565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561399d578082015181840152602081019050613982565b838111156139ac576000848401525b50505050565b600060028204905060018216806139ca57607f821691505b602082108114156139de576139dd613aed565b5b50919050565b6139ed82613b8e565b810181811067ffffffffffffffff82111715613a0c57613a0b613b4b565b5b80604052505050565b6000613a2082613966565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a5357613a52613a8f565b5b600182019050919050565b6000613a6982613966565b9150613a7483613966565b925082613a8457613a83613abe565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f546f6b656e207472616e7366657220746f20636f6e747261637420616464726560008201527f7373206973206e6f7420616c6c6f7765642e0000000000000000000000000000602082015250565b7f496e76616c696420546f6b656e49640000000000000000000000000000000000600082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178696d756d203230204e4654732063616e206265206d696e74656420706560008201527f72207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b613e03816138fc565b8114613e0e57600080fd5b50565b613e1a8161390e565b8114613e2557600080fd5b50565b613e318161391a565b8114613e3c57600080fd5b50565b613e4881613966565b8114613e5357600080fd5b5056fea2646970667358221220d46b2b60d86bb8ea95857a811e747a8862647e108bf57d2ca5f14550f2c4488a64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

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

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


Deployed Bytecode Sourcemap

87:1993:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6608:372:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9218:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11018:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10284:668;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;493:97:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12256:170:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5431:1105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;239:32:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;896:182;;;;;;;;;;;;;:::i;:::-;;1086:764;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12497:185:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2639:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4418:713;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3497:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;598:101:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9027:124:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7044:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1746:148:12;;;;;;;;;;;;;:::i;:::-;;810:78:6;;;;;;;;;;;;;:::i;:::-;;2685:106:4;;;;;;;;;;;;;:::i;:::-;;1095:87:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9387:104:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;408:28:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;318:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11294:660:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;707:95:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12753:342:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3437:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1979:98:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9562:318:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12025:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2049:244:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6608:372:4;6710:4;6762:25;6747:40;;;:11;:40;;;;:105;;;;6819:33;6804:48;;;:11;:48;;;;6747:105;:172;;;;6884:35;6869:50;;;:11;:50;;;;6747:172;:225;;;;6936:36;6960:11;6936:23;:36::i;:::-;6747:225;6727:245;;6608:372;;;:::o;9218:100::-;9272:13;9305:5;9298:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9218:100;:::o;11018:204::-;11086:7;11111:16;11119:7;11111;:16::i;:::-;11106:64;;11136:34;;;;;;;;;;;;;;11106:64;11190:15;:24;11206:7;11190:24;;;;;;;;;;;;;;;;;;;;;11183:31;;11018:204;;;:::o;10284:668::-;10357:13;10373:24;10389:7;10373:15;:24::i;:::-;10357:40;;10418:5;10412:11;;:2;:11;;;10408:48;;;10432:24;;;;;;;;;;;;;;10408:48;10489:5;10473:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;10499:37;10516:5;10523:12;:10;:12::i;:::-;10499:16;:37::i;:::-;10498:38;10473:63;10469:138;;;10560:35;;;;;;;;;;;;;;10469:138;10621:17;;;;;;;;;;;10620:18;:51;;;;;10643:19;:28;10663:7;10643:28;;;;;;;;;;;;;;;;;;;;;10642:29;10620:51;10617:328;;;10691:15;:2;:13;;;:15::i;:::-;10687:186;;;10727:61;;;;;;;;;;:::i;:::-;;;;;;;;10687:186;10829:28;10838:2;10842:7;10851:5;10829:8;:28::i;:::-;10617:328;;;10905:28;10914:2;10918:7;10927:5;10905:8;:28::i;:::-;10617:328;10346:606;10284:668;;:::o;493:97:6:-;546:7;573:9;;566:16;;493:97;:::o;12256:170:4:-;12390:28;12400:4;12406:2;12410:7;12390:9;:28::i;:::-;12256:170;;;:::o;5431:1105::-;5520:7;5553:16;5563:5;5553:9;:16::i;:::-;5544:5;:25;5540:61;;5578:23;;;;;;;;;;;;;;5540:61;5612:22;5637:13;;5612:38;;5661:19;5691:25;5892:9;5887:557;5907:14;5903:1;:18;5887:557;;;5947:31;5981:11;:14;5993:1;5981:14;;;;;;;;;;;5947:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6018:9;:16;;;6014:73;;;6059:8;;;6014:73;6135:1;6109:28;;:9;:14;;;:28;;;6105:111;;6182:9;:14;;;6162:34;;6105:111;6259:5;6238:26;;:17;:26;;;6234:195;;;6308:5;6293:11;:20;6289:85;;;6349:1;6342:8;;;;;;;;;6289:85;6396:13;;;;;;;6234:195;5928:516;5887:557;5923:3;;;;;;;5887:557;;;;6520:8;;;5431:1105;;;;;:::o;239:32:6:-;;;;:::o;896:182::-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;947:12:6::1;973:10;965:24;;997:21;965:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;946:77;;;1042:7;1034:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;935:143;896:182::o:0;1086:764::-;1157:14;1174:13;:11;:13::i;:::-;1157:30;;1227:10;;1217:6;1208;:15;;;;:::i;:::-;:29;;1200:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1292:1;1283:6;:10;1275:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1375:7;:5;:7::i;:::-;1361:21;;:10;:21;;;1357:380;;1407:8;;;;;;;;;;;1399:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1491:2;1481:6;:12;;1455:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;1636:6;1628:5;;:14;;;;:::i;:::-;1615:9;:27;;1589:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;1357:380;1760:6;1747:9;;:19;;;;;;;:::i;:::-;;;;;;;;1783:22;1793:3;1798:6;1783:9;:22::i;:::-;1821:14;1828:6;1821:14;;;;;;:::i;:::-;;;;;;;;1146:704;1086:764;;:::o;12497:185:4:-;12635:39;12652:4;12658:2;12662:7;12635:39;;;;;;;;;;;;:16;:39::i;:::-;12497:185;;;:::o;2639:37::-;;;;;;;;;;;;;:::o;4418:713::-;4485:7;4505:22;4530:13;;4505:38;;4554:19;4749:9;4744:328;4764:14;4760:1;:18;4744:328;;;4804:31;4838:11;:14;4850:1;4838:14;;;;;;;;;;;4804:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4876:9;:16;;;4871:186;;4936:5;4921:11;:20;4917:85;;;4977:1;4970:8;;;;;;;;4917:85;5024:13;;;;;;;4871:186;4785:287;4780:3;;;;;;;4744:328;;;;5100:23;;;;;;;;;;;;;;4418:713;;;;:::o;3497:140::-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3623:6:4::1;3591:19;:29;3611:8;3591:29;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;3497:140:::0;;:::o;598:101:6:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;684:7:6::1;669:12;:22;;;;;;;;;;;;:::i;:::-;;598:101:::0;:::o;9027:124:4:-;9091:7;9118:20;9130:7;9118:11;:20::i;:::-;:25;;;9111:32;;9027:124;;;:::o;7044:206::-;7108:7;7149:1;7132:19;;:5;:19;;;7128:60;;;7160:28;;;;;;;;;;;;;;7128:60;7214:12;:19;7227:5;7214:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;7206:36;;7199:43;;7044:206;;;:::o;1746:148:12:-;1326:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1853:1:::1;1816:40;;1837:6;::::0;::::1;;;;;;;;1816:40;;;;;;;;;;;;1884:1;1867:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;1746:148::o:0;810:78:6:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;872:8:6::1;;;;;;;;;;;871:9;860:8;;:20;;;;;;;;;;;;;;;;;;810:78::o:0;2685:106:4:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2766:17:4::1;;;;;;;;;;;2765:18;2745:17;;:38;;;;;;;;;;;;;;;;;;2685:106::o:0;1095:87:12:-;1141:7;1168:6;;;;;;;;;;;1161:13;;1095:87;:::o;9387:104:4:-;9443:13;9476:7;9469:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9387:104;:::o;408:28:6:-;;;;;;;;;;;;;:::o;318:39::-;;;;:::o;11294:660:4:-;11397:12;:10;:12::i;:::-;11385:24;;:8;:24;;;11381:54;;;11418:17;;;;;;;;;;;;;;11381:54;11460:17;;;;;;;;;;;11456:491;;11497:21;:8;:19;;;:21::i;:::-;11493:289;;;11539:61;;;;;;;;;;:::i;:::-;;;;;;;;11493:289;11686:8;11641:18;:32;11660:12;:10;:12::i;:::-;11641:32;;;;;;;;;;;;;;;:42;11674:8;11641:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;11747:8;11718:48;;11733:12;:10;:12::i;:::-;11718:48;;;11757:8;11718:48;;;;;;:::i;:::-;;;;;;;;11456:491;;;11859:8;11814:18;:32;11833:12;:10;:12::i;:::-;11814:32;;;;;;;;;;;;;;;:42;11847:8;11814:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;11916:8;11887:48;;11902:12;:10;:12::i;:::-;11887:48;;;11926:8;11887:48;;;;;;:::i;:::-;;;;;;;;11456:491;11294:660;;:::o;707:95:6:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;785:9:6::1;777:5;:17;;;;707:95:::0;:::o;12753:342:4:-;12920:28;12930:4;12936:2;12940:7;12920:9;:28::i;:::-;12964:48;12987:4;12993:2;12997:7;13006:5;12964:22;:48::i;:::-;12959:129;;13036:40;;;;;;;;;;;;;;12959:129;12753:342;;;;:::o;3437:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;1979:98:6:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2062:7:6::1;2049:10;:20;;;;1979:98:::0;:::o;9562:318:4:-;9635:13;9666:16;9674:7;9666;:16::i;:::-;9661:59;;9691:29;;;;;;;;;;;;;;9661:59;9733:21;9757:10;:8;:10::i;:::-;9733:34;;9810:1;9791:7;9785:21;:26;;:87;;;;;;;;;;;;;;;;;9838:7;9847:18;:7;:16;:18::i;:::-;9821:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;9785:87;9778:94;;;9562:318;;;:::o;12025:164::-;12122:4;12146:18;:25;12165:5;12146:25;;;;;;;;;;;;;;;:35;12172:8;12146:35;;;;;;;;;;;;;;;;;;;;;;;;;12139:42;;12025:164;;;;:::o;2049:244:12:-;1326:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2158:1:::1;2138:22;;:8;:22;;;;2130:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2248:8;2219:38;;2240:6;::::0;::::1;;;;;;;;2219:38;;;;;;;;;;;;2277:8;2268:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;2049:244:::0;:::o;854:157:2:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;13350:194:4:-;13407:4;13442:1;13432:7;:11;13424:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;13491:13;;13481:7;:23;:55;;;;;13509:11;:20;13521:7;13509:20;;;;;;;;;;;:27;;;;;;;;;;;;13508:28;13481:55;13474:62;;13350:194;;;:::o;601:98:1:-;654:7;681:10;674:17;;601:98;:::o;1195:326:0:-;1255:4;1512:1;1490:7;:19;;;:23;1483:30;;1195:326;;;:::o;20606:196:4:-;20748:2;20721:15;:24;20737:7;20721:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20786:7;20782:2;20766:28;;20775:5;20766:28;;;;;;;;;;;;20606:196;;;:::o;16107:2112::-;16222:35;16260:20;16272:7;16260:11;:20::i;:::-;16222:58;;16293:22;16335:13;:18;;;16319:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;16370:50;16387:13;:18;;;16407:12;:10;:12::i;:::-;16370:16;:50::i;:::-;16319:101;:154;;;;16461:12;:10;:12::i;:::-;16437:36;;:20;16449:7;16437:11;:20::i;:::-;:36;;;16319:154;16293:181;;16492:17;16487:66;;16518:35;;;;;;;;;;;;;;16487:66;16590:4;16568:26;;:13;:18;;;:26;;;16564:67;;16603:28;;;;;;;;;;;;;;16564:67;16660:1;16646:16;;:2;:16;;;16642:52;;;16671:23;;;;;;;;;;;;;;16642:52;16707:43;16729:4;16735:2;16739:7;16748:1;16707:21;:43::i;:::-;16815:49;16832:1;16836:7;16845:13;:18;;;16815:8;:49::i;:::-;17190:1;17160:12;:18;17173:4;17160:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17234:1;17206:12;:16;17219:2;17206:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17280:2;17252:11;:20;17264:7;17252:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;17342:15;17297:11;:20;17309:7;17297:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;17610:19;17642:1;17632:7;:11;17610:33;;17703:1;17662:43;;:11;:24;17674:11;17662:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;17658:445;;;17887:13;;17873:11;:27;17869:219;;;17957:13;:18;;;17925:11;:24;17937:11;17925:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;18040:13;:28;;;17998:11;:24;18010:11;17998:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;17869:219;17658:445;17135:979;18150:7;18146:2;18131:27;;18140:4;18131:27;;;;;;;;;;;;18169:42;18190:4;18196:2;18200:7;18209:1;18169:20;:42::i;:::-;16211:2008;;16107:2112;;;:::o;13552:104::-;13621:27;13631:2;13635:8;13621:27;;;;;;;;;;;;:9;:27::i;:::-;13552:104;;:::o;7882:1083::-;7943:21;;:::i;:::-;7977:12;7992:7;7977:22;;8048:13;;8041:4;:20;8037:861;;;8082:31;8116:11;:17;8128:4;8116:17;;;;;;;;;;;8082:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8157:9;:16;;;8152:731;;8228:1;8202:28;;:9;:14;;;:28;;;8198:101;;8266:9;8259:16;;;;;;8198:101;8603:261;8610:4;8603:261;;;8643:6;;;;;;;;8688:11;:17;8700:4;8688:17;;;;;;;;;;;8676:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8762:1;8736:28;;:9;:14;;;:28;;;8732:109;;8804:9;8797:16;;;;;;8732:109;8603:261;;;8152:731;8063:835;8037:861;8926:31;;;;;;;;;;;;;;7882:1083;;;;:::o;21367:473::-;21522:4;21543:17;;;;;;;;;;;21542:18;:51;;;;;21565:19;:28;21585:7;21565:28;;;;;;;;;;;;;;;;;;;;;21564:29;21542:51;21539:294;;;21613:15;:2;:13;;;:15::i;:::-;21609:169;;;21649:61;;;;;;;;;;:::i;:::-;;;;;;;;21609:169;21758:4;21751:11;;;;21539:294;21817:4;21810:11;;21367:473;;;;;;;:::o;1858:113:6:-;1918:13;1951:12;1944:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1858:113;:::o;342:723:13:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;22488:159:4:-;;;;;:::o;23306:158::-;;;;;:::o;14019:163::-;14142:32;14148:2;14152:8;14162:5;14169:4;14142:5;:32::i;:::-;14019:163;;;:::o;14441:1412::-;14580:20;14603:13;;14580:36;;14645:1;14631:16;;:2;:16;;;14627:48;;;14656:19;;;;;;;;;;;;;;14627:48;14702:1;14690:8;:13;14686:44;;;14712:18;;;;;;;;;;;;;;14686:44;14743:61;14773:1;14777:2;14781:12;14795:8;14743:21;:61::i;:::-;15116:8;15081:12;:16;15094:2;15081:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15180:8;15140:12;:16;15153:2;15140:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15239:2;15206:11;:25;15218:12;15206:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;15306:15;15256:11;:25;15268:12;15256:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;15339:20;15362:12;15339:35;;15396:9;15391:328;15411:8;15407:1;:12;15391:328;;;15475:12;15471:2;15450:38;;15467:1;15450:38;;;;;;;;;;;;15511:4;:68;;;;;15520:59;15551:1;15555:2;15559:12;15573:5;15520:22;:59::i;:::-;15519:60;15511:68;15507:164;;;15611:40;;;;;;;;;;;;;;15507:164;15689:14;;;;;;;15421:3;;;;;;;15391:328;;;;15751:12;15735:13;:28;;;;15056:719;15785:60;15814:1;15818:2;15822:12;15836:8;15785:20;:60::i;:::-;14569:1284;14441:1412;;;;:::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;1281:338::-;1336:5;1385:3;1378:4;1370:6;1366:17;1362:27;1352:122;;1393:79;;:::i;:::-;1352:122;1510:6;1497:20;1535:78;1609:3;1601:6;1594:4;1586:6;1582:17;1535:78;:::i;:::-;1526:87;;1342:277;1281:338;;;;:::o;1639:340::-;1695:5;1744:3;1737:4;1729:6;1725:17;1721:27;1711:122;;1752:79;;:::i;:::-;1711:122;1869:6;1856:20;1894:79;1969:3;1961:6;1954:4;1946:6;1942:17;1894:79;:::i;:::-;1885:88;;1701:278;1639:340;;;;:::o;1985:139::-;2031:5;2069:6;2056:20;2047:29;;2085:33;2112:5;2085:33;:::i;:::-;1985:139;;;;:::o;2130:329::-;2189:6;2238:2;2226:9;2217:7;2213:23;2209:32;2206:119;;;2244:79;;:::i;:::-;2206:119;2364:1;2389:53;2434:7;2425:6;2414:9;2410:22;2389:53;:::i;:::-;2379:63;;2335:117;2130:329;;;;:::o;2465:474::-;2533:6;2541;2590:2;2578:9;2569:7;2565:23;2561:32;2558:119;;;2596:79;;:::i;:::-;2558:119;2716:1;2741:53;2786:7;2777:6;2766:9;2762:22;2741:53;:::i;:::-;2731:63;;2687:117;2843:2;2869:53;2914:7;2905:6;2894:9;2890:22;2869:53;:::i;:::-;2859:63;;2814:118;2465:474;;;;;:::o;2945:619::-;3022:6;3030;3038;3087:2;3075:9;3066:7;3062:23;3058:32;3055:119;;;3093:79;;:::i;:::-;3055:119;3213:1;3238:53;3283:7;3274:6;3263:9;3259:22;3238:53;:::i;:::-;3228:63;;3184:117;3340:2;3366:53;3411:7;3402:6;3391:9;3387:22;3366:53;:::i;:::-;3356:63;;3311:118;3468:2;3494:53;3539:7;3530:6;3519:9;3515:22;3494:53;:::i;:::-;3484:63;;3439:118;2945:619;;;;;:::o;3570:943::-;3665:6;3673;3681;3689;3738:3;3726:9;3717:7;3713:23;3709:33;3706:120;;;3745:79;;:::i;:::-;3706:120;3865:1;3890:53;3935:7;3926:6;3915:9;3911:22;3890:53;:::i;:::-;3880:63;;3836:117;3992:2;4018:53;4063:7;4054:6;4043:9;4039:22;4018:53;:::i;:::-;4008:63;;3963:118;4120:2;4146:53;4191:7;4182:6;4171:9;4167:22;4146:53;:::i;:::-;4136:63;;4091:118;4276:2;4265:9;4261:18;4248:32;4307:18;4299:6;4296:30;4293:117;;;4329:79;;:::i;:::-;4293:117;4434:62;4488:7;4479:6;4468:9;4464:22;4434:62;:::i;:::-;4424:72;;4219:287;3570:943;;;;;;;:::o;4519:468::-;4584:6;4592;4641:2;4629:9;4620:7;4616:23;4612:32;4609:119;;;4647:79;;:::i;:::-;4609:119;4767:1;4792:53;4837:7;4828:6;4817:9;4813:22;4792:53;:::i;:::-;4782:63;;4738:117;4894:2;4920:50;4962:7;4953:6;4942:9;4938:22;4920:50;:::i;:::-;4910:60;;4865:115;4519:468;;;;;:::o;4993:474::-;5061:6;5069;5118:2;5106:9;5097:7;5093:23;5089:32;5086:119;;;5124:79;;:::i;:::-;5086:119;5244:1;5269:53;5314:7;5305:6;5294:9;5290:22;5269:53;:::i;:::-;5259:63;;5215:117;5371:2;5397:53;5442:7;5433:6;5422:9;5418:22;5397:53;:::i;:::-;5387:63;;5342:118;4993:474;;;;;:::o;5473:327::-;5531:6;5580:2;5568:9;5559:7;5555:23;5551:32;5548:119;;;5586:79;;:::i;:::-;5548:119;5706:1;5731:52;5775:7;5766:6;5755:9;5751:22;5731:52;:::i;:::-;5721:62;;5677:116;5473:327;;;;:::o;5806:509::-;5875:6;5924:2;5912:9;5903:7;5899:23;5895:32;5892:119;;;5930:79;;:::i;:::-;5892:119;6078:1;6067:9;6063:17;6050:31;6108:18;6100:6;6097:30;6094:117;;;6130:79;;:::i;:::-;6094:117;6235:63;6290:7;6281:6;6270:9;6266:22;6235:63;:::i;:::-;6225:73;;6021:287;5806:509;;;;:::o;6321:329::-;6380:6;6429:2;6417:9;6408:7;6404:23;6400:32;6397:119;;;6435:79;;:::i;:::-;6397:119;6555:1;6580:53;6625:7;6616:6;6605:9;6601:22;6580:53;:::i;:::-;6570:63;;6526:117;6321:329;;;;:::o;6656:468::-;6721:6;6729;6778:2;6766:9;6757:7;6753:23;6749:32;6746:119;;;6784:79;;:::i;:::-;6746:119;6904:1;6929:53;6974:7;6965:6;6954:9;6950:22;6929:53;:::i;:::-;6919:63;;6875:117;7031:2;7057:50;7099:7;7090:6;7079:9;7075:22;7057:50;:::i;:::-;7047:60;;7002:115;6656:468;;;;;:::o;7130:118::-;7217:24;7235:5;7217:24;:::i;:::-;7212:3;7205:37;7130:118;;:::o;7254:109::-;7335:21;7350:5;7335:21;:::i;:::-;7330:3;7323:34;7254:109;;:::o;7369:364::-;7457:3;7485:39;7518:5;7485:39;:::i;:::-;7540:71;7604:6;7599:3;7540:71;:::i;:::-;7533:78;;7620:52;7665:6;7660:3;7653:4;7646:5;7642:16;7620:52;:::i;:::-;7697:29;7719:6;7697:29;:::i;:::-;7692:3;7688:39;7681:46;;7461:272;7369:364;;;;:::o;7739:377::-;7845:3;7873:39;7906:5;7873:39;:::i;:::-;7928:89;8010:6;8005:3;7928:89;:::i;:::-;7921:96;;8026:52;8071:6;8066:3;8059:4;8052:5;8048:16;8026:52;:::i;:::-;8103:6;8098:3;8094:16;8087:23;;7849:267;7739:377;;;;:::o;8122:366::-;8264:3;8285:67;8349:2;8344:3;8285:67;:::i;:::-;8278:74;;8361:93;8450:3;8361:93;:::i;:::-;8479:2;8474:3;8470:12;8463:19;;8122:366;;;:::o;8494:::-;8636:3;8657:67;8721:2;8716:3;8657:67;:::i;:::-;8650:74;;8733:93;8822:3;8733:93;:::i;:::-;8851:2;8846:3;8842:12;8835:19;;8494:366;;;:::o;8866:::-;9008:3;9029:67;9093:2;9088:3;9029:67;:::i;:::-;9022:74;;9105:93;9194:3;9105:93;:::i;:::-;9223:2;9218:3;9214:12;9207:19;;8866:366;;;:::o;9238:::-;9380:3;9401:67;9465:2;9460:3;9401:67;:::i;:::-;9394:74;;9477:93;9566:3;9477:93;:::i;:::-;9595:2;9590:3;9586:12;9579:19;;9238:366;;;:::o;9610:::-;9752:3;9773:67;9837:2;9832:3;9773:67;:::i;:::-;9766:74;;9849:93;9938:3;9849:93;:::i;:::-;9967:2;9962:3;9958:12;9951:19;;9610:366;;;:::o;9982:::-;10124:3;10145:67;10209:2;10204:3;10145:67;:::i;:::-;10138:74;;10221:93;10310:3;10221:93;:::i;:::-;10339:2;10334:3;10330:12;10323:19;;9982:366;;;:::o;10354:::-;10496:3;10517:67;10581:2;10576:3;10517:67;:::i;:::-;10510:74;;10593:93;10682:3;10593:93;:::i;:::-;10711:2;10706:3;10702:12;10695:19;;10354:366;;;:::o;10726:::-;10868:3;10889:67;10953:2;10948:3;10889:67;:::i;:::-;10882:74;;10965:93;11054:3;10965:93;:::i;:::-;11083:2;11078:3;11074:12;11067:19;;10726:366;;;:::o;11098:::-;11240:3;11261:67;11325:2;11320:3;11261:67;:::i;:::-;11254:74;;11337:93;11426:3;11337:93;:::i;:::-;11455:2;11450:3;11446:12;11439:19;;11098:366;;;:::o;11470:398::-;11629:3;11650:83;11731:1;11726:3;11650:83;:::i;:::-;11643:90;;11742:93;11831:3;11742:93;:::i;:::-;11860:1;11855:3;11851:11;11844:18;;11470:398;;;:::o;11874:366::-;12016:3;12037:67;12101:2;12096:3;12037:67;:::i;:::-;12030:74;;12113:93;12202:3;12113:93;:::i;:::-;12231:2;12226:3;12222:12;12215:19;;11874:366;;;:::o;12246:118::-;12333:24;12351:5;12333:24;:::i;:::-;12328:3;12321:37;12246:118;;:::o;12370:435::-;12550:3;12572:95;12663:3;12654:6;12572:95;:::i;:::-;12565:102;;12684:95;12775:3;12766:6;12684:95;:::i;:::-;12677:102;;12796:3;12789:10;;12370:435;;;;;:::o;12811:379::-;12995:3;13017:147;13160:3;13017:147;:::i;:::-;13010:154;;13181:3;13174:10;;12811:379;;;:::o;13196:222::-;13289:4;13327:2;13316:9;13312:18;13304:26;;13340:71;13408:1;13397:9;13393:17;13384:6;13340:71;:::i;:::-;13196:222;;;;:::o;13424:210::-;13511:4;13549:2;13538:9;13534:18;13526:26;;13562:65;13624:1;13613:9;13609:17;13600:6;13562:65;:::i;:::-;13424:210;;;;:::o;13640:313::-;13753:4;13791:2;13780:9;13776:18;13768:26;;13840:9;13834:4;13830:20;13826:1;13815:9;13811:17;13804:47;13868:78;13941:4;13932:6;13868:78;:::i;:::-;13860:86;;13640:313;;;;:::o;13959:419::-;14125:4;14163:2;14152:9;14148:18;14140:26;;14212:9;14206:4;14202:20;14198:1;14187:9;14183:17;14176:47;14240:131;14366:4;14240:131;:::i;:::-;14232:139;;13959:419;;;:::o;14384:::-;14550:4;14588:2;14577:9;14573:18;14565:26;;14637:9;14631:4;14627:20;14623:1;14612:9;14608:17;14601:47;14665:131;14791:4;14665:131;:::i;:::-;14657:139;;14384:419;;;:::o;14809:::-;14975:4;15013:2;15002:9;14998:18;14990:26;;15062:9;15056:4;15052:20;15048:1;15037:9;15033:17;15026:47;15090:131;15216:4;15090:131;:::i;:::-;15082:139;;14809:419;;;:::o;15234:::-;15400:4;15438:2;15427:9;15423:18;15415:26;;15487:9;15481:4;15477:20;15473:1;15462:9;15458:17;15451:47;15515:131;15641:4;15515:131;:::i;:::-;15507:139;;15234:419;;;:::o;15659:::-;15825:4;15863:2;15852:9;15848:18;15840:26;;15912:9;15906:4;15902:20;15898:1;15887:9;15883:17;15876:47;15940:131;16066:4;15940:131;:::i;:::-;15932:139;;15659:419;;;:::o;16084:::-;16250:4;16288:2;16277:9;16273:18;16265:26;;16337:9;16331:4;16327:20;16323:1;16312:9;16308:17;16301:47;16365:131;16491:4;16365:131;:::i;:::-;16357:139;;16084:419;;;:::o;16509:::-;16675:4;16713:2;16702:9;16698:18;16690:26;;16762:9;16756:4;16752:20;16748:1;16737:9;16733:17;16726:47;16790:131;16916:4;16790:131;:::i;:::-;16782:139;;16509:419;;;:::o;16934:::-;17100:4;17138:2;17127:9;17123:18;17115:26;;17187:9;17181:4;17177:20;17173:1;17162:9;17158:17;17151:47;17215:131;17341:4;17215:131;:::i;:::-;17207:139;;16934:419;;;:::o;17359:::-;17525:4;17563:2;17552:9;17548:18;17540:26;;17612:9;17606:4;17602:20;17598:1;17587:9;17583:17;17576:47;17640:131;17766:4;17640:131;:::i;:::-;17632:139;;17359:419;;;:::o;17784:::-;17950:4;17988:2;17977:9;17973:18;17965:26;;18037:9;18031:4;18027:20;18023:1;18012:9;18008:17;18001:47;18065:131;18191:4;18065:131;:::i;:::-;18057:139;;17784:419;;;:::o;18209:222::-;18302:4;18340:2;18329:9;18325:18;18317:26;;18353:71;18421:1;18410:9;18406:17;18397:6;18353:71;:::i;:::-;18209:222;;;;:::o;18437:129::-;18471:6;18498:20;;:::i;:::-;18488:30;;18527:33;18555:4;18547:6;18527:33;:::i;:::-;18437:129;;;:::o;18572:75::-;18605:6;18638:2;18632:9;18622:19;;18572:75;:::o;18653:307::-;18714:4;18804:18;18796:6;18793:30;18790:56;;;18826:18;;:::i;:::-;18790:56;18864:29;18886:6;18864:29;:::i;:::-;18856:37;;18948:4;18942;18938:15;18930:23;;18653:307;;;:::o;18966:308::-;19028:4;19118:18;19110:6;19107:30;19104:56;;;19140:18;;:::i;:::-;19104:56;19178:29;19200:6;19178:29;:::i;:::-;19170:37;;19262:4;19256;19252:15;19244:23;;18966:308;;;:::o;19280:99::-;19332:6;19366:5;19360:12;19350:22;;19280:99;;;:::o;19385:147::-;19486:11;19523:3;19508:18;;19385:147;;;;:::o;19538:169::-;19622:11;19656:6;19651:3;19644:19;19696:4;19691:3;19687:14;19672:29;;19538:169;;;;:::o;19713:148::-;19815:11;19852:3;19837:18;;19713:148;;;;:::o;19867:305::-;19907:3;19926:20;19944:1;19926:20;:::i;:::-;19921:25;;19960:20;19978:1;19960:20;:::i;:::-;19955:25;;20114:1;20046:66;20042:74;20039:1;20036:81;20033:107;;;20120:18;;:::i;:::-;20033:107;20164:1;20161;20157:9;20150:16;;19867:305;;;;:::o;20178:185::-;20218:1;20235:20;20253:1;20235:20;:::i;:::-;20230:25;;20269:20;20287:1;20269:20;:::i;:::-;20264:25;;20308:1;20298:35;;20313:18;;:::i;:::-;20298:35;20355:1;20352;20348:9;20343:14;;20178:185;;;;:::o;20369:348::-;20409:7;20432:20;20450:1;20432:20;:::i;:::-;20427:25;;20466:20;20484:1;20466:20;:::i;:::-;20461:25;;20654:1;20586:66;20582:74;20579:1;20576:81;20571:1;20564:9;20557:17;20553:105;20550:131;;;20661:18;;:::i;:::-;20550:131;20709:1;20706;20702:9;20691:20;;20369:348;;;;:::o;20723:191::-;20763:4;20783:20;20801:1;20783:20;:::i;:::-;20778:25;;20817:20;20835:1;20817:20;:::i;:::-;20812:25;;20856:1;20853;20850:8;20847:34;;;20861:18;;:::i;:::-;20847:34;20906:1;20903;20899:9;20891:17;;20723:191;;;;:::o;20920:96::-;20957:7;20986:24;21004:5;20986:24;:::i;:::-;20975:35;;20920:96;;;:::o;21022:90::-;21056:7;21099:5;21092:13;21085:21;21074:32;;21022:90;;;:::o;21118:149::-;21154:7;21194:66;21187:5;21183:78;21172:89;;21118:149;;;:::o;21273:126::-;21310:7;21350:42;21343:5;21339:54;21328:65;;21273:126;;;:::o;21405:77::-;21442:7;21471:5;21460:16;;21405:77;;;:::o;21488:154::-;21572:6;21567:3;21562;21549:30;21634:1;21625:6;21620:3;21616:16;21609:27;21488:154;;;:::o;21648:307::-;21716:1;21726:113;21740:6;21737:1;21734:13;21726:113;;;21825:1;21820:3;21816:11;21810:18;21806:1;21801:3;21797:11;21790:39;21762:2;21759:1;21755:10;21750:15;;21726:113;;;21857:6;21854:1;21851:13;21848:101;;;21937:1;21928:6;21923:3;21919:16;21912:27;21848:101;21697:258;21648:307;;;:::o;21961:320::-;22005:6;22042:1;22036:4;22032:12;22022:22;;22089:1;22083:4;22079:12;22110:18;22100:81;;22166:4;22158:6;22154:17;22144:27;;22100:81;22228:2;22220:6;22217:14;22197:18;22194:38;22191:84;;;22247:18;;:::i;:::-;22191:84;22012:269;21961:320;;;:::o;22287:281::-;22370:27;22392:4;22370:27;:::i;:::-;22362:6;22358:40;22500:6;22488:10;22485:22;22464:18;22452:10;22449:34;22446:62;22443:88;;;22511:18;;:::i;:::-;22443:88;22551:10;22547:2;22540:22;22330:238;22287:281;;:::o;22574:233::-;22613:3;22636:24;22654:5;22636:24;:::i;:::-;22627:33;;22682:66;22675:5;22672:77;22669:103;;;22752:18;;:::i;:::-;22669:103;22799:1;22792:5;22788:13;22781:20;;22574:233;;;:::o;22813:176::-;22845:1;22862:20;22880:1;22862:20;:::i;:::-;22857:25;;22896:20;22914:1;22896:20;:::i;:::-;22891:25;;22935:1;22925:35;;22940:18;;:::i;:::-;22925:35;22981:1;22978;22974:9;22969:14;;22813:176;;;;:::o;22995:180::-;23043:77;23040:1;23033:88;23140:4;23137:1;23130:15;23164:4;23161:1;23154:15;23181:180;23229:77;23226:1;23219:88;23326:4;23323:1;23316:15;23350:4;23347:1;23340:15;23367:180;23415:77;23412:1;23405:88;23512:4;23509:1;23502:15;23536:4;23533:1;23526:15;23553:180;23601:77;23598:1;23591:88;23698:4;23695:1;23688:15;23722:4;23719:1;23712:15;23739:180;23787:77;23784:1;23777:88;23884:4;23881:1;23874:15;23908:4;23905:1;23898:15;23925:117;24034:1;24031;24024:12;24048:117;24157:1;24154;24147:12;24171:117;24280:1;24277;24270:12;24294:117;24403:1;24400;24393:12;24417:102;24458:6;24509:2;24505:7;24500:2;24493:5;24489:14;24485:28;24475:38;;24417:102;;;:::o;24525:233::-;24665:34;24661:1;24653:6;24649:14;24642:58;24734:16;24729:2;24721:6;24717:15;24710:41;24525:233;:::o;24764:225::-;24904:34;24900:1;24892:6;24888:14;24881:58;24973:8;24968:2;24960:6;24956:15;24949:33;24764:225;:::o;24995:170::-;25135:22;25131:1;25123:6;25119:14;25112:46;24995:170;:::o;25171:237::-;25311:34;25307:1;25299:6;25295:14;25288:58;25380:20;25375:2;25367:6;25363:15;25356:45;25171:237;:::o;25414:165::-;25554:17;25550:1;25542:6;25538:14;25531:41;25414:165;:::o;25585:234::-;25725:34;25721:1;25713:6;25709:14;25702:58;25794:17;25789:2;25781:6;25777:15;25770:42;25585:234;:::o;25825:182::-;25965:34;25961:1;25953:6;25949:14;25942:58;25825:182;:::o;26013:232::-;26153:34;26149:1;26141:6;26137:14;26130:58;26222:15;26217:2;26209:6;26205:15;26198:40;26013:232;:::o;26251:172::-;26391:24;26387:1;26379:6;26375:14;26368:48;26251:172;:::o;26429:114::-;;:::o;26549:166::-;26689:18;26685:1;26677:6;26673:14;26666:42;26549:166;:::o;26721:122::-;26794:24;26812:5;26794:24;:::i;:::-;26787:5;26784:35;26774:63;;26833:1;26830;26823:12;26774:63;26721:122;:::o;26849:116::-;26919:21;26934:5;26919:21;:::i;:::-;26912:5;26909:32;26899:60;;26955:1;26952;26945:12;26899:60;26849:116;:::o;26971:120::-;27043:23;27060:5;27043:23;:::i;:::-;27036:5;27033:34;27023:62;;27081:1;27078;27071:12;27023:62;26971:120;:::o;27097:122::-;27170:24;27188:5;27170:24;:::i;:::-;27163:5;27160:35;27150:63;;27209:1;27206;27199:12;27150:63;27097:122;:::o

Swarm Source

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