ETH Price: $3,110.67 (+5.43%)
Gas: 4 Gwei

Token

Chad Ape Gym Club (CAGC)
 

Overview

Max Total Supply

6,969 CAGC

Holders

1,981

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
whatsfloor.eth
Balance
1 CAGC
0x939c7466fbf91865528f11a39ce4f5f76ee593a4
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

In the near future, as part of an experiment – 10,000 Apes on the Ethereum blockchain were exposed to a super ape serum which transmogrified them into 6969 CHAD Apes with super-ape capabilities.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CAGC

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 13 : CAGC.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";

contract CAGC is ERC721, Ownable, PaymentSplitter {

    uint256 public constant MAX_TOKENS = 6969;
    uint256 public constant TOKENS_PER_MINT = 20;
    uint256 public mintPrice = 0.03 ether;
    uint256 private totalMinted = 0;
    uint256 private reservedTokens = 0;

    string private _baseTokenURI;
    bool public saleIsOpen = false;

    mapping (address => bool) private _reserved;
    address public proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    event MintChadApe (address indexed buyer, uint256 startWith, uint256 batch);

    constructor(
        address[] memory payees,
        uint256[] memory shares,
        string memory baseURI
    ) ERC721("Chad Ape Gym Club", "CAGC") PaymentSplitter(payees, shares) {
        _baseTokenURI = baseURI;
    }

    function mintChadApe(uint256 numberOfTokens) external payable {
        require(saleIsOpen, "Sale is not active");
        require(numberOfTokens <= TOKENS_PER_MINT, "Max apes per mint exceeded");
        require(totalMinted + numberOfTokens <= MAX_TOKENS - reservedTokens, "Purchase would exceed max available apes");
        require(mintPrice * numberOfTokens <= msg.value, "Ether value sent is not correct");

        emit MintChadApe(msg.sender, totalMinted+1, numberOfTokens);

        for(uint256 i = 1;  i <= numberOfTokens; i++) {
            _safeMint(msg.sender, totalMinted + i);
        }

        totalMinted += numberOfTokens;
    }

    function reservedMint() external payable {
        require(saleIsOpen, "Sale is not active");
        require(_reserved[msg.sender], "You don't have any reserved tokens left");
        require(mintPrice <= msg.value, "Ether value sent is not correct");

        emit MintChadApe(msg.sender, totalMinted + 1, 1);

        _safeMint(msg.sender, totalMinted + 1);
        totalMinted += 1;
        reservedTokens -=1 ;
        _reserved[msg.sender] = false;
    }

    function giveaway(uint256 numberOfTokens, address mintAddress) external onlyOwner {
        require(totalMinted + numberOfTokens <= MAX_TOKENS - reservedTokens, "Purchase would exceed max available apes");

        for(uint256 i = 1;  i <= numberOfTokens; i++) {
            _mint(mintAddress, totalMinted + i);
        }

        totalMinted += numberOfTokens;
    }

    function totalSupply() public view returns (uint256) {
        return totalMinted;
    }

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

    function addToWhitelist(address _addr) external onlyOwner {
        _reserved[_addr] = true;
        reservedTokens += 1;
    }

    function batchWhitelist(address[] memory _addrs) external onlyOwner {
        uint size = _addrs.length;

        for(uint256 i = 0; i < size; i++){
            _reserved[_addrs[i]] = true;
        }

        reservedTokens += size;
    }

    function removeFromWhitelist(address _addr) external onlyOwner {
         _reserved[_addr] = false;
         reservedTokens -=1;
    }

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

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

    function flipSaleState() external onlyOwner {
        saleIsOpen = !saleIsOpen;
    }

    function getReservedCount() external onlyOwner view returns (uint256) {
        return reservedTokens;
    }

    /**
    * Override isApprovedForAll to auto-approve opensea proxy contract
    */
    function isApprovedForAll(address _owner, address operator) public view override returns (bool) {
        if (operator == proxyRegistryAddress) {
            return true;
        }
        return super.isApprovedForAll(_owner, operator);
    }

    /**
    * Change the OS proxy if ever needed.
    */
    function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner {
        proxyRegistryAddress = _proxyRegistryAddress;
    }
}

File 2 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/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 4 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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 5 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    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;
        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");

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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) {
        return msg.data;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 11 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 12 of 13 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;

import "../utils/Address.sol";
import "../utils/Context.sol";
import "../utils/math/SafeMath.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 13 of 13 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

Settings
{
  "metadata": {
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares","type":"uint256[]"},{"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":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"batch","type":"uint256"}],"name":"MintChadApe","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKENS_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addrs","type":"address[]"}],"name":"batchWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReservedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"mintAddress","type":"address"}],"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":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintChadApe","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"stateMutability":"payable","type":"receive"}]

