ETH Price: $3,046.54 (+1.22%)
Gas: 3 Gwei

Token

Karapunks (KPUNKS)
 

Overview

Max Total Supply

1,428 KPUNKS

Holders

162

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 KPUNKS
0x5dc9ae574686f530505e1626ae8b1531cea4948b
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:
Karapunks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

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

contract Karapunks is ERC721A, Ownable {

    constructor(string memory baseURI) ERC721A("Karapunks", "KPUNKS") {
        setBaseURI(baseURI);
    }

    uint256 public constant MAX_SUPPLY = 1500;

    uint256 private mintCount = 0;

    uint256 public price = 85000000000000000;

    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 <= 10,
                "Maximum 10 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;
    }
}

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"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        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 (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

File 8 of 14: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"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":"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":"_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":[{"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"}]

60806040526001600055600060095567012dfb0cb5e88000600a556000600c60006101000a81548160ff0219169083151502179055503480156200004257600080fd5b5060405162004069380380620040698339818101604052810190620000689190620003dc565b6040518060400160405280600981526020017f4b61726170756e6b7300000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4b50554e4b5300000000000000000000000000000000000000000000000000008152508160029080519060200190620000ec929190620002ae565b50806003908051906020019062000105929190620002ae565b50505060006200011a620001d160201b60201c565b905080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001ca81620001d960201b60201c565b5062000634565b600033905090565b620001e9620001d160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200020f6200028460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000268576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025f9062000454565b60405180910390fd5b80600b908051906020019062000280929190620002ae565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002bc906200051c565b90600052602060002090601f016020900481019282620002e057600085556200032c565b82601f10620002fb57805160ff19168380011785556200032c565b828001600101855582156200032c579182015b828111156200032b5782518255916020019190600101906200030e565b5b5090506200033b91906200033f565b5090565b5b808211156200035a57600081600090555060010162000340565b5090565b6000620003756200036f846200049f565b62000476565b905082815260208101848484011115620003945762000393620005eb565b5b620003a1848285620004e6565b509392505050565b600082601f830112620003c157620003c0620005e6565b5b8151620003d38482602086016200035e565b91505092915050565b600060208284031215620003f557620003f4620005f5565b5b600082015167ffffffffffffffff811115620004165762000415620005f0565b5b6200042484828501620003a9565b91505092915050565b60006200043c602083620004d5565b915062000449826200060b565b602082019050919050565b600060208201905081810360008301526200046f816200042d565b9050919050565b60006200048262000495565b905062000490828262000552565b919050565b6000604051905090565b600067ffffffffffffffff821115620004bd57620004bc620005b7565b5b620004c882620005fa565b9050602081019050919050565b600082825260208201905092915050565b60005b8381101562000506578082015181840152602081019050620004e9565b8381111562000516576000848401525b50505050565b600060028204905060018216806200053557607f821691505b602082108114156200054c576200054b62000588565b5b50919050565b6200055d82620005fa565b810181811067ffffffffffffffff821117156200057f576200057e620005b7565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613a2580620006446000396000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec578063a035b1fe1161008a578063b88d4fde11610064578063b88d4fde14610593578063c87b56dd146105bc578063e985e9c5146105f9578063f2fde38b146106365761019c565b8063a035b1fe14610516578063a22cb46514610541578063a2b40d191461056a5761019c565b80637ba5e621116100c65780637ba5e6211461047e5780638da5cb5b1461049557806395d89b41146104c057806399288dbb146104eb5761019c565b80636352211e146103ed57806370a082311461042a578063715018a6146104675761019c565b80632f745c591161015957806340c10f191161013357806340c10f191461034257806342842e0e1461035e5780634f6ccce71461038757806355f804b3146103c45761019c565b80632f745c59146102c357806332cb6b0c146103005780633ccfd60b1461032b5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612de4565b61065f565b6040516101d59190613182565b60405180910390f35b3480156101ea57600080fd5b506101f36107a9565b604051610200919061319d565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612e87565b61083b565b60405161023d919061311b565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612da4565b6108b7565b005b34801561027b57600080fd5b506102846109c2565b60405161029191906132df565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612c8e565b6109cc565b005b3480156102cf57600080fd5b506102ea60048036038101906102e59190612da4565b6109dc565b6040516102f791906132df565b60405180910390f35b34801561030c57600080fd5b50610315610bb5565b60405161032291906132df565b60405180910390f35b34801561033757600080fd5b50610340610bbb565b005b61035c60048036038101906103579190612da4565b610ce6565b005b34801561036a57600080fd5b5061038560048036038101906103809190612c8e565b610f02565b005b34801561039357600080fd5b506103ae60048036038101906103a99190612e87565b610f22565b6040516103bb91906132df565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190612e3e565b611067565b005b3480156103f957600080fd5b50610414600480360381019061040f9190612e87565b6110fd565b604051610421919061311b565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190612c21565b611113565b60405161045e91906132df565b60405180910390f35b34801561047357600080fd5b5061047c6111e3565b005b34801561048a57600080fd5b50610493611320565b005b3480156104a157600080fd5b506104aa6113c8565b6040516104b7919061311b565b60405180910390f35b3480156104cc57600080fd5b506104d56113f2565b6040516104e2919061319d565b60405180910390f35b3480156104f757600080fd5b50610500611484565b60405161050d9190613182565b60405180910390f35b34801561052257600080fd5b5061052b611497565b60405161053891906132df565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190612d64565b61149d565b005b34801561057657600080fd5b50610591600480360381019061058c9190612e87565b611615565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190612ce1565b61169b565b005b3480156105c857600080fd5b506105e360048036038101906105de9190612e87565b6116ee565b6040516105f0919061319d565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b9190612c4e565b61178d565b60405161062d9190613182565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190612c21565b611821565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a257506107a1826119cd565b5b9050919050565b6060600280546107b89061359a565b80601f01602080910402602001604051908101604052809291908181526020018280546107e49061359a565b80156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b5050505050905090565b600061084682611a37565b61087c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c2826110fd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561092a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610949611ab4565b73ffffffffffffffffffffffffffffffffffffffff161415801561097b575061097981610974611ab4565b61178d565b155b156109b2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109bd838383611abc565b505050565b6000600954905090565b6109d7838383611b6e565b505050565b60006109e783611113565b8210610a1f576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610ba9576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610b085750610b9c565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b4857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b9a5786841415610b91578195505050505050610baf565b83806001019450505b505b8080600101915050610a2b565b50600080fd5b92915050565b6105dc81565b610bc3611ab4565b73ffffffffffffffffffffffffffffffffffffffff16610be16113c8565b73ffffffffffffffffffffffffffffffffffffffff1614610c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2e9061327f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c5d90613106565b60006040518083038185875af1925050503d8060008114610c9a576040519150601f19603f3d011682016040523d82523d6000602084013e610c9f565b606091505b5050905080610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda906132bf565b60405180910390fd5b50565b6000610cf06109c2565b90506105dc8282610d0191906133cf565b1115610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d399061329f565b60405180910390fd5b60008211610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c906131bf565b60405180910390fd5b610d8d6113c8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ea357600c60009054906101000a900460ff16610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e059061321f565b60405180910390fd5b600a821115610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e49906131ff565b60405180910390fd5b81600a54610e609190613456565b341015610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e999061325f565b60405180910390fd5b5b8160096000828254610eb591906133cf565b92505081905550610ec6838361205f565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051610ef591906132df565b60405180910390a1505050565b610f1d8383836040518060200160405280600081525061169b565b505050565b60008060005490506000805b8281101561102f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161102157858314156110185781945050505050611062565b82806001019350505b508080600101915050610f2e565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61106f611ab4565b73ffffffffffffffffffffffffffffffffffffffff1661108d6113c8565b73ffffffffffffffffffffffffffffffffffffffff16146110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da9061327f565b60405180910390fd5b80600b90805190602001906110f99291906129f2565b5050565b60006111088261207d565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561117b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6111eb611ab4565b73ffffffffffffffffffffffffffffffffffffffff166112096113c8565b73ffffffffffffffffffffffffffffffffffffffff161461125f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112569061327f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611328611ab4565b73ffffffffffffffffffffffffffffffffffffffff166113466113c8565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113939061327f565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114019061359a565b80601f016020809104026020016040519081016040528092919081815260200182805461142d9061359a565b801561147a5780601f1061144f5761010080835404028352916020019161147a565b820191906000526020600020905b81548152906001019060200180831161145d57829003601f168201915b5050505050905090565b600c60009054906101000a900460ff1681565b600a5481565b6114a5611ab4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561150a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611517611ab4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115c4611ab4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116099190613182565b60405180910390a35050565b61161d611ab4565b73ffffffffffffffffffffffffffffffffffffffff1661163b6113c8565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116889061327f565b60405180910390fd5b80600a8190555050565b6116a6848484611b6e565b6116b2848484846122f9565b6116e8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606116f982611a37565b61172f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611739612487565b905060008151141561175a5760405180602001604052806000815250611785565b8061176484612519565b6040516020016117759291906130e2565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611829611ab4565b73ffffffffffffffffffffffffffffffffffffffff166118476113c8565b73ffffffffffffffffffffffffffffffffffffffff161461189d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118949061327f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561190d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611904906131df565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000808211611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a729061323f565b60405180910390fd5b60005482108015611aad575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b798261207d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ba0611ab4565b73ffffffffffffffffffffffffffffffffffffffff161480611bd35750611bd28260000151611bcd611ab4565b61178d565b5b80611c185750611be1611ab4565b73ffffffffffffffffffffffffffffffffffffffff16611c008461083b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c51576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cba576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d21576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d2e858585600161267a565b611d3e6000848460000151611abc565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611fef57600054811015611fee5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120588585856001612680565b5050505050565b612079828260405180602001604052806000815250612686565b5050565b612085612a78565b60008290506000548110156122c2576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122c057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121a45780925050506122f4565b5b6001156122bf57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122ba5780925050506122f4565b6121a5565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600061231a8473ffffffffffffffffffffffffffffffffffffffff16612698565b1561247a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612343611ab4565b8786866040518563ffffffff1660e01b81526004016123659493929190613136565b602060405180830381600087803b15801561237f57600080fd5b505af19250505080156123b057506040513d601f19601f820116820180604052508101906123ad9190612e11565b60015b61242a573d80600081146123e0576040519150601f19603f3d011682016040523d82523d6000602084013e6123e5565b606091505b50600081511415612422576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061247f565b600190505b949350505050565b6060600b80546124969061359a565b80601f01602080910402602001604051908101604052809291908181526020018280546124c29061359a565b801561250f5780601f106124e45761010080835404028352916020019161250f565b820191906000526020600020905b8154815290600101906020018083116124f257829003601f168201915b5050505050905090565b60606000821415612561576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612675565b600082905060005b6000821461259357808061257c906135fd565b915050600a8261258c9190613425565b9150612569565b60008167ffffffffffffffff8111156125af576125ae613733565b5b6040519080825280601f01601f1916602001820160405280156125e15781602001600182028036833780820191505090505b5090505b6000851461266e576001826125fa91906134b0565b9150600a856126099190613646565b603061261591906133cf565b60f81b81838151811061262b5761262a613704565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126679190613425565b94506125e5565b8093505050505b919050565b50505050565b50505050565b61269383838360016126bb565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612728576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612763576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612770600086838761267a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156129d557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612989575061298760008884886122f9565b155b156129c0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505061290e565b5080600081905550506129eb6000868387612680565b5050505050565b8280546129fe9061359a565b90600052602060002090601f016020900481019282612a205760008555612a67565b82601f10612a3957805160ff1916838001178555612a67565b82800160010185558215612a67579182015b82811115612a66578251825591602001919060010190612a4b565b5b509050612a749190612abb565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ad4576000816000905550600101612abc565b5090565b6000612aeb612ae68461331f565b6132fa565b905082815260208101848484011115612b0757612b06613767565b5b612b12848285613558565b509392505050565b6000612b2d612b2884613350565b6132fa565b905082815260208101848484011115612b4957612b48613767565b5b612b54848285613558565b509392505050565b600081359050612b6b81613993565b92915050565b600081359050612b80816139aa565b92915050565b600081359050612b95816139c1565b92915050565b600081519050612baa816139c1565b92915050565b600082601f830112612bc557612bc4613762565b5b8135612bd5848260208601612ad8565b91505092915050565b600082601f830112612bf357612bf2613762565b5b8135612c03848260208601612b1a565b91505092915050565b600081359050612c1b816139d8565b92915050565b600060208284031215612c3757612c36613771565b5b6000612c4584828501612b5c565b91505092915050565b60008060408385031215612c6557612c64613771565b5b6000612c7385828601612b5c565b9250506020612c8485828601612b5c565b9150509250929050565b600080600060608486031215612ca757612ca6613771565b5b6000612cb586828701612b5c565b9350506020612cc686828701612b5c565b9250506040612cd786828701612c0c565b9150509250925092565b60008060008060808587031215612cfb57612cfa613771565b5b6000612d0987828801612b5c565b9450506020612d1a87828801612b5c565b9350506040612d2b87828801612c0c565b925050606085013567ffffffffffffffff811115612d4c57612d4b61376c565b5b612d5887828801612bb0565b91505092959194509250565b60008060408385031215612d7b57612d7a613771565b5b6000612d8985828601612b5c565b9250506020612d9a85828601612b71565b9150509250929050565b60008060408385031215612dbb57612dba613771565b5b6000612dc985828601612b5c565b9250506020612dda85828601612c0c565b9150509250929050565b600060208284031215612dfa57612df9613771565b5b6000612e0884828501612b86565b91505092915050565b600060208284031215612e2757612e26613771565b5b6000612e3584828501612b9b565b91505092915050565b600060208284031215612e5457612e53613771565b5b600082013567ffffffffffffffff811115612e7257612e7161376c565b5b612e7e84828501612bde565b91505092915050565b600060208284031215612e9d57612e9c613771565b5b6000612eab84828501612c0c565b91505092915050565b612ebd816134e4565b82525050565b612ecc816134f6565b82525050565b6000612edd82613381565b612ee78185613397565b9350612ef7818560208601613567565b612f0081613776565b840191505092915050565b6000612f168261338c565b612f2081856133b3565b9350612f30818560208601613567565b612f3981613776565b840191505092915050565b6000612f4f8261338c565b612f5981856133c4565b9350612f69818560208601613567565b80840191505092915050565b6000612f82602e836133b3565b9150612f8d82613787565b604082019050919050565b6000612fa56026836133b3565b9150612fb0826137d6565b604082019050919050565b6000612fc8602d836133b3565b9150612fd382613825565b604082019050919050565b6000612feb6014836133b3565b9150612ff682613874565b602082019050919050565b600061300e600f836133b3565b91506130198261389d565b602082019050919050565b6000613031602f836133b3565b915061303c826138c6565b604082019050919050565b60006130546020836133b3565b915061305f82613915565b602082019050919050565b60006130776016836133b3565b91506130828261393e565b602082019050919050565b600061309a6000836133a8565b91506130a582613967565b600082019050919050565b60006130bd6010836133b3565b91506130c88261396a565b602082019050919050565b6130dc8161354e565b82525050565b60006130ee8285612f44565b91506130fa8284612f44565b91508190509392505050565b60006131118261308d565b9150819050919050565b60006020820190506131306000830184612eb4565b92915050565b600060808201905061314b6000830187612eb4565b6131586020830186612eb4565b61316560408301856130d3565b81810360608301526131778184612ed2565b905095945050505050565b60006020820190506131976000830184612ec3565b92915050565b600060208201905081810360008301526131b78184612f0b565b905092915050565b600060208201905081810360008301526131d881612f75565b9050919050565b600060208201905081810360008301526131f881612f98565b9050919050565b6000602082019050818103600083015261321881612fbb565b9050919050565b6000602082019050818103600083015261323881612fde565b9050919050565b6000602082019050818103600083015261325881613001565b9050919050565b6000602082019050818103600083015261327881613024565b9050919050565b6000602082019050818103600083015261329881613047565b9050919050565b600060208201905081810360008301526132b88161306a565b9050919050565b600060208201905081810360008301526132d8816130b0565b9050919050565b60006020820190506132f460008301846130d3565b92915050565b6000613304613315565b905061331082826135cc565b919050565b6000604051905090565b600067ffffffffffffffff82111561333a57613339613733565b5b61334382613776565b9050602081019050919050565b600067ffffffffffffffff82111561336b5761336a613733565b5b61337482613776565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006133da8261354e565b91506133e58361354e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561341a57613419613677565b5b828201905092915050565b60006134308261354e565b915061343b8361354e565b92508261344b5761344a6136a6565b5b828204905092915050565b60006134618261354e565b915061346c8361354e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134a5576134a4613677565b5b828202905092915050565b60006134bb8261354e565b91506134c68361354e565b9250828210156134d9576134d8613677565b5b828203905092915050565b60006134ef8261352e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561358557808201518184015260208101905061356a565b83811115613594576000848401525b50505050565b600060028204905060018216806135b257607f821691505b602082108114156135c6576135c56136d5565b5b50919050565b6135d582613776565b810181811067ffffffffffffffff821117156135f4576135f3613733565b5b80604052505050565b60006136088261354e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561363b5761363a613677565b5b600182019050919050565b60006136518261354e565b915061365c8361354e565b92508261366c5761366b6136a6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d203130204e4654732063616e206265206d696e74656420706560008201527f72207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f496e76616c696420546f6b656e49640000000000000000000000000000000000600082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b61399c816134e4565b81146139a757600080fd5b50565b6139b3816134f6565b81146139be57600080fd5b50565b6139ca81613502565b81146139d557600080fd5b50565b6139e18161354e565b81146139ec57600080fd5b5056fea26469706673582212208c2e73f6b07bd60caa7a38584f8b51f4f1111874baabeb42332425fc241d0bc564736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636352211e116100ec578063a035b1fe1161008a578063b88d4fde11610064578063b88d4fde14610593578063c87b56dd146105bc578063e985e9c5146105f9578063f2fde38b146106365761019c565b8063a035b1fe14610516578063a22cb46514610541578063a2b40d191461056a5761019c565b80637ba5e621116100c65780637ba5e6211461047e5780638da5cb5b1461049557806395d89b41146104c057806399288dbb146104eb5761019c565b80636352211e146103ed57806370a082311461042a578063715018a6146104675761019c565b80632f745c591161015957806340c10f191161013357806340c10f191461034257806342842e0e1461035e5780634f6ccce71461038757806355f804b3146103c45761019c565b80632f745c59146102c357806332cb6b0c146103005780633ccfd60b1461032b5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612de4565b61065f565b6040516101d59190613182565b60405180910390f35b3480156101ea57600080fd5b506101f36107a9565b604051610200919061319d565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612e87565b61083b565b60405161023d919061311b565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612da4565b6108b7565b005b34801561027b57600080fd5b506102846109c2565b60405161029191906132df565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612c8e565b6109cc565b005b3480156102cf57600080fd5b506102ea60048036038101906102e59190612da4565b6109dc565b6040516102f791906132df565b60405180910390f35b34801561030c57600080fd5b50610315610bb5565b60405161032291906132df565b60405180910390f35b34801561033757600080fd5b50610340610bbb565b005b61035c60048036038101906103579190612da4565b610ce6565b005b34801561036a57600080fd5b5061038560048036038101906103809190612c8e565b610f02565b005b34801561039357600080fd5b506103ae60048036038101906103a99190612e87565b610f22565b6040516103bb91906132df565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190612e3e565b611067565b005b3480156103f957600080fd5b50610414600480360381019061040f9190612e87565b6110fd565b604051610421919061311b565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190612c21565b611113565b60405161045e91906132df565b60405180910390f35b34801561047357600080fd5b5061047c6111e3565b005b34801561048a57600080fd5b50610493611320565b005b3480156104a157600080fd5b506104aa6113c8565b6040516104b7919061311b565b60405180910390f35b3480156104cc57600080fd5b506104d56113f2565b6040516104e2919061319d565b60405180910390f35b3480156104f757600080fd5b50610500611484565b60405161050d9190613182565b60405180910390f35b34801561052257600080fd5b5061052b611497565b60405161053891906132df565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190612d64565b61149d565b005b34801561057657600080fd5b50610591600480360381019061058c9190612e87565b611615565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190612ce1565b61169b565b005b3480156105c857600080fd5b506105e360048036038101906105de9190612e87565b6116ee565b6040516105f0919061319d565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b9190612c4e565b61178d565b60405161062d9190613182565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190612c21565b611821565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a257506107a1826119cd565b5b9050919050565b6060600280546107b89061359a565b80601f01602080910402602001604051908101604052809291908181526020018280546107e49061359a565b80156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b5050505050905090565b600061084682611a37565b61087c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c2826110fd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561092a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610949611ab4565b73ffffffffffffffffffffffffffffffffffffffff161415801561097b575061097981610974611ab4565b61178d565b155b156109b2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109bd838383611abc565b505050565b6000600954905090565b6109d7838383611b6e565b505050565b60006109e783611113565b8210610a1f576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610ba9576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610b085750610b9c565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b4857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b9a5786841415610b91578195505050505050610baf565b83806001019450505b505b8080600101915050610a2b565b50600080fd5b92915050565b6105dc81565b610bc3611ab4565b73ffffffffffffffffffffffffffffffffffffffff16610be16113c8565b73ffffffffffffffffffffffffffffffffffffffff1614610c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2e9061327f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c5d90613106565b60006040518083038185875af1925050503d8060008114610c9a576040519150601f19603f3d011682016040523d82523d6000602084013e610c9f565b606091505b5050905080610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda906132bf565b60405180910390fd5b50565b6000610cf06109c2565b90506105dc8282610d0191906133cf565b1115610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d399061329f565b60405180910390fd5b60008211610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c906131bf565b60405180910390fd5b610d8d6113c8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ea357600c60009054906101000a900460ff16610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e059061321f565b60405180910390fd5b600a821115610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e49906131ff565b60405180910390fd5b81600a54610e609190613456565b341015610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e999061325f565b60405180910390fd5b5b8160096000828254610eb591906133cf565b92505081905550610ec6838361205f565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051610ef591906132df565b60405180910390a1505050565b610f1d8383836040518060200160405280600081525061169b565b505050565b60008060005490506000805b8281101561102f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161102157858314156110185781945050505050611062565b82806001019350505b508080600101915050610f2e565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61106f611ab4565b73ffffffffffffffffffffffffffffffffffffffff1661108d6113c8565b73ffffffffffffffffffffffffffffffffffffffff16146110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da9061327f565b60405180910390fd5b80600b90805190602001906110f99291906129f2565b5050565b60006111088261207d565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561117b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6111eb611ab4565b73ffffffffffffffffffffffffffffffffffffffff166112096113c8565b73ffffffffffffffffffffffffffffffffffffffff161461125f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112569061327f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611328611ab4565b73ffffffffffffffffffffffffffffffffffffffff166113466113c8565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113939061327f565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114019061359a565b80601f016020809104026020016040519081016040528092919081815260200182805461142d9061359a565b801561147a5780601f1061144f5761010080835404028352916020019161147a565b820191906000526020600020905b81548152906001019060200180831161145d57829003601f168201915b5050505050905090565b600c60009054906101000a900460ff1681565b600a5481565b6114a5611ab4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561150a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611517611ab4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115c4611ab4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116099190613182565b60405180910390a35050565b61161d611ab4565b73ffffffffffffffffffffffffffffffffffffffff1661163b6113c8565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116889061327f565b60405180910390fd5b80600a8190555050565b6116a6848484611b6e565b6116b2848484846122f9565b6116e8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606116f982611a37565b61172f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611739612487565b905060008151141561175a5760405180602001604052806000815250611785565b8061176484612519565b6040516020016117759291906130e2565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611829611ab4565b73ffffffffffffffffffffffffffffffffffffffff166118476113c8565b73ffffffffffffffffffffffffffffffffffffffff161461189d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118949061327f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561190d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611904906131df565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000808211611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a729061323f565b60405180910390fd5b60005482108015611aad575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b798261207d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ba0611ab4565b73ffffffffffffffffffffffffffffffffffffffff161480611bd35750611bd28260000151611bcd611ab4565b61178d565b5b80611c185750611be1611ab4565b73ffffffffffffffffffffffffffffffffffffffff16611c008461083b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c51576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cba576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d21576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d2e858585600161267a565b611d3e6000848460000151611abc565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611fef57600054811015611fee5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120588585856001612680565b5050505050565b612079828260405180602001604052806000815250612686565b5050565b612085612a78565b60008290506000548110156122c2576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122c057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121a45780925050506122f4565b5b6001156122bf57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122ba5780925050506122f4565b6121a5565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600061231a8473ffffffffffffffffffffffffffffffffffffffff16612698565b1561247a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612343611ab4565b8786866040518563ffffffff1660e01b81526004016123659493929190613136565b602060405180830381600087803b15801561237f57600080fd5b505af19250505080156123b057506040513d601f19601f820116820180604052508101906123ad9190612e11565b60015b61242a573d80600081146123e0576040519150601f19603f3d011682016040523d82523d6000602084013e6123e5565b606091505b50600081511415612422576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061247f565b600190505b949350505050565b6060600b80546124969061359a565b80601f01602080910402602001604051908101604052809291908181526020018280546124c29061359a565b801561250f5780601f106124e45761010080835404028352916020019161250f565b820191906000526020600020905b8154815290600101906020018083116124f257829003601f168201915b5050505050905090565b60606000821415612561576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612675565b600082905060005b6000821461259357808061257c906135fd565b915050600a8261258c9190613425565b9150612569565b60008167ffffffffffffffff8111156125af576125ae613733565b5b6040519080825280601f01601f1916602001820160405280156125e15781602001600182028036833780820191505090505b5090505b6000851461266e576001826125fa91906134b0565b9150600a856126099190613646565b603061261591906133cf565b60f81b81838151811061262b5761262a613704565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126679190613425565b94506125e5565b8093505050505b919050565b50505050565b50505050565b61269383838360016126bb565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612728576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612763576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612770600086838761267a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156129d557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612989575061298760008884886122f9565b155b156129c0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505061290e565b5080600081905550506129eb6000868387612680565b5050505050565b8280546129fe9061359a565b90600052602060002090601f016020900481019282612a205760008555612a67565b82601f10612a3957805160ff1916838001178555612a67565b82800160010185558215612a67579182015b82811115612a66578251825591602001919060010190612a4b565b5b509050612a749190612abb565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ad4576000816000905550600101612abc565b5090565b6000612aeb612ae68461331f565b6132fa565b905082815260208101848484011115612b0757612b06613767565b5b612b12848285613558565b509392505050565b6000612b2d612b2884613350565b6132fa565b905082815260208101848484011115612b4957612b48613767565b5b612b54848285613558565b509392505050565b600081359050612b6b81613993565b92915050565b600081359050612b80816139aa565b92915050565b600081359050612b95816139c1565b92915050565b600081519050612baa816139c1565b92915050565b600082601f830112612bc557612bc4613762565b5b8135612bd5848260208601612ad8565b91505092915050565b600082601f830112612bf357612bf2613762565b5b8135612c03848260208601612b1a565b91505092915050565b600081359050612c1b816139d8565b92915050565b600060208284031215612c3757612c36613771565b5b6000612c4584828501612b5c565b91505092915050565b60008060408385031215612c6557612c64613771565b5b6000612c7385828601612b5c565b9250506020612c8485828601612b5c565b9150509250929050565b600080600060608486031215612ca757612ca6613771565b5b6000612cb586828701612b5c565b9350506020612cc686828701612b5c565b9250506040612cd786828701612c0c565b9150509250925092565b60008060008060808587031215612cfb57612cfa613771565b5b6000612d0987828801612b5c565b9450506020612d1a87828801612b5c565b9350506040612d2b87828801612c0c565b925050606085013567ffffffffffffffff811115612d4c57612d4b61376c565b5b612d5887828801612bb0565b91505092959194509250565b60008060408385031215612d7b57612d7a613771565b5b6000612d8985828601612b5c565b9250506020612d9a85828601612b71565b9150509250929050565b60008060408385031215612dbb57612dba613771565b5b6000612dc985828601612b5c565b9250506020612dda85828601612c0c565b9150509250929050565b600060208284031215612dfa57612df9613771565b5b6000612e0884828501612b86565b91505092915050565b600060208284031215612e2757612e26613771565b5b6000612e3584828501612b9b565b91505092915050565b600060208284031215612e5457612e53613771565b5b600082013567ffffffffffffffff811115612e7257612e7161376c565b5b612e7e84828501612bde565b91505092915050565b600060208284031215612e9d57612e9c613771565b5b6000612eab84828501612c0c565b91505092915050565b612ebd816134e4565b82525050565b612ecc816134f6565b82525050565b6000612edd82613381565b612ee78185613397565b9350612ef7818560208601613567565b612f0081613776565b840191505092915050565b6000612f168261338c565b612f2081856133b3565b9350612f30818560208601613567565b612f3981613776565b840191505092915050565b6000612f4f8261338c565b612f5981856133c4565b9350612f69818560208601613567565b80840191505092915050565b6000612f82602e836133b3565b9150612f8d82613787565b604082019050919050565b6000612fa56026836133b3565b9150612fb0826137d6565b604082019050919050565b6000612fc8602d836133b3565b9150612fd382613825565b604082019050919050565b6000612feb6014836133b3565b9150612ff682613874565b602082019050919050565b600061300e600f836133b3565b91506130198261389d565b602082019050919050565b6000613031602f836133b3565b915061303c826138c6565b604082019050919050565b60006130546020836133b3565b915061305f82613915565b602082019050919050565b60006130776016836133b3565b91506130828261393e565b602082019050919050565b600061309a6000836133a8565b91506130a582613967565b600082019050919050565b60006130bd6010836133b3565b91506130c88261396a565b602082019050919050565b6130dc8161354e565b82525050565b60006130ee8285612f44565b91506130fa8284612f44565b91508190509392505050565b60006131118261308d565b9150819050919050565b60006020820190506131306000830184612eb4565b92915050565b600060808201905061314b6000830187612eb4565b6131586020830186612eb4565b61316560408301856130d3565b81810360608301526131778184612ed2565b905095945050505050565b60006020820190506131976000830184612ec3565b92915050565b600060208201905081810360008301526131b78184612f0b565b905092915050565b600060208201905081810360008301526131d881612f75565b9050919050565b600060208201905081810360008301526131f881612f98565b9050919050565b6000602082019050818103600083015261321881612fbb565b9050919050565b6000602082019050818103600083015261323881612fde565b9050919050565b6000602082019050818103600083015261325881613001565b9050919050565b6000602082019050818103600083015261327881613024565b9050919050565b6000602082019050818103600083015261329881613047565b9050919050565b600060208201905081810360008301526132b88161306a565b9050919050565b600060208201905081810360008301526132d8816130b0565b9050919050565b60006020820190506132f460008301846130d3565b92915050565b6000613304613315565b905061331082826135cc565b919050565b6000604051905090565b600067ffffffffffffffff82111561333a57613339613733565b5b61334382613776565b9050602081019050919050565b600067ffffffffffffffff82111561336b5761336a613733565b5b61337482613776565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006133da8261354e565b91506133e58361354e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561341a57613419613677565b5b828201905092915050565b60006134308261354e565b915061343b8361354e565b92508261344b5761344a6136a6565b5b828204905092915050565b60006134618261354e565b915061346c8361354e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134a5576134a4613677565b5b828202905092915050565b60006134bb8261354e565b91506134c68361354e565b9250828210156134d9576134d8613677565b5b828203905092915050565b60006134ef8261352e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561358557808201518184015260208101905061356a565b83811115613594576000848401525b50505050565b600060028204905060018216806135b257607f821691505b602082108114156135c6576135c56136d5565b5b50919050565b6135d582613776565b810181811067ffffffffffffffff821117156135f4576135f3613733565b5b80604052505050565b60006136088261354e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561363b5761363a613677565b5b600182019050919050565b60006136518261354e565b915061365c8361354e565b92508261366c5761366b6136a6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d203130204e4654732063616e206265206d696e74656420706560008201527f72207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f496e76616c696420546f6b656e49640000000000000000000000000000000000600082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b61399c816134e4565b81146139a757600080fd5b50565b6139b3816134f6565b81146139be57600080fd5b50565b6139ca81613502565b81146139d557600080fd5b50565b6139e18161354e565b81146139ec57600080fd5b5056fea26469706673582212208c2e73f6b07bd60caa7a38584f8b51f4f1111874baabeb42332425fc241d0bc564736f6c63430008070033

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

