ETH Price: $3,252.15 (-0.69%)
Gas: 3 Gwei

Token

MetalootProject (MTL)
 

Overview

Max Total Supply

207 MTL

Holders

131

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
widfiretoad.eth
Balance
1 MTL
0x645c93a65946ff26331037a021c22851c8da19ac
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:
MetalootProject

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

import "./ERC721.sol";

contract MetalootProject is ERC721 {
    event Mint(address indexed from, uint256 indexed tokenId);

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    modifier onlyCollaborator() {
        bool isCollaborator = false;
        for (uint256 i; i < collaborators.length; i++) {
            if (collaborators[i].addr == msg.sender) {
                isCollaborator = true;

                break;
            }
        }

        require(
            owner() == _msgSender() || isCollaborator,
            "Ownable: caller is not the owner nor a collaborator"
        );

        _;
    }

    modifier claimStarted() {
        require(
            startClaimDate != 0 && startClaimDate <= block.timestamp,
            "You are too early"
        );

        _;
    }

    struct Collaborators {
        address addr;
        uint256 cut;
    }

    uint256 private startClaimDate = 1634572880;
    uint256 private mintPrice = 10000000000000000;
    uint256 private totalTokens = 8000;
    uint256 private totalMintedTokens = 0;
    uint256 private maxMetalootPerTransaction = 20;
    uint128 private basisPoints = 10000;
    string private baseURI =
        "https://metaloot.s3.us-west-1.amazonaws.com/";
    bool public premintingComplete = false;
    uint256 public giveawayCount = 50;

    mapping(address => uint256) private claimedMetalootPerWallet;

    uint16[] availableMetaloots;
    Collaborators[] private collaborators;

    constructor() ERC721("MetalootProject", "MTL") {}

    // ONLY OWNER

    /**
     * Sets the collaborators of the project with their cuts
     */
    function addCollaborators(Collaborators[] memory _collaborators)
        external
        onlyOwner
    {
        require(collaborators.length == 0, "Collaborators were already set");

        uint128 totalCut;
        for (uint256 i; i < _collaborators.length; i++) {
            collaborators.push(_collaborators[i]);
            totalCut += uint128(_collaborators[i].cut);
        }

        require(totalCut == basisPoints, "Total cut does not add to 100%");
    }

    // ONLY COLLABORATORS

    /**
     * @dev Allows to withdraw the Ether in the contract and split it among the collaborators
     */
    function withdraw() external onlyCollaborator {
        uint256 totalBalance = address(this).balance;

        for (uint256 i; i < collaborators.length; i++) {
            payable(collaborators[i].addr).transfer(
                mulScale(totalBalance, collaborators[i].cut, basisPoints)
            );
        }
    }

    /**
     * @dev Sets the base URI for the API that provides the NFT data.
     */
    function setBaseTokenURI(string memory _uri) external onlyCollaborator {
        baseURI = _uri;
    }

    /**
     * @dev Sets the claim price for each metaloot
     */
    function setMintPrice(uint256 _mintPrice) external onlyCollaborator {
        mintPrice = _mintPrice;
    }

    /**
     * @dev Populates the available metaloots
     */
    function addAvailableMetaloots(uint16 from, uint16 to)
        external
        onlyCollaborator
    {
        for (uint16 i = from; i <= to; i++) {
            availableMetaloots.push(i);
        }
    }

    /**
     * @dev Removes a chosen metaloot from the available list
     */
    function removeMetalootFromAvailableMetaloots(uint16 tokenId)
        external
        onlyCollaborator
    {
        for (uint16 i; i <= availableMetaloots.length; i++) {
            if (availableMetaloots[i] != tokenId) {
                continue;
            }

            availableMetaloots[i] = availableMetaloots[availableMetaloots.length - 1];
            availableMetaloots.pop();

            break;
        }
    }

    /**
    * @dev Reserve particular customized tokens for giveways
     */
    function airdropTokens(address[] memory owners, uint16[] memory tokenIds)
        external
        onlyCollaborator
    {
        for(uint16 i = 0; i < tokenIds.length; i++){
            _mint(owners[i], tokenIds[i]);

            for (uint16 j; j <= availableMetaloots.length; j++) {
                if (availableMetaloots[j] != tokenIds[i]) {
                    continue;
                }

                availableMetaloots[j] = availableMetaloots[availableMetaloots.length - 1];
                availableMetaloots.pop();

                break;
            }
        }

        totalMintedTokens += tokenIds.length;
    }

    /**
     * @dev Sets the date that users can start claiming metaloots
     */
    function setStartClaimDate(uint256 _startClaimDate)
        external
        onlyCollaborator
    {
        startClaimDate = _startClaimDate;
    }


    /**
     * @dev Checks if a metaloot is in the available list
     */
    function isMetalootAvailable(uint16 tokenId)
        external
        view
        onlyCollaborator
        returns (bool)
    {
        for (uint16 i; i < availableMetaloots.length; i++) {
            if (availableMetaloots[i] == tokenId) {
                return true;
            }
        }

        return false;
    }


    /**
     * @dev Give random metaloots to the provided address
     */
    function reserveMetaloots(address _address)
        external
        onlyCollaborator
    {
        require(availableMetaloots.length >= giveawayCount, "No metaloots left to be claimed");
        require(!premintingComplete,"Metaloots were already reserved for giveaways!");
        totalMintedTokens += giveawayCount;

        uint256[] memory tokenIds = new uint256[](giveawayCount);

        for (uint256 i; i < giveawayCount; i++) {
            tokenIds[i] = getMetalootToBeClaimed();
        }

        _batchMint(_address, tokenIds);
        premintingComplete = true;
    }

    // END ONLY COLLABORATORS

    /**
     * @dev Claim a single Metaloot
     */
    function claimMetaloot() external payable callerIsUser claimStarted {
        require(msg.value >= mintPrice, "Not enough Ether to claim a metaloot");

        require(availableMetaloots.length > 0, "No metaloots left to be claimed");

        claimedMetalootPerWallet[msg.sender]++;
        totalMintedTokens++;

        _mint(msg.sender, getMetalootToBeClaimed());
    }

    /**
     * @dev Claim up to 10 metaloots at once
     */
    function claimMetaloots(uint256 quantity)
        external
        payable
        callerIsUser
        claimStarted
    {
        require(
            msg.value >= mintPrice * quantity,
            "Not enough Ether to claim the Metaloots"
        );
        
        require(quantity <= maxMetalootPerTransaction, "You can only claim 10 Metaloots per transactions");

        require(availableMetaloots.length >= quantity, "No Metaloots left to be claimed");

        uint256[] memory tokenIds = new uint256[](quantity);

        claimedMetalootPerWallet[msg.sender] += quantity;
        totalMintedTokens += quantity;

        for (uint256 i; i < quantity; i++) {
            tokenIds[i] = getMetalootToBeClaimed();
        }

        _batchMint(msg.sender, tokenIds);
    }


    /**
     * @dev Returns the tokenId by index
     */
    function tokenByIndex(uint256 tokenId) external view returns (uint256) {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );

        return tokenId;
    }

    /**
     * @dev Returns the base URI for the tokens API.
     */
    function baseTokenURI() external view returns (string memory) {
        return baseURI;
    }

    /**
     * @dev Returns how many Metaloots are still available to be claimed
     */
    function getAvailableMetaloots() external view returns (uint256) {
        return availableMetaloots.length;
    }

    /**
     * @dev Returns the claim price
     */
    function getmintPrice() external view returns (uint256) {
        return mintPrice;
    }

    /**
     * @dev Returns the total supply
     */
    function totalSupply() external view virtual returns (uint256) {
        return totalMintedTokens;
    }

    // Private and Internal functions

    /**
     * @dev Returns a random available Metaloot to be claimed
     */
    function getMetalootToBeClaimed() private returns (uint256) {
        uint256 random = _getRandomNumber(availableMetaloots.length);
        uint256 tokenId = uint256(availableMetaloots[random]);

        availableMetaloots[random] = availableMetaloots[availableMetaloots.length - 1];
        availableMetaloots.pop();

        return tokenId;
    }

    /**
     * @dev Generates a pseudo-random number.
     */
    function _getRandomNumber(uint256 _upper) private view returns (uint256) {
        uint256 random = uint256(
            keccak256(
                abi.encodePacked(
                    availableMetaloots.length,
                    blockhash(block.number - 1),
                    block.coinbase,
                    block.difficulty,
                    msg.sender
                )
            )
        );

        return random % _upper;
    }

    /**
     * @dev See {ERC721}.
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function mulScale(
        uint256 x,
        uint256 y,
        uint128 scale
    ) internal pure returns (uint256) {
        uint256 a = x / scale;
        uint256 b = x % scale;
        uint256 c = y / scale;
        uint256 d = y % scale;

        return a * c * scale + a * d + b * c + (b * d) / scale;
    }
}

File 1 of 12: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 12: 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 12: ERC165.sol
// SPDX-License-Identifier: MIT

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 12: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";
import "./Ownable.sol";
import "./Ownable.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, Ownable {
    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) internal _owners;

    // Mapping owner address to token count
    mapping(address => uint256) internal _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}. 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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner ||
                ERC721.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
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _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 {
        //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 ||
            ERC721.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);
    }

    function _batchMint(address to, uint256[] memory tokenIds)
        internal
        virtual
    {
        require(to != address(0), "ERC721: mint to the zero address");
        _balances[to] += tokenIds.length;

        for (uint256 i; i < tokenIds.length; i++) {
            require(!_exists(tokenIds[i]), "ERC721: token already minted");

            _beforeTokenTransfer(address(0), to, tokenIds[i]);

            _owners[tokenIds[i]] = to;

            emit Transfer(address(0), to, tokenIds[i]);
        }
    }

    /**
     * @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);
    }

    /**
     * @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 of token that is not own"
        );
        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);
    }

    /**
     * @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 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(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 {}
}

File 5 of 12: 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 6 of 12: 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 7 of 12: 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 8 of 12: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 9 of 12: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 11 of 12: 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 12 of 12: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint16","name":"from","type":"uint16"},{"internalType":"uint16","name":"to","type":"uint16"}],"name":"addAvailableMetaloots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"cut","type":"uint256"}],"internalType":"struct MetalootProject.Collaborators[]","name":"_collaborators","type":"tuple[]"}],"name":"addCollaborators","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"owners","type":"address[]"},{"internalType":"uint16[]","name":"tokenIds","type":"uint16[]"}],"name":"airdropTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimMetaloot","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"claimMetaloots","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAvailableMetaloots","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getmintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveawayCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"tokenId","type":"uint16"}],"name":"isMetalootAvailable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premintingComplete","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"tokenId","type":"uint16"}],"name":"removeMetalootFromAvailableMetaloots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"reserveMetaloots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startClaimDate","type":"uint256"}],"name":"setStartClaimDate","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":"tokenId","type":"uint256"}],"name":"tokenByIndex","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"}]

63616d9a50600755662386f26fc10000600855611f406009556000600a556014600b55600c80546001600160801b03191661271017905560e0604052602c6080818152906200392c60a03980516200006091600d9160209091019062000156565b50600e805460ff191690556032600f553480156200007d57600080fd5b506040518060400160405280600f81526020016e13595d185b1bdbdd141c9bda9958dd608a1b8152506040518060400160405280600381526020016213551360ea1b8152506000620000d46200015260201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35081516200013390600190602085019062000156565b5080516200014990600290602084019062000156565b50505062000239565b3390565b8280546200016490620001fc565b90600052602060002090601f016020900481019282620001885760008555620001d3565b82601f10620001a357805160ff1916838001178555620001d3565b82800160010185558215620001d3579182015b82811115620001d3578251825591602001919060010190620001b6565b50620001e1929150620001e5565b5090565b5b80821115620001e15760008155600101620001e6565b6002810460018216806200021157607f821691505b602082108114156200023357634e487b7160e01b600052602260045260246000fd5b50919050565b6136e380620002496000396000f3fe6080604052600436106102045760003560e01c80636352211e11610118578063c0970712116100a0578063dc39cf6f1161006f578063dc39cf6f14610575578063e985e9c514610595578063e9be0f3f146105b5578063f2fde38b146105ca578063f4a0a528146105ea57610204565b8063c09707121461050d578063c87b56dd1461052d578063d547cfb71461054d578063dbbf2d601461056257610204565b80638d482354116100e75780638d4823541461048e5780638da5cb5b146104a357806395d89b41146104b8578063a22cb465146104cd578063b88d4fde146104ed57610204565b80636352211e1461041957806370a0823114610439578063715018a61461045957806385f292dc1461046e57610204565b80632344e9181161019b5780633ccfd60b1161016a5780633ccfd60b1461039c57806342842e0e146103b15780634f2466be146103d15780634f6ccce7146103d957806362a7a5a8146103f957610204565b80632344e9181461032757806323ab18f11461033c57806323b872dd1461035c57806330176e131461037c57610204565b80630955f63c116101d75780630955f63c146102b0578063095ea7b3146102d057806318160ddd146102f05780631c82573d1461031257610204565b806301ffc9a71461020957806306fdde031461023f57806307c0b43e14610261578063081812fc14610283575b600080fd5b34801561021557600080fd5b50610229610224366004612bc6565b61060a565b6040516102369190612d87565b60405180910390f35b34801561024b57600080fd5b50610254610652565b6040516102369190612d92565b34801561026d57600080fd5b5061028161027c366004612a33565b6106e4565b005b34801561028f57600080fd5b506102a361029e366004612c87565b6109e7565b6040516102369190612d36565b3480156102bc57600080fd5b506102816102cb366004612af1565b610a2a565b3480156102dc57600080fd5b506102816102eb366004612a0a565b610b80565b3480156102fc57600080fd5b50610305610c18565b60405161023691906134c5565b34801561031e57600080fd5b50610305610c1e565b34801561033357600080fd5b50610229610c24565b34801561034857600080fd5b50610281610357366004612c87565b610c2d565b34801561036857600080fd5b5061028161037736600461291c565b610cef565b34801561038857600080fd5b50610281610397366004612bfe565b610d27565b3480156103a857600080fd5b50610281610df6565b3480156103bd57600080fd5b506102816103cc36600461291c565b610f97565b610281610fb2565b3480156103e557600080fd5b506103056103f4366004612c87565b611089565b34801561040557600080fd5b50610229610414366004612c44565b6110b4565b34801561042557600080fd5b506102a3610434366004612c87565b6111fc565b34801561044557600080fd5b506103056104543660046128d0565b611231565b34801561046557600080fd5b50610281611275565b34801561047a57600080fd5b506102816104893660046128d0565b6112fe565b34801561049a57600080fd5b506103056114e1565b3480156104af57600080fd5b506102a36114e7565b3480156104c457600080fd5b506102546114f6565b3480156104d957600080fd5b506102816104e83660046129d0565b611505565b3480156104f957600080fd5b50610281610508366004612957565b6115d3565b34801561051957600080fd5b50610281610528366004612c5e565b611612565b34801561053957600080fd5b50610254610548366004612c87565b611749565b34801561055957600080fd5b506102546117cc565b610281610570366004612c87565b6117db565b34801561058157600080fd5b50610281610590366004612c44565b61198b565b3480156105a157600080fd5b506102296105b03660046128ea565b611bb5565b3480156105c157600080fd5b50610305611be3565b3480156105d657600080fd5b506102816105e53660046128d0565b611be9565b3480156105f657600080fd5b50610281610605366004612c87565b611ca9565b60006001600160e01b031982166380ac58cd60e01b148061063b57506001600160e01b03198216635b5e139f60e01b145b8061064a575061064a82611d6b565b90505b919050565b606060018054610661906135cc565b80601f016020809104026020016040519081016040528092919081815260200182805461068d906135cc565b80156106da5780601f106106af576101008083540402835291602001916106da565b820191906000526020600020905b8154815290600101906020018083116106bd57829003601f168201915b5050505050905090565b6000805b60125481101561075857336001600160a01b03166012828154811061071d57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b031614156107465760019150610758565b8061075081613623565b9150506106e8565b50610761611d84565b6001600160a01b03166107726114e7565b6001600160a01b031614806107845750805b6107a95760405162461bcd60e51b81526004016107a09061332e565b60405180910390fd5b60005b82518161ffff1610156109c95761081d848261ffff16815181106107e057634e487b7160e01b600052603260045260246000fd5b6020026020010151848361ffff168151811061080c57634e487b7160e01b600052603260045260246000fd5b602002602001015161ffff16611d88565b60005b60115461ffff8216116109b657838261ffff168151811061085157634e487b7160e01b600052603260045260246000fd5b602002602001015161ffff1660118261ffff168154811061088257634e487b7160e01b600052603260045260246000fd5b60009182526020909120601082040154600f9091166002026101000a900461ffff16146108ae576109a4565b601180546108be90600190613589565b815481106108dc57634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1660118261ffff168154811061092557634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550601180548061097357634e487b7160e01b600052603160045260246000fd5b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a021916905590556109b6565b806109ae81613601565b915050610820565b50806109c181613601565b9150506107ac565b508151600a60008282546109dd919061353e565b9091555050505050565b60006109f282611e67565b610a0e5760405162461bcd60e51b81526004016107a0906131c7565b506000908152600560205260409020546001600160a01b031690565b610a32611d84565b6001600160a01b0316610a436114e7565b6001600160a01b031614610a695760405162461bcd60e51b81526004016107a090613213565b60125415610a895760405162461bcd60e51b81526004016107a090612e74565b6000805b8251811015610b4e576012838281518110610ab857634e487b7160e01b600052603260045260246000fd5b602090810291909101810151825460018082018555600094855293839020825160029092020180546001600160a01b0319166001600160a01b039092169190911781559101519101558251839082908110610b2357634e487b7160e01b600052603260045260246000fd5b60200260200101516020015182610b3a919061351c565b915080610b4681613623565b915050610a8d565b50600c546001600160801b03828116911614610b7c5760405162461bcd60e51b81526004016107a090612fbd565b5050565b6000610b8b826111fc565b9050806001600160a01b0316836001600160a01b03161415610bbf5760405162461bcd60e51b81526004016107a090613381565b806001600160a01b0316610bd1611d84565b6001600160a01b03161480610bed5750610bed816105b0611d84565b610c095760405162461bcd60e51b81526004016107a090613077565b610c138383611e84565b505050565b600a5490565b60115490565b600e5460ff1681565b6000805b601254811015610ca157336001600160a01b031660128281548110610c6657634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610c8f5760019150610ca1565b80610c9981613623565b915050610c31565b50610caa611d84565b6001600160a01b0316610cbb6114e7565b6001600160a01b03161480610ccd5750805b610ce95760405162461bcd60e51b81526004016107a09061332e565b50600755565b610d00610cfa611d84565b82611ef2565b610d1c5760405162461bcd60e51b81526004016107a09061343d565b610c13838383611f77565b6000805b601254811015610d9b57336001600160a01b031660128281548110610d6057634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610d895760019150610d9b565b80610d9381613623565b915050610d2b565b50610da4611d84565b6001600160a01b0316610db56114e7565b6001600160a01b03161480610dc75750805b610de35760405162461bcd60e51b81526004016107a09061332e565b8151610c1390600d90602085019061274c565b6000805b601254811015610e6a57336001600160a01b031660128281548110610e2f57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610e585760019150610e6a565b80610e6281613623565b915050610dfa565b50610e73611d84565b6001600160a01b0316610e846114e7565b6001600160a01b03161480610e965750805b610eb25760405162461bcd60e51b81526004016107a09061332e565b4760005b601254811015610c135760128181548110610ee157634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020160000160009054906101000a90046001600160a01b03166001600160a01b03166108fc610f5c8460128581548110610f3757634e487b7160e01b600052603260045260246000fd5b6000918252602090912060016002909202010154600c546001600160801b03166120a4565b6040518115909202916000818181858888f19350505050158015610f84573d6000803e3d6000fd5b5080610f8f81613623565b915050610eb6565b610c13838383604051806020016040528060008152506115d3565b323314610fd15760405162461bcd60e51b81526004016107a090613040565b60075415801590610fe457504260075411155b6110005760405162461bcd60e51b81526004016107a0906130d4565b6008543410156110225760405162461bcd60e51b81526004016107a0906133f9565b6011546110415760405162461bcd60e51b81526004016107a0906133c2565b33600090815260106020526040812080549161105c83613623565b9091555050600a805490600061107183613623565b91905055506110873361108261217b565b611d88565b565b600061109482611e67565b6110b05760405162461bcd60e51b81526004016107a090612ff4565b5090565b600080805b60125481101561112957336001600160a01b0316601282815481106110ee57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b031614156111175760019150611129565b8061112181613623565b9150506110b9565b50611132611d84565b6001600160a01b03166111436114e7565b6001600160a01b031614806111555750805b6111715760405162461bcd60e51b81526004016107a09061332e565b60005b60115461ffff821610156111f0578361ffff1660118261ffff16815481106111ac57634e487b7160e01b600052603260045260246000fd5b60009182526020909120601082040154600f9091166002026101000a900461ffff1614156111de5760019250506111f6565b806111e881613601565b915050611174565b50600091505b50919050565b6000818152600360205260408120546001600160a01b03168061064a5760405162461bcd60e51b81526004016107a090613149565b60006001600160a01b0382166112595760405162461bcd60e51b81526004016107a0906130ff565b506001600160a01b031660009081526004602052604090205490565b61127d611d84565b6001600160a01b031661128e6114e7565b6001600160a01b0316146112b45760405162461bcd60e51b81526004016107a090613213565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000805b60125481101561137257336001600160a01b03166012828154811061133757634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b031614156113605760019150611372565b8061136a81613623565b915050611302565b5061137b611d84565b6001600160a01b031661138c6114e7565b6001600160a01b0316148061139e5750805b6113ba5760405162461bcd60e51b81526004016107a09061332e565b600f5460115410156113de5760405162461bcd60e51b81526004016107a0906133c2565b600e5460ff16156114015760405162461bcd60e51b81526004016107a090613248565b600f54600a6000828254611415919061353e565b9091555050600f5460009067ffffffffffffffff81111561144657634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561146f578160200160208202803683370190505b50905060005b600f548110156114c45761148761217b565b8282815181106114a757634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806114bc81613623565b915050611475565b506114cf83826122d2565b5050600e805460ff1916600117905550565b60085490565b6000546001600160a01b031690565b606060028054610661906135cc565b61150d611d84565b6001600160a01b0316826001600160a01b0316141561153e5760405162461bcd60e51b81526004016107a090612f86565b806006600061154b611d84565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561158f611d84565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115c79190612d87565b60405180910390a35050565b6115e46115de611d84565b83611ef2565b6116005760405162461bcd60e51b81526004016107a09061343d565b61160c8484848461248e565b50505050565b6000805b60125481101561168657336001600160a01b03166012828154811061164b57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b031614156116745760019150611686565b8061167e81613623565b915050611616565b5061168f611d84565b6001600160a01b03166116a06114e7565b6001600160a01b031614806116b25750805b6116ce5760405162461bcd60e51b81526004016107a09061332e565b825b8261ffff168161ffff161161160c57601180546001810182556000919091527f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6860108204018054600f9092166002026101000a61ffff81810219909316928416029190911790558061174181613601565b9150506116d0565b606061175482611e67565b6117705760405162461bcd60e51b81526004016107a0906132df565b600061177a6117cc565b9050600081511161179a57604051806020016040528060008152506117c5565b806117a4846124c1565b6040516020016117b5929190612ccb565b6040516020818303038152906040525b9392505050565b6060600d8054610661906135cc565b3233146117fa5760405162461bcd60e51b81526004016107a090613040565b6007541580159061180d57504260075411155b6118295760405162461bcd60e51b81526004016107a0906130d4565b80600854611837919061356a565b3410156118565760405162461bcd60e51b81526004016107a090612eab565b600b548111156118785760405162461bcd60e51b81526004016107a090612ef2565b60115481111561189a5760405162461bcd60e51b81526004016107a09061348e565b60008167ffffffffffffffff8111156118c357634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156118ec578160200160208202803683370190505b503360009081526010602052604081208054929350849290919061191190849061353e565b9250508190555081600a600082825461192a919061353e565b90915550600090505b828110156119805761194361217b565b82828151811061196357634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061197881613623565b915050611933565b50610b7c33826122d2565b6000805b6012548110156119ff57336001600160a01b0316601282815481106119c457634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b031614156119ed57600191506119ff565b806119f781613623565b91505061198f565b50611a08611d84565b6001600160a01b0316611a196114e7565b6001600160a01b03161480611a2b5750805b611a475760405162461bcd60e51b81526004016107a09061332e565b60005b60115461ffff821611610c13578261ffff1660118261ffff1681548110611a8157634e487b7160e01b600052603260045260246000fd5b60009182526020909120601082040154600f9091166002026101000a900461ffff1614611aad57611ba3565b60118054611abd90600190613589565b81548110611adb57634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1660118261ffff1681548110611b2457634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506011805480611b7257634e487b7160e01b600052603160045260246000fd5b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a02191690559055610c13565b80611bad81613601565b915050611a4a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600f5481565b611bf1611d84565b6001600160a01b0316611c026114e7565b6001600160a01b031614611c285760405162461bcd60e51b81526004016107a090613213565b6001600160a01b038116611c4e5760405162461bcd60e51b81526004016107a090612df7565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000805b601254811015611d1d57336001600160a01b031660128281548110611ce257634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415611d0b5760019150611d1d565b80611d1581613623565b915050611cad565b50611d26611d84565b6001600160a01b0316611d376114e7565b6001600160a01b03161480611d495750805b611d655760405162461bcd60e51b81526004016107a09061332e565b50600855565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6001600160a01b038216611dae5760405162461bcd60e51b81526004016107a090613192565b611db781611e67565b15611dd45760405162461bcd60e51b81526004016107a090612e3d565b611de060008383610c13565b6001600160a01b0382166000908152600460205260408120805460019290611e0990849061353e565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611eb9826111fc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611efd82611e67565b611f195760405162461bcd60e51b81526004016107a090612ff4565b6000611f24836111fc565b9050806001600160a01b0316846001600160a01b03161480611f5f5750836001600160a01b0316611f54846109e7565b6001600160a01b0316145b80611f6f5750611f6f8185611bb5565b949350505050565b826001600160a01b0316611f8a826111fc565b6001600160a01b031614611fb05760405162461bcd60e51b81526004016107a090613296565b6001600160a01b038216611fd65760405162461bcd60e51b81526004016107a090612f42565b611fe1838383610c13565b611fec600082611e84565b6001600160a01b0383166000908152600460205260408120805460019290612015908490613589565b90915550506001600160a01b038216600090815260046020526040812080546001929061204390849061353e565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000806120ba6001600160801b03841686613556565b905060006120d16001600160801b0385168761363e565b905060006120e86001600160801b03861687613556565b905060006120ff6001600160801b0387168861363e565b90506001600160801b038616612115828561356a565b61211f9190613556565b612129838561356a565b612133838761356a565b6001600160801b038916612147868961356a565b612151919061356a565b61215b919061353e565b612165919061353e565b61216f919061353e565b98975050505050505050565b60008061218c6011805490506125dc565b90506000601182815481106121b157634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff169050601160016011805490506121ef9190613589565b8154811061220d57634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff166011838154811061225257634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff16021790555060118054806122a057634e487b7160e01b600052603160045260246000fd5b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a0219169055905591505090565b6001600160a01b0382166122f85760405162461bcd60e51b81526004016107a090613192565b80516001600160a01b0383166000908152600460205260408120805490919061232290849061353e565b90915550600090505b8151811015610c135761236482828151811061235757634e487b7160e01b600052603260045260246000fd5b6020026020010151611e67565b156123815760405162461bcd60e51b81526004016107a090612e3d565b6123b46000848484815181106123a757634e487b7160e01b600052603260045260246000fd5b6020026020010151610c13565b82600360008484815181106123d957634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555081818151811061243357634e487b7160e01b600052603260045260246000fd5b6020026020010151836001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48061248681613623565b91505061232b565b612499848484611f77565b6124a58484848461262b565b61160c5760405162461bcd60e51b81526004016107a090612da5565b6060816124e657506040805180820190915260018152600360fc1b602082015261064d565b8160005b811561251057806124fa81613623565b91506125099050600a83613556565b91506124ea565b60008167ffffffffffffffff81111561253957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612563576020820181803683370190505b5090505b8415611f6f57612578600183613589565b9150612585600a8661363e565b61259090603061353e565b60f81b8183815181106125b357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506125d5600a86613556565b9450612567565b60115460009081906125ef600143613589565b40414433604051602001612607959493929190612cfa565b60408051601f19818403018152919052805160209091012090506117c5838261363e565b600061263f846001600160a01b0316612746565b1561273b57836001600160a01b031663150b7a0261265b611d84565b8786866040518563ffffffff1660e01b815260040161267d9493929190612d4a565b602060405180830381600087803b15801561269757600080fd5b505af19250505080156126c7575060408051601f3d908101601f191682019092526126c491810190612be2565b60015b612721573d8080156126f5576040519150601f19603f3d011682016040523d82523d6000602084013e6126fa565b606091505b5080516127195760405162461bcd60e51b81526004016107a090612da5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f6f565b506001949350505050565b3b151590565b828054612758906135cc565b90600052602060002090601f01602090048101928261277a57600085556127c0565b82601f1061279357805160ff19168380011785556127c0565b828001600101855582156127c0579182015b828111156127c05782518255916020019190600101906127a5565b506110b09291505b808211156110b057600081556001016127c8565b600067ffffffffffffffff8311156127f6576127f661367e565b612809601f8401601f19166020016134ce565b905082815283838301111561281d57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461064d57600080fd5b600082601f83011261285b578081fd5b8135602061287061286b836134f8565b6134ce565b828152818101908583018385028701840188101561288c578586fd5b855b858110156128b15761289f826128be565b8452928401929084019060010161288e565b5090979650505050505050565b803561ffff8116811461064d57600080fd5b6000602082840312156128e1578081fd5b6117c582612834565b600080604083850312156128fc578081fd5b61290583612834565b915061291360208401612834565b90509250929050565b600080600060608486031215612930578081fd5b61293984612834565b925061294760208501612834565b9150604084013590509250925092565b6000806000806080858703121561296c578081fd5b61297585612834565b935061298360208601612834565b925060408501359150606085013567ffffffffffffffff8111156129a5578182fd5b8501601f810187136129b5578182fd5b6129c4878235602084016127dc565b91505092959194509250565b600080604083850312156129e2578182fd5b6129eb83612834565b9150602083013580151581146129ff578182fd5b809150509250929050565b60008060408385031215612a1c578081fd5b612a2583612834565b946020939093013593505050565b60008060408385031215612a45578182fd5b823567ffffffffffffffff80821115612a5c578384fd5b818501915085601f830112612a6f578384fd5b81356020612a7f61286b836134f8565b82815281810190858301838502870184018b1015612a9b578889fd5b8896505b84871015612ac457612ab081612834565b835260019690960195918301918301612a9f565b5096505086013592505080821115612ada578283fd5b50612ae78582860161284b565b9150509250929050565b60006020808385031215612b03578182fd5b823567ffffffffffffffff80821115612b1a578384fd5b818501915085601f830112612b2d578384fd5b8135612b3b61286b826134f8565b818152848101908486016040808502870188018b1015612b59578889fd5b8896505b84871015612bb75780828c031215612b73578889fd5b80518181018181108882111715612b8c57612b8c61367e565b8252612b9783612834565b815282890135898201528452600196909601959287019290810190612b5d565b50909998505050505050505050565b600060208284031215612bd7578081fd5b81356117c581613694565b600060208284031215612bf3578081fd5b81516117c581613694565b600060208284031215612c0f578081fd5b813567ffffffffffffffff811115612c25578182fd5b8201601f81018413612c35578182fd5b611f6f848235602084016127dc565b600060208284031215612c55578081fd5b6117c5826128be565b60008060408385031215612c70578182fd5b612c79836128be565b9150612913602084016128be565b600060208284031215612c98578081fd5b5035919050565b60008151808452612cb78160208601602086016135a0565b601f01601f19169290920160200192915050565b60008351612cdd8184602088016135a0565b835190830190612cf18183602088016135a0565b01949350505050565b94855260208501939093526bffffffffffffffffffffffff19606092831b81166040860152605485019190915291901b16607482015260880190565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d7d90830184612c9f565b9695505050505050565b901515815260200190565b6000602082526117c56020830184612c9f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601e908201527f436f6c6c61626f7261746f7273207765726520616c7265616479207365740000604082015260600190565b60208082526027908201527f4e6f7420656e6f75676820457468657220746f20636c61696d20746865204d6560408201526674616c6f6f747360c81b606082015260800190565b60208082526030908201527f596f752063616e206f6e6c7920636c61696d203130204d6574616c6f6f74732060408201526f706572207472616e73616374696f6e7360801b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601e908201527f546f74616c2063757420646f6573206e6f742061646420746f20313030250000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b602080825260119082015270596f752061726520746f6f206561726c7960781b604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602e908201527f4d6574616c6f6f7473207765726520616c72656164792072657365727665642060408201526d666f72206769766561776179732160901b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526033908201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015272103737b910309031b7b63630b137b930ba37b960691b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601f908201527f4e6f206d6574616c6f6f7473206c65667420746f20626520636c61696d656400604082015260600190565b60208082526024908201527f4e6f7420656e6f75676820457468657220746f20636c61696d2061206d6574616040820152631b1bdbdd60e21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f4e6f204d6574616c6f6f7473206c65667420746f20626520636c61696d656400604082015260600190565b90815260200190565b60405181810167ffffffffffffffff811182821017156134f0576134f061367e565b604052919050565b600067ffffffffffffffff8211156135125761351261367e565b5060209081020190565b60006001600160801b03808316818516808303821115612cf157612cf1613652565b6000821982111561355157613551613652565b500190565b60008261356557613565613668565b500490565b600081600019048311821515161561358457613584613652565b500290565b60008282101561359b5761359b613652565b500390565b60005b838110156135bb5781810151838201526020016135a3565b8381111561160c5750506000910152565b6002810460018216806135e057607f821691505b602082108114156111f657634e487b7160e01b600052602260045260246000fd5b600061ffff8083168181141561361957613619613652565b6001019392505050565b600060001982141561363757613637613652565b5060010190565b60008261364d5761364d613668565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146136aa57600080fd5b5056fea2646970667358221220e09da7f1c1a78d5e63ddd561e11f38e784dc92e4988eac0c43b4f0cdf092f67964736f6c6343000800003368747470733a2f2f6d6574616c6f6f742e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e11610118578063c0970712116100a0578063dc39cf6f1161006f578063dc39cf6f14610575578063e985e9c514610595578063e9be0f3f146105b5578063f2fde38b146105ca578063f4a0a528146105ea57610204565b8063c09707121461050d578063c87b56dd1461052d578063d547cfb71461054d578063dbbf2d601461056257610204565b80638d482354116100e75780638d4823541461048e5780638da5cb5b146104a357806395d89b41146104b8578063a22cb465146104cd578063b88d4fde146104ed57610204565b80636352211e1461041957806370a0823114610439578063715018a61461045957806385f292dc1461046e57610204565b80632344e9181161019b5780633ccfd60b1161016a5780633ccfd60b1461039c57806342842e0e146103b15780634f2466be146103d15780634f6ccce7146103d957806362a7a5a8146103f957610204565b80632344e9181461032757806323ab18f11461033c57806323b872dd1461035c57806330176e131461037c57610204565b80630955f63c116101d75780630955f63c146102b0578063095ea7b3146102d057806318160ddd146102f05780631c82573d1461031257610204565b806301ffc9a71461020957806306fdde031461023f57806307c0b43e14610261578063081812fc14610283575b600080fd5b34801561021557600080fd5b50610229610224366004612bc6565b61060a565b6040516102369190612d87565b60405180910390f35b34801561024b57600080fd5b50610254610652565b6040516102369190612d92565b34801561026d57600080fd5b5061028161027c366004612a33565b6106e4565b005b34801561028f57600080fd5b506102a361029e366004612c87565b6109e7565b6040516102369190612d36565b3480156102bc57600080fd5b506102816102cb366004612af1565b610a2a565b3480156102dc57600080fd5b506102816102eb366004612a0a565b610b80565b3480156102fc57600080fd5b50610305610c18565b60405161023691906134c5565b34801561031e57600080fd5b50610305610c1e565b34801561033357600080fd5b50610229610c24565b34801561034857600080fd5b50610281610357366004612c87565b610c2d565b34801561036857600080fd5b5061028161037736600461291c565b610cef565b34801561038857600080fd5b50610281610397366004612bfe565b610d27565b3480156103a857600080fd5b50610281610df6565b3480156103bd57600080fd5b506102816103cc36600461291c565b610f97565b610281610fb2565b3480156103e557600080fd5b506103056103f4366004612c87565b611089565b34801561040557600080fd5b50610229610414366004612c44565b6110b4565b34801561042557600080fd5b506102a3610434366004612c87565b6111fc565b34801561044557600080fd5b506103056104543660046128d0565b611231565b34801561046557600080fd5b50610281611275565b34801561047a57600080fd5b506102816104893660046128d0565b6112fe565b34801561049a57600080fd5b506103056114e1565b3480156104af57600080fd5b506102a36114e7565b3480156104c457600080fd5b506102546114f6565b3480156104d957600080fd5b506102816104e83660046129d0565b611505565b3480156104f957600080fd5b50610281610508366004612957565b6115d3565b34801561051957600080fd5b50610281610528366004612c5e565b611612565b34801561053957600080fd5b50610254610548366004612c87565b611749565b34801561055957600080fd5b506102546117cc565b610281610570366004612c87565b6117db565b34801561058157600080fd5b50610281610590366004612c44565b61198b565b3480156105a157600080fd5b506102296105b03660046128ea565b611bb5565b3480156105c157600080fd5b50610305611be3565b3480156105d657600080fd5b506102816105e53660046128d0565b611be9565b3480156105f657600080fd5b50610281610605366004612c87565b611ca9565b60006001600160e01b031982166380ac58cd60e01b148061063b57506001600160e01b03198216635b5e139f60e01b145b8061064a575061064a82611d6b565b90505b919050565b606060018054610661906135cc565b80601f016020809104026020016040519081016040528092919081815260200182805461068d906135cc565b80156106da5780601f106106af576101008083540402835291602001916106da565b820191906000526020600020905b8154815290600101906020018083116106bd57829003601f168201915b5050505050905090565b6000805b60125481101561075857336001600160a01b03166012828154811061071d57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b031614156107465760019150610758565b8061075081613623565b9150506106e8565b50610761611d84565b6001600160a01b03166107726114e7565b6001600160a01b031614806107845750805b6107a95760405162461bcd60e51b81526004016107a09061332e565b60405180910390fd5b60005b82518161ffff1610156109c95761081d848261ffff16815181106107e057634e487b7160e01b600052603260045260246000fd5b6020026020010151848361ffff168151811061080c57634e487b7160e01b600052603260045260246000fd5b602002602001015161ffff16611d88565b60005b60115461ffff8216116109b657838261ffff168151811061085157634e487b7160e01b600052603260045260246000fd5b602002602001015161ffff1660118261ffff168154811061088257634e487b7160e01b600052603260045260246000fd5b60009182526020909120601082040154600f9091166002026101000a900461ffff16146108ae576109a4565b601180546108be90600190613589565b815481106108dc57634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1660118261ffff168154811061092557634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550601180548061097357634e487b7160e01b600052603160045260246000fd5b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a021916905590556109b6565b806109ae81613601565b915050610820565b50806109c181613601565b9150506107ac565b508151600a60008282546109dd919061353e565b9091555050505050565b60006109f282611e67565b610a0e5760405162461bcd60e51b81526004016107a0906131c7565b506000908152600560205260409020546001600160a01b031690565b610a32611d84565b6001600160a01b0316610a436114e7565b6001600160a01b031614610a695760405162461bcd60e51b81526004016107a090613213565b60125415610a895760405162461bcd60e51b81526004016107a090612e74565b6000805b8251811015610b4e576012838281518110610ab857634e487b7160e01b600052603260045260246000fd5b602090810291909101810151825460018082018555600094855293839020825160029092020180546001600160a01b0319166001600160a01b039092169190911781559101519101558251839082908110610b2357634e487b7160e01b600052603260045260246000fd5b60200260200101516020015182610b3a919061351c565b915080610b4681613623565b915050610a8d565b50600c546001600160801b03828116911614610b7c5760405162461bcd60e51b81526004016107a090612fbd565b5050565b6000610b8b826111fc565b9050806001600160a01b0316836001600160a01b03161415610bbf5760405162461bcd60e51b81526004016107a090613381565b806001600160a01b0316610bd1611d84565b6001600160a01b03161480610bed5750610bed816105b0611d84565b610c095760405162461bcd60e51b81526004016107a090613077565b610c138383611e84565b505050565b600a5490565b60115490565b600e5460ff1681565b6000805b601254811015610ca157336001600160a01b031660128281548110610c6657634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610c8f5760019150610ca1565b80610c9981613623565b915050610c31565b50610caa611d84565b6001600160a01b0316610cbb6114e7565b6001600160a01b03161480610ccd5750805b610ce95760405162461bcd60e51b81526004016107a09061332e565b50600755565b610d00610cfa611d84565b82611ef2565b610d1c5760405162461bcd60e51b81526004016107a09061343d565b610c13838383611f77565b6000805b601254811015610d9b57336001600160a01b031660128281548110610d6057634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610d895760019150610d9b565b80610d9381613623565b915050610d2b565b50610da4611d84565b6001600160a01b0316610db56114e7565b6001600160a01b03161480610dc75750805b610de35760405162461bcd60e51b81526004016107a09061332e565b8151610c1390600d90602085019061274c565b6000805b601254811015610e6a57336001600160a01b031660128281548110610e2f57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610e585760019150610e6a565b80610e6281613623565b915050610dfa565b50610e73611d84565b6001600160a01b0316610e846114e7565b6001600160a01b03161480610e965750805b610eb25760405162461bcd60e51b81526004016107a09061332e565b4760005b601254811015610c135760128181548110610ee157634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020160000160009054906101000a90046001600160a01b03166001600160a01b03166108fc610f5c8460128581548110610f3757634e487b7160e01b600052603260045260246000fd5b6000918252602090912060016002909202010154600c546001600160801b03166120a4565b6040518115909202916000818181858888f19350505050158015610f84573d6000803e3d6000fd5b5080610f8f81613623565b915050610eb6565b610c13838383604051806020016040528060008152506115d3565b323314610fd15760405162461bcd60e51b81526004016107a090613040565b60075415801590610fe457504260075411155b6110005760405162461bcd60e51b81526004016107a0906130d4565b6008543410156110225760405162461bcd60e51b81526004016107a0906133f9565b6011546110415760405162461bcd60e51b81526004016107a0906133c2565b33600090815260106020526040812080549161105c83613623565b9091555050600a805490600061107183613623565b91905055506110873361108261217b565b611d88565b565b600061109482611e67565b6110b05760405162461bcd60e51b81526004016107a090612ff4565b5090565b600080805b60125481101561112957336001600160a01b0316601282815481106110ee57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b031614156111175760019150611129565b8061112181613623565b9150506110b9565b50611132611d84565b6001600160a01b03166111436114e7565b6001600160a01b031614806111555750805b6111715760405162461bcd60e51b81526004016107a09061332e565b60005b60115461ffff821610156111f0578361ffff1660118261ffff16815481106111ac57634e487b7160e01b600052603260045260246000fd5b60009182526020909120601082040154600f9091166002026101000a900461ffff1614156111de5760019250506111f6565b806111e881613601565b915050611174565b50600091505b50919050565b6000818152600360205260408120546001600160a01b03168061064a5760405162461bcd60e51b81526004016107a090613149565b60006001600160a01b0382166112595760405162461bcd60e51b81526004016107a0906130ff565b506001600160a01b031660009081526004602052604090205490565b61127d611d84565b6001600160a01b031661128e6114e7565b6001600160a01b0316146112b45760405162461bcd60e51b81526004016107a090613213565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000805b60125481101561137257336001600160a01b03166012828154811061133757634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b031614156113605760019150611372565b8061136a81613623565b915050611302565b5061137b611d84565b6001600160a01b031661138c6114e7565b6001600160a01b0316148061139e5750805b6113ba5760405162461bcd60e51b81526004016107a09061332e565b600f5460115410156113de5760405162461bcd60e51b81526004016107a0906133c2565b600e5460ff16156114015760405162461bcd60e51b81526004016107a090613248565b600f54600a6000828254611415919061353e565b9091555050600f5460009067ffffffffffffffff81111561144657634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561146f578160200160208202803683370190505b50905060005b600f548110156114c45761148761217b565b8282815181106114a757634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806114bc81613623565b915050611475565b506114cf83826122d2565b5050600e805460ff1916600117905550565b60085490565b6000546001600160a01b031690565b606060028054610661906135cc565b61150d611d84565b6001600160a01b0316826001600160a01b0316141561153e5760405162461bcd60e51b81526004016107a090612f86565b806006600061154b611d84565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561158f611d84565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115c79190612d87565b60405180910390a35050565b6115e46115de611d84565b83611ef2565b6116005760405162461bcd60e51b81526004016107a09061343d565b61160c8484848461248e565b50505050565b6000805b60125481101561168657336001600160a01b03166012828154811061164b57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b031614156116745760019150611686565b8061167e81613623565b915050611616565b5061168f611d84565b6001600160a01b03166116a06114e7565b6001600160a01b031614806116b25750805b6116ce5760405162461bcd60e51b81526004016107a09061332e565b825b8261ffff168161ffff161161160c57601180546001810182556000919091527f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6860108204018054600f9092166002026101000a61ffff81810219909316928416029190911790558061174181613601565b9150506116d0565b606061175482611e67565b6117705760405162461bcd60e51b81526004016107a0906132df565b600061177a6117cc565b9050600081511161179a57604051806020016040528060008152506117c5565b806117a4846124c1565b6040516020016117b5929190612ccb565b6040516020818303038152906040525b9392505050565b6060600d8054610661906135cc565b3233146117fa5760405162461bcd60e51b81526004016107a090613040565b6007541580159061180d57504260075411155b6118295760405162461bcd60e51b81526004016107a0906130d4565b80600854611837919061356a565b3410156118565760405162461bcd60e51b81526004016107a090612eab565b600b548111156118785760405162461bcd60e51b81526004016107a090612ef2565b60115481111561189a5760405162461bcd60e51b81526004016107a09061348e565b60008167ffffffffffffffff8111156118c357634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156118ec578160200160208202803683370190505b503360009081526010602052604081208054929350849290919061191190849061353e565b9250508190555081600a600082825461192a919061353e565b90915550600090505b828110156119805761194361217b565b82828151811061196357634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061197881613623565b915050611933565b50610b7c33826122d2565b6000805b6012548110156119ff57336001600160a01b0316601282815481106119c457634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b031614156119ed57600191506119ff565b806119f781613623565b91505061198f565b50611a08611d84565b6001600160a01b0316611a196114e7565b6001600160a01b03161480611a2b5750805b611a475760405162461bcd60e51b81526004016107a09061332e565b60005b60115461ffff821611610c13578261ffff1660118261ffff1681548110611a8157634e487b7160e01b600052603260045260246000fd5b60009182526020909120601082040154600f9091166002026101000a900461ffff1614611aad57611ba3565b60118054611abd90600190613589565b81548110611adb57634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1660118261ffff1681548110611b2457634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506011805480611b7257634e487b7160e01b600052603160045260246000fd5b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a02191690559055610c13565b80611bad81613601565b915050611a4a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600f5481565b611bf1611d84565b6001600160a01b0316611c026114e7565b6001600160a01b031614611c285760405162461bcd60e51b81526004016107a090613213565b6001600160a01b038116611c4e5760405162461bcd60e51b81526004016107a090612df7565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000805b601254811015611d1d57336001600160a01b031660128281548110611ce257634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415611d0b5760019150611d1d565b80611d1581613623565b915050611cad565b50611d26611d84565b6001600160a01b0316611d376114e7565b6001600160a01b03161480611d495750805b611d655760405162461bcd60e51b81526004016107a09061332e565b50600855565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6001600160a01b038216611dae5760405162461bcd60e51b81526004016107a090613192565b611db781611e67565b15611dd45760405162461bcd60e51b81526004016107a090612e3d565b611de060008383610c13565b6001600160a01b0382166000908152600460205260408120805460019290611e0990849061353e565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611eb9826111fc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611efd82611e67565b611f195760405162461bcd60e51b81526004016107a090612ff4565b6000611f24836111fc565b9050806001600160a01b0316846001600160a01b03161480611f5f5750836001600160a01b0316611f54846109e7565b6001600160a01b0316145b80611f6f5750611f6f8185611bb5565b949350505050565b826001600160a01b0316611f8a826111fc565b6001600160a01b031614611fb05760405162461bcd60e51b81526004016107a090613296565b6001600160a01b038216611fd65760405162461bcd60e51b81526004016107a090612f42565b611fe1838383610c13565b611fec600082611e84565b6001600160a01b0383166000908152600460205260408120805460019290612015908490613589565b90915550506001600160a01b038216600090815260046020526040812080546001929061204390849061353e565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000806120ba6001600160801b03841686613556565b905060006120d16001600160801b0385168761363e565b905060006120e86001600160801b03861687613556565b905060006120ff6001600160801b0387168861363e565b90506001600160801b038616612115828561356a565b61211f9190613556565b612129838561356a565b612133838761356a565b6001600160801b038916612147868961356a565b612151919061356a565b61215b919061353e565b612165919061353e565b61216f919061353e565b98975050505050505050565b60008061218c6011805490506125dc565b90506000601182815481106121b157634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff169050601160016011805490506121ef9190613589565b8154811061220d57634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff166011838154811061225257634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff16021790555060118054806122a057634e487b7160e01b600052603160045260246000fd5b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a0219169055905591505090565b6001600160a01b0382166122f85760405162461bcd60e51b81526004016107a090613192565b80516001600160a01b0383166000908152600460205260408120805490919061232290849061353e565b90915550600090505b8151811015610c135761236482828151811061235757634e487b7160e01b600052603260045260246000fd5b6020026020010151611e67565b156123815760405162461bcd60e51b81526004016107a090612e3d565b6123b46000848484815181106123a757634e487b7160e01b600052603260045260246000fd5b6020026020010151610c13565b82600360008484815181106123d957634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555081818151811061243357634e487b7160e01b600052603260045260246000fd5b6020026020010151836001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48061248681613623565b91505061232b565b612499848484611f77565b6124a58484848461262b565b61160c5760405162461bcd60e51b81526004016107a090612da5565b6060816124e657506040805180820190915260018152600360fc1b602082015261064d565b8160005b811561251057806124fa81613623565b91506125099050600a83613556565b91506124ea565b60008167ffffffffffffffff81111561253957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612563576020820181803683370190505b5090505b8415611f6f57612578600183613589565b9150612585600a8661363e565b61259090603061353e565b60f81b8183815181106125b357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506125d5600a86613556565b9450612567565b60115460009081906125ef600143613589565b40414433604051602001612607959493929190612cfa565b60408051601f19818403018152919052805160209091012090506117c5838261363e565b600061263f846001600160a01b0316612746565b1561273b57836001600160a01b031663150b7a0261265b611d84565b8786866040518563ffffffff1660e01b815260040161267d9493929190612d4a565b602060405180830381600087803b15801561269757600080fd5b505af19250505080156126c7575060408051601f3d908101601f191682019092526126c491810190612be2565b60015b612721573d8080156126f5576040519150601f19603f3d011682016040523d82523d6000602084013e6126fa565b606091505b5080516127195760405162461bcd60e51b81526004016107a090612da5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f6f565b506001949350505050565b3b151590565b828054612758906135cc565b90600052602060002090601f01602090048101928261277a57600085556127c0565b82601f1061279357805160ff19168380011785556127c0565b828001600101855582156127c0579182015b828111156127c05782518255916020019190600101906127a5565b506110b09291505b808211156110b057600081556001016127c8565b600067ffffffffffffffff8311156127f6576127f661367e565b612809601f8401601f19166020016134ce565b905082815283838301111561281d57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461064d57600080fd5b600082601f83011261285b578081fd5b8135602061287061286b836134f8565b6134ce565b828152818101908583018385028701840188101561288c578586fd5b855b858110156128b15761289f826128be565b8452928401929084019060010161288e565b5090979650505050505050565b803561ffff8116811461064d57600080fd5b6000602082840312156128e1578081fd5b6117c582612834565b600080604083850312156128fc578081fd5b61290583612834565b915061291360208401612834565b90509250929050565b600080600060608486031215612930578081fd5b61293984612834565b925061294760208501612834565b9150604084013590509250925092565b6000806000806080858703121561296c578081fd5b61297585612834565b935061298360208601612834565b925060408501359150606085013567ffffffffffffffff8111156129a5578182fd5b8501601f810187136129b5578182fd5b6129c4878235602084016127dc565b91505092959194509250565b600080604083850312156129e2578182fd5b6129eb83612834565b9150602083013580151581146129ff578182fd5b809150509250929050565b60008060408385031215612a1c578081fd5b612a2583612834565b946020939093013593505050565b60008060408385031215612a45578182fd5b823567ffffffffffffffff80821115612a5c578384fd5b818501915085601f830112612a6f578384fd5b81356020612a7f61286b836134f8565b82815281810190858301838502870184018b1015612a9b578889fd5b8896505b84871015612ac457612ab081612834565b835260019690960195918301918301612a9f565b5096505086013592505080821115612ada578283fd5b50612ae78582860161284b565b9150509250929050565b60006020808385031215612b03578182fd5b823567ffffffffffffffff80821115612b1a578384fd5b818501915085601f830112612b2d578384fd5b8135612b3b61286b826134f8565b818152848101908486016040808502870188018b1015612b59578889fd5b8896505b84871015612bb75780828c031215612b73578889fd5b80518181018181108882111715612b8c57612b8c61367e565b8252612b9783612834565b815282890135898201528452600196909601959287019290810190612b5d565b50909998505050505050505050565b600060208284031215612bd7578081fd5b81356117c581613694565b600060208284031215612bf3578081fd5b81516117c581613694565b600060208284031215612c0f578081fd5b813567ffffffffffffffff811115612c25578182fd5b8201601f81018413612c35578182fd5b611f6f848235602084016127dc565b600060208284031215612c55578081fd5b6117c5826128be565b60008060408385031215612c70578182fd5b612c79836128be565b9150612913602084016128be565b600060208284031215612c98578081fd5b5035919050565b60008151808452612cb78160208601602086016135a0565b601f01601f19169290920160200192915050565b60008351612cdd8184602088016135a0565b835190830190612cf18183602088016135a0565b01949350505050565b94855260208501939093526bffffffffffffffffffffffff19606092831b81166040860152605485019190915291901b16607482015260880190565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d7d90830184612c9f565b9695505050505050565b901515815260200190565b6000602082526117c56020830184612c9f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601e908201527f436f6c6c61626f7261746f7273207765726520616c7265616479207365740000604082015260600190565b60208082526027908201527f4e6f7420656e6f75676820457468657220746f20636c61696d20746865204d6560408201526674616c6f6f747360c81b606082015260800190565b60208082526030908201527f596f752063616e206f6e6c7920636c61696d203130204d6574616c6f6f74732060408201526f706572207472616e73616374696f6e7360801b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601e908201527f546f74616c2063757420646f6573206e6f742061646420746f20313030250000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b602080825260119082015270596f752061726520746f6f206561726c7960781b604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602e908201527f4d6574616c6f6f7473207765726520616c72656164792072657365727665642060408201526d666f72206769766561776179732160901b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526033908201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015272103737b910309031b7b63630b137b930ba37b960691b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601f908201527f4e6f206d6574616c6f6f7473206c65667420746f20626520636c61696d656400604082015260600190565b60208082526024908201527f4e6f7420656e6f75676820457468657220746f20636c61696d2061206d6574616040820152631b1bdbdd60e21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f4e6f204d6574616c6f6f7473206c65667420746f20626520636c61696d656400604082015260600190565b90815260200190565b60405181810167ffffffffffffffff811182821017156134f0576134f061367e565b604052919050565b600067ffffffffffffffff8211156135125761351261367e565b5060209081020190565b60006001600160801b03808316818516808303821115612cf157612cf1613652565b6000821982111561355157613551613652565b500190565b60008261356557613565613668565b500490565b600081600019048311821515161561358457613584613652565b500290565b60008282101561359b5761359b613652565b500390565b60005b838110156135bb5781810151838201526020016135a3565b8381111561160c5750506000910152565b6002810460018216806135e057607f821691505b602082108114156111f657634e487b7160e01b600052602260045260246000fd5b600061ffff8083168181141561361957613619613652565b6001019392505050565b600060001982141561363757613637613652565b5060010190565b60008261364d5761364d613668565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146136aa57600080fd5b5056fea2646970667358221220e09da7f1c1a78d5e63ddd561e11f38e784dc92e4988eac0c43b4f0cdf092f67964736f6c63430008000033

Deployed Bytecode Sourcemap

81:9495:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1524:344:3;;;;;;;;;;-1:-1:-1;1524:344:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2642:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3911:627:9:-;;;;;;;;;;-1:-1:-1;3911:627:9;;;;;:::i;:::-;;:::i;:::-;;4188:295:3;;;;;;;;;;-1:-1:-1;4188:295:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1745:468:9:-;;;;;;;;;;-1:-1:-1;1745:468:9;;;;;:::i;:::-;;:::i;3703:424:3:-;;;;;;;;;;-1:-1:-1;3703:424:3;;;;;:::i;:::-;;:::i;8010:104:9:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7690:114::-;;;;;;;;;;;;;:::i;1366:38::-;;;;;;;;;;;;;:::i;4626:147::-;;;;;;;;;;-1:-1:-1;4626:147:9;;;;;:::i;:::-;;:::i;5202:364:3:-;;;;;;;;;;-1:-1:-1;5202:364:3;;;;;:::i;:::-;;:::i;2765:102:9:-;;;;;;;;;;-1:-1:-1;2765:102:9;;;;;:::i;:::-;;:::i;2356:317::-;;;;;;;;;;;;;:::i;5632:179:3:-;;;;;;;;;;-1:-1:-1;5632:179:3;;;;;:::i;:::-;;:::i;5927:372:9:-;;;:::i;7207:220::-;;;;;;;;;;-1:-1:-1;7207:220:9;;;;;:::i;:::-;;:::i;4854:323::-;;;;;;;;;;-1:-1:-1;4854:323:9;;;;;:::i;:::-;;:::i;2267:313:3:-;;;;;;;;;;-1:-1:-1;2267:313:3;;;;;:::i;:::-;;:::i;1927:283::-;;;;;;;;;;-1:-1:-1;1927:283:3;;;;;:::i;:::-;;:::i;1693:145:10:-;;;;;;;;;;;;;:::i;5258:580:9:-;;;;;;;;;;-1:-1:-1;5258:580:9;;;;;:::i;:::-;;:::i;7862:89::-;;;;;;;;;;;;;:::i;1061:85:10:-;;;;;;;;;;;;;:::i;2804:102:3:-;;;;;;;;;;;;;:::i;4550:318::-;;;;;;;;;;-1:-1:-1;4550:318:3;;;;;:::i;:::-;;:::i;5877:354::-;;;;;;;;;;-1:-1:-1;5877:354:3;;;;;:::i;:::-;;:::i;3115:204:9:-;;;;;;;;;;-1:-1:-1;3115:204:9;;;;;:::i;:::-;;:::i;2972:451:3:-;;;;;;;;;;-1:-1:-1;2972:451:3;;;;;:::i;:::-;;:::i;7502:93:9:-;;;;;;;;;;;;;:::i;6366:777::-;;;;;;:::i;:::-;;:::i;3403:425::-;;;;;;;;;;-1:-1:-1;3403:425:9;;;;;:::i;:::-;;:::i;4934:206:3:-;;;;;;;;;;-1:-1:-1;4934:206:3;;;;;:::i;:::-;;:::i;1410:33:9:-;;;;;;;;;;;;;:::i;1987:240:10:-;;;;;;;;;;-1:-1:-1;1987:240:10;;;;;:::i;:::-;;:::i;2940:107:9:-;;;;;;;;;;-1:-1:-1;2940:107:9;;;;;:::i;:::-;;:::i;1524:344:3:-;1666:4;-1:-1:-1;;;;;;1705:40:3;;-1:-1:-1;;;1705:40:3;;:104;;-1:-1:-1;;;;;;;1761:48:3;;-1:-1:-1;;;1761:48:3;1705:104;:156;;;;1825:36;1849:11;1825:23;:36::i;:::-;1686:175;;1524:344;;;;:::o;2642:98::-;2696:13;2728:5;2721:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2642:98;:::o;3911:627:9:-;348:19;390:9;385:190;405:13;:20;401:24;;385:190;;;475:10;-1:-1:-1;;;;;450:35:9;:13;464:1;450:16;;;;;;-1:-1:-1;;;450:16:9;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;450:21:9;:35;446:119;;;522:4;505:21;;545:5;;446:119;427:3;;;;:::i;:::-;;;;385:190;;;;617:12;:10;:12::i;:::-;-1:-1:-1;;;;;606:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;606:23:9;;:41;;;;633:14;606:41;585:139;;;;-1:-1:-1;;;585:139:9;;;;;;;:::i;:::-;;;;;;;;;4045:8:::1;4041:444;4063:8;:15;4059:1;:19;;;4041:444;;;4098:29;4104:6;4111:1;4104:9;;;;;;;;-1:-1:-1::0;;;4104:9:9::1;;;;;;;;;;;;;;;4115:8;4124:1;4115:11;;;;;;;;-1:-1:-1::0;;;4115:11:9::1;;;;;;;;;;;;;;;4098:29;;:5;:29::i;:::-;4147:8;4142:333;4162:18;:25:::0;4157:30:::1;::::0;::::1;;4142:333;;4241:8;4250:1;4241:11;;;;;;;;-1:-1:-1::0;;;4241:11:9::1;;;;;;;;;;;;;;;4216:36;;:18;4235:1;4216:21;;;;;;;;-1:-1:-1::0;;;4216:21:9::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;::::1;;::::0;;;;;::::1;;;;::::0;::::1;;;:36;4212:91;;4276:8;;4212:91;4345:18;4364:25:::0;;:29:::1;::::0;4392:1:::1;::::0;4364:29:::1;:::i;:::-;4345:49;;;;;;-1:-1:-1::0;;;4345:49:9::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4321:18;4340:1;4321:21;;;;;;;;-1:-1:-1::0;;;4321:21:9::1;;;;;;;;;;;;;;;;;;;;;;;;;;;:73;;;;;;;;;;;;;;;;;;4412:18;:24;;;;;-1:-1:-1::0;;;4412:24:9::1;;;;;;;;;;::::0;;;::::1;::::0;;::::1;-1:-1:-1::0;;4412:24:9;;;;;::::1;;::::0;;::::1;;::::0;;;::::1;;;;;;::::0;;;;4455:5:::1;;4142:333;4189:3:::0;::::1;::::0;::::1;:::i;:::-;;;;4142:333;;;-1:-1:-1::0;4080:3:9;::::1;::::0;::::1;:::i;:::-;;;;4041:444;;;;4516:8;:15;4495:17;;:36;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;3911:627:9:o;4188:295:3:-;4304:7;4348:16;4356:7;4348;:16::i;:::-;4327:107;;;;-1:-1:-1;;;4327:107:3;;;;;;;:::i;:::-;-1:-1:-1;4452:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4452:24:3;;4188:295::o;1745:468:9:-;1284:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:10;;1265:68;;;;-1:-1:-1;;;1265:68:10;;;;;;;:::i;:::-;1867:13:9::1;:20:::0;:25;1859:68:::1;;;;-1:-1:-1::0;;;1859:68:9::1;;;;;;;:::i;:::-;1938:16;1969:9:::0;1964:166:::1;1984:14;:21;1980:1;:25;1964:166;;;2026:13;2045:14;2060:1;2045:17;;;;;;-1:-1:-1::0;;;2045:17:9::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;2026:37;;::::1;::::0;;::::1;::::0;;-1:-1:-1;2026:37:9;;;;;;;;;::::1;::::0;;::::1;;::::0;;-1:-1:-1;;;;;;2026:37:9::1;-1:-1:-1::0;;;;;2026:37:9;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;2097:17;;;;2112:1;;2097:17;::::1;;;-1:-1:-1::0;;;2097:17:9::1;;;;;;;;;;;;;;;:21;;;2077:42;;;;;:::i;:::-;::::0;-1:-1:-1;2007:3:9;::::1;::::0;::::1;:::i;:::-;;;;1964:166;;;-1:-1:-1::0;2160:11:9::1;::::0;-1:-1:-1;;;;;2148:23:9;;::::1;2160:11:::0;::::1;2148:23;2140:66;;;;-1:-1:-1::0;;;2140:66:9::1;;;;;;;:::i;:::-;1343:1:10;1745:468:9::0;:::o;3703:424:3:-;3783:13;3799:23;3814:7;3799:14;:23::i;:::-;3783:39;;3846:5;-1:-1:-1;;;;;3840:11:3;:2;-1:-1:-1;;;;;3840:11:3;;;3832:57;;;;-1:-1:-1;;;3832:57:3;;;;;;;:::i;:::-;3937:5;-1:-1:-1;;;;;3921:21:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3921:21:3;;:85;;;;3962:44;3986:5;3993:12;:10;:12::i;3962:44::-;3900:188;;;;-1:-1:-1;;;3900:188:3;;;;;;;:::i;:::-;4099:21;4108:2;4112:7;4099:8;:21::i;:::-;3703:424;;;:::o;8010:104:9:-;8090:17;;8010:104;:::o;7690:114::-;7772:18;:25;7690:114;:::o;1366:38::-;;;;;;:::o;4626:147::-;348:19;390:9;385:190;405:13;:20;401:24;;385:190;;;475:10;-1:-1:-1;;;;;450:35:9;:13;464:1;450:16;;;;;;-1:-1:-1;;;450:16:9;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;450:21:9;:35;446:119;;;522:4;505:21;;545:5;;446:119;427:3;;;;:::i;:::-;;;;385:190;;;;617:12;:10;:12::i;:::-;-1:-1:-1;;;;;606:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;606:23:9;;:41;;;;633:14;606:41;585:139;;;;-1:-1:-1;;;585:139:9;;;;;;;:::i;:::-;-1:-1:-1;4734:14:9::1;:32:::0;4626:147::o;5202:364:3:-;5404:41;5423:12;:10;:12::i;:::-;5437:7;5404:18;:41::i;:::-;5383:137;;;;-1:-1:-1;;;5383:137:3;;;;;;;:::i;:::-;5531:28;5541:4;5547:2;5551:7;5531:9;:28::i;2765:102:9:-;348:19;390:9;385:190;405:13;:20;401:24;;385:190;;;475:10;-1:-1:-1;;;;;450:35:9;:13;464:1;450:16;;;;;;-1:-1:-1;;;450:16:9;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;450:21:9;:35;446:119;;;522:4;505:21;;545:5;;446:119;427:3;;;;:::i;:::-;;;;385:190;;;;617:12;:10;:12::i;:::-;-1:-1:-1;;;;;606:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;606:23:9;;:41;;;;633:14;606:41;585:139;;;;-1:-1:-1;;;585:139:9;;;;;;;:::i;:::-;2846:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;2356:317::-:0;348:19;390:9;385:190;405:13;:20;401:24;;385:190;;;475:10;-1:-1:-1;;;;;450:35:9;:13;464:1;450:16;;;;;;-1:-1:-1;;;450:16:9;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;450:21:9;:35;446:119;;;522:4;505:21;;545:5;;446:119;427:3;;;;:::i;:::-;;;;385:190;;;;617:12;:10;:12::i;:::-;-1:-1:-1;;;;;606:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;606:23:9;;:41;;;;633:14;606:41;585:139;;;;-1:-1:-1;;;585:139:9;;;;;;;:::i;:::-;2435:21:::1;2412:20;2467:200;2487:13;:20:::0;2483:24;::::1;2467:200;;;2536:13;2550:1;2536:16;;;;;;-1:-1:-1::0;;;2536:16:9::1;;;;;;;;;;;;;;;;;;;:21;;;;;;;;;;-1:-1:-1::0;;;;;2536:21:9::1;-1:-1:-1::0;;;;;2528:39:9::1;:128;2585:57;2594:12;2608:13;2622:1;2608:16;;;;;;-1:-1:-1::0;;;2608:16:9::1;;;;;;;;;;::::0;;;::::1;::::0;;;:20:::1;:16;::::0;;::::1;;:20;::::0;2630:11:::1;::::0;-1:-1:-1;;;;;2630:11:9::1;2585:8;:57::i;:::-;2528:128;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;2509:3:9;::::1;::::0;::::1;:::i;:::-;;;;2467:200;;5632:179:3::0;5765:39;5782:4;5788:2;5792:7;5765:39;;;;;;;;;;;;:16;:39::i;5927:372:9:-;228:9;241:10;228:23;220:66;;;;-1:-1:-1;;;220:66:9;;;;;;;:::i;:::-;804:14:::1;::::0;:19;;::::1;::::0;:56:::1;;;845:15;827:14;;:33;;804:56;783:120;;;;-1:-1:-1::0;;;783:120:9::1;;;;;;;:::i;:::-;6026:9:::2;;6013;:22;;6005:71;;;;-1:-1:-1::0;;;6005:71:9::2;;;;;;;:::i;:::-;6095:18;:25:::0;6087:73:::2;;;;-1:-1:-1::0;;;6087:73:9::2;;;;;;;:::i;:::-;6196:10;6171:36;::::0;;;:24:::2;:36;::::0;;;;:38;;;::::2;::::0;::::2;:::i;:::-;::::0;;;-1:-1:-1;;6219:17:9::2;:19:::0;;;:17:::2;:19;::::0;::::2;:::i;:::-;;;;;;6249:43;6255:10;6267:24;:22;:24::i;:::-;6249:5;:43::i;:::-;5927:372::o:0;7207:220::-;7269:7;7309:16;7317:7;7309;:16::i;:::-;7288:107;;;;-1:-1:-1;;;7288:107:9;;;;;;;:::i;:::-;-1:-1:-1;7413:7:9;7207:220::o;4854:323::-;4971:4;;;385:190;405:13;:20;401:24;;385:190;;;475:10;-1:-1:-1;;;;;450:35:9;:13;464:1;450:16;;;;;;-1:-1:-1;;;450:16:9;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;450:21:9;:35;446:119;;;522:4;505:21;;545:5;;446:119;427:3;;;;:::i;:::-;;;;385:190;;;;617:12;:10;:12::i;:::-;-1:-1:-1;;;;;606:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;606:23:9;;:41;;;;633:14;606:41;585:139;;;;-1:-1:-1;;;585:139:9;;;;;;;:::i;:::-;4996:8:::1;4991:157;5010:18;:25:::0;5006:29:::1;::::0;::::1;;4991:157;;;5085:7;5060:32;;:18;5079:1;5060:21;;;;;;;;-1:-1:-1::0;;;5060:21:9::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;::::1;;::::0;;;;;::::1;;;;::::0;::::1;;;:32;5056:82;;;5119:4;5112:11;;;;;5056:82;5037:3:::0;::::1;::::0;::::1;:::i;:::-;;;;4991:157;;;;5165:5;5158:12;;735:1;4854:323:::0;;;;:::o;2267:313:3:-;2379:7;2418:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2418:16:3;2465:19;2444:107;;;;-1:-1:-1;;;2444:107:3;;;;;;;:::i;1927:283::-;2039:7;-1:-1:-1;;;;;2083:19:3;;2062:108;;;;-1:-1:-1;;;2062:108:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;2187:16:3;;;;;:9;:16;;;;;;;1927:283::o;1693:145:10:-;1284:12;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:10;;1265:68;;;;-1:-1:-1;;;1265:68:10;;;;;;;:::i;:::-;1799:1:::1;1783:6:::0;;1762:40:::1;::::0;-1:-1:-1;;;;;1783:6:10;;::::1;::::0;1762:40:::1;::::0;1799:1;;1762:40:::1;1829:1;1812:19:::0;;-1:-1:-1;;;;;;1812:19:10::1;::::0;;1693:145::o;5258:580:9:-;348:19;390:9;385:190;405:13;:20;401:24;;385:190;;;475:10;-1:-1:-1;;;;;450:35:9;:13;464:1;450:16;;;;;;-1:-1:-1;;;450:16:9;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;450:21:9;:35;446:119;;;522:4;505:21;;545:5;;446:119;427:3;;;;:::i;:::-;;;;385:190;;;;617:12;:10;:12::i;:::-;-1:-1:-1;;;;;606:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;606:23:9;;:41;;;;633:14;606:41;585:139;;;;-1:-1:-1;;;585:139:9;;;;;;;:::i;:::-;5395:13:::1;::::0;5366:18:::1;:25:::0;:42:::1;;5358:86;;;;-1:-1:-1::0;;;5358:86:9::1;;;;;;;:::i;:::-;5463:18;::::0;::::1;;5462:19;5454:77;;;;-1:-1:-1::0;;;5454:77:9::1;;;;;;;:::i;:::-;5562:13;;5541:17;;:34;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;5628:13:9::1;::::0;5586:25:::1;::::0;5614:28:::1;::::0;::::1;;;;-1:-1:-1::0;;;5614:28:9::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;5614:28:9::1;;5586:56;;5658:9;5653:103;5673:13;;5669:1;:17;5653:103;;;5721:24;:22;:24::i;:::-;5707:8;5716:1;5707:11;;;;;;-1:-1:-1::0;;;5707:11:9::1;;;;;;;;;;::::0;;::::1;::::0;;;;;:38;5688:3;::::1;::::0;::::1;:::i;:::-;;;;5653:103;;;;5766:30;5777:8;5787;5766:10;:30::i;:::-;-1:-1:-1::0;;5806:18:9::1;:25:::0;;-1:-1:-1;;5806:25:9::1;5827:4;5806:25;::::0;;-1:-1:-1;5258:580:9:o;7862:89::-;7935:9;;7862:89;:::o;1061:85:10:-;1107:7;1133:6;-1:-1:-1;;;;;1133:6:10;1061:85;:::o;2804:102:3:-;2860:13;2892:7;2885:14;;;;;:::i;4550:318::-;4692:12;:10;:12::i;:::-;-1:-1:-1;;;;;4680:24:3;:8;-1:-1:-1;;;;;4680:24:3;;;4672:62;;;;-1:-1:-1;;;4672:62:3;;;;;;;:::i;:::-;4790:8;4745:18;:32;4764:12;:10;:12::i;:::-;-1:-1:-1;;;;;4745:32:3;;;;;;;;;;;;;;;;;-1:-1:-1;4745:32:3;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4745:53:3;;;;;;;;;;;4828:12;:10;:12::i;:::-;-1:-1:-1;;;;;4813:48:3;;4852:8;4813:48;;;;;;:::i;:::-;;;;;;;;4550:318;;:::o;5877:354::-;6059:41;6078:12;:10;:12::i;:::-;6092:7;6059:18;:41::i;:::-;6038:137;;;;-1:-1:-1;;;6038:137:3;;;;;;;:::i;:::-;6185:39;6199:4;6205:2;6209:7;6218:5;6185:13;:39::i;:::-;5877:354;;;;:::o;3115:204:9:-;348:19;390:9;385:190;405:13;:20;401:24;;385:190;;;475:10;-1:-1:-1;;;;;450:35:9;:13;464:1;450:16;;;;;;-1:-1:-1;;;450:16:9;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;450:21:9;:35;446:119;;;522:4;505:21;;545:5;;446:119;427:3;;;;:::i;:::-;;;;385:190;;;;617:12;:10;:12::i;:::-;-1:-1:-1;;;;;606:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;606:23:9;;:41;;;;633:14;606:41;585:139;;;;-1:-1:-1;;;585:139:9;;;;;;;:::i;:::-;3242:4;3226:87:::1;3253:2;3248:7;;:1;:7;;;3226:87;;3276:18;:26:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;3276:26:9;;;;;::::1;::::0;::::1;;::::0;;;;;;::::1;;;;;::::0;;::::1;;::::0;;::::1;::::0;;::::1;;::::0;;;::::1;::::0;;;3257:3:::1;3276:26:::0;3257:3:::1;:::i;:::-;;;;3226:87;;2972:451:3::0;3085:13;3135:16;3143:7;3135;:16::i;:::-;3114:110;;;;-1:-1:-1;;;3114:110:3;;;;;;;:::i;:::-;3235:21;3259:10;:8;:10::i;:::-;3235:34;;3322:1;3304:7;3298:21;:25;:118;;;;;;;;;;;;;;;;;3366:7;3375:18;:7;:16;:18::i;:::-;3349:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3298:118;3279:137;2972:451;-1:-1:-1;;;2972:451:3:o;7502:93:9:-;7549:13;7581:7;7574:14;;;;;:::i;6366:777::-;228:9;241:10;228:23;220:66;;;;-1:-1:-1;;;220:66:9;;;;;;;:::i;:::-;804:14:::1;::::0;:19;;::::1;::::0;:56:::1;;;845:15;827:14;;:33;;804:56;783:120;;;;-1:-1:-1::0;;;783:120:9::1;;;;;;;:::i;:::-;6543:8:::2;6531:9;;:20;;;;:::i;:::-;6518:9;:33;;6497:119;;;;-1:-1:-1::0;;;6497:119:9::2;;;;;;;:::i;:::-;6655:25;;6643:8;:37;;6635:98;;;;-1:-1:-1::0;;;6635:98:9::2;;;;;;;:::i;:::-;6752:18;:25:::0;:37;-1:-1:-1;6752:37:9::2;6744:81;;;;-1:-1:-1::0;;;6744:81:9::2;;;;;;;:::i;:::-;6836:25;6878:8;6864:23;;;;;;-1:-1:-1::0;;;6864:23:9::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;6864:23:9::2;-1:-1:-1::0;6923:10:9::2;6898:36;::::0;;;:24:::2;:36;::::0;;;;:48;;6836:51;;-1:-1:-1;6938:8:9;;6898:36;;;:48:::2;::::0;6938:8;;6898:48:::2;:::i;:::-;;;;;;;;6977:8;6956:17;;:29;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;7001:9:9::2;::::0;-1:-1:-1;6996:98:9::2;7016:8;7012:1;:12;6996:98;;;7059:24;:22;:24::i;:::-;7045:8;7054:1;7045:11;;;;;;-1:-1:-1::0;;;7045:11:9::2;;;;;;;;;;::::0;;::::2;::::0;;;;;:38;7026:3;::::2;::::0;::::2;:::i;:::-;;;;6996:98;;;;7104:32;7115:10;7127:8;7104:10;:32::i;3403:425::-:0;348:19;390:9;385:190;405:13;:20;401:24;;385:190;;;475:10;-1:-1:-1;;;;;450:35:9;:13;464:1;450:16;;;;;;-1:-1:-1;;;450:16:9;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;450:21:9;:35;446:119;;;522:4;505:21;;545:5;;446:119;427:3;;;;:::i;:::-;;;;385:190;;;;617:12;:10;:12::i;:::-;-1:-1:-1;;;;;606:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;606:23:9;;:41;;;;633:14;606:41;585:139;;;;-1:-1:-1;;;585:139:9;;;;;;;:::i;:::-;3526:8:::1;3521:301;3541:18;:25:::0;3536:30:::1;::::0;::::1;;3521:301;;3616:7;3591:32;;:18;3610:1;3591:21;;;;;;;;-1:-1:-1::0;;;3591:21:9::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;::::1;;::::0;;;;;::::1;;;;::::0;::::1;;;:32;3587:79;;3643:8;;3587:79;3704:18;3723:25:::0;;:29:::1;::::0;3751:1:::1;::::0;3723:29:::1;:::i;:::-;3704:49;;;;;;-1:-1:-1::0;;;3704:49:9::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3680:18;3699:1;3680:21;;;;;;;;-1:-1:-1::0;;;3680:21:9::1;;;;;;;;;;;;;;;;;;;;;;;;;;;:73;;;;;;;;;;;;;;;;;;3767:18;:24;;;;;-1:-1:-1::0;;;3767:24:9::1;;;;;;;;;;::::0;;;::::1;::::0;;::::1;-1:-1:-1::0;;3767:24:9;;;;;::::1;;::::0;;::::1;;::::0;;;::::1;;;;;;::::0;;;;3806:5:::1;;3521:301;3568:3:::0;::::1;::::0;::::1;:::i;:::-;;;;3521:301;;4934:206:3::0;-1:-1:-1;;;;;5098:25:3;;;5071:4;5098:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4934:206::o;1410:33:9:-;;;;:::o;1987:240:10:-;1284:12;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:10;;1265:68;;;;-1:-1:-1;;;1265:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;2075:22:10;::::1;2067:73;;;;-1:-1:-1::0;;;2067:73:10::1;;;;;;;:::i;:::-;2176:6;::::0;;2155:38:::1;::::0;-1:-1:-1;;;;;2155:38:10;;::::1;::::0;2176:6;::::1;::::0;2155:38:::1;::::0;::::1;2203:6;:17:::0;;-1:-1:-1;;;;;;2203:17:10::1;-1:-1:-1::0;;;;;2203:17:10;;;::::1;::::0;;;::::1;::::0;;1987:240::o;2940:107:9:-;348:19;390:9;385:190;405:13;:20;401:24;;385:190;;;475:10;-1:-1:-1;;;;;450:35:9;:13;464:1;450:16;;;;;;-1:-1:-1;;;450:16:9;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;450:21:9;:35;446:119;;;522:4;505:21;;545:5;;446:119;427:3;;;;:::i;:::-;;;;385:190;;;;617:12;:10;:12::i;:::-;-1:-1:-1;;;;;606:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;606:23:9;;:41;;;;633:14;606:41;585:139;;;;-1:-1:-1;;;585:139:9;;;;;;;:::i;:::-;-1:-1:-1;3018:9:9::1;:22:::0;2940:107::o;763:155:2:-;-1:-1:-1;;;;;;871:40:2;;-1:-1:-1;;;871:40:2;763:155;;;:::o;586:96:1:-;665:10;586:96;:::o;9757:372:3:-;-1:-1:-1;;;;;9836:16:3;;9828:61;;;;-1:-1:-1;;;9828:61:3;;;;;;;:::i;:::-;9908:16;9916:7;9908;:16::i;:::-;9907:17;9899:58;;;;-1:-1:-1;;;9899:58:3;;;;;;;:::i;:::-;9968:45;9997:1;10001:2;10005:7;9968:20;:45::i;:::-;-1:-1:-1;;;;;10024:13:3;;;;;;:9;:13;;;;;:18;;10041:1;;10024:13;:18;;10041:1;;10024:18;:::i;:::-;;;;-1:-1:-1;;10052:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10052:21:3;-1:-1:-1;;;;;10052:21:3;;;;;;;;10089:33;;10052:16;;;10089:33;;10052:16;;10089:33;9757:372;;:::o;7737:125::-;7802:4;7825:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7825:16:3;:30;;;7737:125::o;12245:171::-;12319:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;12319:29:3;-1:-1:-1;;;;;12319:29:3;;;;;;;;:24;;12372:23;12319:24;12372:14;:23::i;:::-;-1:-1:-1;;;;;12363:46:3;;;;;;;;;;;12245:171;;:::o;8020:445::-;8145:4;8186:16;8194:7;8186;:16::i;:::-;8165:107;;;;-1:-1:-1;;;8165:107:3;;;;;;;:::i;:::-;8282:13;8298:23;8313:7;8298:14;:23::i;:::-;8282:39;;8350:5;-1:-1:-1;;;;;8339:16:3;:7;-1:-1:-1;;;;;8339:16:3;;:63;;;;8395:7;-1:-1:-1;;;;;8371:31:3;:20;8383:7;8371:11;:20::i;:::-;-1:-1:-1;;;;;8371:31:3;;8339:63;:118;;;;8418:39;8442:5;8449:7;8418:23;:39::i;:::-;8331:127;8020:445;-1:-1:-1;;;;8020:445:3:o;11540:594::-;11707:4;-1:-1:-1;;;;;11680:31:3;:23;11695:7;11680:14;:23::i;:::-;-1:-1:-1;;;;;11680:31:3;;11659:119;;;;-1:-1:-1;;;11659:119:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;11796:16:3;;11788:65;;;;-1:-1:-1;;;11788:65:3;;;;;;;:::i;:::-;11864:39;11885:4;11891:2;11895:7;11864:20;:39::i;:::-;11965:29;11982:1;11986:7;11965:8;:29::i;:::-;-1:-1:-1;;;;;12005:15:3;;;;;;:9;:15;;;;;:20;;12024:1;;12005:15;:20;;12024:1;;12005:20;:::i;:::-;;;;-1:-1:-1;;;;;;;12035:13:3;;;;;;:9;:13;;;;;:18;;12052:1;;12035:13;:18;;12052:1;;12035:18;:::i;:::-;;;;-1:-1:-1;;12063:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;12063:21:3;-1:-1:-1;;;;;12063:21:3;;;;;;;;;12100:27;;12063:16;;12100:27;;;;;;;11540:594;;;:::o;9261:313:9:-;9369:7;;9400:9;-1:-1:-1;;;;;9400:9:9;;:1;:9;:::i;:::-;9388:21;-1:-1:-1;9419:9:9;9431;-1:-1:-1;;;;;9431:9:9;;:1;:9;:::i;:::-;9419:21;-1:-1:-1;9450:9:9;9462;-1:-1:-1;;;;;9462:9:9;;:1;:9;:::i;:::-;9450:21;-1:-1:-1;9481:9:9;9493;-1:-1:-1;;;;;9493:9:9;;:1;:9;:::i;:::-;9481:21;-1:-1:-1;;;;;;9552:15:9;;9553:5;9481:21;9553:1;:5;:::i;:::-;9552:15;;;;:::i;:::-;9544:5;9548:1;9544;:5;:::i;:::-;9536;9540:1;9536;:5;:::i;:::-;-1:-1:-1;;;;;9520:13:9;;:5;9524:1;9520;:5;:::i;:::-;:13;;;;:::i;:::-;:21;;;;:::i;:::-;:29;;;;:::i;:::-;:47;;;;:::i;:::-;9513:54;9261:313;-1:-1:-1;;;;;;;;9261:313:9:o;8237:348::-;8288:7;8307:14;8324:43;8341:18;:25;;;;8324:16;:43::i;:::-;8307:60;;8377:15;8403:18;8422:6;8403:26;;;;;;-1:-1:-1;;;8403:26:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8395:35;;8377:53;;8470:18;8517:1;8489:18;:25;;;;:29;;;;:::i;:::-;8470:49;;;;;;-1:-1:-1;;;8470:49:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8441:18;8460:6;8441:26;;;;;;-1:-1:-1;;;8441:26:9;;;;;;;;;;;;;;;;;;;;;;;;;;;:78;;;;;;;;;;;;;;;;;;8529:18;:24;;;;;-1:-1:-1;;;8529:24:9;;;;;;;;;;;;;;;;;-1:-1:-1;;8529:24:9;;;;;;;;;;;;;;;;;;;;;;;;8571:7;-1:-1:-1;;8237:348:9;:::o;10135:516:3:-;-1:-1:-1;;;;;10249:16:3;;10241:61;;;;-1:-1:-1;;;10241:61:3;;;;;;;:::i;:::-;10329:15;;-1:-1:-1;;;;;10312:13:3;;;;;;:9;:13;;;;;:32;;:13;;;:32;;10329:15;;10312:32;:::i;:::-;;;;-1:-1:-1;10360:9:3;;-1:-1:-1;10355:290:3;10375:8;:15;10371:1;:19;10355:290;;;10420:20;10428:8;10437:1;10428:11;;;;;;-1:-1:-1;;;10428:11:3;;;;;;;;;;;;;;;10420:7;:20::i;:::-;10419:21;10411:62;;;;-1:-1:-1;;;10411:62:3;;;;;;;:::i;:::-;10488:49;10517:1;10521:2;10525:8;10534:1;10525:11;;;;;;-1:-1:-1;;;10525:11:3;;;;;;;;;;;;;;;10488:20;:49::i;:::-;10575:2;10552:7;:20;10560:8;10569:1;10560:11;;;;;;-1:-1:-1;;;10560:11:3;;;;;;;;;;;;;;;10552:20;;;;;;;;;;;;:25;;;;;-1:-1:-1;;;;;10552:25:3;;;;;-1:-1:-1;;;;;10552:25:3;;;;;;10622:8;10631:1;10622:11;;;;;;-1:-1:-1;;;10622:11:3;;;;;;;;;;;;;;;10618:2;-1:-1:-1;;;;;10597:37:3;10614:1;-1:-1:-1;;;;;10597:37:3;;;;;;;;;;;10392:3;;;;:::i;:::-;;;;10355:290;;7093:341;7244:28;7254:4;7260:2;7264:7;7244:9;:28::i;:::-;7303:48;7326:4;7332:2;7336:7;7345:5;7303:22;:48::i;:::-;7282:145;;;;-1:-1:-1;;;7282:145:3;;;;;;;:::i;271:703:11:-;327:13;544:10;540:51;;-1:-1:-1;570:10:11;;;;;;;;;;;;-1:-1:-1;;;570:10:11;;;;;;540:51;615:5;600:12;654:75;661:9;;654:75;;686:8;;;;:::i;:::-;;-1:-1:-1;708:10:11;;-1:-1:-1;716:2:11;708:10;;:::i;:::-;;;654:75;;;738:19;770:6;760:17;;;;;;-1:-1:-1;;;760:17:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;760:17:11;;738:39;;787:150;794:10;;787:150;;820:11;830:1;820:11;;:::i;:::-;;-1:-1:-1;888:10:11;896:2;888:5;:10;:::i;:::-;875:24;;:2;:24;:::i;:::-;862:39;;845:6;852;845:14;;;;;;-1:-1:-1;;;845:14:11;;;;;;;;;;;;:56;-1:-1:-1;;;;;845:56:11;;;;;;;;-1:-1:-1;915:11:11;924:2;915:11;;:::i;:::-;;;787:150;;8653:448:9;8839:18;:25;8717:7;;;;8896:16;8911:1;8896:12;:16;:::i;:::-;8886:27;8935:14;8971:16;9009:10;8801:236;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;8801:236:9;;;;;;;;;8774:277;;8801:236;8774:277;;;;;-1:-1:-1;9079:15:9;9088:6;8774:277;9079:15;:::i;12969:1022:3:-;13119:4;13139:15;:2;-1:-1:-1;;;;;13139:13:3;;:15::i;:::-;13135:850;;;13206:2;-1:-1:-1;;;;;13190:36:3;;13248:12;:10;:12::i;:::-;13282:4;13308:7;13337:5;13190:170;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13190:170:3;;;;;;;;-1:-1:-1;;13190:170:3;;;;;;;;;;;;:::i;:::-;;;13170:763;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13543:13:3;;13539:380;;13585:106;;-1:-1:-1;;;13585:106:3;;;;;;;:::i;13539:380::-;13871:6;13865:13;13856:6;13852:2;13848:15;13841:38;13170:763;-1:-1:-1;;;;;;13422:55:3;-1:-1:-1;;;13422:55:3;;-1:-1:-1;13415:62:3;;13135:850;-1:-1:-1;13970:4:3;12969:1022;;;;;;:::o;718:413:0:-;1078:20;1116:8;;;718:413::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:409:12;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:12;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:175::-;498:20;;-1:-1:-1;;;;;547:31:12;;537:42;;527:2;;593:1;590;583:12;608:711;;720:3;713:4;705:6;701:17;697:27;687:2;;742:5;735;728:20;687:2;782:6;769:20;808:4;832:65;847:49;893:2;847:49;:::i;:::-;832:65;:::i;:::-;931:15;;;962:12;;;;994:15;;;1040:11;;;1028:24;;1024:33;;1021:42;-1:-1:-1;1018:2:12;;;1080:5;1073;1066:20;1018:2;1106:5;1120:170;1134:2;1131:1;1128:9;1120:170;;;1191:24;1211:3;1191:24;:::i;:::-;1179:37;;1236:12;;;;1268;;;;1152:1;1145:9;1120:170;;;-1:-1:-1;1308:5:12;;677:642;-1:-1:-1;;;;;;;677:642:12:o;1324:161::-;1393:20;;1453:6;1442:18;;1432:29;;1422:2;;1475:1;1472;1465:12;1490:198;;1602:2;1590:9;1581:7;1577:23;1573:32;1570:2;;;1623:6;1615;1608:22;1570:2;1651:31;1672:9;1651:31;:::i;1693:274::-;;;1822:2;1810:9;1801:7;1797:23;1793:32;1790:2;;;1843:6;1835;1828:22;1790:2;1871:31;1892:9;1871:31;:::i;:::-;1861:41;;1921:40;1957:2;1946:9;1942:18;1921:40;:::i;:::-;1911:50;;1780:187;;;;;:::o;1972:342::-;;;;2118:2;2106:9;2097:7;2093:23;2089:32;2086:2;;;2139:6;2131;2124:22;2086:2;2167:31;2188:9;2167:31;:::i;:::-;2157:41;;2217:40;2253:2;2242:9;2238:18;2217:40;:::i;:::-;2207:50;;2304:2;2293:9;2289:18;2276:32;2266:42;;2076:238;;;;;:::o;2319:702::-;;;;;2491:3;2479:9;2470:7;2466:23;2462:33;2459:2;;;2513:6;2505;2498:22;2459:2;2541:31;2562:9;2541:31;:::i;:::-;2531:41;;2591:40;2627:2;2616:9;2612:18;2591:40;:::i;:::-;2581:50;;2678:2;2667:9;2663:18;2650:32;2640:42;;2733:2;2722:9;2718:18;2705:32;2760:18;2752:6;2749:30;2746:2;;;2797:6;2789;2782:22;2746:2;2825:22;;2878:4;2870:13;;2866:27;-1:-1:-1;2856:2:12;;2912:6;2904;2897:22;2856:2;2940:75;3007:7;3002:2;2989:16;2984:2;2980;2976:11;2940:75;:::i;:::-;2930:85;;;2449:572;;;;;;;:::o;3026:369::-;;;3152:2;3140:9;3131:7;3127:23;3123:32;3120:2;;;3173:6;3165;3158:22;3120:2;3201:31;3222:9;3201:31;:::i;:::-;3191:41;;3282:2;3271:9;3267:18;3254:32;3329:5;3322:13;3315:21;3308:5;3305:32;3295:2;;3356:6;3348;3341:22;3295:2;3384:5;3374:15;;;3110:285;;;;;:::o;3400:266::-;;;3529:2;3517:9;3508:7;3504:23;3500:32;3497:2;;;3550:6;3542;3535:22;3497:2;3578:31;3599:9;3578:31;:::i;:::-;3568:41;3656:2;3641:18;;;;3628:32;;-1:-1:-1;;;3487:179:12:o;3671:1224::-;;;3849:2;3837:9;3828:7;3824:23;3820:32;3817:2;;;3870:6;3862;3855:22;3817:2;3915:9;3902:23;3944:18;3985:2;3977:6;3974:14;3971:2;;;4006:6;3998;3991:22;3971:2;4049:6;4038:9;4034:22;4024:32;;4094:7;4087:4;4083:2;4079:13;4075:27;4065:2;;4121:6;4113;4106:22;4065:2;4162;4149:16;4184:4;4208:65;4223:49;4269:2;4223:49;:::i;4208:65::-;4307:15;;;4338:12;;;;4370:11;;;4408;;;4400:20;;4396:29;;4393:42;-1:-1:-1;4390:2:12;;;4453:6;4445;4438:22;4390:2;4480:6;4471:15;;4495:171;4509:2;4506:1;4503:9;4495:171;;;4566:25;4587:3;4566:25;:::i;:::-;4554:38;;4527:1;4520:9;;;;;4612:12;;;;4644;;4495:171;;;-1:-1:-1;4685:5:12;-1:-1:-1;;4728:18:12;;4715:32;;-1:-1:-1;;4759:16:12;;;4756:2;;;4793:6;4785;4778:22;4756:2;;4821:68;4881:7;4870:8;4859:9;4855:24;4821:68;:::i;:::-;4811:78;;;3807:1088;;;;;:::o;4900:1406::-;;5046:2;5089;5077:9;5068:7;5064:23;5060:32;5057:2;;;5110:6;5102;5095:22;5057:2;5155:9;5142:23;5184:18;5225:2;5217:6;5214:14;5211:2;;;5246:6;5238;5231:22;5211:2;5289:6;5278:9;5274:22;5264:32;;5334:7;5327:4;5323:2;5319:13;5315:27;5305:2;;5361:6;5353;5346:22;5305:2;5402;5389:16;5425:65;5440:49;5486:2;5440:49;:::i;5425:65::-;5524:15;;;5555:12;;;;5587:11;;;5617:4;5648:11;;;5640:20;;5636:29;;5633:42;-1:-1:-1;5630:2:12;;;5693:6;5685;5678:22;5630:2;5720:6;5711:15;;5735:541;5749:2;5746:1;5743:9;5735:541;;;5820:2;5814:3;5805:7;5801:17;5797:26;5794:2;;;5841:6;5833;5826:22;5794:2;5883;5877:9;5929:2;5921:6;5917:15;5986:6;5974:10;5971:22;5966:2;5954:10;5951:18;5948:46;5945:2;;;5997:18;;:::i;:::-;6030:22;;6080:25;6101:3;6080:25;:::i;:::-;6065:41;;6156:12;;;6143:26;6126:15;;;6119:51;6183:19;;5767:1;5760:9;;;;;6222:12;;;;6254;;;;5735:541;;;-1:-1:-1;6295:5:12;;5026:1280;-1:-1:-1;;;;;;;;;5026:1280:12:o;6311:257::-;;6422:2;6410:9;6401:7;6397:23;6393:32;6390:2;;;6443:6;6435;6428:22;6390:2;6487:9;6474:23;6506:32;6532:5;6506:32;:::i;6573:261::-;;6695:2;6683:9;6674:7;6670:23;6666:32;6663:2;;;6716:6;6708;6701:22;6663:2;6753:9;6747:16;6772:32;6798:5;6772:32;:::i;6839:482::-;;6961:2;6949:9;6940:7;6936:23;6932:32;6929:2;;;6982:6;6974;6967:22;6929:2;7027:9;7014:23;7060:18;7052:6;7049:30;7046:2;;;7097:6;7089;7082:22;7046:2;7125:22;;7178:4;7170:13;;7166:27;-1:-1:-1;7156:2:12;;7212:6;7204;7197:22;7156:2;7240:75;7307:7;7302:2;7289:16;7284:2;7280;7276:11;7240:75;:::i;7326:196::-;;7437:2;7425:9;7416:7;7412:23;7408:32;7405:2;;;7458:6;7450;7443:22;7405:2;7486:30;7506:9;7486:30;:::i;7527:270::-;;;7654:2;7642:9;7633:7;7629:23;7625:32;7622:2;;;7675:6;7667;7660:22;7622:2;7703:30;7723:9;7703:30;:::i;:::-;7693:40;;7752:39;7787:2;7776:9;7772:18;7752:39;:::i;7802:190::-;;7914:2;7902:9;7893:7;7889:23;7885:32;7882:2;;;7935:6;7927;7920:22;7882:2;-1:-1:-1;7963:23:12;;7872:120;-1:-1:-1;7872:120:12:o;7997:259::-;;8078:5;8072:12;8105:6;8100:3;8093:19;8121:63;8177:6;8170:4;8165:3;8161:14;8154:4;8147:5;8143:16;8121:63;:::i;:::-;8238:2;8217:15;-1:-1:-1;;8213:29:12;8204:39;;;;8245:4;8200:50;;8048:208;-1:-1:-1;;8048:208:12:o;8261:470::-;;8478:6;8472:13;8494:53;8540:6;8535:3;8528:4;8520:6;8516:17;8494:53;:::i;:::-;8610:13;;8569:16;;;;8632:57;8610:13;8569:16;8666:4;8654:17;;8632:57;:::i;:::-;8705:20;;8448:283;-1:-1:-1;;;;8448:283:12:o;8736:546::-;8993:19;;;9037:2;9028:12;;9021:28;;;;-1:-1:-1;;9137:2:12;9133:15;;;9129:24;;9124:2;9115:12;;9108:46;9179:2;9170:12;;9163:28;;;;9226:15;;;9222:24;9216:3;9207:13;;9200:47;9272:3;9263:13;;8983:299::o;9287:203::-;-1:-1:-1;;;;;9451:32:12;;;;9433:51;;9421:2;9406:18;;9388:102::o;9495:490::-;-1:-1:-1;;;;;9764:15:12;;;9746:34;;9816:15;;9811:2;9796:18;;9789:43;9863:2;9848:18;;9841:34;;;9911:3;9906:2;9891:18;;9884:31;;;9495:490;;9932:47;;9959:19;;9951:6;9932:47;:::i;:::-;9924:55;9698:287;-1:-1:-1;;;;;;9698:287:12:o;9990:187::-;10155:14;;10148:22;10130:41;;10118:2;10103:18;;10085:92::o;10182:221::-;;10331:2;10320:9;10313:21;10351:46;10393:2;10382:9;10378:18;10370:6;10351:46;:::i;10408:414::-;10610:2;10592:21;;;10649:2;10629:18;;;10622:30;10688:34;10683:2;10668:18;;10661:62;-1:-1:-1;;;10754:2:12;10739:18;;10732:48;10812:3;10797:19;;10582:240::o;10827:402::-;11029:2;11011:21;;;11068:2;11048:18;;;11041:30;11107:34;11102:2;11087:18;;11080:62;-1:-1:-1;;;11173:2:12;11158:18;;11151:36;11219:3;11204:19;;11001:228::o;11234:352::-;11436:2;11418:21;;;11475:2;11455:18;;;11448:30;11514;11509:2;11494:18;;11487:58;11577:2;11562:18;;11408:178::o;11591:354::-;11793:2;11775:21;;;11832:2;11812:18;;;11805:30;11871:32;11866:2;11851:18;;11844:60;11936:2;11921:18;;11765:180::o;11950:403::-;12152:2;12134:21;;;12191:2;12171:18;;;12164:30;12230:34;12225:2;12210:18;;12203:62;-1:-1:-1;;;12296:2:12;12281:18;;12274:37;12343:3;12328:19;;12124:229::o;12358:412::-;12560:2;12542:21;;;12599:2;12579:18;;;12572:30;12638:34;12633:2;12618:18;;12611:62;-1:-1:-1;;;12704:2:12;12689:18;;12682:46;12760:3;12745:19;;12532:238::o;12775:400::-;12977:2;12959:21;;;13016:2;12996:18;;;12989:30;13055:34;13050:2;13035:18;;13028:62;-1:-1:-1;;;13121:2:12;13106:18;;13099:34;13165:3;13150:19;;12949:226::o;13180:349::-;13382:2;13364:21;;;13421:2;13401:18;;;13394:30;13460:27;13455:2;13440:18;;13433:55;13520:2;13505:18;;13354:175::o;13534:354::-;13736:2;13718:21;;;13775:2;13755:18;;;13748:30;13814:32;13809:2;13794:18;;13787:60;13879:2;13864:18;;13708:180::o;13893:408::-;14095:2;14077:21;;;14134:2;14114:18;;;14107:30;14173:34;14168:2;14153:18;;14146:62;-1:-1:-1;;;14239:2:12;14224:18;;14217:42;14291:3;14276:19;;14067:234::o;14306:354::-;14508:2;14490:21;;;14547:2;14527:18;;;14520:30;14586:32;14581:2;14566:18;;14559:60;14651:2;14636:18;;14480:180::o;14665:420::-;14867:2;14849:21;;;14906:2;14886:18;;;14879:30;14945:34;14940:2;14925:18;;14918:62;15016:26;15011:2;14996:18;;14989:54;15075:3;15060:19;;14839:246::o;15090:341::-;15292:2;15274:21;;;15331:2;15311:18;;;15304:30;-1:-1:-1;;;15365:2:12;15350:18;;15343:47;15422:2;15407:18;;15264:167::o;15436:406::-;15638:2;15620:21;;;15677:2;15657:18;;;15650:30;15716:34;15711:2;15696:18;;15689:62;-1:-1:-1;;;15782:2:12;15767:18;;15760:40;15832:3;15817:19;;15610:232::o;15847:405::-;16049:2;16031:21;;;16088:2;16068:18;;;16061:30;16127:34;16122:2;16107:18;;16100:62;-1:-1:-1;;;16193:2:12;16178:18;;16171:39;16242:3;16227:19;;16021:231::o;16257:356::-;16459:2;16441:21;;;16478:18;;;16471:30;16537:34;16532:2;16517:18;;16510:62;16604:2;16589:18;;16431:182::o;16618:408::-;16820:2;16802:21;;;16859:2;16839:18;;;16832:30;16898:34;16893:2;16878:18;;16871:62;-1:-1:-1;;;16964:2:12;16949:18;;16942:42;17016:3;17001:19;;16792:234::o;17031:356::-;17233:2;17215:21;;;17252:18;;;17245:30;17311:34;17306:2;17291:18;;17284:62;17378:2;17363:18;;17205:182::o;17392:410::-;17594:2;17576:21;;;17633:2;17613:18;;;17606:30;17672:34;17667:2;17652:18;;17645:62;-1:-1:-1;;;17738:2:12;17723:18;;17716:44;17792:3;17777:19;;17566:236::o;17807:405::-;18009:2;17991:21;;;18048:2;18028:18;;;18021:30;18087:34;18082:2;18067:18;;18060:62;-1:-1:-1;;;18153:2:12;18138:18;;18131:39;18202:3;18187:19;;17981:231::o;18217:411::-;18419:2;18401:21;;;18458:2;18438:18;;;18431:30;18497:34;18492:2;18477:18;;18470:62;-1:-1:-1;;;18563:2:12;18548:18;;18541:45;18618:3;18603:19;;18391:237::o;18633:415::-;18835:2;18817:21;;;18874:2;18854:18;;;18847:30;18913:34;18908:2;18893:18;;18886:62;-1:-1:-1;;;18979:2:12;18964:18;;18957:49;19038:3;19023:19;;18807:241::o;19053:397::-;19255:2;19237:21;;;19294:2;19274:18;;;19267:30;19333:34;19328:2;19313:18;;19306:62;-1:-1:-1;;;19399:2:12;19384:18;;19377:31;19440:3;19425:19;;19227:223::o;19455:355::-;19657:2;19639:21;;;19696:2;19676:18;;;19669:30;19735:33;19730:2;19715:18;;19708:61;19801:2;19786:18;;19629:181::o;19815:400::-;20017:2;19999:21;;;20056:2;20036:18;;;20029:30;20095:34;20090:2;20075:18;;20068:62;-1:-1:-1;;;20161:2:12;20146:18;;20139:34;20205:3;20190:19;;19989:226::o;20220:413::-;20422:2;20404:21;;;20461:2;20441:18;;;20434:30;20500:34;20495:2;20480:18;;20473:62;-1:-1:-1;;;20566:2:12;20551:18;;20544:47;20623:3;20608:19;;20394:239::o;20638:355::-;20840:2;20822:21;;;20879:2;20859:18;;;20852:30;20918:33;20913:2;20898:18;;20891:61;20984:2;20969:18;;20812:181::o;20998:177::-;21144:25;;;21132:2;21117:18;;21099:76::o;21180:251::-;21250:2;21244:9;21280:17;;;21327:18;21312:34;;21348:22;;;21309:62;21306:2;;;21374:18;;:::i;:::-;21410:2;21403:22;21224:207;;-1:-1:-1;21224:207:12:o;21436:192::-;;21535:18;21527:6;21524:30;21521:2;;;21557:18;;:::i;:::-;-1:-1:-1;21617:4:12;21598:17;;;21594:28;;21511:117::o;21633:253::-;;-1:-1:-1;;;;;21762:2:12;21759:1;21755:10;21792:2;21789:1;21785:10;21823:3;21819:2;21815:12;21810:3;21807:21;21804:2;;;21831:18;;:::i;21891:128::-;;21962:1;21958:6;21955:1;21952:13;21949:2;;;21968:18;;:::i;:::-;-1:-1:-1;22004:9:12;;21939:80::o;22024:120::-;;22090:1;22080:2;;22095:18;;:::i;:::-;-1:-1:-1;22129:9:12;;22070:74::o;22149:168::-;;22255:1;22251;22247:6;22243:14;22240:1;22237:21;22232:1;22225:9;22218:17;22214:45;22211:2;;;22262:18;;:::i;:::-;-1:-1:-1;22302:9:12;;22201:116::o;22322:125::-;;22390:1;22387;22384:8;22381:2;;;22395:18;;:::i;:::-;-1:-1:-1;22432:9:12;;22371:76::o;22452:258::-;22524:1;22534:113;22548:6;22545:1;22542:13;22534:113;;;22624:11;;;22618:18;22605:11;;;22598:39;22570:2;22563:10;22534:113;;;22665:6;22662:1;22659:13;22656:2;;;-1:-1:-1;;22700:1:12;22682:16;;22675:27;22505:205::o;22715:380::-;22800:1;22790:12;;22847:1;22837:12;;;22858:2;;22912:4;22904:6;22900:17;22890:27;;22858:2;22965;22957:6;22954:14;22934:18;22931:38;22928:2;;;23011:10;23006:3;23002:20;22999:1;22992:31;23046:4;23043:1;23036:15;23074:4;23071:1;23064:15;23100:197;;23166:6;23207:2;23200:5;23196:14;23234:2;23225:7;23222:15;23219:2;;;23240:18;;:::i;:::-;23289:1;23276:15;;23146:151;-1:-1:-1;;;23146:151:12:o;23302:135::-;;-1:-1:-1;;23362:17:12;;23359:2;;;23382:18;;:::i;:::-;-1:-1:-1;23429:1:12;23418:13;;23349:88::o;23442:112::-;;23500:1;23490:2;;23505:18;;:::i;:::-;-1:-1:-1;23539:9:12;;23480:74::o;23559:127::-;23620:10;23615:3;23611:20;23608:1;23601:31;23651:4;23648:1;23641:15;23675:4;23672:1;23665:15;23691:127;23752:10;23747:3;23743:20;23740:1;23733:31;23783:4;23780:1;23773:15;23807:4;23804:1;23797:15;23823:127;23884:10;23879:3;23875:20;23872:1;23865:31;23915:4;23912:1;23905:15;23939:4;23936:1;23929:15;23955:133;-1:-1:-1;;;;;;24031:32:12;;24021:43;;24011:2;;24078:1;24075;24068:12;24011:2;24001:87;:::o

Swarm Source

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