6080604052666a94d74f430000600c556000600d819055600e556010805460ff19169055601280546001600160a01b03191673a5409ec958c83c3f309868babaca7c86dcb077c11790553480156200005657600080fd5b5060405162002f2138038062002f21833981016040819052620000799162000651565b604080518082018252601181527021b430b21020b8329023bcb69021b63ab160791b6020808301918252835180850190945260048452634341474360e01b90840152815186938693929091620000d2916000916200049c565b508051620000e89060019060208401906200049c565b50505062000105620000ff6200025860201b60201c565b6200025c565b8051825114620001775760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620001ca5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200016e565b60005b8251811015620002365762000221838281518110620001f057620001f062000841565b60200260200101518383815181106200020d576200020d62000841565b6020026020010151620002ae60201b60201c565b806200022d816200080d565b915050620001cd565b505081516200024e9150600f9060208401906200049c565b505050506200086d565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200031b5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200016e565b600081116200036d5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200016e565b6001600160a01b03821660009081526009602052604090205415620003e95760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200016e565b600b8054600181019091557f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319166001600160a01b038416908117909155600090815260096020526040902081905560075462000453908290620007b5565b600755604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054620004aa90620007d0565b90600052602060002090601f016020900481019282620004ce576000855562000519565b82601f10620004e957805160ff191683800117855562000519565b8280016001018555821562000519579182015b8281111562000519578251825591602001919060010190620004fc565b50620005279291506200052b565b5090565b5b808211156200052757600081556001016200052c565b600082601f8301126200055457600080fd5b815160206200056d62000567836200078f565b6200075c565b80838252828201915082860187848660051b89010111156200058e57600080fd5b60005b85811015620005af5781518452928401929084019060010162000591565b5090979650505050505050565b600082601f830112620005ce57600080fd5b81516001600160401b03811115620005ea57620005ea62000857565b602062000600601f8301601f191682016200075c565b82815285828487010111156200061557600080fd5b60005b838110156200063557858101830151828201840152820162000618565b83811115620006475760008385840101525b5095945050505050565b6000806000606084860312156200066757600080fd5b83516001600160401b03808211156200067f57600080fd5b818601915086601f8301126200069457600080fd5b81516020620006a762000567836200078f565b8083825282820191508286018b848660051b8901011115620006c857600080fd5b600096505b84871015620007035780516001600160a01b0381168114620006ee57600080fd5b835260019690960195918301918301620006cd565b50918901519197509093505050808211156200071e57600080fd5b6200072c8783880162000542565b935060408601519150808211156200074357600080fd5b506200075286828701620005bc565b9150509250925092565b604051601f8201601f191681016001600160401b038111828210171562000787576200078762000857565b604052919050565b60006001600160401b03821115620007ab57620007ab62000857565b5060051b60200190565b60008219821115620007cb57620007cb6200082b565b500190565b600181811c90821680620007e557607f821691505b602082108114156200080757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200082457620008246200082b565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6126a4806200087d6000396000f3fe6080604052600436106102345760003560e01c806376ec46bb1161012e578063c87b56dd116100ab578063e43252d71161006f578063e43252d7146106a5578063e985e9c5146106c5578063ed016a46146106e5578063f2fde38b146106fa578063f47c84c51461071a57600080fd5b8063c87b56dd146105fa578063cd7c03261461061a578063ce7c2ac21461063a578063d26ea6c014610670578063e33b7de31461069057600080fd5b80639852595c116100f25780639852595c1461054f578063995fb90814610585578063a22cb4651461059a578063a2b40d19146105ba578063b88d4fde146105da57600080fd5b806376ec46bb146104c95780638ab1d681146104dc5780638b83209b146104fc5780638da5cb5b1461051c57806395d89b411461053a57600080fd5b806339ee0661116101bc5780636352211e116101805780636352211e146104565780636817c76c146104765780636e04b2b01461048c57806370a0823114610494578063715018a6146104b457600080fd5b806339ee0661146103c15780633a98ef39146103e15780633c0a1d09146103f657806342842e0e1461041657806355f804b31461043657600080fd5b80631211b076116102035780631211b0761461033357806318160ddd1461034d578063191655871461036c57806323b872dd1461038c57806334918dfd146103ac57600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b31461031157600080fd5b3661027d577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561028e57600080fd5b506102a261029d366004612236565b610730565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610782565b6040516102ae919061238f565b3480156102e557600080fd5b506102f96102f43660046122b9565b610814565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c366004612151565b6108ae565b005b34801561033f57600080fd5b506010546102a29060ff1681565b34801561035957600080fd5b50600d545b6040519081526020016102ae565b34801561037857600080fd5b50610331610387366004612007565b6109c4565b34801561039857600080fd5b506103316103a736600461205d565b610b95565b3480156103b857600080fd5b50610331610bc6565b3480156103cd57600080fd5b506103316103dc36600461217d565b610c04565b3480156103ed57600080fd5b5060075461035e565b34801561040257600080fd5b506103316104113660046122d2565b610cb3565b34801561042257600080fd5b5061033161043136600461205d565b610d5e565b34801561044257600080fd5b50610331610451366004612270565b610d79565b34801561046257600080fd5b506102f96104713660046122b9565b610dba565b34801561048257600080fd5b5061035e600c5481565b610331610e31565b3480156104a057600080fd5b5061035e6104af366004612007565b610fe5565b3480156104c057600080fd5b5061033161106c565b6103316104d73660046122b9565b6110a2565b3480156104e857600080fd5b506103316104f7366004612007565b611264565b34801561050857600080fd5b506102f96105173660046122b9565b6112c1565b34801561052857600080fd5b506006546001600160a01b03166102f9565b34801561054657600080fd5b506102cc6112f1565b34801561055b57600080fd5b5061035e61056a366004612007565b6001600160a01b03166000908152600a602052604090205490565b34801561059157600080fd5b5061035e611300565b3480156105a657600080fd5b506103316105b536600461211e565b611334565b3480156105c657600080fd5b506103316105d53660046122b9565b61133f565b3480156105e657600080fd5b506103316105f536600461209e565b61136e565b34801561060657600080fd5b506102cc6106153660046122b9565b6113a6565b34801561062657600080fd5b506012546102f9906001600160a01b031681565b34801561064657600080fd5b5061035e610655366004612007565b6001600160a01b031660009081526009602052604090205490565b34801561067c57600080fd5b5061033161068b366004612007565b611481565b34801561069c57600080fd5b5060085461035e565b3480156106b157600080fd5b506103316106c0366004612007565b6114cd565b3480156106d157600080fd5b506102a26106e0366004612024565b611530565b3480156106f157600080fd5b5061035e601481565b34801561070657600080fd5b50610331610715366004612007565b611580565b34801561072657600080fd5b5061035e611b3981565b60006001600160e01b031982166380ac58cd60e01b148061076157506001600160e01b03198216635b5e139f60e01b145b8061077c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461079190612581565b80601f01602080910402602001604051908101604052809291908181526020018280546107bd90612581565b801561080a5780601f106107df5761010080835404028352916020019161080a565b820191906000526020600020905b8154815290600101906020018083116107ed57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108925760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108b982610dba565b9050806001600160a01b0316836001600160a01b031614156109275760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610889565b336001600160a01b038216148061094357506109438133611530565b6109b55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610889565b6109bf838361161b565b505050565b6001600160a01b038116600090815260096020526040902054610a385760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610889565b600060085447610a4891906124f3565b6001600160a01b0383166000908152600a60209081526040808320546007546009909352908320549394509192610a7f908561251f565b610a89919061250b565b610a93919061253e565b905080610af65760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610889565b6001600160a01b0383166000908152600a6020526040902054610b1a9082906124f3565b6001600160a01b0384166000908152600a6020526040902055600854610b419082906124f3565b600855610b4e8382611689565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610b9f33826117a2565b610bbb5760405162461bcd60e51b815260040161088990612471565b6109bf838383611879565b6006546001600160a01b03163314610bf05760405162461bcd60e51b81526004016108899061243c565b6010805460ff19811660ff90911615179055565b6006546001600160a01b03163314610c2e5760405162461bcd60e51b81526004016108899061243c565b805160005b81811015610c9757600160116000858481518110610c5357610c53612617565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610c8f816125bc565b915050610c33565b5080600e6000828254610caa91906124f3565b90915550505050565b6006546001600160a01b03163314610cdd5760405162461bcd60e51b81526004016108899061243c565b600e54610cec90611b3961253e565b82600d54610cfa91906124f3565b1115610d185760405162461bcd60e51b8152600401610889906123f4565b60015b828111610d4b57610d398282600d54610d3491906124f3565b611a19565b80610d43816125bc565b915050610d1b565b5081600d6000828254610caa91906124f3565b6109bf8383836040518060200160405280600081525061136e565b6006546001600160a01b03163314610da35760405162461bcd60e51b81526004016108899061243c565b8051610db690600f906020840190611f16565b5050565b6000818152600260205260408120546001600160a01b03168061077c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610889565b60105460ff16610e785760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b6044820152606401610889565b3360009081526011602052604090205460ff16610ee75760405162461bcd60e51b815260206004820152602760248201527f596f7520646f6e2774206861766520616e7920726573657276656420746f6b656044820152661b9cc81b19599d60ca1b6064820152608401610889565b34600c541115610f395760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610889565b600d5433907f287979557ba73b2da778e676cefbaad22616a3a2393a5cd8451c3f9de39668fd90610f6b9060016124f3565b60408051918252600160208301520160405180910390a2610f9a33600d546001610f9591906124f3565b611b5b565b6001600d6000828254610fad91906124f3565b925050819055506001600e6000828254610fc7919061253e565b9091555050336000908152601160205260409020805460ff19169055565b60006001600160a01b0382166110505760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610889565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110965760405162461bcd60e51b81526004016108899061243c565b6110a06000611b75565b565b60105460ff166110e95760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b6044820152606401610889565b601481111561113a5760405162461bcd60e51b815260206004820152601a60248201527f4d6178206170657320706572206d696e742065786365656465640000000000006044820152606401610889565b600e5461114990611b3961253e565b81600d5461115791906124f3565b11156111755760405162461bcd60e51b8152600401610889906123f4565b3481600c54611184919061251f565b11156111d25760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610889565b600d5433907f287979557ba73b2da778e676cefbaad22616a3a2393a5cd8451c3f9de39668fd906112049060016124f3565b60408051918252602082018590520160405180910390a260015b818111611249576112373382600d54610f9591906124f3565b80611241816125bc565b91505061121e565b5080600d600082825461125c91906124f3565b909155505050565b6006546001600160a01b0316331461128e5760405162461bcd60e51b81526004016108899061243c565b6001600160a01b0381166000908152601160205260408120805460ff19169055600e80546001929061125c90849061253e565b6000600b82815481106112d6576112d6612617565b6000918252602090912001546001600160a01b031692915050565b60606001805461079190612581565b6006546000906001600160a01b0316331461132d5760405162461bcd60e51b81526004016108899061243c565b50600e5490565b610db6338383611bc7565b6006546001600160a01b031633146113695760405162461bcd60e51b81526004016108899061243c565b600c55565b61137833836117a2565b6113945760405162461bcd60e51b815260040161088990612471565b6113a084848484611c96565b50505050565b6000818152600260205260409020546060906001600160a01b03166114255760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610889565b600061142f611cc9565b9050600081511161144f576040518060200160405280600081525061147a565b8061145984611cd8565b60405160200161146a929190612323565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146114ab5760405162461bcd60e51b81526004016108899061243c565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146114f75760405162461bcd60e51b81526004016108899061243c565b6001600160a01b0381166000908152601160205260408120805460ff19166001908117909155600e80549192909161125c9084906124f3565b6012546000906001600160a01b03838116911614156115515750600161077c565b506001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6006546001600160a01b031633146115aa5760405162461bcd60e51b81526004016108899061243c565b6001600160a01b03811661160f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610889565b61161881611b75565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061165082610dba565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156116d95760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610889565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611726576040519150601f19603f3d011682016040523d82523d6000602084013e61172b565b606091505b50509050806109bf5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610889565b6000818152600260205260408120546001600160a01b031661181b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610889565b600061182683610dba565b9050806001600160a01b0316846001600160a01b031614806118615750836001600160a01b031661185684610814565b6001600160a01b0316145b8061187157506118718185611530565b949350505050565b826001600160a01b031661188c82610dba565b6001600160a01b0316146118f45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610889565b6001600160a01b0382166119565760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610889565b61196160008261161b565b6001600160a01b038316600090815260036020526040812080546001929061198a90849061253e565b90915550506001600160a01b03821660009081526003602052604081208054600192906119b89084906124f3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216611a6f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610889565b6000818152600260205260409020546001600160a01b031615611ad45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610889565b6001600160a01b0382166000908152600360205260408120805460019290611afd9084906124f3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b610db6828260405180602001604052806000815250611dd6565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611c295760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610889565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ca1848484611879565b611cad84848484611e09565b6113a05760405162461bcd60e51b8152600401610889906123a2565b6060600f805461079190612581565b606081611cfc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d265780611d10816125bc565b9150611d1f9050600a8361250b565b9150611d00565b60008167ffffffffffffffff811115611d4157611d4161262d565b6040519080825280601f01601f191660200182016040528015611d6b576020820181803683370190505b5090505b841561187157611d8060018361253e565b9150611d8d600a866125d7565b611d989060306124f3565b60f81b818381518110611dad57611dad612617565b60200101906001600160f81b031916908160001a905350611dcf600a8661250b565b9450611d6f565b611de08383611a19565b611ded6000848484611e09565b6109bf5760405162461bcd60e51b8152600401610889906123a2565b60006001600160a01b0384163b15611f0b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e4d903390899088908890600401612352565b602060405180830381600087803b158015611e6757600080fd5b505af1925050508015611e97575060408051601f3d908101601f19168201909252611e9491810190612253565b60015b611ef1573d808015611ec5576040519150601f19603f3d011682016040523d82523d6000602084013e611eca565b606091505b508051611ee95760405162461bcd60e51b8152600401610889906123a2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611871565b506001949350505050565b828054611f2290612581565b90600052602060002090601f016020900481019282611f445760008555611f8a565b82601f10611f5d57805160ff1916838001178555611f8a565b82800160010185558215611f8a579182015b82811115611f8a578251825591602001919060010190611f6f565b50611f96929150611f9a565b5090565b5b80821115611f965760008155600101611f9b565b600067ffffffffffffffff831115611fc957611fc961262d565b611fdc601f8401601f19166020016124c2565b9050828152838383011115611ff057600080fd5b828260208301376000602084830101529392505050565b60006020828403121561201957600080fd5b813561147a81612643565b6000806040838503121561203757600080fd5b823561204281612643565b9150602083013561205281612643565b809150509250929050565b60008060006060848603121561207257600080fd5b833561207d81612643565b9250602084013561208d81612643565b929592945050506040919091013590565b600080600080608085870312156120b457600080fd5b84356120bf81612643565b935060208501356120cf81612643565b925060408501359150606085013567ffffffffffffffff8111156120f257600080fd5b8501601f8101871361210357600080fd5b61211287823560208401611faf565b91505092959194509250565b6000806040838503121561213157600080fd5b823561213c81612643565b91506020830135801515811461205257600080fd5b6000806040838503121561216457600080fd5b823561216f81612643565b946020939093013593505050565b6000602080838503121561219057600080fd5b823567ffffffffffffffff808211156121a857600080fd5b818501915085601f8301126121bc57600080fd5b8135818111156121ce576121ce61262d565b8060051b91506121df8483016124c2565b8181528481019084860184860187018a10156121fa57600080fd5b600095505b83861015612229578035945061221485612643565b848352600195909501949186019186016121ff565b5098975050505050505050565b60006020828403121561224857600080fd5b813561147a81612658565b60006020828403121561226557600080fd5b815161147a81612658565b60006020828403121561228257600080fd5b813567ffffffffffffffff81111561229957600080fd5b8201601f810184136122aa57600080fd5b61187184823560208401611faf565b6000602082840312156122cb57600080fd5b5035919050565b600080604083850312156122e557600080fd5b82359150602083013561205281612643565b6000815180845261230f816020860160208601612555565b601f01601f19169290920160200192915050565b60008351612335818460208801612555565b835190830190612349818360208801612555565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612385908301846122f7565b9695505050505050565b60208152600061147a60208301846122f7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f507572636861736520776f756c6420657863656564206d617820617661696c61604082015267626c65206170657360c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156124eb576124eb61262d565b604052919050565b60008219821115612506576125066125eb565b500190565b60008261251a5761251a612601565b500490565b6000816000190483118215151615612539576125396125eb565b500290565b600082821015612550576125506125eb565b500390565b60005b83811015612570578181015183820152602001612558565b838111156113a05750506000910152565b600181811c9082168061259557607f821691505b602082108114156125b657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125d0576125d06125eb565b5060010190565b6000826125e6576125e6612601565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461161857600080fd5b6001600160e01b03198116811461161857600080fdfea26469706673582212209b5b77712265e25eefb4c3ae8b9dbc1d506bc0322d9693fd89b50b6fe992722f64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000020000000000000000000000002a6f8e45ce9275c3fdb226f6ef417a16a67ecace0000000000000000000000000121aacfeddf589c564d0fac80b4c665da836cc20000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102345760003560e01c806376ec46bb1161012e578063c87b56dd116100ab578063e43252d71161006f578063e43252d7146106a5578063e985e9c5146106c5578063ed016a46146106e5578063f2fde38b146106fa578063f47c84c51461071a57600080fd5b8063c87b56dd146105fa578063cd7c03261461061a578063ce7c2ac21461063a578063d26ea6c014610670578063e33b7de31461069057600080fd5b80639852595c116100f25780639852595c1461054f578063995fb90814610585578063a22cb4651461059a578063a2b40d19146105ba578063b88d4fde146105da57600080fd5b806376ec46bb146104c95780638ab1d681146104dc5780638b83209b146104fc5780638da5cb5b1461051c57806395d89b411461053a57600080fd5b806339ee0661116101bc5780636352211e116101805780636352211e146104565780636817c76c146104765780636e04b2b01461048c57806370a0823114610494578063715018a6146104b457600080fd5b806339ee0661146103c15780633a98ef39146103e15780633c0a1d09146103f657806342842e0e1461041657806355f804b31461043657600080fd5b80631211b076116102035780631211b0761461033357806318160ddd1461034d578063191655871461036c57806323b872dd1461038c57806334918dfd146103ac57600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b31461031157600080fd5b3661027d577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561028e57600080fd5b506102a261029d366004612236565b610730565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610782565b6040516102ae919061238f565b3480156102e557600080fd5b506102f96102f43660046122b9565b610814565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c366004612151565b6108ae565b005b34801561033f57600080fd5b506010546102a29060ff1681565b34801561035957600080fd5b50600d545b6040519081526020016102ae565b34801561037857600080fd5b50610331610387366004612007565b6109c4565b34801561039857600080fd5b506103316103a736600461205d565b610b95565b3480156103b857600080fd5b50610331610bc6565b3480156103cd57600080fd5b506103316103dc36600461217d565b610c04565b3480156103ed57600080fd5b5060075461035e565b34801561040257600080fd5b506103316104113660046122d2565b610cb3565b34801561042257600080fd5b5061033161043136600461205d565b610d5e565b34801561044257600080fd5b50610331610451366004612270565b610d79565b34801561046257600080fd5b506102f96104713660046122b9565b610dba565b34801561048257600080fd5b5061035e600c5481565b610331610e31565b3480156104a057600080fd5b5061035e6104af366004612007565b610fe5565b3480156104c057600080fd5b5061033161106c565b6103316104d73660046122b9565b6110a2565b3480156104e857600080fd5b506103316104f7366004612007565b611264565b34801561050857600080fd5b506102f96105173660046122b9565b6112c1565b34801561052857600080fd5b506006546001600160a01b03166102f9565b34801561054657600080fd5b506102cc6112f1565b34801561055b57600080fd5b5061035e61056a366004612007565b6001600160a01b03166000908152600a602052604090205490565b34801561059157600080fd5b5061035e611300565b3480156105a657600080fd5b506103316105b536600461211e565b611334565b3480156105c657600080fd5b506103316105d53660046122b9565b61133f565b3480156105e657600080fd5b506103316105f536600461209e565b61136e565b34801561060657600080fd5b506102cc6106153660046122b9565b6113a6565b34801561062657600080fd5b506012546102f9906001600160a01b031681565b34801561064657600080fd5b5061035e610655366004612007565b6001600160a01b031660009081526009602052604090205490565b34801561067c57600080fd5b5061033161068b366004612007565b611481565b34801561069c57600080fd5b5060085461035e565b3480156106b157600080fd5b506103316106c0366004612007565b6114cd565b3480156106d157600080fd5b506102a26106e0366004612024565b611530565b3480156106f157600080fd5b5061035e601481565b34801561070657600080fd5b50610331610715366004612007565b611580565b34801561072657600080fd5b5061035e611b3981565b60006001600160e01b031982166380ac58cd60e01b148061076157506001600160e01b03198216635b5e139f60e01b145b8061077c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461079190612581565b80601f01602080910402602001604051908101604052809291908181526020018280546107bd90612581565b801561080a5780601f106107df5761010080835404028352916020019161080a565b820191906000526020600020905b8154815290600101906020018083116107ed57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108925760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108b982610dba565b9050806001600160a01b0316836001600160a01b031614156109275760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610889565b336001600160a01b038216148061094357506109438133611530565b6109b55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610889565b6109bf838361161b565b505050565b6001600160a01b038116600090815260096020526040902054610a385760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610889565b600060085447610a4891906124f3565b6001600160a01b0383166000908152600a60209081526040808320546007546009909352908320549394509192610a7f908561251f565b610a89919061250b565b610a93919061253e565b905080610af65760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610889565b6001600160a01b0383166000908152600a6020526040902054610b1a9082906124f3565b6001600160a01b0384166000908152600a6020526040902055600854610b419082906124f3565b600855610b4e8382611689565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610b9f33826117a2565b610bbb5760405162461bcd60e51b815260040161088990612471565b6109bf838383611879565b6006546001600160a01b03163314610bf05760405162461bcd60e51b81526004016108899061243c565b6010805460ff19811660ff90911615179055565b6006546001600160a01b03163314610c2e5760405162461bcd60e51b81526004016108899061243c565b805160005b81811015610c9757600160116000858481518110610c5357610c53612617565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610c8f816125bc565b915050610c33565b5080600e6000828254610caa91906124f3565b90915550505050565b6006546001600160a01b03163314610cdd5760405162461bcd60e51b81526004016108899061243c565b600e54610cec90611b3961253e565b82600d54610cfa91906124f3565b1115610d185760405162461bcd60e51b8152600401610889906123f4565b60015b828111610d4b57610d398282600d54610d3491906124f3565b611a19565b80610d43816125bc565b915050610d1b565b5081600d6000828254610caa91906124f3565b6109bf8383836040518060200160405280600081525061136e565b6006546001600160a01b03163314610da35760405162461bcd60e51b81526004016108899061243c565b8051610db690600f906020840190611f16565b5050565b6000818152600260205260408120546001600160a01b03168061077c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610889565b60105460ff16610e785760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b6044820152606401610889565b3360009081526011602052604090205460ff16610ee75760405162461bcd60e51b815260206004820152602760248201527f596f7520646f6e2774206861766520616e7920726573657276656420746f6b656044820152661b9cc81b19599d60ca1b6064820152608401610889565b34600c541115610f395760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610889565b600d5433907f287979557ba73b2da778e676cefbaad22616a3a2393a5cd8451c3f9de39668fd90610f6b9060016124f3565b60408051918252600160208301520160405180910390a2610f9a33600d546001610f9591906124f3565b611b5b565b6001600d6000828254610fad91906124f3565b925050819055506001600e6000828254610fc7919061253e565b9091555050336000908152601160205260409020805460ff19169055565b60006001600160a01b0382166110505760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610889565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110965760405162461bcd60e51b81526004016108899061243c565b6110a06000611b75565b565b60105460ff166110e95760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b6044820152606401610889565b601481111561113a5760405162461bcd60e51b815260206004820152601a60248201527f4d6178206170657320706572206d696e742065786365656465640000000000006044820152606401610889565b600e5461114990611b3961253e565b81600d5461115791906124f3565b11156111755760405162461bcd60e51b8152600401610889906123f4565b3481600c54611184919061251f565b11156111d25760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610889565b600d5433907f287979557ba73b2da778e676cefbaad22616a3a2393a5cd8451c3f9de39668fd906112049060016124f3565b60408051918252602082018590520160405180910390a260015b818111611249576112373382600d54610f9591906124f3565b80611241816125bc565b91505061121e565b5080600d600082825461125c91906124f3565b909155505050565b6006546001600160a01b0316331461128e5760405162461bcd60e51b81526004016108899061243c565b6001600160a01b0381166000908152601160205260408120805460ff19169055600e80546001929061125c90849061253e565b6000600b82815481106112d6576112d6612617565b6000918252602090912001546001600160a01b031692915050565b60606001805461079190612581565b6006546000906001600160a01b0316331461132d5760405162461bcd60e51b81526004016108899061243c565b50600e5490565b610db6338383611bc7565b6006546001600160a01b031633146113695760405162461bcd60e51b81526004016108899061243c565b600c55565b61137833836117a2565b6113945760405162461bcd60e51b815260040161088990612471565b6113a084848484611c96565b50505050565b6000818152600260205260409020546060906001600160a01b03166114255760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610889565b600061142f611cc9565b9050600081511161144f576040518060200160405280600081525061147a565b8061145984611cd8565b60405160200161146a929190612323565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146114ab5760405162461bcd60e51b81526004016108899061243c565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146114f75760405162461bcd60e51b81526004016108899061243c565b6001600160a01b0381166000908152601160205260408120805460ff19166001908117909155600e80549192909161125c9084906124f3565b6012546000906001600160a01b03838116911614156115515750600161077c565b506001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6006546001600160a01b031633146115aa5760405162461bcd60e51b81526004016108899061243c565b6001600160a01b03811661160f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610889565b61161881611b75565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061165082610dba565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156116d95760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610889565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611726576040519150601f19603f3d011682016040523d82523d6000602084013e61172b565b606091505b50509050806109bf5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610889565b6000818152600260205260408120546001600160a01b031661181b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610889565b600061182683610dba565b9050806001600160a01b0316846001600160a01b031614806118615750836001600160a01b031661185684610814565b6001600160a01b0316145b8061187157506118718185611530565b949350505050565b826001600160a01b031661188c82610dba565b6001600160a01b0316146118f45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610889565b6001600160a01b0382166119565760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610889565b61196160008261161b565b6001600160a01b038316600090815260036020526040812080546001929061198a90849061253e565b90915550506001600160a01b03821660009081526003602052604081208054600192906119b89084906124f3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216611a6f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610889565b6000818152600260205260409020546001600160a01b031615611ad45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610889565b6001600160a01b0382166000908152600360205260408120805460019290611afd9084906124f3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b610db6828260405180602001604052806000815250611dd6565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611c295760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610889565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ca1848484611879565b611cad84848484611e09565b6113a05760405162461bcd60e51b8152600401610889906123a2565b6060600f805461079190612581565b606081611cfc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d265780611d10816125bc565b9150611d1f9050600a8361250b565b9150611d00565b60008167ffffffffffffffff811115611d4157611d4161262d565b6040519080825280601f01601f191660200182016040528015611d6b576020820181803683370190505b5090505b841561187157611d8060018361253e565b9150611d8d600a866125d7565b611d989060306124f3565b60f81b818381518110611dad57611dad612617565b60200101906001600160f81b031916908160001a905350611dcf600a8661250b565b9450611d6f565b611de08383611a19565b611ded6000848484611e09565b6109bf5760405162461bcd60e51b8152600401610889906123a2565b60006001600160a01b0384163b15611f0b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e4d903390899088908890600401612352565b602060405180830381600087803b158015611e6757600080fd5b505af1925050508015611e97575060408051601f3d908101601f19168201909252611e9491810190612253565b60015b611ef1573d808015611ec5576040519150601f19603f3d011682016040523d82523d6000602084013e611eca565b606091505b508051611ee95760405162461bcd60e51b8152600401610889906123a2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611871565b506001949350505050565b828054611f2290612581565b90600052602060002090601f016020900481019282611f445760008555611f8a565b82601f10611f5d57805160ff1916838001178555611f8a565b82800160010185558215611f8a579182015b82811115611f8a578251825591602001919060010190611f6f565b50611f96929150611f9a565b5090565b5b80821115611f965760008155600101611f9b565b600067ffffffffffffffff831115611fc957611fc961262d565b611fdc601f8401601f19166020016124c2565b9050828152838383011115611ff057600080fd5b828260208301376000602084830101529392505050565b60006020828403121561201957600080fd5b813561147a81612643565b6000806040838503121561203757600080fd5b823561204281612643565b9150602083013561205281612643565b809150509250929050565b60008060006060848603121561207257600080fd5b833561207d81612643565b9250602084013561208d81612643565b929592945050506040919091013590565b600080600080608085870312156120b457600080fd5b84356120bf81612643565b935060208501356120cf81612643565b925060408501359150606085013567ffffffffffffffff8111156120f257600080fd5b8501601f8101871361210357600080fd5b61211287823560208401611faf565b91505092959194509250565b6000806040838503121561213157600080fd5b823561213c81612643565b91506020830135801515811461205257600080fd5b6000806040838503121561216457600080fd5b823561216f81612643565b946020939093013593505050565b6000602080838503121561219057600080fd5b823567ffffffffffffffff808211156121a857600080fd5b818501915085601f8301126121bc57600080fd5b8135818111156121ce576121ce61262d565b8060051b91506121df8483016124c2565b8181528481019084860184860187018a10156121fa57600080fd5b600095505b83861015612229578035945061221485612643565b848352600195909501949186019186016121ff565b5098975050505050505050565b60006020828403121561224857600080fd5b813561147a81612658565b60006020828403121561226557600080fd5b815161147a81612658565b60006020828403121561228257600080fd5b813567ffffffffffffffff81111561229957600080fd5b8201601f810184136122aa57600080fd5b61187184823560208401611faf565b6000602082840312156122cb57600080fd5b5035919050565b600080604083850312156122e557600080fd5b82359150602083013561205281612643565b6000815180845261230f816020860160208601612555565b601f01601f19169290920160200192915050565b60008351612335818460208801612555565b835190830190612349818360208801612555565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612385908301846122f7565b9695505050505050565b60208152600061147a60208301846122f7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f507572636861736520776f756c6420657863656564206d617820617661696c61604082015267626c65206170657360c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156124eb576124eb61262d565b604052919050565b60008219821115612506576125066125eb565b500190565b60008261251a5761251a612601565b500490565b6000816000190483118215151615612539576125396125eb565b500290565b600082821015612550576125506125eb565b500390565b60005b83811015612570578181015183820152602001612558565b838111156113a05750506000910152565b600181811c9082168061259557607f821691505b602082108114156125b657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125d0576125d06125eb565b5060010190565b6000826125e6576125e6612601565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461161857600080fd5b6001600160e01b03198116811461161857600080fdfea26469706673582212209b5b77712265e25eefb4c3ae8b9dbc1d506bc0322d9693fd89b50b6fe992722f64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000020000000000000000000000002a6f8e45ce9275c3fdb226f6ef417a16a67ecace0000000000000000000000000121aacfeddf589c564d0fac80b4c665da836cc20000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : payees (address[]): 0x2A6f8E45cE9275c3FDb226F6eF417a16A67eCace,0x0121AaCFEDDF589c564D0Fac80b4C665DA836cC2
Arg [1] : shares (uint256[]): 80,20
Arg [2] : baseURI (string):

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 0000000000000000000000002a6f8e45ce9275c3fdb226f6ef417a16a67ecace
Arg [5] : 0000000000000000000000000121aacfeddf589c564d0fac80b4c665da836cc2
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