112:1905:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6103:372:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8713:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10216:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9779:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;536:97:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11073:170:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4926:1105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;272:41:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;939:182;;;;;;;;;;;;;:::i;:::-;;1129:764;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11314:185:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3913:713;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;641:101:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8522:124:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6539:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1746:148:12;;;;;;;;;;;;;:::i;:::-;;853:78:11;;;;;;;;;;;;;:::i;:::-;;1095:87:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8882:104:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;451:28:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;360:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10492:279:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;750:95:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11570:342:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9057:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10842:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2049:244:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6103:372:4;6205:4;6257:25;6242:40;;;:11;:40;;;;:105;;;;6314:33;6299:48;;;:11;:48;;;;6242:105;:172;;;;6379:35;6364:50;;;:11;:50;;;;6242:172;:225;;;;6431:36;6455:11;6431:23;:36::i;:::-;6242:225;6222:245;;6103:372;;;:::o;8713:100::-;8767:13;8800:5;8793:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8713:100;:::o;10216:204::-;10284:7;10309:16;10317:7;10309;:16::i;:::-;10304:64;;10334:34;;;;;;;;;;;;;;10304:64;10388:15;:24;10404:7;10388:24;;;;;;;;;;;;;;;;;;;;;10381:31;;10216:204;;;:::o;9779:371::-;9852:13;9868:24;9884:7;9868:15;:24::i;:::-;9852:40;;9913:5;9907:11;;:2;:11;;;9903:48;;;9927:24;;;;;;;;;;;;;;9903:48;9984:5;9968:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;9994:37;10011:5;10018:12;:10;:12::i;:::-;9994:16;:37::i;:::-;9993:38;9968:63;9964:138;;;10055:35;;;;;;;;;;;;;;9964:138;10114:28;10123:2;10127:7;10136:5;10114:8;:28::i;:::-;9841:309;9779:371;;:::o;536:97:11:-;589:7;616:9;;609:16;;536:97;:::o;11073:170:4:-;11207:28;11217:4;11223:2;11227:7;11207:9;:28::i;:::-;11073:170;;;:::o;4926:1105::-;5015:7;5048:16;5058:5;5048:9;:16::i;:::-;5039:5;:25;5035:61;;5073:23;;;;;;;;;;;;;;5035:61;5107:22;5132:13;;5107:38;;5156:19;5186:25;5387:9;5382:557;5402:14;5398:1;:18;5382:557;;;5442:31;5476:11;:14;5488:1;5476:14;;;;;;;;;;;5442:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5513:9;:16;;;5509:73;;;5554:8;;;5509:73;5630:1;5604:28;;:9;:14;;;:28;;;5600:111;;5677:9;:14;;;5657:34;;5600:111;5754:5;5733:26;;:17;:26;;;5729:195;;;5803:5;5788:11;:20;5784:85;;;5844:1;5837:8;;;;;;;;;5784:85;5891:13;;;;;;;5729:195;5423:516;5382:557;5418:3;;;;;;;5382:557;;;;6015:8;;;4926:1105;;;;;:::o;272:41:11:-;309:4;272:41;:::o;939:182::-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;990:12:11::1;1016:10;1008:24;;1040:21;1008:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;989:77;;;1085:7;1077:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;978:143;939:182::o:0;1129:764::-;1200:14;1217:13;:11;:13::i;:::-;1200:30;;309:4;1260:6;1251;:15;;;;:::i;:::-;:29;;1243:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1335:1;1326:6;:10;1318:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1418:7;:5;:7::i;:::-;1404:21;;:10;:21;;;1400:380;;1450:8;;;;;;;;;;;1442:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1534:2;1524:6;:12;;1498:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;1679:6;1671:5;;:14;;;;:::i;:::-;1658:9;:27;;1632:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;1400:380;1803:6;1790:9;;:19;;;;;;;:::i;:::-;;;;;;;;1826:22;1836:3;1841:6;1826:9;:22::i;:::-;1864:14;1871:6;1864:14;;;;;;:::i;:::-;;;;;;;;1189:704;1129:764;;:::o;11314:185:4:-;11452:39;11469:4;11475:2;11479:7;11452:39;;;;;;;;;;;;:16;:39::i;:::-;11314:185;;;:::o;3913:713::-;3980:7;4000:22;4025:13;;4000:38;;4049:19;4244:9;4239:328;4259:14;4255:1;:18;4239:328;;;4299:31;4333:11;:14;4345:1;4333:14;;;;;;;;;;;4299:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4371:9;:16;;;4366:186;;4431:5;4416:11;:20;4412:85;;;4472:1;4465:8;;;;;;;;4412:85;4519:13;;;;;;;4366:186;4280:287;4275:3;;;;;;;4239:328;;;;4595:23;;;;;;;;;;;;;;3913:713;;;;:::o;641:101:11:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;727:7:11::1;712:12;:22;;;;;;;;;;;;:::i;:::-;;641:101:::0;:::o;8522:124:4:-;8586:7;8613:20;8625:7;8613:11;:20::i;:::-;:25;;;8606:32;;8522:124;;;:::o;6539:206::-;6603:7;6644:1;6627:19;;:5;:19;;;6623:60;;;6655:28;;;;;;;;;;;;;;6623:60;6709:12;:19;6722:5;6709:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;6701:36;;6694:43;;6539: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;;;;;;;;;;;1816:40;;;;;;;;;;;;1884:1;1867:6;;:19;;;;;;;;;;;;;;;;;;1746:148::o:0;853:78:11:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;915:8:11::1;;;;;;;;;;;914:9;903:8;;:20;;;;;;;;;;;;;;;;;;853:78::o:0;1095:87:12:-;1141:7;1168:6;;;;;;;;;;;1161:13;;1095:87;:::o;8882:104:4:-;8938:13;8971:7;8964:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8882:104;:::o;451:28:11:-;;;;;;;;;;;;;:::o;360:40::-;;;;:::o;10492:279:4:-;10595:12;:10;:12::i;:::-;10583:24;;:8;:24;;;10579:54;;;10616:17;;;;;;;;;;;;;;10579:54;10691:8;10646:18;:32;10665:12;:10;:12::i;:::-;10646:32;;;;;;;;;;;;;;;:42;10679:8;10646:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10744:8;10715:48;;10730:12;:10;:12::i;:::-;10715:48;;;10754:8;10715:48;;;;;;:::i;:::-;;;;;;;;10492:279;;:::o;750:95:11:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;828:9:11::1;820:5;:17;;;;750:95:::0;:::o;11570:342:4:-;11737:28;11747:4;11753:2;11757:7;11737:9;:28::i;:::-;11781:48;11804:4;11810:2;11814:7;11823:5;11781:22;:48::i;:::-;11776:129;;11853:40;;;;;;;;;;;;;;11776:129;11570:342;;;;:::o;9057:318::-;9130:13;9161:16;9169:7;9161;:16::i;:::-;9156:59;;9186:29;;;;;;;;;;;;;;9156:59;9228:21;9252:10;:8;:10::i;:::-;9228:34;;9305:1;9286:7;9280:21;:26;;:87;;;;;;;;;;;;;;;;;9333:7;9342:18;:7;:16;:18::i;:::-;9316:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;9280:87;9273:94;;;9057:318;;;:::o;10842:164::-;10939:4;10963:18;:25;10982:5;10963:25;;;;;;;;;;;;;;;:35;10989:8;10963:35;;;;;;;;;;;;;;;;;;;;;;;;;10956:42;;10842: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;;;;;;;;;;;2219:38;;;;;;;;;;;;2277:8;2268:6;;:17;;;;;;;;;;;;;;;;;;2049:244:::0;:::o;854:157:2:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;12167:194:4:-;12224:4;12259:1;12249:7;:11;12241:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;12308:13;;12298:7;:23;:55;;;;;12326:11;:20;12338:7;12326:20;;;;;;;;;;;:27;;;;;;;;;;;;12325:28;12298:55;12291:62;;12167:194;;;:::o;601:98:1:-;654:7;681:10;674:17;;601:98;:::o;19423:196:4:-;19565:2;19538:15;:24;19554:7;19538:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19603:7;19599:2;19583:28;;19592:5;19583:28;;;;;;;;;;;;19423:196;;;:::o;14924:2112::-;15039:35;15077:20;15089:7;15077:11;:20::i;:::-;15039:58;;15110:22;15152:13;:18;;;15136:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;15187:50;15204:13;:18;;;15224:12;:10;:12::i;:::-;15187:16;:50::i;:::-;15136:101;:154;;;;15278:12;:10;:12::i;:::-;15254:36;;:20;15266:7;15254:11;:20::i;:::-;:36;;;15136:154;15110:181;;15309:17;15304:66;;15335:35;;;;;;;;;;;;;;15304:66;15407:4;15385:26;;:13;:18;;;:26;;;15381:67;;15420:28;;;;;;;;;;;;;;15381:67;15477:1;15463:16;;:2;:16;;;15459:52;;;15488:23;;;;;;;;;;;;;;15459:52;15524:43;15546:4;15552:2;15556:7;15565:1;15524:21;:43::i;:::-;15632:49;15649:1;15653:7;15662:13;:18;;;15632:8;:49::i;:::-;16007:1;15977:12;:18;15990:4;15977:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16051:1;16023:12;:16;16036:2;16023:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16097:2;16069:11;:20;16081:7;16069:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16159:15;16114:11;:20;16126:7;16114:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16427:19;16459:1;16449:7;:11;16427:33;;16520:1;16479:43;;:11;:24;16491:11;16479:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16475:445;;;16704:13;;16690:11;:27;16686:219;;;16774:13;:18;;;16742:11;:24;16754:11;16742:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;16857:13;:28;;;16815:11;:24;16827:11;16815:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;16686:219;16475:445;15952:979;16967:7;16963:2;16948:27;;16957:4;16948:27;;;;;;;;;;;;16986:42;17007:4;17013:2;17017:7;17026:1;16986:20;:42::i;:::-;15028:2008;;14924:2112;;;:::o;12369:104::-;12438:27;12448:2;12452:8;12438:27;;;;;;;;;;;;:9;:27::i;:::-;12369:104;;:::o;7377:1083::-;7438:21;;:::i;:::-;7472:12;7487:7;7472:22;;7543:13;;7536:4;:20;7532:861;;;7577:31;7611:11;:17;7623:4;7611:17;;;;;;;;;;;7577:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7652:9;:16;;;7647:731;;7723:1;7697:28;;:9;:14;;;:28;;;7693:101;;7761:9;7754:16;;;;;;7693:101;8098:261;8105:4;8098:261;;;8138:6;;;;;;;;8183:11;:17;8195:4;8183:17;;;;;;;;;;;8171:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8257:1;8231:28;;:9;:14;;;:28;;;8227:109;;8299:9;8292:16;;;;;;8227:109;8098:261;;;7647:731;7558:835;7532:861;8421:31;;;;;;;;;;;;;;7377:1083;;;;:::o;20184:790::-;20339:4;20360:15;:2;:13;;;:15::i;:::-;20356:611;;;20412:2;20396:36;;;20433:12;:10;:12::i;:::-;20447:4;20453:7;20462:5;20396:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20392:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20659:1;20642:6;:13;:18;20638:259;;;20692:40;;;;;;;;;;;;;;20638:259;20847:6;20841:13;20832:6;20828:2;20824:15;20817:38;20392:520;20529:45;;;20519:55;;;:6;:55;;;;20512:62;;;;;20356:611;20951:4;20944:11;;20184:790;;;;;;;:::o;1901:113:11:-;1961:13;1994:12;1987:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1901: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;21622:159:4:-;;;;;:::o;22440:158::-;;;;;:::o;12836:163::-;12959:32;12965:2;12969:8;12979:5;12986:4;12959:5;:32::i;:::-;12836:163;;;:::o;1195:326:0:-;1255:4;1512:1;1490:7;:19;;;:23;1483:30;;1195:326;;;:::o;13258:1412:4:-;13397:20;13420:13;;13397:36;;13462:1;13448:16;;:2;:16;;;13444:48;;;13473:19;;;;;;;;;;;;;;13444:48;13519:1;13507:8;:13;13503:44;;;13529:18;;;;;;;;;;;;;;13503:44;13560:61;13590:1;13594:2;13598:12;13612:8;13560:21;:61::i;:::-;13933:8;13898:12;:16;13911:2;13898:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13997:8;13957:12;:16;13970:2;13957:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14056:2;14023:11;:25;14035:12;14023:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;14123:15;14073:11;:25;14085:12;14073:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;14156:20;14179:12;14156:35;;14213:9;14208:328;14228:8;14224:1;:12;14208:328;;;14292:12;14288:2;14267:38;;14284:1;14267:38;;;;;;;;;;;;14328:4;:68;;;;;14337:59;14368:1;14372:2;14376:12;14390:5;14337:22;:59::i;:::-;14336:60;14328:68;14324:164;;;14428:40;;;;;;;;;;;;;;14324:164;14506:14;;;;;;;14238:3;;;;;;;14208:328;;;;14568:12;14552:13;:28;;;;13873:719;14602:60;14631:1;14635:2;14639:12;14653:8;14602:20;:60::i;:::-;13386:1284;13258: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;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:398::-;11651:3;11672:83;11753:1;11748:3;11672:83;:::i;:::-;11665:90;;11764:93;11853:3;11764:93;:::i;:::-;11882:1;11877:3;11873:11;11866:18;;11492:398;;;:::o;11896:366::-;12038:3;12059:67;12123:2;12118:3;12059:67;:::i;:::-;12052:74;;12135:93;12224:3;12135:93;:::i;:::-;12253:2;12248:3;12244:12;12237:19;;11896:366;;;:::o;12268:118::-;12355:24;12373:5;12355:24;:::i;:::-;12350:3;12343:37;12268:118;;:::o;12392:435::-;12572:3;12594:95;12685:3;12676:6;12594:95;:::i;:::-;12587:102;;12706:95;12797:3;12788:6;12706:95;:::i;:::-;12699:102;;12818:3;12811:10;;12392:435;;;;;:::o;12833:379::-;13017:3;13039:147;13182:3;13039:147;:::i;:::-;13032:154;;13203:3;13196:10;;12833:379;;;:::o;13218:222::-;13311:4;13349:2;13338:9;13334:18;13326:26;;13362:71;13430:1;13419:9;13415:17;13406:6;13362:71;:::i;:::-;13218:222;;;;:::o;13446:640::-;13641:4;13679:3;13668:9;13664:19;13656:27;;13693:71;13761:1;13750:9;13746:17;13737:6;13693:71;:::i;:::-;13774:72;13842:2;13831:9;13827:18;13818:6;13774:72;:::i;:::-;13856;13924:2;13913:9;13909:18;13900:6;13856:72;:::i;:::-;13975:9;13969:4;13965:20;13960:2;13949:9;13945:18;13938:48;14003:76;14074:4;14065:6;14003:76;:::i;:::-;13995:84;;13446:640;;;;;;;:::o;14092:210::-;14179:4;14217:2;14206:9;14202:18;14194:26;;14230:65;14292:1;14281:9;14277:17;14268:6;14230:65;:::i;:::-;14092:210;;;;:::o;14308:313::-;14421:4;14459:2;14448:9;14444:18;14436:26;;14508:9;14502:4;14498:20;14494:1;14483:9;14479:17;14472:47;14536:78;14609:4;14600:6;14536:78;:::i;:::-;14528:86;;14308:313;;;;:::o;14627:419::-;14793:4;14831:2;14820:9;14816:18;14808:26;;14880:9;14874:4;14870:20;14866:1;14855:9;14851:17;14844:47;14908:131;15034:4;14908:131;:::i;:::-;14900:139;;14627:419;;;:::o;15052:::-;15218:4;15256:2;15245:9;15241:18;15233:26;;15305:9;15299:4;15295:20;15291:1;15280:9;15276:17;15269:47;15333:131;15459:4;15333:131;:::i;:::-;15325:139;;15052:419;;;:::o;15477:::-;15643:4;15681:2;15670:9;15666:18;15658:26;;15730:9;15724:4;15720:20;15716:1;15705:9;15701:17;15694:47;15758:131;15884:4;15758:131;:::i;:::-;15750:139;;15477:419;;;:::o;15902:::-;16068:4;16106:2;16095:9;16091:18;16083:26;;16155:9;16149:4;16145:20;16141:1;16130:9;16126:17;16119:47;16183:131;16309:4;16183:131;:::i;:::-;16175:139;;15902:419;;;:::o;16327:::-;16493:4;16531:2;16520:9;16516:18;16508:26;;16580:9;16574:4;16570:20;16566:1;16555:9;16551:17;16544:47;16608:131;16734:4;16608:131;:::i;:::-;16600:139;;16327:419;;;:::o;16752:::-;16918:4;16956:2;16945:9;16941:18;16933:26;;17005:9;16999:4;16995:20;16991:1;16980:9;16976:17;16969:47;17033:131;17159:4;17033:131;:::i;:::-;17025:139;;16752:419;;;:::o;17177:::-;17343:4;17381:2;17370:9;17366:18;17358:26;;17430:9;17424:4;17420:20;17416:1;17405:9;17401:17;17394:47;17458:131;17584:4;17458:131;:::i;:::-;17450:139;;17177:419;;;:::o;17602:::-;17768:4;17806:2;17795:9;17791:18;17783:26;;17855:9;17849:4;17845:20;17841:1;17830:9;17826:17;17819:47;17883:131;18009:4;17883:131;:::i;:::-;17875:139;;17602:419;;;:::o;18027:::-;18193:4;18231:2;18220:9;18216:18;18208:26;;18280:9;18274:4;18270:20;18266:1;18255:9;18251:17;18244:47;18308:131;18434:4;18308:131;:::i;:::-;18300:139;;18027:419;;;:::o;18452:222::-;18545:4;18583:2;18572:9;18568:18;18560:26;;18596:71;18664:1;18653:9;18649:17;18640:6;18596:71;:::i;:::-;18452:222;;;;:::o;18680:129::-;18714:6;18741:20;;:::i;:::-;18731:30;;18770:33;18798:4;18790:6;18770:33;:::i;:::-;18680:129;;;:::o;18815:75::-;18848:6;18881:2;18875:9;18865:19;;18815:75;:::o;18896:307::-;18957:4;19047:18;19039:6;19036:30;19033:56;;;19069:18;;:::i;:::-;19033:56;19107:29;19129:6;19107:29;:::i;:::-;19099:37;;19191:4;19185;19181:15;19173:23;;18896:307;;;:::o;19209:308::-;19271:4;19361:18;19353:6;19350:30;19347:56;;;19383:18;;:::i;:::-;19347:56;19421:29;19443:6;19421:29;:::i;:::-;19413:37;;19505:4;19499;19495:15;19487:23;;19209:308;;;:::o;19523:98::-;19574:6;19608:5;19602:12;19592:22;;19523:98;;;:::o;19627:99::-;19679:6;19713:5;19707:12;19697:22;;19627:99;;;:::o;19732:168::-;19815:11;19849:6;19844:3;19837:19;19889:4;19884:3;19880:14;19865:29;;19732:168;;;;:::o;19906:147::-;20007:11;20044:3;20029:18;;19906:147;;;;:::o;20059:169::-;20143:11;20177:6;20172:3;20165:19;20217:4;20212:3;20208:14;20193:29;;20059:169;;;;:::o;20234:148::-;20336:11;20373:3;20358:18;;20234:148;;;;:::o;20388:305::-;20428:3;20447:20;20465:1;20447:20;:::i;:::-;20442:25;;20481:20;20499:1;20481:20;:::i;:::-;20476:25;;20635:1;20567:66;20563:74;20560:1;20557:81;20554:107;;;20641:18;;:::i;:::-;20554:107;20685:1;20682;20678:9;20671:16;;20388:305;;;;:::o;20699:185::-;20739:1;20756:20;20774:1;20756:20;:::i;:::-;20751:25;;20790:20;20808:1;20790:20;:::i;:::-;20785:25;;20829:1;20819:35;;20834:18;;:::i;:::-;20819:35;20876:1;20873;20869:9;20864:14;;20699:185;;;;:::o;20890:348::-;20930:7;20953:20;20971:1;20953:20;:::i;:::-;20948:25;;20987:20;21005:1;20987:20;:::i;:::-;20982:25;;21175:1;21107:66;21103:74;21100:1;21097:81;21092:1;21085:9;21078:17;21074:105;21071:131;;;21182:18;;:::i;:::-;21071:131;21230:1;21227;21223:9;21212:20;;20890:348;;;;:::o;21244:191::-;21284:4;21304:20;21322:1;21304:20;:::i;:::-;21299:25;;21338:20;21356:1;21338:20;:::i;:::-;21333:25;;21377:1;21374;21371:8;21368:34;;;21382:18;;:::i;:::-;21368:34;21427:1;21424;21420:9;21412:17;;21244:191;;;;:::o;21441:96::-;21478:7;21507:24;21525:5;21507:24;:::i;:::-;21496:35;;21441:96;;;:::o;21543:90::-;21577:7;21620:5;21613:13;21606:21;21595:32;;21543:90;;;:::o;21639:149::-;21675:7;21715:66;21708:5;21704:78;21693:89;;21639:149;;;:::o;21794:126::-;21831:7;21871:42;21864:5;21860:54;21849:65;;21794:126;;;:::o;21926:77::-;21963:7;21992:5;21981:16;;21926:77;;;:::o;22009:154::-;22093:6;22088:3;22083;22070:30;22155:1;22146:6;22141:3;22137:16;22130:27;22009:154;;;:::o;22169:307::-;22237:1;22247:113;22261:6;22258:1;22255:13;22247:113;;;22346:1;22341:3;22337:11;22331:18;22327:1;22322:3;22318:11;22311:39;22283:2;22280:1;22276:10;22271:15;;22247:113;;;22378:6;22375:1;22372:13;22369:101;;;22458:1;22449:6;22444:3;22440:16;22433:27;22369:101;22218:258;22169:307;;;:::o;22482:320::-;22526:6;22563:1;22557:4;22553:12;22543:22;;22610:1;22604:4;22600:12;22631:18;22621:81;;22687:4;22679:6;22675:17;22665:27;;22621:81;22749:2;22741:6;22738:14;22718:18;22715:38;22712:84;;;22768:18;;:::i;:::-;22712:84;22533:269;22482:320;;;:::o;22808:281::-;22891:27;22913:4;22891:27;:::i;:::-;22883:6;22879:40;23021:6;23009:10;23006:22;22985:18;22973:10;22970:34;22967:62;22964:88;;;23032:18;;:::i;:::-;22964:88;23072:10;23068:2;23061:22;22851:238;22808:281;;:::o;23095:233::-;23134:3;23157:24;23175:5;23157:24;:::i;:::-;23148:33;;23203:66;23196:5;23193:77;23190:103;;;23273:18;;:::i;:::-;23190:103;23320:1;23313:5;23309:13;23302:20;;23095:233;;;:::o;23334:176::-;23366:1;23383:20;23401:1;23383:20;:::i;:::-;23378:25;;23417:20;23435:1;23417:20;:::i;:::-;23412:25;;23456:1;23446:35;;23461:18;;:::i;:::-;23446:35;23502:1;23499;23495:9;23490:14;;23334:176;;;;:::o;23516:180::-;23564:77;23561:1;23554:88;23661:4;23658:1;23651:15;23685:4;23682:1;23675:15;23702:180;23750:77;23747:1;23740:88;23847:4;23844:1;23837:15;23871:4;23868:1;23861:15;23888:180;23936:77;23933:1;23926:88;24033:4;24030:1;24023:15;24057:4;24054:1;24047:15;24074:180;24122:77;24119:1;24112:88;24219:4;24216:1;24209:15;24243:4;24240:1;24233:15;24260:180;24308:77;24305:1;24298:88;24405:4;24402:1;24395:15;24429:4;24426:1;24419:15;24446:117;24555:1;24552;24545:12;24569:117;24678:1;24675;24668:12;24692:117;24801:1;24798;24791:12;24815:117;24924:1;24921;24914:12;24938:102;24979:6;25030:2;25026:7;25021:2;25014:5;25010:14;25006:28;24996:38;;24938:102;;;:::o;25046:233::-;25186:34;25182:1;25174:6;25170:14;25163:58;25255:16;25250:2;25242:6;25238:15;25231:41;25046:233;:::o;25285:225::-;25425:34;25421:1;25413:6;25409:14;25402:58;25494:8;25489:2;25481:6;25477:15;25470:33;25285:225;:::o;25516:232::-;25656:34;25652:1;25644:6;25640:14;25633:58;25725:15;25720:2;25712:6;25708:15;25701:40;25516:232;:::o;25754:170::-;25894:22;25890:1;25882:6;25878:14;25871:46;25754:170;:::o;25930:165::-;26070:17;26066:1;26058:6;26054:14;26047:41;25930:165;:::o;26101:234::-;26241:34;26237:1;26229:6;26225:14;26218:58;26310:17;26305:2;26297:6;26293:15;26286:42;26101:234;:::o;26341:182::-;26481:34;26477:1;26469:6;26465:14;26458:58;26341:182;:::o;26529:172::-;26669:24;26665:1;26657:6;26653:14;26646:48;26529:172;:::o;26707:114::-;;:::o;26827:166::-;26967:18;26963:1;26955:6;26951:14;26944:42;26827:166;:::o;26999:122::-;27072:24;27090:5;27072:24;:::i;:::-;27065:5;27062:35;27052:63;;27111:1;27108;27101:12;27052:63;26999:122;:::o;27127:116::-;27197:21;27212:5;27197:21;:::i;:::-;27190:5;27187:32;27177:60;;27233:1;27230;27223:12;27177:60;27127:116;:::o;27249:120::-;27321:23;27338:5;27321:23;:::i;:::-;27314:5;27311:34;27301:62;;27359:1;27356;27349:12;27301:62;27249:120;:::o;27375:122::-;27448:24;27466:5;27448:24;:::i;:::-;27441:5;27438:35;27428:63;;27487:1;27484;27477:12;27428:63;27375:122;:::o

Swarm Source

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