ETH Price: $3,292.20 (-3.51%)
Gas: 20 Gwei

Token

Cute Panda Club (CUTEPANDAS)
 

Overview

Max Total Supply

211 CUTEPANDAS

Holders

85

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 CUTEPANDAS
0x5CE948C7d30e6EF56f75Ce7520e46bae12B454fd
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:
CutePandas

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 3 of 13: CutePandas.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import './ERC721Enumerable.sol';
import './Ownable.sol';


contract CutePandas is ERC721Enumerable, Ownable {

    string _baseTokenURI;
    uint256 private _reserved = 499;
    uint256 private _price = 0.033 ether;
    bool public _paused = true;

    // withdraw addresses
    address t1 = 0x7a6DAAE2255491c56D82c44e522cBaC4b601985F; // yuri
    address t2 = 0x12D30e16c37a63584453BaaBA8F7f48a7Ba3CEb8; // frank
    address t3 = 0x2a3959Af34bC0E87D62a26582164Ff24A56Deffe; // eric
    address t4 = 0x1458d4598E689A37FCc3F7319ee982e31f0d924d; // cmty

    // Cute Pandas are so cute they can use the Cool Cats code ^^
    // 9999 cute pandas in total
    constructor(string memory baseURI) ERC721("Cute Panda Club", "CUTEPANDAS")  {
        setBaseURI(baseURI);
    }

    function adopt(uint256 num) public payable {
        uint256 supply = totalSupply();
        require( !_paused,                              "Sale paused" );
        require( num < 11,                              "You can adopt a maximum of 10 Pandas" );
        require( supply + num < 10000 - _reserved,      "Exceeds maximum Panda supply" );
        require( msg.value >= _price * num,             "Ether sent is not correct" );

        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    // Just in case Eth does some crazy stuff
    function setPrice(uint256 _newPrice) public onlyOwner() {
        _price = _newPrice;
    }

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

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

    function getPrice() public view returns (uint256){
        return _price;
    }

    function giveAway(address _to, uint256 _amount) external onlyOwner() {
        require( _amount <= _reserved, "Exceeds reserved Panda supply" );

        uint256 supply = totalSupply();
        for(uint256 i; i < _amount; i++){
            _safeMint( _to, supply + i );
        }

        _reserved -= _amount;
    }

    function pause(bool val) public onlyOwner {
        _paused = val;
    }

    function withdrawAll() public payable onlyOwner {
        uint256 _each = address(this).balance / 4;
        require(payable(t1).send(_each));
        require(payable(t2).send(_each));
        require(payable(t3).send(_each));
        require(payable(t4).send(_each));
    }
}

File 1 of 13: 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 13: 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 4 of 13: 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 5 of 13: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. 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 || 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 || 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);
    }

    /**
     * @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 6 of 13: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

File 10 of 13: 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 11 of 13: 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 12 of 13: 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 13 of 13: 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":[{"internalType":"string","name":"baseURI","type":"string"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"adopt","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526101f3600c5566753d533d968000600d55600e8054747a6daae2255491c56d82c44e522cbac4b601985f016001600160a81b0319909116179055600f80546001600160a01b03199081167312d30e16c37a63584453baaba8f7f48a7ba3ceb817909155601080548216732a3959af34bc0e87d62a26582164ff24a56deffe17905560118054909116731458d4598e689a37fcc3f7319ee982e31f0d924d179055348015620000b157600080fd5b506040516200289138038062002891833981016040819052620000d491620002da565b604080518082018252600f81526e21baba32902830b732309021b63ab160891b60208083019182528351808501909452600a8452694355544550414e44415360b01b9084015281519192916200012d9160009162000234565b5080516200014390600190602084019062000234565b505050600062000158620001b860201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001b181620001bc565b5062000403565b3390565b600a546001600160a01b031633146200021b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200023090600b90602084019062000234565b5050565b8280546200024290620003b0565b90600052602060002090601f016020900481019282620002665760008555620002b1565b82601f106200028157805160ff1916838001178555620002b1565b82800160010185558215620002b1579182015b82811115620002b157825182559160200191906001019062000294565b50620002bf929150620002c3565b5090565b5b80821115620002bf5760008155600101620002c4565b60006020808385031215620002ed578182fd5b82516001600160401b038082111562000304578384fd5b818501915085601f83011262000318578384fd5b8151818111156200032d576200032d620003ed565b604051601f8201601f19908116603f01168101908382118183101715620003585762000358620003ed565b81604052828152888684870101111562000370578687fd5b8693505b8284101562000393578484018601518185018701529285019262000374565b82841115620003a457868684830101525b98975050505050505050565b600181811c90821680620003c557607f821691505b60208210811415620003e757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61247e80620004136000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec57806398d5fdca1161008a578063c87b56dd11610064578063c87b56dd146104ab578063ca800144146104cb578063e985e9c5146104eb578063f2fde38b1461053457600080fd5b806398d5fdca14610456578063a22cb4651461046b578063b88d4fde1461048b57600080fd5b80638588b2c5116100c65780638588b2c5146103f05780638da5cb5b1461040357806391b7f5ed1461042157806395d89b411461044157600080fd5b806370a08231146103b3578063715018a6146103d3578063853828b6146103e857600080fd5b806323b872dd11610159578063438b630011610133578063438b6300146103265780634f6ccce71461035357806355f804b3146103735780636352211e1461039357600080fd5b806323b872dd146102c65780632f745c59146102e657806342842e0e1461030657600080fd5b8063081812fc11610195578063081812fc14610235578063095ea7b31461026d57806316c61ccc1461028d57806318160ddd146102a757600080fd5b806301ffc9a7146101bc57806302329a29146101f157806306fdde0314610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004612154565b610554565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061021161020c36600461213a565b61057f565b005b34801561021f57600080fd5b506102286105df565b6040516101e891906122c5565b34801561024157600080fd5b506102556102503660046121d2565b610671565b6040516001600160a01b0390911681526020016101e8565b34801561027957600080fd5b50610211610288366004612111565b610706565b34801561029957600080fd5b50600e546101dc9060ff1681565b3480156102b357600080fd5b506008545b6040519081526020016101e8565b3480156102d257600080fd5b506102116102e1366004612034565b61081c565b3480156102f257600080fd5b506102b8610301366004612111565b610897565b34801561031257600080fd5b50610211610321366004612034565b61092d565b34801561033257600080fd5b50610346610341366004611fe8565b610948565b6040516101e89190612281565b34801561035f57600080fd5b506102b861036e3660046121d2565b610a06565b34801561037f57600080fd5b5061021161038e36600461218c565b610aa7565b34801561039f57600080fd5b506102556103ae3660046121d2565b610b06565b3480156103bf57600080fd5b506102b86103ce366004611fe8565b610b7d565b3480156103df57600080fd5b50610211610c04565b610211610c96565b6102116103fe3660046121d2565b610dbc565b34801561040f57600080fd5b50600a546001600160a01b0316610255565b34801561042d57600080fd5b5061021161043c3660046121d2565b610f5a565b34801561044d57600080fd5b50610228610fa7565b34801561046257600080fd5b50600d546102b8565b34801561047757600080fd5b506102116104863660046120e8565b610fb6565b34801561049757600080fd5b506102116104a636600461206f565b61107b565b3480156104b757600080fd5b506102286104c63660046121d2565b6110fd565b3480156104d757600080fd5b506102116104e6366004612111565b6111e6565b3480156104f757600080fd5b506101dc610506366004612002565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561054057600080fd5b5061021161054f366004611fe8565b6112d5565b60006001600160e01b0319821663780e9d6360e01b14806105795750610579826113de565b92915050565b600a546001600160a01b031633146105cc5760405162461bcd60e51b8152602060048201819052602482015260008051602061242983398151915260448201526064015b60405180910390fd5b600e805460ff1916911515919091179055565b6060600080546105ee90612366565b80601f016020809104026020016040519081016040528092919081815260200182805461061a90612366565b80156106675780601f1061063c57610100808354040283529160200191610667565b820191906000526020600020905b81548152906001019060200180831161064a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106ea5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105c3565b506000908152600460205260409020546001600160a01b031690565b600061071182610b06565b9050806001600160a01b0316836001600160a01b0316141561077f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105c3565b336001600160a01b038216148061079b575061079b8133610506565b61080d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105c3565b610817838361142e565b505050565b610826338261149c565b61088c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016105c3565b610817838383611593565b60006108a283610b7d565b82106109045760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105c3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108178383836040518060200160405280600081525061107b565b6060600061095583610b7d565b905060008167ffffffffffffffff81111561098057634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156109a9578160200160208202803683370190505b50905060005b828110156109fe576109c18582610897565b8282815181106109e157634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806109f6816123a1565b9150506109af565b509392505050565b6000610a1160085490565b8210610a745760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105c3565b60088281548110610a9557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610aef5760405162461bcd60e51b8152602060048201819052602482015260008051602061242983398151915260448201526064016105c3565b8051610b0290600b906020840190611ead565b5050565b6000818152600260205260408120546001600160a01b0316806105795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105c3565b60006001600160a01b038216610be85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105c3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c4c5760405162461bcd60e51b8152602060048201819052602482015260008051602061242983398151915260448201526064016105c3565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610cde5760405162461bcd60e51b8152602060048201819052602482015260008051602061242983398151915260448201526064016105c3565b6000610ceb6004476122f0565b600e5460405191925061010090046001600160a01b0316906108fc8315029083906000818181858888f19350505050610d2357600080fd5b600f546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610d5557600080fd5b6010546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610d8757600080fd5b6011546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610db957600080fd5b50565b6000610dc760085490565b600e5490915060ff1615610e0b5760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b60448201526064016105c3565b600b8210610e675760405162461bcd60e51b8152602060048201526024808201527f596f752063616e2061646f70742061206d6178696d756d206f662031302050616044820152636e64617360e01b60648201526084016105c3565b600c54610e7690612710612323565b610e8083836122d8565b10610ecd5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d6178696d756d2050616e646120737570706c790000000060448201526064016105c3565b81600d54610edb9190612304565b341015610f2a5760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f72726563740000000000000060448201526064016105c3565b60005b8281101561081757610f4833610f4383856122d8565b61173e565b80610f52816123a1565b915050610f2d565b600a546001600160a01b03163314610fa25760405162461bcd60e51b8152602060048201819052602482015260008051602061242983398151915260448201526064016105c3565b600d55565b6060600180546105ee90612366565b6001600160a01b03821633141561100f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105c3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611085338361149c565b6110eb5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016105c3565b6110f784848484611758565b50505050565b6000818152600260205260409020546060906001600160a01b031661118a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016105c3565b60006111946117d6565b905060008151116111b457604051806020016040528060008152506111df565b806111be846117e5565b6040516020016111cf929190612216565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461122e5760405162461bcd60e51b8152602060048201819052602482015260008051602061242983398151915260448201526064016105c3565b600c548111156112805760405162461bcd60e51b815260206004820152601d60248201527f457863656564732072657365727665642050616e646120737570706c7900000060448201526064016105c3565b600061128b60085490565b905060005b828110156112b8576112a684610f4383856122d8565b806112b0816123a1565b915050611290565b5081600c60008282546112cb9190612323565b9091555050505050565b600a546001600160a01b0316331461131d5760405162461bcd60e51b8152602060048201819052602482015260008051602061242983398151915260448201526064016105c3565b6001600160a01b0381166113825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105c3565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061140f57506001600160e01b03198216635b5e139f60e01b145b8061057957506301ffc9a760e01b6001600160e01b0319831614610579565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061146382610b06565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115155760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105c3565b600061152083610b06565b9050806001600160a01b0316846001600160a01b0316148061155b5750836001600160a01b031661155084610671565b6001600160a01b0316145b8061158b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115a682610b06565b6001600160a01b03161461160e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105c3565b6001600160a01b0382166116705760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105c3565b61167b838383611917565b61168660008261142e565b6001600160a01b03831660009081526003602052604081208054600192906116af908490612323565b90915550506001600160a01b03821660009081526003602052604081208054600192906116dd9084906122d8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610b028282604051806020016040528060008152506119cf565b611763848484611593565b61176f84848484611a4d565b6110f75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016105c3565b6060600b80546105ee90612366565b6060816118095750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611833578061181d816123a1565b915061182c9050600a836122f0565b915061180d565b60008167ffffffffffffffff81111561185c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611886576020820181803683370190505b5090505b841561158b5761189b600183612323565b91506118a8600a866123bc565b6118b39060306122d8565b60f81b8183815181106118d657634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611910600a866122f0565b945061188a565b6001600160a01b0383166119725761196d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611995565b816001600160a01b0316836001600160a01b031614611995576119958382611ba5565b6001600160a01b0382166119ac5761081781611c42565b826001600160a01b0316826001600160a01b031614610817576108178282611d1b565b6119d98383611d5f565b6119e66000848484611a4d565b6108175760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016105c3565b60006001600160a01b0384163b15611b9a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a91903390899088908890600401612245565b602060405180830381600087803b158015611aab57600080fd5b505af1925050508015611adb575060408051601f3d908101601f19168201909252611ad891810190612170565b60015b611b80573d808015611b09576040519150601f19603f3d011682016040523d82523d6000602084013e611b0e565b606091505b508051611b785760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016105c3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061158b565b506001949350505050565b60006001611bb284610b7d565b611bbc9190612323565b600083815260076020526040902054909150808214611c0f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c5490600190612323565b60008381526009602052604081205460088054939450909284908110611c8a57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611cb957634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611cff57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611d2683610b7d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611db55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105c3565b6000818152600260205260409020546001600160a01b031615611e1a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105c3565b611e2660008383611917565b6001600160a01b0382166000908152600360205260408120805460019290611e4f9084906122d8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611eb990612366565b90600052602060002090601f016020900481019282611edb5760008555611f21565b82601f10611ef457805160ff1916838001178555611f21565b82800160010185558215611f21579182015b82811115611f21578251825591602001919060010190611f06565b50611f2d929150611f31565b5090565b5b80821115611f2d5760008155600101611f32565b600067ffffffffffffffff80841115611f6157611f616123fc565b604051601f8501601f19908116603f01168101908282118183101715611f8957611f896123fc565b81604052809350858152868686011115611fa257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611fd357600080fd5b919050565b80358015158114611fd357600080fd5b600060208284031215611ff9578081fd5b6111df82611fbc565b60008060408385031215612014578081fd5b61201d83611fbc565b915061202b60208401611fbc565b90509250929050565b600080600060608486031215612048578081fd5b61205184611fbc565b925061205f60208501611fbc565b9150604084013590509250925092565b60008060008060808587031215612084578081fd5b61208d85611fbc565b935061209b60208601611fbc565b925060408501359150606085013567ffffffffffffffff8111156120bd578182fd5b8501601f810187136120cd578182fd5b6120dc87823560208401611f46565b91505092959194509250565b600080604083850312156120fa578182fd5b61210383611fbc565b915061202b60208401611fd8565b60008060408385031215612123578182fd5b61212c83611fbc565b946020939093013593505050565b60006020828403121561214b578081fd5b6111df82611fd8565b600060208284031215612165578081fd5b81356111df81612412565b600060208284031215612181578081fd5b81516111df81612412565b60006020828403121561219d578081fd5b813567ffffffffffffffff8111156121b3578182fd5b8201601f810184136121c3578182fd5b61158b84823560208401611f46565b6000602082840312156121e3578081fd5b5035919050565b6000815180845261220281602086016020860161233a565b601f01601f19169290920160200192915050565b6000835161222881846020880161233a565b83519083019061223c81836020880161233a565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261227760808301846121ea565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122b95783518352928401929184019160010161229d565b50909695505050505050565b6020815260006111df60208301846121ea565b600082198211156122eb576122eb6123d0565b500190565b6000826122ff576122ff6123e6565b500490565b600081600019048311821515161561231e5761231e6123d0565b500290565b600082821015612335576123356123d0565b500390565b60005b8381101561235557818101518382015260200161233d565b838111156110f75750506000910152565b600181811c9082168061237a57607f821691505b6020821081141561239b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123b5576123b56123d0565b5060010190565b6000826123cb576123cb6123e6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610db957600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122088ec35ea8f132b059b1d90151ff1d63669d0f465aae18e858a9baa1221347df264736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f6170692e6375746570616e64612e636c75622f68696464656e2f000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec57806398d5fdca1161008a578063c87b56dd11610064578063c87b56dd146104ab578063ca800144146104cb578063e985e9c5146104eb578063f2fde38b1461053457600080fd5b806398d5fdca14610456578063a22cb4651461046b578063b88d4fde1461048b57600080fd5b80638588b2c5116100c65780638588b2c5146103f05780638da5cb5b1461040357806391b7f5ed1461042157806395d89b411461044157600080fd5b806370a08231146103b3578063715018a6146103d3578063853828b6146103e857600080fd5b806323b872dd11610159578063438b630011610133578063438b6300146103265780634f6ccce71461035357806355f804b3146103735780636352211e1461039357600080fd5b806323b872dd146102c65780632f745c59146102e657806342842e0e1461030657600080fd5b8063081812fc11610195578063081812fc14610235578063095ea7b31461026d57806316c61ccc1461028d57806318160ddd146102a757600080fd5b806301ffc9a7146101bc57806302329a29146101f157806306fdde0314610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004612154565b610554565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061021161020c36600461213a565b61057f565b005b34801561021f57600080fd5b506102286105df565b6040516101e891906122c5565b34801561024157600080fd5b506102556102503660046121d2565b610671565b6040516001600160a01b0390911681526020016101e8565b34801561027957600080fd5b50610211610288366004612111565b610706565b34801561029957600080fd5b50600e546101dc9060ff1681565b3480156102b357600080fd5b506008545b6040519081526020016101e8565b3480156102d257600080fd5b506102116102e1366004612034565b61081c565b3480156102f257600080fd5b506102b8610301366004612111565b610897565b34801561031257600080fd5b50610211610321366004612034565b61092d565b34801561033257600080fd5b50610346610341366004611fe8565b610948565b6040516101e89190612281565b34801561035f57600080fd5b506102b861036e3660046121d2565b610a06565b34801561037f57600080fd5b5061021161038e36600461218c565b610aa7565b34801561039f57600080fd5b506102556103ae3660046121d2565b610b06565b3480156103bf57600080fd5b506102b86103ce366004611fe8565b610b7d565b3480156103df57600080fd5b50610211610c04565b610211610c96565b6102116103fe3660046121d2565b610dbc565b34801561040f57600080fd5b50600a546001600160a01b0316610255565b34801561042d57600080fd5b5061021161043c3660046121d2565b610f5a565b34801561044d57600080fd5b50610228610fa7565b34801561046257600080fd5b50600d546102b8565b34801561047757600080fd5b506102116104863660046120e8565b610fb6565b34801561049757600080fd5b506102116104a636600461206f565b61107b565b3480156104b757600080fd5b506102286104c63660046121d2565b6110fd565b3480156104d757600080fd5b506102116104e6366004612111565b6111e6565b3480156104f757600080fd5b506101dc610506366004612002565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561054057600080fd5b5061021161054f366004611fe8565b6112d5565b60006001600160e01b0319821663780e9d6360e01b14806105795750610579826113de565b92915050565b600a546001600160a01b031633146105cc5760405162461bcd60e51b8152602060048201819052602482015260008051602061242983398151915260448201526064015b60405180910390fd5b600e805460ff1916911515919091179055565b6060600080546105ee90612366565b80601f016020809104026020016040519081016040528092919081815260200182805461061a90612366565b80156106675780601f1061063c57610100808354040283529160200191610667565b820191906000526020600020905b81548152906001019060200180831161064a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106ea5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105c3565b506000908152600460205260409020546001600160a01b031690565b600061071182610b06565b9050806001600160a01b0316836001600160a01b0316141561077f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105c3565b336001600160a01b038216148061079b575061079b8133610506565b61080d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105c3565b610817838361142e565b505050565b610826338261149c565b61088c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016105c3565b610817838383611593565b60006108a283610b7d565b82106109045760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105c3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108178383836040518060200160405280600081525061107b565b6060600061095583610b7d565b905060008167ffffffffffffffff81111561098057634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156109a9578160200160208202803683370190505b50905060005b828110156109fe576109c18582610897565b8282815181106109e157634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806109f6816123a1565b9150506109af565b509392505050565b6000610a1160085490565b8210610a745760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105c3565b60088281548110610a9557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610aef5760405162461bcd60e51b8152602060048201819052602482015260008051602061242983398151915260448201526064016105c3565b8051610b0290600b906020840190611ead565b5050565b6000818152600260205260408120546001600160a01b0316806105795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105c3565b60006001600160a01b038216610be85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105c3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c4c5760405162461bcd60e51b8152602060048201819052602482015260008051602061242983398151915260448201526064016105c3565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610cde5760405162461bcd60e51b8152602060048201819052602482015260008051602061242983398151915260448201526064016105c3565b6000610ceb6004476122f0565b600e5460405191925061010090046001600160a01b0316906108fc8315029083906000818181858888f19350505050610d2357600080fd5b600f546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610d5557600080fd5b6010546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610d8757600080fd5b6011546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610db957600080fd5b50565b6000610dc760085490565b600e5490915060ff1615610e0b5760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b60448201526064016105c3565b600b8210610e675760405162461bcd60e51b8152602060048201526024808201527f596f752063616e2061646f70742061206d6178696d756d206f662031302050616044820152636e64617360e01b60648201526084016105c3565b600c54610e7690612710612323565b610e8083836122d8565b10610ecd5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d6178696d756d2050616e646120737570706c790000000060448201526064016105c3565b81600d54610edb9190612304565b341015610f2a5760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f72726563740000000000000060448201526064016105c3565b60005b8281101561081757610f4833610f4383856122d8565b61173e565b80610f52816123a1565b915050610f2d565b600a546001600160a01b03163314610fa25760405162461bcd60e51b8152602060048201819052602482015260008051602061242983398151915260448201526064016105c3565b600d55565b6060600180546105ee90612366565b6001600160a01b03821633141561100f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105c3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611085338361149c565b6110eb5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016105c3565b6110f784848484611758565b50505050565b6000818152600260205260409020546060906001600160a01b031661118a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016105c3565b60006111946117d6565b905060008151116111b457604051806020016040528060008152506111df565b806111be846117e5565b6040516020016111cf929190612216565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461122e5760405162461bcd60e51b8152602060048201819052602482015260008051602061242983398151915260448201526064016105c3565b600c548111156112805760405162461bcd60e51b815260206004820152601d60248201527f457863656564732072657365727665642050616e646120737570706c7900000060448201526064016105c3565b600061128b60085490565b905060005b828110156112b8576112a684610f4383856122d8565b806112b0816123a1565b915050611290565b5081600c60008282546112cb9190612323565b9091555050505050565b600a546001600160a01b0316331461131d5760405162461bcd60e51b8152602060048201819052602482015260008051602061242983398151915260448201526064016105c3565b6001600160a01b0381166113825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105c3565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061140f57506001600160e01b03198216635b5e139f60e01b145b8061057957506301ffc9a760e01b6001600160e01b0319831614610579565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061146382610b06565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115155760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105c3565b600061152083610b06565b9050806001600160a01b0316846001600160a01b0316148061155b5750836001600160a01b031661155084610671565b6001600160a01b0316145b8061158b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115a682610b06565b6001600160a01b03161461160e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105c3565b6001600160a01b0382166116705760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105c3565b61167b838383611917565b61168660008261142e565b6001600160a01b03831660009081526003602052604081208054600192906116af908490612323565b90915550506001600160a01b03821660009081526003602052604081208054600192906116dd9084906122d8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610b028282604051806020016040528060008152506119cf565b611763848484611593565b61176f84848484611a4d565b6110f75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016105c3565b6060600b80546105ee90612366565b6060816118095750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611833578061181d816123a1565b915061182c9050600a836122f0565b915061180d565b60008167ffffffffffffffff81111561185c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611886576020820181803683370190505b5090505b841561158b5761189b600183612323565b91506118a8600a866123bc565b6118b39060306122d8565b60f81b8183815181106118d657634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611910600a866122f0565b945061188a565b6001600160a01b0383166119725761196d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611995565b816001600160a01b0316836001600160a01b031614611995576119958382611ba5565b6001600160a01b0382166119ac5761081781611c42565b826001600160a01b0316826001600160a01b031614610817576108178282611d1b565b6119d98383611d5f565b6119e66000848484611a4d565b6108175760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016105c3565b60006001600160a01b0384163b15611b9a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a91903390899088908890600401612245565b602060405180830381600087803b158015611aab57600080fd5b505af1925050508015611adb575060408051601f3d908101601f19168201909252611ad891810190612170565b60015b611b80573d808015611b09576040519150601f19603f3d011682016040523d82523d6000602084013e611b0e565b606091505b508051611b785760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016105c3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061158b565b506001949350505050565b60006001611bb284610b7d565b611bbc9190612323565b600083815260076020526040902054909150808214611c0f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c5490600190612323565b60008381526009602052604081205460088054939450909284908110611c8a57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611cb957634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611cff57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611d2683610b7d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611db55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105c3565b6000818152600260205260409020546001600160a01b031615611e1a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105c3565b611e2660008383611917565b6001600160a01b0382166000908152600360205260408120805460019290611e4f9084906122d8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611eb990612366565b90600052602060002090601f016020900481019282611edb5760008555611f21565b82601f10611ef457805160ff1916838001178555611f21565b82800160010185558215611f21579182015b82811115611f21578251825591602001919060010190611f06565b50611f2d929150611f31565b5090565b5b80821115611f2d5760008155600101611f32565b600067ffffffffffffffff80841115611f6157611f616123fc565b604051601f8501601f19908116603f01168101908282118183101715611f8957611f896123fc565b81604052809350858152868686011115611fa257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611fd357600080fd5b919050565b80358015158114611fd357600080fd5b600060208284031215611ff9578081fd5b6111df82611fbc565b60008060408385031215612014578081fd5b61201d83611fbc565b915061202b60208401611fbc565b90509250929050565b600080600060608486031215612048578081fd5b61205184611fbc565b925061205f60208501611fbc565b9150604084013590509250925092565b60008060008060808587031215612084578081fd5b61208d85611fbc565b935061209b60208601611fbc565b925060408501359150606085013567ffffffffffffffff8111156120bd578182fd5b8501601f810187136120cd578182fd5b6120dc87823560208401611f46565b91505092959194509250565b600080604083850312156120fa578182fd5b61210383611fbc565b915061202b60208401611fd8565b60008060408385031215612123578182fd5b61212c83611fbc565b946020939093013593505050565b60006020828403121561214b578081fd5b6111df82611fd8565b600060208284031215612165578081fd5b81356111df81612412565b600060208284031215612181578081fd5b81516111df81612412565b60006020828403121561219d578081fd5b813567ffffffffffffffff8111156121b3578182fd5b8201601f810184136121c3578182fd5b61158b84823560208401611f46565b6000602082840312156121e3578081fd5b5035919050565b6000815180845261220281602086016020860161233a565b601f01601f19169290920160200192915050565b6000835161222881846020880161233a565b83519083019061223c81836020880161233a565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261227760808301846121ea565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122b95783518352928401929184019160010161229d565b50909695505050505050565b6020815260006111df60208301846121ea565b600082198211156122eb576122eb6123d0565b500190565b6000826122ff576122ff6123e6565b500490565b600081600019048311821515161561231e5761231e6123d0565b500290565b600082821015612335576123356123d0565b500390565b60005b8381101561235557818101518382015260200161233d565b838111156110f75750506000910152565b600181811c9082168061237a57607f821691505b6020821081141561239b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123b5576123b56123d0565b5060010190565b6000826123cb576123cb6123e6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610db957600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122088ec35ea8f132b059b1d90151ff1d63669d0f465aae18e858a9baa1221347df264736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f6170692e6375746570616e64612e636c75622f68696464656e2f000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://api.cutepanda.club/hidden/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [2] : 68747470733a2f2f6170692e6375746570616e64612e636c75622f6869646465
Arg [3] : 6e2f000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

116:2725:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:234:5;;;;;;;;;;-1:-1:-1;909:234:5;;;;;:::i;:::-;;:::i;:::-;;;6762:14:13;;6755:22;6737:41;;6725:2;6710:18;909:234:5;;;;;;;;2487:72:2;;;;;;;;;;-1:-1:-1;2487:72:2;;;;;:::i;:::-;;:::i;:::-;;2343:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3755:217::-;;;;;;;;;;-1:-1:-1;3755:217:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5374:55:13;;;5356:74;;5344:2;5329:18;3755:217:4;5311:125:13;3306:388:4;;;;;;;;;;-1:-1:-1;3306:388:4;;;;;:::i;:::-;;:::i;277:26:2:-;;;;;;;;;;-1:-1:-1;277:26:2;;;;;;;;1546:111:5;;;;;;;;;;-1:-1:-1;1633:10:5;:17;1546:111;;;16180:25:13;;;16168:2;16153:18;1546:111:5;16135:76:13;4619:300:4;;;;;;;;;;-1:-1:-1;4619:300:4;;;;;:::i;:::-;;:::i;1222:253:5:-;;;;;;;;;;-1:-1:-1;1222:253:5;;;;;:::i;:::-;;:::i;4985:149:4:-;;;;;;;;;;-1:-1:-1;4985:149:4;;;;;:::i;:::-;;:::i;1373:334:2:-;;;;;;;;;;-1:-1:-1;1373:334:2;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1729:230:5:-;;;;;;;;;;-1:-1:-1;1729:230:5;;;;;:::i;:::-;;:::i;1974:100:2:-;;;;;;;;;;-1:-1:-1;1974:100:2;;;;;:::i;:::-;;:::i;2046:235:4:-;;;;;;;;;;-1:-1:-1;2046:235:4;;;;;:::i;:::-;;:::i;1784:205::-;;;;;;;;;;-1:-1:-1;1784:205:4;;;;;:::i;:::-;;:::i;1693:145:11:-;;;;;;;;;;;;;:::i;2565:274:2:-;;;:::i;831:536::-;;;;;;:::i;:::-;;:::i;1061:85:11:-;;;;;;;;;;-1:-1:-1;1133:6:11;;-1:-1:-1;;;;;1133:6:11;1061:85;;1759:91:2;;;;;;;;;;-1:-1:-1;1759:91:2;;;;;:::i;:::-;;:::i;2505:102:4:-;;;;;;;;;;;;;:::i;2080:79:2:-;;;;;;;;;;-1:-1:-1;2146:6:2;;2080:79;;4039:290:4;;;;;;;;;;-1:-1:-1;4039:290:4;;;;;:::i;:::-;;:::i;5200:282::-;;;;;;;;;;-1:-1:-1;5200:282:4;;;;;:::i;:::-;;:::i;2673:353::-;;;;;;;;;;-1:-1:-1;2673:353:4;;;;;:::i;:::-;;:::i;2165:316:2:-;;;;;;;;;;-1:-1:-1;2165:316:2;;;;;:::i;:::-;;:::i;4395:162:4:-;;;;;;;;;;-1:-1:-1;4395:162:4;;;;;:::i;:::-;-1:-1:-1;;;;;4515:25:4;;;4492:4;4515:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4395:162;1987:240:11;;;;;;;;;;-1:-1:-1;1987:240:11;;;;;:::i;:::-;;:::i;909:234:5:-;1011:4;-1:-1:-1;;;;;;1034:50:5;;-1:-1:-1;;;1034:50:5;;:102;;;1100:36;1124:11;1100:23;:36::i;:::-;1027:109;909:234;-1:-1:-1;;909:234:5:o;2487:72:2:-;1133:6:11;;-1:-1:-1;;;;;1133:6:11;665:10:1;1273:23:11;1265:68;;;;-1:-1:-1;;;1265:68:11;;13105:2:13;1265:68:11;;;13087:21:13;;;13124:18;;;13117:30;-1:-1:-1;;;;;;;;;;;13163:18:13;;;13156:62;13235:18;;1265:68:11;;;;;;;;;2539:7:2::1;:13:::0;;-1:-1:-1;;2539:13:2::1;::::0;::::1;;::::0;;;::::1;::::0;;2487:72::o;2343:98:4:-;2397:13;2429:5;2422:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2343:98;:::o;3755:217::-;3831:7;7004:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7004:16:4;3850:73;;;;-1:-1:-1;;;3850:73:4;;12334:2:13;3850:73:4;;;12316:21:13;12373:2;12353:18;;;12346:30;12412:34;12392:18;;;12385:62;-1:-1:-1;;;12463:18:13;;;12456:42;12515:19;;3850:73:4;12306:234:13;3850:73:4;-1:-1:-1;3941:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;3941:24:4;;3755:217::o;3306:388::-;3386:13;3402:23;3417:7;3402:14;:23::i;:::-;3386:39;;3449:5;-1:-1:-1;;;;;3443:11:4;:2;-1:-1:-1;;;;;3443:11:4;;;3435:57;;;;-1:-1:-1;;;3435:57:4;;14649:2:13;3435:57:4;;;14631:21:13;14688:2;14668:18;;;14661:30;14727:34;14707:18;;;14700:62;-1:-1:-1;;;14778:18:13;;;14771:31;14819:19;;3435:57:4;14621:223:13;3435:57:4;665:10:1;-1:-1:-1;;;;;3511:21:4;;;;:62;;-1:-1:-1;3536:37:4;3553:5;665:10:1;4395:162:4;:::i;3536:37::-;3503:152;;;;-1:-1:-1;;;3503:152:4;;10727:2:13;3503:152:4;;;10709:21:13;10766:2;10746:18;;;10739:30;10805:34;10785:18;;;10778:62;10876:26;10856:18;;;10849:54;10920:19;;3503:152:4;10699:246:13;3503:152:4;3666:21;3675:2;3679:7;3666:8;:21::i;:::-;3306:388;;;:::o;4619:300::-;4778:41;665:10:1;4811:7:4;4778:18;:41::i;:::-;4770:103;;;;-1:-1:-1;;;4770:103:4;;15405:2:13;4770:103:4;;;15387:21:13;15444:2;15424:18;;;15417:30;15483:34;15463:18;;;15456:62;-1:-1:-1;;;15534:18:13;;;15527:47;15591:19;;4770:103:4;15377:239:13;4770:103:4;4884:28;4894:4;4900:2;4904:7;4884:9;:28::i;1222:253:5:-;1319:7;1354:23;1371:5;1354:16;:23::i;:::-;1346:5;:31;1338:87;;;;-1:-1:-1;;;1338:87:5;;7555:2:13;1338:87:5;;;7537:21:13;7594:2;7574:18;;;7567:30;7633:34;7613:18;;;7606:62;-1:-1:-1;;;7684:18:13;;;7677:41;7735:19;;1338:87:5;7527:233:13;1338:87:5;-1:-1:-1;;;;;;1442:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1222:253::o;4985:149:4:-;5088:39;5105:4;5111:2;5115:7;5088:39;;;;;;;;;;;;:16;:39::i;1373:334:2:-;1432:16;1460:18;1481:17;1491:6;1481:9;:17::i;:::-;1460:38;;1509:25;1551:10;1537:25;;;;;;-1:-1:-1;;;1537:25:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1537:25:2;;1509:53;;1576:9;1572:104;1591:10;1587:1;:14;1572:104;;;1635:30;1655:6;1663:1;1635:19;:30::i;:::-;1621:8;1630:1;1621:11;;;;;;-1:-1:-1;;;1621:11:2;;;;;;;;;;;;;;;;;;:44;1603:3;;;;:::i;:::-;;;;1572:104;;;-1:-1:-1;1692:8:2;1373:334;-1:-1:-1;;;1373:334:2:o;1729:230:5:-;1804:7;1839:30;1633:10;:17;;1546:111;1839:30;1831:5;:38;1823:95;;;;-1:-1:-1;;;1823:95:5;;15823:2:13;1823:95:5;;;15805:21:13;15862:2;15842:18;;;15835:30;15901:34;15881:18;;;15874:62;-1:-1:-1;;;15952:18:13;;;15945:42;16004:19;;1823:95:5;15795:234:13;1823:95:5;1935:10;1946:5;1935:17;;;;;;-1:-1:-1;;;1935:17:5;;;;;;;;;;;;;;;;;1928:24;;1729:230;;;:::o;1974:100:2:-;1133:6:11;;-1:-1:-1;;;;;1133:6:11;665:10:1;1273:23:11;1265:68;;;;-1:-1:-1;;;1265:68:11;;13105:2:13;1265:68:11;;;13087:21:13;;;13124:18;;;13117:30;-1:-1:-1;;;;;;;;;;;13163:18:13;;;13156:62;13235:18;;1265:68:11;13077:182:13;1265:68:11;2044:23:2;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1974:100:::0;:::o;2046:235:4:-;2118:7;2153:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2153:16:4;2187:19;2179:73;;;;-1:-1:-1;;;2179:73:4;;11563:2:13;2179:73:4;;;11545:21:13;11602:2;11582:18;;;11575:30;11641:34;11621:18;;;11614:62;-1:-1:-1;;;11692:18:13;;;11685:39;11741:19;;2179:73:4;11535:231:13;1784:205:4;1856:7;-1:-1:-1;;;;;1883:19:4;;1875:74;;;;-1:-1:-1;;;1875:74:4;;11152:2:13;1875:74:4;;;11134:21:13;11191:2;11171:18;;;11164:30;11230:34;11210:18;;;11203:62;-1:-1:-1;;;11281:18:13;;;11274:40;11331:19;;1875:74:4;11124:232:13;1875:74:4;-1:-1:-1;;;;;;1966:16:4;;;;;:9;:16;;;;;;;1784:205::o;1693:145:11:-;1133:6;;-1:-1:-1;;;;;1133:6:11;665:10:1;1273:23:11;1265:68;;;;-1:-1:-1;;;1265:68:11;;13105:2:13;1265:68:11;;;13087:21:13;;;13124:18;;;13117:30;-1:-1:-1;;;;;;;;;;;13163:18:13;;;13156:62;13235:18;;1265:68:11;13077:182:13;1265:68:11;1783:6:::1;::::0;1762:40:::1;::::0;1799:1:::1;::::0;-1:-1:-1;;;;;1783:6:11::1;::::0;1762:40:::1;::::0;1799:1;;1762:40:::1;1812:6;:19:::0;;-1:-1:-1;;;;;;1812:19:11::1;::::0;;1693:145::o;2565:274:2:-;1133:6:11;;-1:-1:-1;;;;;1133:6:11;665:10:1;1273:23:11;1265:68;;;;-1:-1:-1;;;1265:68:11;;13105:2:13;1265:68:11;;;13087:21:13;;;13124:18;;;13117:30;-1:-1:-1;;;;;;;;;;;13163:18:13;;;13156:62;13235:18;;1265:68:11;13077:182:13;1265:68:11;2623:13:2::1;2639:25;2663:1;2639:21;:25;:::i;:::-;2690:2;::::0;2682:23:::1;::::0;2623:41;;-1:-1:-1;2690:2:2::1;::::0;::::1;-1:-1:-1::0;;;;;2690:2:2::1;::::0;2682:23:::1;::::0;::::1;;::::0;2623:41;;2682:23:::1;::::0;;;2623:41;2690:2;2682:23;::::1;;;;;;2674:32;;;::::0;::::1;;2732:2;::::0;2724:23:::1;::::0;-1:-1:-1;;;;;2732:2:2;;::::1;::::0;2724:23;::::1;;;::::0;2741:5;;2732:2:::1;2724:23:::0;2732:2;2724:23;2741:5;2732:2;2724:23;::::1;;;;;;2716:32;;;::::0;::::1;;2774:2;::::0;2766:23:::1;::::0;-1:-1:-1;;;;;2774:2:2;;::::1;::::0;2766:23;::::1;;;::::0;2783:5;;2774:2:::1;2766:23:::0;2774:2;2766:23;2783:5;2774:2;2766:23;::::1;;;;;;2758:32;;;::::0;::::1;;2816:2;::::0;2808:23:::1;::::0;-1:-1:-1;;;;;2816:2:2;;::::1;::::0;2808:23;::::1;;;::::0;2825:5;;2816:2:::1;2808:23:::0;2816:2;2808:23;2825:5;2816:2;2808:23;::::1;;;;;;2800:32;;;::::0;::::1;;1343:1:11;2565:274:2:o:0;831:536::-;884:14;901:13;1633:10:5;:17;;1546:111;901:13:2;934:7;;884:30;;-1:-1:-1;934:7:2;;933:8;924:63;;;;-1:-1:-1;;;924:63:2;;7215:2:13;924:63:2;;;7197:21:13;7254:2;7234:18;;;7227:30;-1:-1:-1;;;7273:18:13;;;7266:41;7324:18;;924:63:2;7187:161:13;924:63:2;1012:2;1006:3;:8;997:88;;;;-1:-1:-1;;;997:88:2;;9150:2:13;997:88:2;;;9132:21:13;9189:2;9169:18;;;9162:30;9228:34;9208:18;;;9201:62;-1:-1:-1;;;9279:18:13;;;9272:34;9323:19;;997:88:2;9122:226:13;997:88:2;1127:9;;1119:17;;:5;:17;:::i;:::-;1104:12;1113:3;1104:6;:12;:::i;:::-;:32;1095:80;;;;-1:-1:-1;;;1095:80:2;;14292:2:13;1095:80:2;;;14274:21:13;14331:2;14311:18;;;14304:30;14370;14350:18;;;14343:58;14418:18;;1095:80:2;14264:178:13;1095:80:2;1216:3;1207:6;;:12;;;;:::i;:::-;1194:9;:25;;1185:77;;;;-1:-1:-1;;;1185:77:2;;15051:2:13;1185:77:2;;;15033:21:13;15090:2;15070:18;;;15063:30;15129:27;15109:18;;;15102:55;15174:18;;1185:77:2;15023:175:13;1185:77:2;1277:9;1273:88;1292:3;1288:1;:7;1273:88;;;1315:35;1326:10;1338;1347:1;1338:6;:10;:::i;:::-;1315:9;:35::i;:::-;1297:3;;;;:::i;:::-;;;;1273:88;;1759:91;1133:6:11;;-1:-1:-1;;;;;1133:6:11;665:10:1;1273:23:11;1265:68;;;;-1:-1:-1;;;1265:68:11;;13105:2:13;1265:68:11;;;13087:21:13;;;13124:18;;;13117:30;-1:-1:-1;;;;;;;;;;;13163:18:13;;;13156:62;13235:18;;1265:68:11;13077:182:13;1265:68:11;1825:6:2::1;:18:::0;1759:91::o;2505:102:4:-;2561:13;2593:7;2586:14;;;;;:::i;4039:290::-;-1:-1:-1;;;;;4141:24:4;;665:10:1;4141:24:4;;4133:62;;;;-1:-1:-1;;;4133:62:4;;9960:2:13;4133:62:4;;;9942:21:13;9999:2;9979:18;;;9972:30;10038:27;10018:18;;;10011:55;10083:18;;4133:62:4;9932:175:13;4133:62:4;665:10:1;4206:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4206:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;4206:53:4;;;;;;;;;;4274:48;;6737:41:13;;;4206:42:4;;665:10:1;4274:48:4;;6710:18:13;4274:48:4;;;;;;;4039:290;;:::o;5200:282::-;5331:41;665:10:1;5364:7:4;5331:18;:41::i;:::-;5323:103;;;;-1:-1:-1;;;5323:103:4;;15405:2:13;5323:103:4;;;15387:21:13;15444:2;15424:18;;;15417:30;15483:34;15463:18;;;15456:62;-1:-1:-1;;;15534:18:13;;;15527:47;15591:19;;5323:103:4;15377:239:13;5323:103:4;5436:39;5450:4;5456:2;5460:7;5469:5;5436:13;:39::i;:::-;5200:282;;;;:::o;2673:353::-;6981:4;7004:16;;;:7;:16;;;;;;2746:13;;-1:-1:-1;;;;;7004:16:4;2771:76;;;;-1:-1:-1;;;2771:76:4;;13876:2:13;2771:76:4;;;13858:21:13;13915:2;13895:18;;;13888:30;13954:34;13934:18;;;13927:62;14025:17;14005:18;;;13998:45;14060:19;;2771:76:4;13848:237:13;2771:76:4;2858:21;2882:10;:8;:10::i;:::-;2858:34;;2933:1;2915:7;2909:21;:25;:110;;;;;;;;;;;;;;;;;2973:7;2982:18;:7;:16;:18::i;:::-;2956:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2909:110;2902:117;2673:353;-1:-1:-1;;;2673:353:4:o;2165:316:2:-;1133:6:11;;-1:-1:-1;;;;;1133:6:11;665:10:1;1273:23:11;1265:68;;;;-1:-1:-1;;;1265:68:11;;13105:2:13;1265:68:11;;;13087:21:13;;;13124:18;;;13117:30;-1:-1:-1;;;;;;;;;;;13163:18:13;;;13156:62;13235:18;;1265:68:11;13077:182:13;1265:68:11;2264:9:2::1;;2253:7;:20;;2244:64;;;::::0;-1:-1:-1;;;2244:64:2;;12747:2:13;2244:64:2::1;::::0;::::1;12729:21:13::0;12786:2;12766:18;;;12759:30;12825:31;12805:18;;;12798:59;12874:18;;2244:64:2::1;12719:179:13::0;2244:64:2::1;2319:14;2336:13;1633:10:5::0;:17;;1546:111;2336:13:2::1;2319:30;;2363:9;2359:85;2378:7;2374:1;:11;2359:85;;;2405:28;2416:3:::0;2421:10:::1;2430:1:::0;2421:6;:10:::1;:::i;2405:28::-;2387:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2359:85;;;;2467:7;2454:9;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;2165:316:2:o;1987:240:11:-;1133:6;;-1:-1:-1;;;;;1133:6:11;665:10:1;1273:23:11;1265:68;;;;-1:-1:-1;;;1265:68:11;;13105:2:13;1265:68:11;;;13087:21:13;;;13124:18;;;13117:30;-1:-1:-1;;;;;;;;;;;13163:18:13;;;13156:62;13235:18;;1265:68:11;13077:182:13;1265:68:11;-1:-1:-1;;;;;2075:22:11;::::1;2067:73;;;::::0;-1:-1:-1;;;2067:73:11;;8386:2:13;2067:73:11::1;::::0;::::1;8368:21:13::0;8425:2;8405:18;;;8398:30;8464:34;8444:18;;;8437:62;-1:-1:-1;;;8515:18:13;;;8508:36;8561:19;;2067:73:11::1;8358:228:13::0;2067:73:11::1;2176:6;::::0;2155:38:::1;::::0;-1:-1:-1;;;;;2155:38:11;;::::1;::::0;2176:6:::1;::::0;2155:38:::1;::::0;2176:6:::1;::::0;2155:38:::1;2203:6;:17:::0;;-1:-1:-1;;;;;;2203:17:11::1;-1:-1:-1::0;;;;;2203:17:11;;;::::1;::::0;;;::::1;::::0;;1987:240::o;1437:288:4:-;1539:4;-1:-1:-1;;;;;;1562:40:4;;-1:-1:-1;;;1562:40:4;;:104;;-1:-1:-1;;;;;;;1618:48:4;;-1:-1:-1;;;1618:48:4;1562:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:3;;;1682:36:4;763:155:3;10673:171:4;10747:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;10747:29:4;-1:-1:-1;;;;;10747:29:4;;;;;;;;:24;;10800:23;10747:24;10800:14;:23::i;:::-;-1:-1:-1;;;;;10791:46:4;;;;;;;;;;;10673:171;;:::o;7199:344::-;7292:4;7004:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7004:16:4;7308:73;;;;-1:-1:-1;;;7308:73:4;;10314:2:13;7308:73:4;;;10296:21:13;10353:2;10333:18;;;10326:30;10392:34;10372:18;;;10365:62;-1:-1:-1;;;10443:18:13;;;10436:42;10495:19;;7308:73:4;10286:234:13;7308:73:4;7391:13;7407:23;7422:7;7407:14;:23::i;:::-;7391:39;;7459:5;-1:-1:-1;;;;;7448:16:4;:7;-1:-1:-1;;;;;7448:16:4;;:51;;;;7492:7;-1:-1:-1;;;;;7468:31:4;:20;7480:7;7468:11;:20::i;:::-;-1:-1:-1;;;;;7468:31:4;;7448:51;:87;;;-1:-1:-1;;;;;;4515:25:4;;;4492:4;4515:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7503:32;7440:96;7199:344;-1:-1:-1;;;;7199:344:4:o;10032:530::-;10156:4;-1:-1:-1;;;;;10129:31:4;:23;10144:7;10129:14;:23::i;:::-;-1:-1:-1;;;;;10129:31:4;;10121:85;;;;-1:-1:-1;;;10121:85:4;;13466:2:13;10121:85:4;;;13448:21:13;13505:2;13485:18;;;13478:30;13544:34;13524:18;;;13517:62;-1:-1:-1;;;13595:18:13;;;13588:39;13644:19;;10121:85:4;13438:231:13;10121:85:4;-1:-1:-1;;;;;10224:16:4;;10216:65;;;;-1:-1:-1;;;10216:65:4;;9555:2:13;10216:65:4;;;9537:21:13;9594:2;9574:18;;;9567:30;9633:34;9613:18;;;9606:62;-1:-1:-1;;;9684:18:13;;;9677:34;9728:19;;10216:65:4;9527:226:13;10216:65:4;10292:39;10313:4;10319:2;10323:7;10292:20;:39::i;:::-;10393:29;10410:1;10414:7;10393:8;:29::i;:::-;-1:-1:-1;;;;;10433:15:4;;;;;;:9;:15;;;;;:20;;10452:1;;10433:15;:20;;10452:1;;10433:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10463:13:4;;;;;;:9;:13;;;;;:18;;10480:1;;10463:13;:18;;10480:1;;10463:18;:::i;:::-;;;;-1:-1:-1;;10491:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10491:21:4;-1:-1:-1;;;;;10491:21:4;;;;;;;;;10528:27;;10491:16;;10528:27;;;;;;;10032:530;;;:::o;7873:108::-;7948:26;7958:2;7962:7;7948:26;;;;;;;;;;;;:9;:26::i;6344:269::-;6457:28;6467:4;6473:2;6477:7;6457:9;:28::i;:::-;6503:48;6526:4;6532:2;6536:7;6545:5;6503:22;:48::i;:::-;6495:111;;;;-1:-1:-1;;;6495:111:4;;7967:2:13;6495:111:4;;;7949:21:13;8006:2;7986:18;;;7979:30;8045:34;8025:18;;;8018:62;-1:-1:-1;;;8096:18:13;;;8089:48;8154:19;;6495:111:4;7939:240:13;1856:112:2;1916:13;1948;1941:20;;;;;:::i;271:703:12:-;327:13;544:10;540:51;;-1:-1:-1;;570:10:12;;;;;;;;;;;;-1:-1:-1;;;570:10:12;;;;;271:703::o;540:51::-;615:5;600:12;654:75;661:9;;654:75;;686:8;;;;:::i;:::-;;-1:-1:-1;708:10:12;;-1:-1:-1;716:2:12;708:10;;:::i;:::-;;;654:75;;;738:19;770:6;760:17;;;;;;-1:-1:-1;;;760:17:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;760:17:12;;738:39;;787:150;794:10;;787:150;;820:11;830:1;820:11;;:::i;:::-;;-1:-1:-1;888:10:12;896:2;888:5;:10;:::i;:::-;875:24;;:2;:24;:::i;:::-;862:39;;845:6;852;845:14;;;;;;-1:-1:-1;;;845:14:12;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;915:11:12;924:2;915:11;;:::i;:::-;;;787:150;;2555:542:5;-1:-1:-1;;;;;2724:18:5;;2720:183;;2758:40;2790:7;3906:10;:17;;3879:24;;;;:15;:24;;;;;:44;;;3933:24;;;;;;;;;;;;3803:161;2758:40;2720:183;;;2827:2;-1:-1:-1;;;;;2819:10:5;:4;-1:-1:-1;;;;;2819:10:5;;2815:88;;2845:47;2878:4;2884:7;2845:32;:47::i;:::-;-1:-1:-1;;;;;2916:16:5;;2912:179;;2948:45;2985:7;2948:36;:45::i;2912:179::-;3020:4;-1:-1:-1;;;;;3014:10:5;:2;-1:-1:-1;;;;;3014:10:5;;3010:81;;3040:40;3068:2;3072:7;3040:27;:40::i;8202:247:4:-;8297:18;8303:2;8307:7;8297:5;:18::i;:::-;8333:54;8364:1;8368:2;8372:7;8381:5;8333:22;:54::i;:::-;8325:117;;;;-1:-1:-1;;;8325:117:4;;7967:2:13;8325:117:4;;;7949:21:13;8006:2;7986:18;;;7979:30;8045:34;8025:18;;;8018:62;-1:-1:-1;;;8096:18:13;;;8089:48;8154:19;;8325:117:4;7939:240:13;11397:824:4;11517:4;-1:-1:-1;;;;;11541:13:4;;1078:20:0;1116:8;11537:678:4;;11576:72;;-1:-1:-1;;;11576:72:4;;-1:-1:-1;;;;;11576:36:4;;;;;:72;;665:10:1;;11627:4:4;;11633:7;;11642:5;;11576:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11576:72:4;;;;;;;;-1:-1:-1;;11576:72:4;;;;;;;;;;;;:::i;:::-;;;11572:591;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11819:13:4;;11815:334;;11861:60;;-1:-1:-1;;;11861:60:4;;7967:2:13;11861:60:4;;;7949:21:13;8006:2;7986:18;;;7979:30;8045:34;8025:18;;;8018:62;-1:-1:-1;;;8096:18:13;;;8089:48;8154:19;;11861:60:4;7939:240:13;11815:334:4;12101:6;12095:13;12086:6;12082:2;12078:15;12071:38;11572:591;-1:-1:-1;;;;;;11698:55:4;-1:-1:-1;;;11698:55:4;;-1:-1:-1;11691:62:4;;11537:678;-1:-1:-1;12200:4:4;11397:824;;;;;;:::o;4581:970:5:-;4843:22;4893:1;4868:22;4885:4;4868:16;:22::i;:::-;:26;;;;:::i;:::-;4904:18;4925:26;;;:17;:26;;;;;;4843:51;;-1:-1:-1;5055:28:5;;;5051:323;;-1:-1:-1;;;;;5121:18:5;;5099:19;5121:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5170:30;;;;;;:44;;;5286:30;;:17;:30;;;;;:43;;;5051:323;-1:-1:-1;5467:26:5;;;;:17;:26;;;;;;;;5460:33;;;-1:-1:-1;;;;;5510:18:5;;;;;:12;:18;;;;;:34;;;;;;;5503:41;4581:970::o;5839:1061::-;6113:10;:17;6088:22;;6113:21;;6133:1;;6113:21;:::i;:::-;6144:18;6165:24;;;:15;:24;;;;;;6533:10;:26;;6088:46;;-1:-1:-1;6165:24:5;;6088:46;;6533:26;;;;-1:-1:-1;;;6533:26:5;;;;;;;;;;;;;;;;;6511:48;;6595:11;6570:10;6581;6570:22;;;;;;-1:-1:-1;;;6570:22:5;;;;;;;;;;;;;;;;;;;;:36;;;;6674:28;;;:15;:28;;;;;;;:41;;;6843:24;;;;;6836:31;6877:10;:16;;;;;-1:-1:-1;;;6877:16:5;;;;;;;;;;;;;;;;;;;;;;;;;;5839:1061;;;;:::o;3391:217::-;3475:14;3492:20;3509:2;3492:16;:20::i;:::-;-1:-1:-1;;;;;3522:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3566:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3391:217:5:o;8771:372:4:-;-1:-1:-1;;;;;8850:16:4;;8842:61;;;;-1:-1:-1;;;8842:61:4;;11973:2:13;8842:61:4;;;11955:21:13;;;11992:18;;;11985:30;12051:34;12031:18;;;12024:62;12103:18;;8842:61:4;11945:182:13;8842:61:4;6981:4;7004:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7004:16:4;:30;8913:58;;;;-1:-1:-1;;;8913:58:4;;8793:2:13;8913:58:4;;;8775:21:13;8832:2;8812:18;;;8805:30;8871;8851:18;;;8844:58;8919:18;;8913:58:4;8765:178:13;8913:58:4;8982:45;9011:1;9015:2;9019:7;8982:20;:45::i;:::-;-1:-1:-1;;;;;9038:13:4;;;;;;:9;:13;;;;;:18;;9055:1;;9038:13;:18;;9055:1;;9038:18;:::i;:::-;;;;-1:-1:-1;;9066:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9066:21:4;-1:-1:-1;;;;;9066:21:4;;;;;;;;9103:33;;9066:16;;;9103:33;;9066:16;;9103:33;8771:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:13;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:13;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:13;;757:65;;747:2;;836:1;833;826:12;747:2;699:147;;;:::o;851:160::-;916:20;;972:13;;965:21;955:32;;945:2;;1001:1;998;991:12;1016:196;1075:6;1128:2;1116:9;1107:7;1103:23;1099:32;1096:2;;;1149:6;1141;1134:22;1096:2;1177:29;1196:9;1177:29;:::i;1217:270::-;1285:6;1293;1346:2;1334:9;1325:7;1321:23;1317:32;1314:2;;;1367:6;1359;1352:22;1314:2;1395:29;1414:9;1395:29;:::i;:::-;1385:39;;1443:38;1477:2;1466:9;1462:18;1443:38;:::i;:::-;1433:48;;1304:183;;;;;:::o;1492:338::-;1569:6;1577;1585;1638:2;1626:9;1617:7;1613:23;1609:32;1606:2;;;1659:6;1651;1644:22;1606:2;1687:29;1706:9;1687:29;:::i;:::-;1677:39;;1735:38;1769:2;1758:9;1754:18;1735:38;:::i;:::-;1725:48;;1820:2;1809:9;1805:18;1792:32;1782:42;;1596:234;;;;;:::o;1835:696::-;1930:6;1938;1946;1954;2007:3;1995:9;1986:7;1982:23;1978:33;1975:2;;;2029:6;2021;2014:22;1975:2;2057:29;2076:9;2057:29;:::i;:::-;2047:39;;2105:38;2139:2;2128:9;2124:18;2105:38;:::i;:::-;2095:48;;2190:2;2179:9;2175:18;2162:32;2152:42;;2245:2;2234:9;2230:18;2217:32;2272:18;2264:6;2261:30;2258:2;;;2309:6;2301;2294:22;2258:2;2337:22;;2390:4;2382:13;;2378:27;-1:-1:-1;2368:2:13;;2424:6;2416;2409:22;2368:2;2452:73;2517:7;2512:2;2499:16;2494:2;2490;2486:11;2452:73;:::i;:::-;2442:83;;;1965:566;;;;;;;:::o;2536:264::-;2601:6;2609;2662:2;2650:9;2641:7;2637:23;2633:32;2630:2;;;2683:6;2675;2668:22;2630:2;2711:29;2730:9;2711:29;:::i;:::-;2701:39;;2759:35;2790:2;2779:9;2775:18;2759:35;:::i;2805:264::-;2873:6;2881;2934:2;2922:9;2913:7;2909:23;2905:32;2902:2;;;2955:6;2947;2940:22;2902:2;2983:29;3002:9;2983:29;:::i;:::-;2973:39;3059:2;3044:18;;;;3031:32;;-1:-1:-1;;;2892:177:13:o;3074:190::-;3130:6;3183:2;3171:9;3162:7;3158:23;3154:32;3151:2;;;3204:6;3196;3189:22;3151:2;3232:26;3248:9;3232:26;:::i;3269:255::-;3327:6;3380:2;3368:9;3359:7;3355:23;3351:32;3348:2;;;3401:6;3393;3386:22;3348:2;3445:9;3432:23;3464:30;3488:5;3464:30;:::i;3529:259::-;3598:6;3651:2;3639:9;3630:7;3626:23;3622:32;3619:2;;;3672:6;3664;3657:22;3619:2;3709:9;3703:16;3728:30;3752:5;3728:30;:::i;3793:480::-;3862:6;3915:2;3903:9;3894:7;3890:23;3886:32;3883:2;;;3936:6;3928;3921:22;3883:2;3981:9;3968:23;4014:18;4006:6;4003:30;4000:2;;;4051:6;4043;4036:22;4000:2;4079:22;;4132:4;4124:13;;4120:27;-1:-1:-1;4110:2:13;;4166:6;4158;4151:22;4110:2;4194:73;4259:7;4254:2;4241:16;4236:2;4232;4228:11;4194:73;:::i;4278:190::-;4337:6;4390:2;4378:9;4369:7;4365:23;4361:32;4358:2;;;4411:6;4403;4396:22;4358:2;-1:-1:-1;4439:23:13;;4348:120;-1:-1:-1;4348:120:13:o;4473:257::-;4514:3;4552:5;4546:12;4579:6;4574:3;4567:19;4595:63;4651:6;4644:4;4639:3;4635:14;4628:4;4621:5;4617:16;4595:63;:::i;:::-;4712:2;4691:15;-1:-1:-1;;4687:29:13;4678:39;;;;4719:4;4674:50;;4522:208;-1:-1:-1;;4522:208:13:o;4735:470::-;4914:3;4952:6;4946:13;4968:53;5014:6;5009:3;5002:4;4994:6;4990:17;4968:53;:::i;:::-;5084:13;;5043:16;;;;5106:57;5084:13;5043:16;5140:4;5128:17;;5106:57;:::i;:::-;5179:20;;4922:283;-1:-1:-1;;;;4922:283:13:o;5441:511::-;5635:4;-1:-1:-1;;;;;5745:2:13;5737:6;5733:15;5722:9;5715:34;5797:2;5789:6;5785:15;5780:2;5769:9;5765:18;5758:43;;5837:6;5832:2;5821:9;5817:18;5810:34;5880:3;5875:2;5864:9;5860:18;5853:31;5901:45;5941:3;5930:9;5926:19;5918:6;5901:45;:::i;:::-;5893:53;5644:308;-1:-1:-1;;;;;;5644:308:13:o;5957:635::-;6128:2;6180:21;;;6250:13;;6153:18;;;6272:22;;;6099:4;;6128:2;6351:15;;;;6325:2;6310:18;;;6099:4;6397:169;6411:6;6408:1;6405:13;6397:169;;;6472:13;;6460:26;;6541:15;;;;6506:12;;;;6433:1;6426:9;6397:169;;;-1:-1:-1;6583:3:13;;6108:484;-1:-1:-1;;;;;;6108:484:13:o;6789:219::-;6938:2;6927:9;6920:21;6901:4;6958:44;6998:2;6987:9;6983:18;6975:6;6958:44;:::i;16216:128::-;16256:3;16287:1;16283:6;16280:1;16277:13;16274:2;;;16293:18;;:::i;:::-;-1:-1:-1;16329:9:13;;16264:80::o;16349:120::-;16389:1;16415;16405:2;;16420:18;;:::i;:::-;-1:-1:-1;16454:9:13;;16395:74::o;16474:168::-;16514:7;16580:1;16576;16572:6;16568:14;16565:1;16562:21;16557:1;16550:9;16543:17;16539:45;16536:2;;;16587:18;;:::i;:::-;-1:-1:-1;16627:9:13;;16526:116::o;16647:125::-;16687:4;16715:1;16712;16709:8;16706:2;;;16720:18;;:::i;:::-;-1:-1:-1;16757:9:13;;16696:76::o;16777:258::-;16849:1;16859:113;16873:6;16870:1;16867:13;16859:113;;;16949:11;;;16943:18;16930:11;;;16923:39;16895:2;16888:10;16859:113;;;16990:6;16987:1;16984:13;16981:2;;;-1:-1:-1;;17025:1:13;17007:16;;17000:27;16830:205::o;17040:380::-;17119:1;17115:12;;;;17162;;;17183:2;;17237:4;17229:6;17225:17;17215:27;;17183:2;17290;17282:6;17279:14;17259:18;17256:38;17253:2;;;17336:10;17331:3;17327:20;17324:1;17317:31;17371:4;17368:1;17361:15;17399:4;17396:1;17389:15;17253:2;;17095:325;;;:::o;17425:135::-;17464:3;-1:-1:-1;;17485:17:13;;17482:2;;;17505:18;;:::i;:::-;-1:-1:-1;17552:1:13;17541:13;;17472:88::o;17565:112::-;17597:1;17623;17613:2;;17628:18;;:::i;:::-;-1:-1:-1;17662:9:13;;17603:74::o;17682:127::-;17743:10;17738:3;17734:20;17731:1;17724:31;17774:4;17771:1;17764:15;17798:4;17795:1;17788:15;17814:127;17875:10;17870:3;17866:20;17863:1;17856:31;17906:4;17903:1;17896:15;17930:4;17927:1;17920:15;17946:127;18007:10;18002:3;17998:20;17995:1;17988:31;18038:4;18035:1;18028:15;18062:4;18059:1;18052:15;18078:131;-1:-1:-1;;;;;;18152:32:13;;18142:43;;18132:2;;18199:1;18196;18189:12

Swarm Source

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