235:3967:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2724:40:2;719:10:8;2724:40:2;;;-1:-1:-1;;;;;7187:32:13;;;7169:51;;2754:9:2;7251:2:13;7236:18;;7229:34;7142:18;2724:40:2;;;;;;;235:3967:0;;;;;1555:300:3;;;;;;;;;;-1:-1:-1;1555:300:3;;;;;:::i;:::-;;:::i;:::-;;;8211:14:13;;8204:22;8186:41;;8174:2;8159:18;1555:300:3;;;;;;;;2473:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3984:217::-;;;;;;;;;;-1:-1:-1;3984:217:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6943:32:13;;;6925:51;;6913:2;6898:18;3984:217:3;6779:203:13;3522:401:3;;;;;;;;;;-1:-1:-1;3522:401:3;;;;;:::i;:::-;;:::i;:::-;;544:30:0;;;;;;;;;;-1:-1:-1;544:30:0;;;;;;;;2519:88;;;;;;;;;;-1:-1:-1;2589:11:0;;2519:88;;;18473:25:13;;;18461:2;18446:18;2519:88:0;18327:177:13;3888:600:2;;;;;;;;;;-1:-1:-1;3888:600:2;;;;;:::i;:::-;;:::i;4711:330:3:-;;;;;;;;;;-1:-1:-1;4711:330:3;;;;;:::i;:::-;;:::i;3459:85:0:-;;;;;;;;;;;;;:::i;2864:238::-;;;;;;;;;;-1:-1:-1;2864:238:0;;;;;:::i;:::-;;:::i;2849:89:2:-;;;;;;;;;;-1:-1:-1;2919:12:2;;2849:89;;2146:367:0;;;;;;;;;;-1:-1:-1;2146:367:0;;;;;:::i;:::-;;:::i;5107:179:3:-;;;;;;;;;;-1:-1:-1;5107:179:3;;;;;:::i;:::-;;:::i;3248:102:0:-;;;;;;;;;;-1:-1:-1;3248:102:0;;;;;:::i;:::-;;:::i;2176:235:3:-;;;;;;;;;;-1:-1:-1;2176:235:3;;;;;:::i;:::-;;:::i;389:37:0:-;;;;;;;;;;;;;;;;1680:460;;;:::i;1914:205:3:-;;;;;;;;;;-1:-1:-1;1914:205:3;;;;;:::i;:::-;;:::i;1668:101:1:-;;;;;;;;;;;;;:::i;1028:646:0:-;;;;;;:::i;:::-;;:::i;3108:134::-;;;;;;;;;;-1:-1:-1;3108:134:0;;;;;:::i;:::-;;:::i;3596:98:2:-;;;;;;;;;;-1:-1:-1;3596:98:2;;;;;:::i;:::-;;:::i;1036:85:1:-;;;;;;;;;;-1:-1:-1;1108:6:1;;-1:-1:-1;;;;;1108:6:1;1036:85;;2635:102:3;;;;;;;;;;;;;:::i;3403:107:2:-;;;;;;;;;;-1:-1:-1;3403:107:2;;;;;:::i;:::-;-1:-1:-1;;;;;3485:18:2;3459:7;3485:18;;;:9;:18;;;;;;;3403:107;3550:108:0;;;;;;;;;;;;;:::i;4268:153:3:-;;;;;;;;;;-1:-1:-1;4268:153:3;;;;;:::i;:::-;;:::i;3356:97:0:-;;;;;;;;;;-1:-1:-1;3356:97:0;;;;;:::i;:::-;;:::i;5352:320:3:-;;;;;;;;;;-1:-1:-1;5352:320:3;;;;;:::i;:::-;;:::i;2803:329::-;;;;;;;;;;-1:-1:-1;2803:329:3;;;;;:::i;:::-;;:::i;630:80:0:-;;;;;;;;;;-1:-1:-1;630:80:0;;;;-1:-1:-1;;;;;630:80:0;;;3206:103:2;;;;;;;;;;-1:-1:-1;3206:103:2;;;;;:::i;:::-;-1:-1:-1;;;;;3286:16:2;3260:7;3286:16;;;:7;:16;;;;;;;3206:103;4056:144:0;;;;;;;;;;-1:-1:-1;4056:144:0;;;;;:::i;:::-;;:::i;3027:93:2:-;;;;;;;;;;-1:-1:-1;3099:14:2;;3027:93;;2731:127:0;;;;;;;;;;-1:-1:-1;2731:127:0;;;;;:::i;:::-;;:::i;3750:243::-;;;;;;;;;;-1:-1:-1;3750:243:0;;;;;:::i;:::-;;:::i;339:44::-;;;;;;;;;;;;381:2;339:44;;1918:198:1;;;;;;;;;;-1:-1:-1;1918:198:1;;;;;:::i;:::-;;:::i;292:41:0:-;;;;;;;;;;;;329:4;292:41;;1555:300:3;1657:4;-1:-1:-1;;;;;;1692:40:3;;-1:-1:-1;;;1692:40:3;;:104;;-1:-1:-1;;;;;;;1748:48:3;;-1:-1:-1;;;1748:48:3;1692:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:10;;;1812:36:3;1673:175;1555:300;-1:-1:-1;;1555:300:3:o;2473:98::-;2527:13;2559:5;2552:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2473:98;:::o;3984:217::-;4060:7;7232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7232:16:3;4079:73;;;;-1:-1:-1;;;4079:73:3;;16109:2:13;4079:73:3;;;16091:21:13;16148:2;16128:18;;;16121:30;16187:34;16167:18;;;16160:62;-1:-1:-1;;;16238:18:13;;;16231:42;16290:19;;4079:73:3;;;;;;;;;-1:-1:-1;4170:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4170:24:3;;3984:217::o;3522:401::-;3602:13;3618:23;3633:7;3618:14;:23::i;:::-;3602:39;;3665:5;-1:-1:-1;;;;;3659:11:3;:2;-1:-1:-1;;;;;3659:11:3;;;3651:57;;;;-1:-1:-1;;;3651:57:3;;17709:2:13;3651:57:3;;;17691:21:13;17748:2;17728:18;;;17721:30;17787:34;17767:18;;;17760:62;-1:-1:-1;;;17838:18:13;;;17831:31;17879:19;;3651:57:3;17507:397:13;3651:57:3;719:10:8;-1:-1:-1;;;;;3740:21:3;;;;:62;;-1:-1:-1;3765:37:3;3782:5;719:10:8;3750:243:0;:::i;3765:37:3:-;3719:165;;;;-1:-1:-1;;;3719:165:3;;14093:2:13;3719:165:3;;;14075:21:13;14132:2;14112:18;;;14105:30;14171:34;14151:18;;;14144:62;14242:26;14222:18;;;14215:54;14286:19;;3719:165:3;13891:420:13;3719:165:3;3895:21;3904:2;3908:7;3895:8;:21::i;:::-;3592:331;3522:401;;:::o;3888:600:2:-;-1:-1:-1;;;;;3963:16:2;;3982:1;3963:16;;;:7;:16;;;;;;3955:71;;;;-1:-1:-1;;;3955:71:2;;10202:2:13;3955:71:2;;;10184:21:13;10241:2;10221:18;;;10214:30;10280:34;10260:18;;;10253:62;-1:-1:-1;;;10331:18:13;;;10324:36;10377:19;;3955:71:2;10000:402:13;3955:71:2;4037:21;4085:14;;4061:21;:38;;;;:::i;:::-;-1:-1:-1;;;;;4179:18:2;;4109:15;4179:18;;;:9;:18;;;;;;;;;4164:12;;4144:7;:16;;;;;;;4037:62;;-1:-1:-1;4109:15:2;;4128:32;;4037:62;4128:32;:::i;:::-;4127:49;;;;:::i;:::-;:70;;;;:::i;:::-;4109:88;-1:-1:-1;4216:12:2;4208:68;;;;-1:-1:-1;;;4208:68:2;;13681:2:13;4208:68:2;;;13663:21:13;13720:2;13700:18;;;13693:30;13759:34;13739:18;;;13732:62;-1:-1:-1;;;13810:18:13;;;13803:41;13861:19;;4208:68:2;13479:407:13;4208:68:2;-1:-1:-1;;;;;4308:18:2;;;;;;:9;:18;;;;;;:28;;4329:7;;4308:28;:::i;:::-;-1:-1:-1;;;;;4287:18:2;;;;;;:9;:18;;;;;:49;4363:14;;:24;;4380:7;;4363:24;:::i;:::-;4346:14;:41;4398:35;4416:7;4425;4398:17;:35::i;:::-;4448:33;;;-1:-1:-1;;;;;7187:32:13;;7169:51;;7251:2;7236:18;;7229:34;;;4448:33:2;;7142:18:13;4448:33:2;;;;;;;3945:543;;3888:600;:::o;4711:330:3:-;4900:41;719:10:8;4933:7:3;4900:18;:41::i;:::-;4892:103;;;;-1:-1:-1;;;4892:103:3;;;;;;;:::i;:::-;5006:28;5016:4;5022:2;5026:7;5006:9;:28::i;3459:85:0:-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:8;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;3527:10:0::1;::::0;;-1:-1:-1;;3513:24:0;::::1;3527:10;::::0;;::::1;3526:11;3513:24;::::0;;3459:85::o;2864:238::-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:8;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;2954:13:0;;2942:9:::1;2978:85;3001:4;2997:1;:8;2978:85;;;3048:4;3025:9;:20;3035:6;3042:1;3035:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;3025:20:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;3025:20:0;:27;;-1:-1:-1;;3025:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;3007:3;::::1;::::0;::::1;:::i;:::-;;;;2978:85;;;;3091:4;3073:14;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;2864:238:0:o;2146:367::-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:8;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;2291:14:0::1;::::0;2278:27:::1;::::0;329:4:::1;2278:27;:::i;:::-;2260:14;2246:11;;:28;;;;:::i;:::-;:59;;2238:112;;;;-1:-1:-1::0;;;2238:112:0::1;;;;;;;:::i;:::-;2377:1;2361:106;2386:14;2381:1;:19;2361:106;;2421:35;2427:11;2454:1;2440:11;;:15;;;;:::i;:::-;2421:5;:35::i;:::-;2402:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2361:106;;;;2492:14;2477:11;;:29;;;;;;;:::i;5107:179:3:-:0;5240:39;5257:4;5263:2;5267:7;5240:39;;;;;;;;;;;;:16;:39::i;3248:102:0:-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:8;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;3320:23:0;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;3248:102:::0;:::o;2176:235:3:-;2248:7;2283:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2283:16:3;2317:19;2309:73;;;;-1:-1:-1;;;2309:73:3;;14929:2:13;2309:73:3;;;14911:21:13;14968:2;14948:18;;;14941:30;15007:34;14987:18;;;14980:62;-1:-1:-1;;;15058:18:13;;;15051:39;15107:19;;2309:73:3;14727:405:13;1680:460:0;1739:10;;;;1731:41;;;;-1:-1:-1;;;1731:41:0;;11368:2:13;1731:41:0;;;11350:21:13;11407:2;11387:18;;;11380:30;-1:-1:-1;;;11426:18:13;;;11419:48;11484:18;;1731:41:0;11166:342:13;1731:41:0;1800:10;1790:21;;;;:9;:21;;;;;;;;1782:73;;;;-1:-1:-1;;;1782:73:0;;12860:2:13;1782:73:0;;;12842:21:13;12899:2;12879:18;;;12872:30;12938:34;12918:18;;;12911:62;-1:-1:-1;;;12989:18:13;;;12982:37;13036:19;;1782:73:0;12658:403:13;1782:73:0;1886:9;1873;;:22;;1865:66;;;;-1:-1:-1;;;1865:66:0;;11715:2:13;1865:66:0;;;11697:21:13;11754:2;11734:18;;;11727:30;11793:33;11773:18;;;11766:61;11844:18;;1865:66:0;11513:355:13;1865:66:0;1971:11;;1959:10;;1947:43;;1971:15;;1985:1;1971:15;:::i;:::-;1947:43;;;18691:25:13;;;1988:1:0;18747:2:13;18732:18;;18725:34;18664:18;1947:43:0;;;;;;;2001:38;2011:10;2023:11;;2037:1;2023:15;;;;:::i;:::-;2001:9;:38::i;:::-;2064:1;2049:11;;:16;;;;;;;:::i;:::-;;;;;;;;2092:1;2075:14;;:18;;;;;;;:::i;:::-;;;;-1:-1:-1;;2114:10:0;2128:5;2104:21;;;:9;:21;;;;;:29;;-1:-1:-1;;2104:29:0;;;1680:460::o;1914:205:3:-;1986:7;-1:-1:-1;;;;;2013:19:3;;2005:74;;;;-1:-1:-1;;;2005:74:3;;14518:2:13;2005:74:3;;;14500:21:13;14557:2;14537:18;;;14530:30;14596:34;14576:18;;;14569:62;-1:-1:-1;;;14647:18:13;;;14640:40;14697:19;;2005:74:3;14316:406:13;2005:74:3;-1:-1:-1;;;;;;2096:16:3;;;;;:9;:16;;;;;;;1914:205::o;1668:101:1:-;1108:6;;-1:-1:-1;;;;;1108:6:1;719:10:8;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;1028:646:0:-;1108:10;;;;1100:41;;;;-1:-1:-1;;;1100:41:0;;11368:2:13;1100:41:0;;;11350:21:13;11407:2;11387:18;;;11380:30;-1:-1:-1;;;11426:18:13;;;11419:48;11484:18;;1100:41:0;11166:342:13;1100:41:0;381:2;1159:14;:33;;1151:72;;;;-1:-1:-1;;;1151:72:0;;9490:2:13;1151:72:0;;;9472:21:13;9529:2;9509:18;;;9502:30;9568:28;9548:18;;;9541:56;9614:18;;1151:72:0;9288:350:13;1151:72:0;1286:14;;1273:27;;329:4;1273:27;:::i;:::-;1255:14;1241:11;;:28;;;;:::i;:::-;:59;;1233:112;;;;-1:-1:-1;;;1233:112:0;;;;;;;:::i;:::-;1393:9;1375:14;1363:9;;:26;;;;:::i;:::-;:39;;1355:83;;;;-1:-1:-1;;;1355:83:0;;11715:2:13;1355:83:0;;;11697:21:13;11754:2;11734:18;;;11727:30;11793:33;11773:18;;;11766:61;11844:18;;1355:83:0;11513:355:13;1355:83:0;1478:11;;1466:10;;1454:54;;1478:13;;1490:1;1478:13;:::i;:::-;1454:54;;;18691:25:13;;;18747:2;18732:18;;18725:34;;;18664:18;1454:54:0;;;;;;;1535:1;1519:109;1544:14;1539:1;:19;1519:109;;1579:38;1589:10;1615:1;1601:11;;:15;;;;:::i;1579:38::-;1560:3;;;;:::i;:::-;;;;1519:109;;;;1653:14;1638:11;;:29;;;;;;;:::i;:::-;;;;-1:-1:-1;;;1028:646:0:o;3108:134::-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:8;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;3182:16:0;::::1;3201:5;3182:16:::0;;;:9:::1;:16;::::0;;;;:24;;-1:-1:-1;;3182:24:0::1;::::0;;3217:14:::1;:18:::0;;3182:24;;3201:5;3217:18:::1;::::0;3182:24;;3217:18:::1;:::i;3596:98:2:-:0;3647:7;3673;3681:5;3673:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;3673:14:2;;3596:98;-1:-1:-1;;3596:98:2:o;2635:102:3:-;2691:13;2723:7;2716:14;;;;;:::i;3550:108:0:-;1108:6:1;;3611:7:0;;-1:-1:-1;;;;;1108:6:1;719:10:8;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;-1:-1:-1;3637:14:0::1;::::0;3550:108;:::o;4268:153:3:-;4362:52;719:10:8;4395:8:3;4405;4362:18;:52::i;3356:97:0:-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:8;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;3425:9:0::1;:21:::0;3356:97::o;5352:320:3:-;5521:41;719:10:8;5554:7:3;5521:18;:41::i;:::-;5513:103;;;;-1:-1:-1;;;5513:103:3;;;;;;;:::i;:::-;5626:39;5640:4;5646:2;5650:7;5659:5;5626:13;:39::i;:::-;5352:320;;;;:::o;2803:329::-;7209:4;7232:16;;;:7;:16;;;;;;2876:13;;-1:-1:-1;;;;;7232:16:3;2901:76;;;;-1:-1:-1;;;2901:76:3;;17293:2:13;2901:76:3;;;17275:21:13;17332:2;17312:18;;;17305:30;17371:34;17351:18;;;17344:62;-1:-1:-1;;;17422:18:13;;;17415:45;17477:19;;2901:76:3;17091:411:13;2901:76:3;2988:21;3012:10;:8;:10::i;:::-;2988:34;;3063:1;3045:7;3039:21;:25;:86;;;;;;;;;;;;;;;;;3091:7;3100:18;:7;:16;:18::i;:::-;3074:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3039:86;3032:93;2803:329;-1:-1:-1;;;2803:329:3:o;4056:144:0:-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:8;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;4149:20:0::1;:44:::0;;-1:-1:-1;;;;;;4149:44:0::1;-1:-1:-1::0;;;;;4149:44:0;;;::::1;::::0;;;::::1;::::0;;4056:144::o;2731:127::-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:8;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;2799:16:0;::::1;;::::0;;;:9:::1;:16;::::0;;;;:23;;-1:-1:-1;;2799:23:0::1;2818:4;2799:23:::0;;::::1;::::0;;;2832:14:::1;:19:::0;;2818:4;;2832:14;;:19:::1;::::0;2818:4;;2832:19:::1;:::i;3750:243::-:0;3872:20;;3840:4;;-1:-1:-1;;;;;3860:32:0;;;3872:20;;3860:32;3856:74;;;-1:-1:-1;3915:4:0;3908:11;;3856:74;-1:-1:-1;;;;;;4607:25:3;;;4584:4;4607:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;3750:243:0:o;1918:198:1:-;1108:6;;-1:-1:-1;;;;;1108:6:1;719:10:8;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:1;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:1;;9083:2:13;1998:73:1::1;::::0;::::1;9065:21:13::0;9122:2;9102:18;;;9095:30;9161:34;9141:18;;;9134:62;-1:-1:-1;;;9212:18:13;;;9205:36;9258:19;;1998:73:1::1;8881:402:13::0;1998:73:1::1;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;10995:171:3:-;11069:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11069:29:3;-1:-1:-1;;;;;11069:29:3;;;;;;;;:24;;11122:23;11069:24;11122:14;:23::i;:::-;-1:-1:-1;;;;;11113:46:3;;;;;;;;;;;10995:171;;:::o;2065:312:7:-;2179:6;2154:21;:31;;2146:73;;;;-1:-1:-1;;;2146:73:7;;12502:2:13;2146:73:7;;;12484:21:13;12541:2;12521:18;;;12514:30;12580:31;12560:18;;;12553:59;12629:18;;2146:73:7;12300:353:13;2146:73:7;2231:12;2249:9;-1:-1:-1;;;;;2249:14:7;2271:6;2249:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2230:52;;;2300:7;2292:78;;;;-1:-1:-1;;;2292:78:7;;12075:2:13;2292:78:7;;;12057:21:13;12114:2;12094:18;;;12087:30;12153:34;12133:18;;;12126:62;12224:28;12204:18;;;12197:56;12270:19;;2292:78:7;11873:422:13;7427:344:3;7520:4;7232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7232:16:3;7536:73;;;;-1:-1:-1;;;7536:73:3;;13268:2:13;7536:73:3;;;13250:21:13;13307:2;13287:18;;;13280:30;13346:34;13326:18;;;13319:62;-1:-1:-1;;;13397:18:13;;;13390:42;13449:19;;7536:73:3;13066:408:13;7536:73:3;7619:13;7635:23;7650:7;7635:14;:23::i;:::-;7619:39;;7687:5;-1:-1:-1;;;;;7676:16:3;:7;-1:-1:-1;;;;;7676:16:3;;:51;;;;7720:7;-1:-1:-1;;;;;7696:31:3;:20;7708:7;7696:11;:20::i;:::-;-1:-1:-1;;;;;7696:31:3;;7676:51;:87;;;;7731:32;7748:5;7755:7;7731:16;:32::i;:::-;7668:96;7427:344;-1:-1:-1;;;;7427:344:3:o;10324:560::-;10478:4;-1:-1:-1;;;;;10451:31:3;:23;10466:7;10451:14;:23::i;:::-;-1:-1:-1;;;;;10451:31:3;;10443:85;;;;-1:-1:-1;;;10443:85:3;;16883:2:13;10443:85:3;;;16865:21:13;16922:2;16902:18;;;16895:30;16961:34;16941:18;;;16934:62;-1:-1:-1;;;17012:18:13;;;17005:39;17061:19;;10443:85:3;16681:405:13;10443:85:3;-1:-1:-1;;;;;10546:16:3;;10538:65;;;;-1:-1:-1;;;10538:65:3;;10609:2:13;10538:65:3;;;10591:21:13;10648:2;10628:18;;;10621:30;10687:34;10667:18;;;10660:62;-1:-1:-1;;;10738:18:13;;;10731:34;10782:19;;10538:65:3;10407:400:13;10538:65:3;10715:29;10732:1;10736:7;10715:8;:29::i;:::-;-1:-1:-1;;;;;10755:15:3;;;;;;:9;:15;;;;;:20;;10774:1;;10755:15;:20;;10774:1;;10755:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10785:13:3;;;;;;:9;:13;;;;;:18;;10802:1;;10785:13;:18;;10802:1;;10785:18;:::i;:::-;;;;-1:-1:-1;;10813:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10813:21:3;-1:-1:-1;;;;;10813:21:3;;;;;;;;;10850:27;;10813:16;;10850:27;;;;;;;10324:560;;;:::o;9063:372::-;-1:-1:-1;;;;;9142:16:3;;9134:61;;;;-1:-1:-1;;;9134:61:3;;15748:2:13;9134:61:3;;;15730:21:13;;;15767:18;;;15760:30;15826:34;15806:18;;;15799:62;15878:18;;9134:61:3;15546:356:13;9134:61:3;7209:4;7232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7232:16:3;:30;9205:58;;;;-1:-1:-1;;;9205:58:3;;9845:2:13;9205:58:3;;;9827:21:13;9884:2;9864:18;;;9857:30;9923;9903:18;;;9896:58;9971:18;;9205:58:3;9643:352:13;9205:58:3;-1:-1:-1;;;;;9330:13:3;;;;;;:9;:13;;;;;:18;;9347:1;;9330:13;:18;;9347:1;;9330:18;:::i;:::-;;;;-1:-1:-1;;9358:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9358:21:3;-1:-1:-1;;;;;9358:21:3;;;;;;;;9395:33;;9358:16;;;9395:33;;9358:16;;9395:33;9063:372;;:::o;8101:108::-;8176:26;8186:2;8190:7;8176:26;;;;;;;;;;;;:9;:26::i;2270:187:1:-;2362:6;;;-1:-1:-1;;;;;2378:17:1;;;-1:-1:-1;;;;;;2378:17:1;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;11301:307:3:-;11451:8;-1:-1:-1;;;;;11442:17:3;:5;-1:-1:-1;;;;;11442:17:3;;;11434:55;;;;-1:-1:-1;;;11434:55:3;;11014:2:13;11434:55:3;;;10996:21:13;11053:2;11033:18;;;11026:30;11092:27;11072:18;;;11065:55;11137:18;;11434:55:3;10812:349:13;11434:55:3;-1:-1:-1;;;;;11499:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11499:46:3;;;;;;;;;;11560:41;;8186::13;;;11560::3;;8159:18:13;11560:41:3;;;;;;;11301:307;;;:::o;6534:::-;6685:28;6695:4;6701:2;6705:7;6685:9;:28::i;:::-;6731:48;6754:4;6760:2;6764:7;6773:5;6731:22;:48::i;:::-;6723:111;;;;-1:-1:-1;;;6723:111:3;;;;;;;:::i;2613:112:0:-;2673:13;2705;2698:20;;;;;:::i;328:703:9:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:9;;;;;;;;;;;;-1:-1:-1;;;627:10:9;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:9;;-1:-1:-1;773:2:9;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:9;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:9;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:9;;;;;;;;-1:-1:-1;972:11:9;981:2;972:11;;:::i;:::-;;;844:150;;8430:311:3;8555:18;8561:2;8565:7;8555:5;:18::i;:::-;8604:54;8635:1;8639:2;8643:7;8652:5;8604:22;:54::i;:::-;8583:151;;;;-1:-1:-1;;;8583:151:3;;;;;;;:::i;12161:778::-;12311:4;-1:-1:-1;;;;;12331:13:3;;1087:20:7;1133:8;12327:606:3;;12366:72;;-1:-1:-1;;;12366:72:3;;-1:-1:-1;;;;;12366:36:3;;;;;:72;;719:10:8;;12417:4:3;;12423:7;;12432:5;;12366:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12366:72:3;;;;;;;;-1:-1:-1;;12366:72:3;;;;;;;;;;;;:::i;:::-;;;12362:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12605:13:3;;12601:266;;12647:60;;-1:-1:-1;;;12647:60:3;;;;;;;:::i;12601:266::-;12819:6;12813:13;12804:6;12800:2;12796:15;12789:38;12362:519;-1:-1:-1;;;;;;12488:51:3;-1:-1:-1;;;12488:51:3;;-1:-1:-1;12481:58:3;;12327:606;-1:-1:-1;12918:4:3;12161:778;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:13;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:13;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:247::-;484:6;537:2;525:9;516:7;512:23;508:32;505:52;;;553:1;550;543:12;505:52;592:9;579:23;611:31;636:5;611:31;:::i;937:388::-;1005:6;1013;1066:2;1054:9;1045:7;1041:23;1037:32;1034:52;;;1082:1;1079;1072:12;1034:52;1121:9;1108:23;1140:31;1165:5;1140:31;:::i;:::-;1190:5;-1:-1:-1;1247:2:13;1232:18;;1219:32;1260:33;1219:32;1260:33;:::i;:::-;1312:7;1302:17;;;937:388;;;;;:::o;1330:456::-;1407:6;1415;1423;1476:2;1464:9;1455:7;1451:23;1447:32;1444:52;;;1492:1;1489;1482:12;1444:52;1531:9;1518:23;1550:31;1575:5;1550:31;:::i;:::-;1600:5;-1:-1:-1;1657:2:13;1642:18;;1629:32;1670:33;1629:32;1670:33;:::i;:::-;1330:456;;1722:7;;-1:-1:-1;;;1776:2:13;1761:18;;;;1748:32;;1330:456::o;1791:794::-;1886:6;1894;1902;1910;1963:3;1951:9;1942:7;1938:23;1934:33;1931:53;;;1980:1;1977;1970:12;1931:53;2019:9;2006:23;2038:31;2063:5;2038:31;:::i;:::-;2088:5;-1:-1:-1;2145:2:13;2130:18;;2117:32;2158:33;2117:32;2158:33;:::i;:::-;2210:7;-1:-1:-1;2264:2:13;2249:18;;2236:32;;-1:-1:-1;2319:2:13;2304:18;;2291:32;2346:18;2335:30;;2332:50;;;2378:1;2375;2368:12;2332:50;2401:22;;2454:4;2446:13;;2442:27;-1:-1:-1;2432:55:13;;2483:1;2480;2473:12;2432:55;2506:73;2571:7;2566:2;2553:16;2548:2;2544;2540:11;2506:73;:::i;:::-;2496:83;;;1791:794;;;;;;;:::o;2590:416::-;2655:6;2663;2716:2;2704:9;2695:7;2691:23;2687:32;2684:52;;;2732:1;2729;2722:12;2684:52;2771:9;2758:23;2790:31;2815:5;2790:31;:::i;:::-;2840:5;-1:-1:-1;2897:2:13;2882:18;;2869:32;2939:15;;2932:23;2920:36;;2910:64;;2970:1;2967;2960:12;3011:315;3079:6;3087;3140:2;3128:9;3119:7;3115:23;3111:32;3108:52;;;3156:1;3153;3146:12;3108:52;3195:9;3182:23;3214:31;3239:5;3214:31;:::i;:::-;3264:5;3316:2;3301:18;;;;3288:32;;-1:-1:-1;;;3011:315:13:o;3331:1032::-;3415:6;3446:2;3489;3477:9;3468:7;3464:23;3460:32;3457:52;;;3505:1;3502;3495:12;3457:52;3545:9;3532:23;3574:18;3615:2;3607:6;3604:14;3601:34;;;3631:1;3628;3621:12;3601:34;3669:6;3658:9;3654:22;3644:32;;3714:7;3707:4;3703:2;3699:13;3695:27;3685:55;;3736:1;3733;3726:12;3685:55;3772:2;3759:16;3794:2;3790;3787:10;3784:36;;;3800:18;;:::i;:::-;3846:2;3843:1;3839:10;3829:20;;3869:28;3893:2;3889;3885:11;3869:28;:::i;:::-;3931:15;;;3962:12;;;;3994:11;;;4024;;;4020:20;;4017:33;-1:-1:-1;4014:53:13;;;4063:1;4060;4053:12;4014:53;4085:1;4076:10;;4095:238;4109:2;4106:1;4103:9;4095:238;;;4180:3;4167:17;4154:30;;4197:31;4222:5;4197:31;:::i;:::-;4241:18;;;4127:1;4120:9;;;;;4279:12;;;;4311;;4095:238;;;-1:-1:-1;4352:5:13;3331:1032;-1:-1:-1;;;;;;;;3331:1032:13:o;4368:245::-;4426:6;4479:2;4467:9;4458:7;4454:23;4450:32;4447:52;;;4495:1;4492;4485:12;4447:52;4534:9;4521:23;4553:30;4577:5;4553:30;:::i;4618:249::-;4687:6;4740:2;4728:9;4719:7;4715:23;4711:32;4708:52;;;4756:1;4753;4746:12;4708:52;4788:9;4782:16;4807:30;4831:5;4807:30;:::i;4872:450::-;4941:6;4994:2;4982:9;4973:7;4969:23;4965:32;4962:52;;;5010:1;5007;5000:12;4962:52;5050:9;5037:23;5083:18;5075:6;5072:30;5069:50;;;5115:1;5112;5105:12;5069:50;5138:22;;5191:4;5183:13;;5179:27;-1:-1:-1;5169:55:13;;5220:1;5217;5210:12;5169:55;5243:73;5308:7;5303:2;5290:16;5285:2;5281;5277:11;5243:73;:::i;5327:180::-;5386:6;5439:2;5427:9;5418:7;5414:23;5410:32;5407:52;;;5455:1;5452;5445:12;5407:52;-1:-1:-1;5478:23:13;;5327:180;-1:-1:-1;5327:180:13:o;5512:315::-;5580:6;5588;5641:2;5629:9;5620:7;5616:23;5612:32;5609:52;;;5657:1;5654;5647:12;5609:52;5693:9;5680:23;5670:33;;5753:2;5742:9;5738:18;5725:32;5766:31;5791:5;5766:31;:::i;5832:257::-;5873:3;5911:5;5905:12;5938:6;5933:3;5926:19;5954:63;6010:6;6003:4;5998:3;5994:14;5987:4;5980:5;5976:16;5954:63;:::i;:::-;6071:2;6050:15;-1:-1:-1;;6046:29:13;6037:39;;;;6078:4;6033:50;;5832:257;-1:-1:-1;;5832:257:13:o;6094:470::-;6273:3;6311:6;6305:13;6327:53;6373:6;6368:3;6361:4;6353:6;6349:17;6327:53;:::i;:::-;6443:13;;6402:16;;;;6465:57;6443:13;6402:16;6499:4;6487:17;;6465:57;:::i;:::-;6538:20;;6094:470;-1:-1:-1;;;;6094:470:13:o;7274:488::-;-1:-1:-1;;;;;7543:15:13;;;7525:34;;7595:15;;7590:2;7575:18;;7568:43;7642:2;7627:18;;7620:34;;;7690:3;7685:2;7670:18;;7663:31;;;7468:4;;7711:45;;7736:19;;7728:6;7711:45;:::i;:::-;7703:53;7274:488;-1:-1:-1;;;;;;7274:488:13:o;8238:219::-;8387:2;8376:9;8369:21;8350:4;8407:44;8447:2;8436:9;8432:18;8424:6;8407:44;:::i;8462:414::-;8664:2;8646:21;;;8703:2;8683:18;;;8676:30;8742:34;8737:2;8722:18;;8715:62;-1:-1:-1;;;8808:2:13;8793:18;;8786:48;8866:3;8851:19;;8462:414::o;15137:404::-;15339:2;15321:21;;;15378:2;15358:18;;;15351:30;15417:34;15412:2;15397:18;;15390:62;-1:-1:-1;;;15483:2:13;15468:18;;15461:38;15531:3;15516:19;;15137:404::o;16320:356::-;16522:2;16504:21;;;16541:18;;;16534:30;16600:34;16595:2;16580:18;;16573:62;16667:2;16652:18;;16320:356::o;17909:413::-;18111:2;18093:21;;;18150:2;18130:18;;;18123:30;18189:34;18184:2;18169:18;;18162:62;-1:-1:-1;;;18255:2:13;18240:18;;18233:47;18312:3;18297:19;;17909:413::o;19023:275::-;19094:2;19088:9;19159:2;19140:13;;-1:-1:-1;;19136:27:13;19124:40;;19194:18;19179:34;;19215:22;;;19176:62;19173:88;;;19241:18;;:::i;:::-;19277:2;19270:22;19023:275;;-1:-1:-1;19023:275:13:o;19303:128::-;19343:3;19374:1;19370:6;19367:1;19364:13;19361:39;;;19380:18;;:::i;:::-;-1:-1:-1;19416:9:13;;19303:128::o;19436:120::-;19476:1;19502;19492:35;;19507:18;;:::i;:::-;-1:-1:-1;19541:9:13;;19436:120::o;19561:168::-;19601:7;19667:1;19663;19659:6;19655:14;19652:1;19649:21;19644:1;19637:9;19630:17;19626:45;19623:71;;;19674:18;;:::i;:::-;-1:-1:-1;19714:9:13;;19561:168::o;19734:125::-;19774:4;19802:1;19799;19796:8;19793:34;;;19807:18;;:::i;:::-;-1:-1:-1;19844:9:13;;19734:125::o;19864:258::-;19936:1;19946:113;19960:6;19957:1;19954:13;19946:113;;;20036:11;;;20030:18;20017:11;;;20010:39;19982:2;19975:10;19946:113;;;20077:6;20074:1;20071:13;20068:48;;;-1:-1:-1;;20112:1:13;20094:16;;20087:27;19864:258::o;20127:380::-;20206:1;20202:12;;;;20249;;;20270:61;;20324:4;20316:6;20312:17;20302:27;;20270:61;20377:2;20369:6;20366:14;20346:18;20343:38;20340:161;;;20423:10;20418:3;20414:20;20411:1;20404:31;20458:4;20455:1;20448:15;20486:4;20483:1;20476:15;20340:161;;20127:380;;;:::o;20512:135::-;20551:3;-1:-1:-1;;20572:17:13;;20569:43;;;20592:18;;:::i;:::-;-1:-1:-1;20639:1:13;20628:13;;20512:135::o;20652:112::-;20684:1;20710;20700:35;;20715:18;;:::i;:::-;-1:-1:-1;20749:9:13;;20652:112::o;20769:127::-;20830:10;20825:3;20821:20;20818:1;20811:31;20861:4;20858:1;20851:15;20885:4;20882:1;20875:15;20901:127;20962:10;20957:3;20953:20;20950:1;20943:31;20993:4;20990:1;20983:15;21017:4;21014:1;21007:15;21033:127;21094:10;21089:3;21085:20;21082:1;21075:31;21125:4;21122:1;21115:15;21149:4;21146:1;21139:15;21165:127;21226:10;21221:3;21217:20;21214:1;21207:31;21257:4;21254:1;21247:15;21281:4;21278:1;21271:15;21297:131;-1:-1:-1;;;;;21372:31:13;;21362:42;;21352:70;;21418:1;21415;21408:12;21433:131;-1:-1:-1;;;;;;21507:32:13;;21497:43;;21487:71;;21554:1;21551;21544:12

Swarm Source

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