ETH Price: $3,318.80 (+0.05%)

Token

Franken Baby Apes (FBA)
 

Overview

Max Total Supply

789 FBA

Holders

442

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
b11mba.eth
Balance
4 FBA
0x3702064C59a6c5f74E1097E096c4D49b646Ded2E
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FrankenBabyApes

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 6 of 15: FrankenBabyApes.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import './ERC721Enumerable.sol';
import './Ownable.sol';
import './Strings.sol';
import './IFrankenBabyApes.sol';
import './IFrankenBabyApesMetadata.sol';

contract FrankenBabyApes is ERC721Enumerable, Ownable, IFrankenBabyApes, IFrankenBabyApesMetadata {
    using Strings for uint256;

    uint256 public constant FBA_PUBLIC = 2_500;
    uint256 public constant PURCHASE_LIMIT = 10;
    uint256 public constant WL_PRICE = 0.03 ether;
    uint256 public constant PRICE = 0.04 ether;

    bool public isActive = false;
    bool public isAllowListActive = false;

    string public proof;

    uint256 public allowListMaxMint = 1;

    uint256 public totalPublicSupply;

    mapping(address => bool) private _allowList;
    mapping(address => uint256) private _allowListClaimed;

    string private _contractURI = '';
    string private _tokenBaseURI = '';
    string private _tokenRevealedBaseURI = '';

    constructor(string memory name, string memory symbol) ERC721(name, symbol) {}

    function addToAllowList(address[] calldata addresses) external override onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Can't add the null address");
            _allowList[addresses[i]] = true;
        }
    }

    function onAllowList(address addr) external view override returns (bool) {
        return _allowList[addr];
    }

    function removeFromAllowList(address[] calldata addresses) external override onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Can't add the null address");
            _allowList[addresses[i]] = false;
        }
    }

    function allowListClaimedBy(address owner) external view override returns (uint256){
        require(owner != address(0), 'Zero address not on Allow List');
        return _allowListClaimed[owner];
    }

    function purchase(uint256 numberOfTokens) external override payable {
        require(isActive, 'Contract is not active');
        require(!isAllowListActive, 'Only allowing from Allow List');
        require(totalSupply() < FBA_PUBLIC, 'All tokens have been minted');
        require(numberOfTokens <= PURCHASE_LIMIT, 'Would exceed PURCHASE_LIMIT');
        require(totalPublicSupply < FBA_PUBLIC, 'Purchase would exceed FBA_PUBLIC');
        require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

        for (uint256 i = 0; i < numberOfTokens; i++) {
            if (totalPublicSupply < FBA_PUBLIC) {
                uint256 tokenId = totalPublicSupply + 1;
                totalPublicSupply += 1;
                _safeMint(msg.sender, tokenId);
            }
        }
    }

    function purchaseAllowList(uint256 numberOfTokens) external override payable {
        require(isActive, 'Contract is not active');
        require(isAllowListActive, 'Allow List is not active');
        require(_allowList[msg.sender], 'You are not on the Allow List');
        require(totalSupply() < FBA_PUBLIC, 'All tokens have been minted');
        require(numberOfTokens <= allowListMaxMint, 'Cannot purchase this many tokens');
        require(totalPublicSupply + numberOfTokens <= FBA_PUBLIC, 'Purchase would exceed FBA_PUBLIC');
        require(_allowListClaimed[msg.sender] + numberOfTokens <= allowListMaxMint, 'Purchase exceeds max allowed');
        require(WL_PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = totalPublicSupply + 1;
            totalPublicSupply += 1;
            _allowListClaimed[msg.sender] += 1;
            _safeMint(msg.sender, tokenId);
        }
    }

    function gift(address[] calldata to) external override onlyOwner {
        require(totalSupply() < FBA_PUBLIC, 'All tokens have been minted');

        for(uint256 i = 0; i < to.length; i++) {
            uint256 tokenId = totalPublicSupply + 1;
            totalPublicSupply += 1;
            _safeMint(to[i], tokenId);
        }
    }

    function setIsActive(bool _isActive) external override onlyOwner {
        isActive = _isActive;
    }

    function setIsAllowListActive(bool _isAllowListActive) external override onlyOwner {
        isAllowListActive = _isAllowListActive;
    }

    function setAllowListMaxMint(uint256 maxMint) external override onlyOwner {
        allowListMaxMint = maxMint;
    }

    function setProof(string calldata proofString) external override onlyOwner {
        proof = proofString;
    }

    function withdraw() external override onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function setContractURI(string calldata URI) external override onlyOwner {
        _contractURI = URI;
    }

    function setBaseURI(string calldata URI) external override onlyOwner {
        _tokenBaseURI = URI;
    }

    function setRevealedBaseURI(string calldata revealedBaseURI) external override onlyOwner {
        _tokenRevealedBaseURI = revealedBaseURI;
    }

    function contractURI() public view override returns (string memory) {
        return _contractURI;
    }

    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), 'Token does not exist');
        string memory revealedBaseURI = _tokenRevealedBaseURI;
        return bytes(revealedBaseURI).length > 0 ?
        string(abi.encodePacked(revealedBaseURI, tokenId.toString(), '.json')) :
        _tokenBaseURI;
    }
}

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

pragma solidity ^0.8.0;

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

        uint256 size;
        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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 2 of 15: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 3 of 15: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 15: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. 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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

File 10 of 15: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 11 of 15: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

interface IFrankenBabyApes {
    function addToAllowList(address[] calldata addresses) external;

    function onAllowList(address addr) external returns (bool);

    function removeFromAllowList(address[] calldata addresses) external;

    function allowListClaimedBy(address owner) external returns (uint256);

    function purchase(uint256 numberOfTokens) external payable;

    function purchaseAllowList(uint256 numberOfTokens) external payable;

    function gift(address[] calldata to) external;

    function setIsActive(bool _isActive) external;

    function setIsAllowListActive(bool _isAllowListActive) external;

    function setAllowListMaxMint(uint256 maxMint) external;

    function setProof(string memory proofString) external;

    function withdraw() external;
}

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

interface IFrankenBabyApesMetadata {
    function setContractURI(string calldata URI) external;

    function setBaseURI(string calldata URI) external;

    function setRevealedBaseURI(string calldata revealedBaseURI) external;

    function contractURI() external view returns(string memory);
}

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 15 of 15: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FBA_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proof","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchaseAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setAllowListMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"proofString","type":"string"}],"name":"setProof","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealedBaseURI","type":"string"}],"name":"setRevealedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicSupply","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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600a805461ffff60a01b191690556001600c5560a06040819052600060808190526200002e916010916200014b565b506040805160208101918290526000908190526200004f916011916200014b565b5060408051602081019182905260009081905262000070916012916200014b565b503480156200007e57600080fd5b506040516200303638038062003036833981016040819052620000a191620002be565b815182908290620000ba9060009060208501906200014b565b508051620000d09060019060208401906200014b565b505050620000ed620000e7620000f560201b60201c565b620000f9565b505062000365565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001599062000328565b90600052602060002090601f0160209004810192826200017d5760008555620001c8565b82601f106200019857805160ff1916838001178555620001c8565b82800160010185558215620001c8579182015b82811115620001c8578251825591602001919060010190620001ab565b50620001d6929150620001da565b5090565b5b80821115620001d65760008155600101620001db565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200021957600080fd5b81516001600160401b0380821115620002365762000236620001f1565b604051601f8301601f19908116603f01168101908282118183101715620002615762000261620001f1565b816040528381526020925086838588010111156200027e57600080fd5b600091505b83821015620002a2578582018301518183018401529082019062000283565b83821115620002b45760008385830101525b9695505050505050565b60008060408385031215620002d257600080fd5b82516001600160401b0380821115620002ea57600080fd5b620002f88683870162000207565b935060208501519150808211156200030f57600080fd5b506200031e8582860162000207565b9150509250929050565b600181811c908216806200033d57607f821691505b602082108114156200035f57634e487b7160e01b600052602260045260246000fd5b50919050565b612cc180620003756000396000f3fe6080604052600436106102665760003560e01c8063715018a611610144578063b88d4fde116100b6578063e8a3d4851161007a578063e8a3d48514610724578063e985e9c514610739578063efef39a114610782578063f23347f514610795578063f2fde38b146107a8578063faf924cf146107c857600080fd5b8063b88d4fde146106a3578063bfcc46b7146106c3578063c87b56dd146106d9578063d75e6110146106f9578063e6a5931e1461070e57600080fd5b80638d859f3e116101085780638d859f3e146105f55780638da5cb5b14610610578063938e3d7b1461062e57806395d89b411461064e578063a22cb46514610663578063a51312c81461068357600080fd5b8063715018a61461056a578063718bc4af1461057f5780637263cfe21461059f5780637a6685f1146105bf5780637f44ab2f146105df57600080fd5b806329fc6bae116101dd57806342842e0e116101a157806342842e0e146104aa5780634f6ccce7146104ca57806355f804b3146104ea5780636352211e1461050a5780636e83843a1461052a57806370a082311461054a57600080fd5b806329fc6bae146104005780632f745c591461042157806331c3c7a0146104415780633a0658921461045c5780633ccfd60b1461049557600080fd5b806315336f801161022f57806315336f801461034a578063163e1e611461036a57806318160ddd1461038a57806322f3e2d41461039f57806323b872dd146103c05780632750fc78146103e057600080fd5b806208ffdd1461026b57806301ffc9a71461029e57806306fdde03146102ce578063081812fc146102f0578063095ea7b314610328575b600080fd5b34801561027757600080fd5b5061028b610286366004612638565b6107dd565b6040519081526020015b60405180910390f35b3480156102aa57600080fd5b506102be6102b9366004612669565b610856565b6040519015158152602001610295565b3480156102da57600080fd5b506102e3610881565b60405161029591906126de565b3480156102fc57600080fd5b5061031061030b3660046126f1565b610913565b6040516001600160a01b039091168152602001610295565b34801561033457600080fd5b5061034861034336600461270a565b6109a8565b005b34801561035657600080fd5b50610348610365366004612734565b610abe565b34801561037657600080fd5b506103486103853660046127a6565b610af4565b34801561039657600080fd5b5060085461028b565b3480156103ab57600080fd5b50600a546102be90600160a01b900460ff1681565b3480156103cc57600080fd5b506103486103db366004612809565b610bc1565b3480156103ec57600080fd5b506103486103fb366004612855565b610bf2565b34801561040c57600080fd5b50600a546102be90600160a81b900460ff1681565b34801561042d57600080fd5b5061028b61043c36600461270a565b610c3a565b34801561044d57600080fd5b5061028b666a94d74f43000081565b34801561046857600080fd5b506102be610477366004612638565b6001600160a01b03166000908152600e602052604090205460ff1690565b3480156104a157600080fd5b50610348610cd0565b3480156104b657600080fd5b506103486104c5366004612809565b610d2d565b3480156104d657600080fd5b5061028b6104e53660046126f1565b610d48565b3480156104f657600080fd5b50610348610505366004612734565b610ddb565b34801561051657600080fd5b506103106105253660046126f1565b610e11565b34801561053657600080fd5b50610348610545366004612734565b610e88565b34801561055657600080fd5b5061028b610565366004612638565b610ebe565b34801561057657600080fd5b50610348610f45565b34801561058b57600080fd5b5061034861059a366004612855565b610f7b565b3480156105ab57600080fd5b506103486105ba3660046127a6565b610fc3565b3480156105cb57600080fd5b506103486105da3660046126f1565b6110df565b3480156105eb57600080fd5b5061028b600c5481565b34801561060157600080fd5b5061028b668e1bc9bf04000081565b34801561061c57600080fd5b50600a546001600160a01b0316610310565b34801561063a57600080fd5b50610348610649366004612734565b61110e565b34801561065a57600080fd5b506102e3611144565b34801561066f57600080fd5b5061034861067e366004612870565b611153565b34801561068f57600080fd5b5061034861069e3660046127a6565b611218565b3480156106af57600080fd5b506103486106be3660046128b9565b611334565b3480156106cf57600080fd5b5061028b6109c481565b3480156106e557600080fd5b506102e36106f43660046126f1565b61136c565b34801561070557600080fd5b5061028b600a81565b34801561071a57600080fd5b5061028b600d5481565b34801561073057600080fd5b506102e3611524565b34801561074557600080fd5b506102be610754366004612995565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6103486107903660046126f1565b611533565b6103486107a33660046126f1565b61176d565b3480156107b457600080fd5b506103486107c3366004612638565b611a96565b3480156107d457600080fd5b506102e3611b31565b60006001600160a01b03821661083a5760405162461bcd60e51b815260206004820152601e60248201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c697374000060448201526064015b60405180910390fd5b506001600160a01b03166000908152600f602052604090205490565b60006001600160e01b0319821663780e9d6360e01b148061087b575061087b82611bbf565b92915050565b606060008054610890906129bf565b80601f01602080910402602001604051908101604052809291908181526020018280546108bc906129bf565b80156109095780601f106108de57610100808354040283529160200191610909565b820191906000526020600020905b8154815290600101906020018083116108ec57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661098c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610831565b506000908152600460205260409020546001600160a01b031690565b60006109b382610e11565b9050806001600160a01b0316836001600160a01b03161415610a215760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610831565b336001600160a01b0382161480610a3d5750610a3d8133610754565b610aaf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610831565b610ab98383611c0f565b505050565b600a546001600160a01b03163314610ae85760405162461bcd60e51b8152600401610831906129fa565b610ab9600b8383612583565b600a546001600160a01b03163314610b1e5760405162461bcd60e51b8152600401610831906129fa565b6109c4610b2a60085490565b10610b475760405162461bcd60e51b815260040161083190612a2f565b60005b81811015610ab9576000600d546001610b639190612a7c565b90506001600d6000828254610b789190612a7c565b90915550610bae9050848484818110610b9357610b93612a94565b9050602002016020810190610ba89190612638565b82611c7d565b5080610bb981612aaa565b915050610b4a565b610bcb3382611c97565b610be75760405162461bcd60e51b815260040161083190612ac5565b610ab9838383611d8e565b600a546001600160a01b03163314610c1c5760405162461bcd60e51b8152600401610831906129fa565b600a8054911515600160a01b0260ff60a01b19909216919091179055565b6000610c4583610ebe565b8210610ca75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610831565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610cfa5760405162461bcd60e51b8152600401610831906129fa565b6040514790339082156108fc029083906000818181858888f19350505050158015610d29573d6000803e3d6000fd5b5050565b610ab983838360405180602001604052806000815250611334565b6000610d5360085490565b8210610db65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610831565b60088281548110610dc957610dc9612a94565b90600052602060002001549050919050565b600a546001600160a01b03163314610e055760405162461bcd60e51b8152600401610831906129fa565b610ab960118383612583565b6000818152600260205260408120546001600160a01b03168061087b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610831565b600a546001600160a01b03163314610eb25760405162461bcd60e51b8152600401610831906129fa565b610ab960128383612583565b60006001600160a01b038216610f295760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610831565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f6f5760405162461bcd60e51b8152600401610831906129fa565b610f796000611f39565b565b600a546001600160a01b03163314610fa55760405162461bcd60e51b8152600401610831906129fa565b600a8054911515600160a81b0260ff60a81b19909216919091179055565b600a546001600160a01b03163314610fed5760405162461bcd60e51b8152600401610831906129fa565b60005b81811015610ab957600083838381811061100c5761100c612a94565b90506020020160208101906110219190612638565b6001600160a01b031614156110785760405162461bcd60e51b815260206004820152601a60248201527f43616e27742061646420746865206e756c6c20616464726573730000000000006044820152606401610831565b6001600e600085858581811061109057611090612a94565b90506020020160208101906110a59190612638565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806110d781612aaa565b915050610ff0565b600a546001600160a01b031633146111095760405162461bcd60e51b8152600401610831906129fa565b600c55565b600a546001600160a01b031633146111385760405162461bcd60e51b8152600401610831906129fa565b610ab960108383612583565b606060018054610890906129bf565b6001600160a01b0382163314156111ac5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610831565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146112425760405162461bcd60e51b8152600401610831906129fa565b60005b81811015610ab957600083838381811061126157611261612a94565b90506020020160208101906112769190612638565b6001600160a01b031614156112cd5760405162461bcd60e51b815260206004820152601a60248201527f43616e27742061646420746865206e756c6c20616464726573730000000000006044820152606401610831565b6000600e60008585858181106112e5576112e5612a94565b90506020020160208101906112fa9190612638565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061132c81612aaa565b915050611245565b61133e3383611c97565b61135a5760405162461bcd60e51b815260040161083190612ac5565b61136684848484611f8b565b50505050565b6000818152600260205260409020546060906001600160a01b03166113ca5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610831565b6000601280546113d9906129bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611405906129bf565b80156114525780601f1061142757610100808354040283529160200191611452565b820191906000526020600020905b81548152906001019060200180831161143557829003601f168201915b5050505050905060008151116114f2576011805461146f906129bf565b80601f016020809104026020016040519081016040528092919081815260200182805461149b906129bf565b80156114e85780601f106114bd576101008083540402835291602001916114e8565b820191906000526020600020905b8154815290600101906020018083116114cb57829003601f168201915b505050505061151d565b806114fc84611fbe565b60405160200161150d929190612b16565b6040516020818303038152906040525b9392505050565b606060108054610890906129bf565b600a54600160a01b900460ff166115855760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b6044820152606401610831565b600a54600160a81b900460ff16156115df5760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c7920616c6c6f77696e672066726f6d20416c6c6f77204c6973740000006044820152606401610831565b6109c46115eb60085490565b106116085760405162461bcd60e51b815260040161083190612a2f565b600a8111156116595760405162461bcd60e51b815260206004820152601b60248201527f576f756c64206578636565642050555243484153455f4c494d495400000000006044820152606401610831565b6109c4600d54106116ac5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564204642415f5055424c49436044820152606401610831565b346116be82668e1bc9bf040000612b55565b111561170c5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610831565b60005b81811015610d29576109c4600d54101561175b576000600d5460016117349190612a7c565b90506001600d60008282546117499190612a7c565b9091555061175990503382611c7d565b505b8061176581612aaa565b91505061170f565b600a54600160a01b900460ff166117bf5760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b6044820152606401610831565b600a54600160a81b900460ff166118185760405162461bcd60e51b815260206004820152601860248201527f416c6c6f77204c697374206973206e6f742061637469766500000000000000006044820152606401610831565b336000908152600e602052604090205460ff166118775760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c6973740000006044820152606401610831565b6109c461188360085490565b106118a05760405162461bcd60e51b815260040161083190612a2f565b600c548111156118f25760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736044820152606401610831565b6109c481600d546119039190612a7c565b11156119515760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564204642415f5055424c49436044820152606401610831565b600c54336000908152600f602052604090205461196f908390612a7c565b11156119bd5760405162461bcd60e51b815260206004820152601c60248201527f50757263686173652065786365656473206d617820616c6c6f776564000000006044820152606401610831565b346119cf82666a94d74f430000612b55565b1115611a1d5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610831565b60005b81811015610d29576000600d546001611a399190612a7c565b90506001600d6000828254611a4e9190612a7c565b9091555050336000908152600f60205260408120805460019290611a73908490612a7c565b90915550611a8390503382611c7d565b5080611a8e81612aaa565b915050611a20565b600a546001600160a01b03163314611ac05760405162461bcd60e51b8152600401610831906129fa565b6001600160a01b038116611b255760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610831565b611b2e81611f39565b50565b600b8054611b3e906129bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6a906129bf565b8015611bb75780601f10611b8c57610100808354040283529160200191611bb7565b820191906000526020600020905b815481529060010190602001808311611b9a57829003601f168201915b505050505081565b60006001600160e01b031982166380ac58cd60e01b1480611bf057506001600160e01b03198216635b5e139f60e01b145b8061087b57506301ffc9a760e01b6001600160e01b031983161461087b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c4482610e11565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610d298282604051806020016040528060008152506120bc565b6000818152600260205260408120546001600160a01b0316611d105760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610831565b6000611d1b83610e11565b9050806001600160a01b0316846001600160a01b03161480611d565750836001600160a01b0316611d4b84610913565b6001600160a01b0316145b80611d8657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611da182610e11565b6001600160a01b031614611e095760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610831565b6001600160a01b038216611e6b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610831565b611e768383836120ef565b611e81600082611c0f565b6001600160a01b0383166000908152600360205260408120805460019290611eaa908490612b74565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ed8908490612a7c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611f96848484611d8e565b611fa2848484846121a7565b6113665760405162461bcd60e51b815260040161083190612b8b565b606081611fe25750506040805180820190915260018152600360fc1b602082015290565b8160005b811561200c5780611ff681612aaa565b91506120059050600a83612bf3565b9150611fe6565b60008167ffffffffffffffff811115612027576120276128a3565b6040519080825280601f01601f191660200182016040528015612051576020820181803683370190505b5090505b8415611d8657612066600183612b74565b9150612073600a86612c07565b61207e906030612a7c565b60f81b81838151811061209357612093612a94565b60200101906001600160f81b031916908160001a9053506120b5600a86612bf3565b9450612055565b6120c683836122a5565b6120d360008484846121a7565b610ab95760405162461bcd60e51b815260040161083190612b8b565b6001600160a01b03831661214a5761214581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61216d565b816001600160a01b0316836001600160a01b03161461216d5761216d83826123f3565b6001600160a01b03821661218457610ab981612490565b826001600160a01b0316826001600160a01b031614610ab957610ab9828261253f565b60006001600160a01b0384163b1561229a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121eb903390899088908890600401612c1b565b6020604051808303816000875af1925050508015612226575060408051601f3d908101601f1916820190925261222391810190612c58565b60015b612280573d808015612254576040519150601f19603f3d011682016040523d82523d6000602084013e612259565b606091505b5080516122785760405162461bcd60e51b815260040161083190612b8b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d86565b506001949350505050565b6001600160a01b0382166122fb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610831565b6000818152600260205260409020546001600160a01b0316156123605760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610831565b61236c600083836120ef565b6001600160a01b0382166000908152600360205260408120805460019290612395908490612a7c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161240084610ebe565b61240a9190612b74565b60008381526007602052604090205490915080821461245d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906124a290600190612b74565b600083815260096020526040812054600880549394509092849081106124ca576124ca612a94565b9060005260206000200154905080600883815481106124eb576124eb612a94565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061252357612523612c75565b6001900381819060005260206000200160009055905550505050565b600061254a83610ebe565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461258f906129bf565b90600052602060002090601f0160209004810192826125b157600085556125f7565b82601f106125ca5782800160ff198235161785556125f7565b828001600101855582156125f7579182015b828111156125f75782358255916020019190600101906125dc565b50612603929150612607565b5090565b5b808211156126035760008155600101612608565b80356001600160a01b038116811461263357600080fd5b919050565b60006020828403121561264a57600080fd5b61151d8261261c565b6001600160e01b031981168114611b2e57600080fd5b60006020828403121561267b57600080fd5b813561151d81612653565b60005b838110156126a1578181015183820152602001612689565b838111156113665750506000910152565b600081518084526126ca816020860160208601612686565b601f01601f19169290920160200192915050565b60208152600061151d60208301846126b2565b60006020828403121561270357600080fd5b5035919050565b6000806040838503121561271d57600080fd5b6127268361261c565b946020939093013593505050565b6000806020838503121561274757600080fd5b823567ffffffffffffffff8082111561275f57600080fd5b818501915085601f83011261277357600080fd5b81358181111561278257600080fd5b86602082850101111561279457600080fd5b60209290920196919550909350505050565b600080602083850312156127b957600080fd5b823567ffffffffffffffff808211156127d157600080fd5b818501915085601f8301126127e557600080fd5b8135818111156127f457600080fd5b8660208260051b850101111561279457600080fd5b60008060006060848603121561281e57600080fd5b6128278461261c565b92506128356020850161261c565b9150604084013590509250925092565b8035801515811461263357600080fd5b60006020828403121561286757600080fd5b61151d82612845565b6000806040838503121561288357600080fd5b61288c8361261c565b915061289a60208401612845565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156128cf57600080fd5b6128d88561261c565b93506128e66020860161261c565b925060408501359150606085013567ffffffffffffffff8082111561290a57600080fd5b818701915087601f83011261291e57600080fd5b813581811115612930576129306128a3565b604051601f8201601f19908116603f01168101908382118183101715612958576129586128a3565b816040528281528a602084870101111561297157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156129a857600080fd5b6129b18361261c565b915061289a6020840161261c565b600181811c908216806129d357607f821691505b602082108114156129f457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612a8f57612a8f612a66565b500190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612abe57612abe612a66565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008351612b28818460208801612686565b835190830190612b3c818360208801612686565b64173539b7b760d91b9101908152600501949350505050565b6000816000190483118215151615612b6f57612b6f612a66565b500290565b600082821015612b8657612b86612a66565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612c0257612c02612bdd565b500490565b600082612c1657612c16612bdd565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c4e908301846126b2565b9695505050505050565b600060208284031215612c6a57600080fd5b815161151d81612653565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220831dd79fbb6884690accbc347e5119efec21d27914e5510304d0f396ef5dba0464736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000114672616e6b656e2042616279204170657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034642410000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102665760003560e01c8063715018a611610144578063b88d4fde116100b6578063e8a3d4851161007a578063e8a3d48514610724578063e985e9c514610739578063efef39a114610782578063f23347f514610795578063f2fde38b146107a8578063faf924cf146107c857600080fd5b8063b88d4fde146106a3578063bfcc46b7146106c3578063c87b56dd146106d9578063d75e6110146106f9578063e6a5931e1461070e57600080fd5b80638d859f3e116101085780638d859f3e146105f55780638da5cb5b14610610578063938e3d7b1461062e57806395d89b411461064e578063a22cb46514610663578063a51312c81461068357600080fd5b8063715018a61461056a578063718bc4af1461057f5780637263cfe21461059f5780637a6685f1146105bf5780637f44ab2f146105df57600080fd5b806329fc6bae116101dd57806342842e0e116101a157806342842e0e146104aa5780634f6ccce7146104ca57806355f804b3146104ea5780636352211e1461050a5780636e83843a1461052a57806370a082311461054a57600080fd5b806329fc6bae146104005780632f745c591461042157806331c3c7a0146104415780633a0658921461045c5780633ccfd60b1461049557600080fd5b806315336f801161022f57806315336f801461034a578063163e1e611461036a57806318160ddd1461038a57806322f3e2d41461039f57806323b872dd146103c05780632750fc78146103e057600080fd5b806208ffdd1461026b57806301ffc9a71461029e57806306fdde03146102ce578063081812fc146102f0578063095ea7b314610328575b600080fd5b34801561027757600080fd5b5061028b610286366004612638565b6107dd565b6040519081526020015b60405180910390f35b3480156102aa57600080fd5b506102be6102b9366004612669565b610856565b6040519015158152602001610295565b3480156102da57600080fd5b506102e3610881565b60405161029591906126de565b3480156102fc57600080fd5b5061031061030b3660046126f1565b610913565b6040516001600160a01b039091168152602001610295565b34801561033457600080fd5b5061034861034336600461270a565b6109a8565b005b34801561035657600080fd5b50610348610365366004612734565b610abe565b34801561037657600080fd5b506103486103853660046127a6565b610af4565b34801561039657600080fd5b5060085461028b565b3480156103ab57600080fd5b50600a546102be90600160a01b900460ff1681565b3480156103cc57600080fd5b506103486103db366004612809565b610bc1565b3480156103ec57600080fd5b506103486103fb366004612855565b610bf2565b34801561040c57600080fd5b50600a546102be90600160a81b900460ff1681565b34801561042d57600080fd5b5061028b61043c36600461270a565b610c3a565b34801561044d57600080fd5b5061028b666a94d74f43000081565b34801561046857600080fd5b506102be610477366004612638565b6001600160a01b03166000908152600e602052604090205460ff1690565b3480156104a157600080fd5b50610348610cd0565b3480156104b657600080fd5b506103486104c5366004612809565b610d2d565b3480156104d657600080fd5b5061028b6104e53660046126f1565b610d48565b3480156104f657600080fd5b50610348610505366004612734565b610ddb565b34801561051657600080fd5b506103106105253660046126f1565b610e11565b34801561053657600080fd5b50610348610545366004612734565b610e88565b34801561055657600080fd5b5061028b610565366004612638565b610ebe565b34801561057657600080fd5b50610348610f45565b34801561058b57600080fd5b5061034861059a366004612855565b610f7b565b3480156105ab57600080fd5b506103486105ba3660046127a6565b610fc3565b3480156105cb57600080fd5b506103486105da3660046126f1565b6110df565b3480156105eb57600080fd5b5061028b600c5481565b34801561060157600080fd5b5061028b668e1bc9bf04000081565b34801561061c57600080fd5b50600a546001600160a01b0316610310565b34801561063a57600080fd5b50610348610649366004612734565b61110e565b34801561065a57600080fd5b506102e3611144565b34801561066f57600080fd5b5061034861067e366004612870565b611153565b34801561068f57600080fd5b5061034861069e3660046127a6565b611218565b3480156106af57600080fd5b506103486106be3660046128b9565b611334565b3480156106cf57600080fd5b5061028b6109c481565b3480156106e557600080fd5b506102e36106f43660046126f1565b61136c565b34801561070557600080fd5b5061028b600a81565b34801561071a57600080fd5b5061028b600d5481565b34801561073057600080fd5b506102e3611524565b34801561074557600080fd5b506102be610754366004612995565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6103486107903660046126f1565b611533565b6103486107a33660046126f1565b61176d565b3480156107b457600080fd5b506103486107c3366004612638565b611a96565b3480156107d457600080fd5b506102e3611b31565b60006001600160a01b03821661083a5760405162461bcd60e51b815260206004820152601e60248201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c697374000060448201526064015b60405180910390fd5b506001600160a01b03166000908152600f602052604090205490565b60006001600160e01b0319821663780e9d6360e01b148061087b575061087b82611bbf565b92915050565b606060008054610890906129bf565b80601f01602080910402602001604051908101604052809291908181526020018280546108bc906129bf565b80156109095780601f106108de57610100808354040283529160200191610909565b820191906000526020600020905b8154815290600101906020018083116108ec57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661098c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610831565b506000908152600460205260409020546001600160a01b031690565b60006109b382610e11565b9050806001600160a01b0316836001600160a01b03161415610a215760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610831565b336001600160a01b0382161480610a3d5750610a3d8133610754565b610aaf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610831565b610ab98383611c0f565b505050565b600a546001600160a01b03163314610ae85760405162461bcd60e51b8152600401610831906129fa565b610ab9600b8383612583565b600a546001600160a01b03163314610b1e5760405162461bcd60e51b8152600401610831906129fa565b6109c4610b2a60085490565b10610b475760405162461bcd60e51b815260040161083190612a2f565b60005b81811015610ab9576000600d546001610b639190612a7c565b90506001600d6000828254610b789190612a7c565b90915550610bae9050848484818110610b9357610b93612a94565b9050602002016020810190610ba89190612638565b82611c7d565b5080610bb981612aaa565b915050610b4a565b610bcb3382611c97565b610be75760405162461bcd60e51b815260040161083190612ac5565b610ab9838383611d8e565b600a546001600160a01b03163314610c1c5760405162461bcd60e51b8152600401610831906129fa565b600a8054911515600160a01b0260ff60a01b19909216919091179055565b6000610c4583610ebe565b8210610ca75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610831565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610cfa5760405162461bcd60e51b8152600401610831906129fa565b6040514790339082156108fc029083906000818181858888f19350505050158015610d29573d6000803e3d6000fd5b5050565b610ab983838360405180602001604052806000815250611334565b6000610d5360085490565b8210610db65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610831565b60088281548110610dc957610dc9612a94565b90600052602060002001549050919050565b600a546001600160a01b03163314610e055760405162461bcd60e51b8152600401610831906129fa565b610ab960118383612583565b6000818152600260205260408120546001600160a01b03168061087b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610831565b600a546001600160a01b03163314610eb25760405162461bcd60e51b8152600401610831906129fa565b610ab960128383612583565b60006001600160a01b038216610f295760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610831565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f6f5760405162461bcd60e51b8152600401610831906129fa565b610f796000611f39565b565b600a546001600160a01b03163314610fa55760405162461bcd60e51b8152600401610831906129fa565b600a8054911515600160a81b0260ff60a81b19909216919091179055565b600a546001600160a01b03163314610fed5760405162461bcd60e51b8152600401610831906129fa565b60005b81811015610ab957600083838381811061100c5761100c612a94565b90506020020160208101906110219190612638565b6001600160a01b031614156110785760405162461bcd60e51b815260206004820152601a60248201527f43616e27742061646420746865206e756c6c20616464726573730000000000006044820152606401610831565b6001600e600085858581811061109057611090612a94565b90506020020160208101906110a59190612638565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806110d781612aaa565b915050610ff0565b600a546001600160a01b031633146111095760405162461bcd60e51b8152600401610831906129fa565b600c55565b600a546001600160a01b031633146111385760405162461bcd60e51b8152600401610831906129fa565b610ab960108383612583565b606060018054610890906129bf565b6001600160a01b0382163314156111ac5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610831565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146112425760405162461bcd60e51b8152600401610831906129fa565b60005b81811015610ab957600083838381811061126157611261612a94565b90506020020160208101906112769190612638565b6001600160a01b031614156112cd5760405162461bcd60e51b815260206004820152601a60248201527f43616e27742061646420746865206e756c6c20616464726573730000000000006044820152606401610831565b6000600e60008585858181106112e5576112e5612a94565b90506020020160208101906112fa9190612638565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061132c81612aaa565b915050611245565b61133e3383611c97565b61135a5760405162461bcd60e51b815260040161083190612ac5565b61136684848484611f8b565b50505050565b6000818152600260205260409020546060906001600160a01b03166113ca5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610831565b6000601280546113d9906129bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611405906129bf565b80156114525780601f1061142757610100808354040283529160200191611452565b820191906000526020600020905b81548152906001019060200180831161143557829003601f168201915b5050505050905060008151116114f2576011805461146f906129bf565b80601f016020809104026020016040519081016040528092919081815260200182805461149b906129bf565b80156114e85780601f106114bd576101008083540402835291602001916114e8565b820191906000526020600020905b8154815290600101906020018083116114cb57829003601f168201915b505050505061151d565b806114fc84611fbe565b60405160200161150d929190612b16565b6040516020818303038152906040525b9392505050565b606060108054610890906129bf565b600a54600160a01b900460ff166115855760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b6044820152606401610831565b600a54600160a81b900460ff16156115df5760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c7920616c6c6f77696e672066726f6d20416c6c6f77204c6973740000006044820152606401610831565b6109c46115eb60085490565b106116085760405162461bcd60e51b815260040161083190612a2f565b600a8111156116595760405162461bcd60e51b815260206004820152601b60248201527f576f756c64206578636565642050555243484153455f4c494d495400000000006044820152606401610831565b6109c4600d54106116ac5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564204642415f5055424c49436044820152606401610831565b346116be82668e1bc9bf040000612b55565b111561170c5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610831565b60005b81811015610d29576109c4600d54101561175b576000600d5460016117349190612a7c565b90506001600d60008282546117499190612a7c565b9091555061175990503382611c7d565b505b8061176581612aaa565b91505061170f565b600a54600160a01b900460ff166117bf5760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b6044820152606401610831565b600a54600160a81b900460ff166118185760405162461bcd60e51b815260206004820152601860248201527f416c6c6f77204c697374206973206e6f742061637469766500000000000000006044820152606401610831565b336000908152600e602052604090205460ff166118775760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c6973740000006044820152606401610831565b6109c461188360085490565b106118a05760405162461bcd60e51b815260040161083190612a2f565b600c548111156118f25760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736044820152606401610831565b6109c481600d546119039190612a7c565b11156119515760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564204642415f5055424c49436044820152606401610831565b600c54336000908152600f602052604090205461196f908390612a7c565b11156119bd5760405162461bcd60e51b815260206004820152601c60248201527f50757263686173652065786365656473206d617820616c6c6f776564000000006044820152606401610831565b346119cf82666a94d74f430000612b55565b1115611a1d5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610831565b60005b81811015610d29576000600d546001611a399190612a7c565b90506001600d6000828254611a4e9190612a7c565b9091555050336000908152600f60205260408120805460019290611a73908490612a7c565b90915550611a8390503382611c7d565b5080611a8e81612aaa565b915050611a20565b600a546001600160a01b03163314611ac05760405162461bcd60e51b8152600401610831906129fa565b6001600160a01b038116611b255760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610831565b611b2e81611f39565b50565b600b8054611b3e906129bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6a906129bf565b8015611bb75780601f10611b8c57610100808354040283529160200191611bb7565b820191906000526020600020905b815481529060010190602001808311611b9a57829003601f168201915b505050505081565b60006001600160e01b031982166380ac58cd60e01b1480611bf057506001600160e01b03198216635b5e139f60e01b145b8061087b57506301ffc9a760e01b6001600160e01b031983161461087b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c4482610e11565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610d298282604051806020016040528060008152506120bc565b6000818152600260205260408120546001600160a01b0316611d105760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610831565b6000611d1b83610e11565b9050806001600160a01b0316846001600160a01b03161480611d565750836001600160a01b0316611d4b84610913565b6001600160a01b0316145b80611d8657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611da182610e11565b6001600160a01b031614611e095760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610831565b6001600160a01b038216611e6b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610831565b611e768383836120ef565b611e81600082611c0f565b6001600160a01b0383166000908152600360205260408120805460019290611eaa908490612b74565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ed8908490612a7c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611f96848484611d8e565b611fa2848484846121a7565b6113665760405162461bcd60e51b815260040161083190612b8b565b606081611fe25750506040805180820190915260018152600360fc1b602082015290565b8160005b811561200c5780611ff681612aaa565b91506120059050600a83612bf3565b9150611fe6565b60008167ffffffffffffffff811115612027576120276128a3565b6040519080825280601f01601f191660200182016040528015612051576020820181803683370190505b5090505b8415611d8657612066600183612b74565b9150612073600a86612c07565b61207e906030612a7c565b60f81b81838151811061209357612093612a94565b60200101906001600160f81b031916908160001a9053506120b5600a86612bf3565b9450612055565b6120c683836122a5565b6120d360008484846121a7565b610ab95760405162461bcd60e51b815260040161083190612b8b565b6001600160a01b03831661214a5761214581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61216d565b816001600160a01b0316836001600160a01b03161461216d5761216d83826123f3565b6001600160a01b03821661218457610ab981612490565b826001600160a01b0316826001600160a01b031614610ab957610ab9828261253f565b60006001600160a01b0384163b1561229a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121eb903390899088908890600401612c1b565b6020604051808303816000875af1925050508015612226575060408051601f3d908101601f1916820190925261222391810190612c58565b60015b612280573d808015612254576040519150601f19603f3d011682016040523d82523d6000602084013e612259565b606091505b5080516122785760405162461bcd60e51b815260040161083190612b8b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d86565b506001949350505050565b6001600160a01b0382166122fb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610831565b6000818152600260205260409020546001600160a01b0316156123605760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610831565b61236c600083836120ef565b6001600160a01b0382166000908152600360205260408120805460019290612395908490612a7c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161240084610ebe565b61240a9190612b74565b60008381526007602052604090205490915080821461245d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906124a290600190612b74565b600083815260096020526040812054600880549394509092849081106124ca576124ca612a94565b9060005260206000200154905080600883815481106124eb576124eb612a94565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061252357612523612c75565b6001900381819060005260206000200160009055905550505050565b600061254a83610ebe565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461258f906129bf565b90600052602060002090601f0160209004810192826125b157600085556125f7565b82601f106125ca5782800160ff198235161785556125f7565b828001600101855582156125f7579182015b828111156125f75782358255916020019190600101906125dc565b50612603929150612607565b5090565b5b808211156126035760008155600101612608565b80356001600160a01b038116811461263357600080fd5b919050565b60006020828403121561264a57600080fd5b61151d8261261c565b6001600160e01b031981168114611b2e57600080fd5b60006020828403121561267b57600080fd5b813561151d81612653565b60005b838110156126a1578181015183820152602001612689565b838111156113665750506000910152565b600081518084526126ca816020860160208601612686565b601f01601f19169290920160200192915050565b60208152600061151d60208301846126b2565b60006020828403121561270357600080fd5b5035919050565b6000806040838503121561271d57600080fd5b6127268361261c565b946020939093013593505050565b6000806020838503121561274757600080fd5b823567ffffffffffffffff8082111561275f57600080fd5b818501915085601f83011261277357600080fd5b81358181111561278257600080fd5b86602082850101111561279457600080fd5b60209290920196919550909350505050565b600080602083850312156127b957600080fd5b823567ffffffffffffffff808211156127d157600080fd5b818501915085601f8301126127e557600080fd5b8135818111156127f457600080fd5b8660208260051b850101111561279457600080fd5b60008060006060848603121561281e57600080fd5b6128278461261c565b92506128356020850161261c565b9150604084013590509250925092565b8035801515811461263357600080fd5b60006020828403121561286757600080fd5b61151d82612845565b6000806040838503121561288357600080fd5b61288c8361261c565b915061289a60208401612845565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156128cf57600080fd5b6128d88561261c565b93506128e66020860161261c565b925060408501359150606085013567ffffffffffffffff8082111561290a57600080fd5b818701915087601f83011261291e57600080fd5b813581811115612930576129306128a3565b604051601f8201601f19908116603f01168101908382118183101715612958576129586128a3565b816040528281528a602084870101111561297157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156129a857600080fd5b6129b18361261c565b915061289a6020840161261c565b600181811c908216806129d357607f821691505b602082108114156129f457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612a8f57612a8f612a66565b500190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612abe57612abe612a66565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008351612b28818460208801612686565b835190830190612b3c818360208801612686565b64173539b7b760d91b9101908152600501949350505050565b6000816000190483118215151615612b6f57612b6f612a66565b500290565b600082821015612b8657612b86612a66565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612c0257612c02612bdd565b500490565b600082612c1657612c16612bdd565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c4e908301846126b2565b9695505050505050565b600060208284031215612c6a57600080fd5b815161151d81612653565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220831dd79fbb6884690accbc347e5119efec21d27914e5510304d0f396ef5dba0464736f6c634300080b0033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000114672616e6b656e2042616279204170657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034642410000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Franken Baby Apes
Arg [1] : symbol (string): FBA

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [3] : 4672616e6b656e20426162792041706573000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4642410000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

222:5540:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1798:206;;;;;;;;;;-1:-1:-1;1798:206:5;;;;;:::i;:::-;;:::i;:::-;;;529:25:15;;;517:2;502:18;1798:206:5;;;;;;;;937:224:4;;;;;;;;;;-1:-1:-1;937:224:4;;;;;:::i;:::-;;:::i;:::-;;;1116:14:15;;1109:22;1091:41;;1079:2;1064:18;937:224:4;951:187:15;2414:100:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3973:221::-;;;;;;;;;;-1:-1:-1;3973:221:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2243:32:15;;;2225:51;;2213:2;2198:18;3973:221:3;2079:203:15;3496:411:3;;;;;;;;;;-1:-1:-1;3496:411:3;;;;;:::i;:::-;;:::i;:::-;;4596:113:5;;;;;;;;;;-1:-1:-1;4596:113:5;;;;;:::i;:::-;;:::i;3857:344::-;;;;;;;;;;-1:-1:-1;3857:344:5;;;;;:::i;:::-;;:::i;1577:113:4:-;;;;;;;;;;-1:-1:-1;1665:10:4;:17;1577:113;;563:28:5;;;;;;;;;;-1:-1:-1;563:28:5;;;;-1:-1:-1;;;563:28:5;;;;;;4863:339:3;;;;;;;;;;-1:-1:-1;4863:339:3;;;;;:::i;:::-;;:::i;4209:104:5:-;;;;;;;;;;-1:-1:-1;4209:104:5;;;;;:::i;:::-;;:::i;598:37::-;;;;;;;;;;-1:-1:-1;598:37:5;;;;-1:-1:-1;;;598:37:5;;;;;;1245:256:4;;;;;;;;;;-1:-1:-1;1245:256:4;;;;;:::i;:::-;;:::i;460:45:5:-;;;;;;;;;;;;495:10;460:45;;1376:115;;;;;;;;;;-1:-1:-1;1376:115:5;;;;;:::i;:::-;-1:-1:-1;;;;;1467:16:5;1443:4;1467:16;;;:10;:16;;;;;;;;;1376:115;4717:154;;;;;;;;;;;;;:::i;5273:185:3:-;;;;;;;;;;-1:-1:-1;5273:185:3;;;;;:::i;:::-;;:::i;1767:233:4:-;;;;;;;;;;-1:-1:-1;1767:233:4;;;;;:::i;:::-;;:::i;4997:107:5:-;;;;;;;;;;-1:-1:-1;4997:107:5;;;;;:::i;:::-;;:::i;2108:239:3:-;;;;;;;;;;-1:-1:-1;2108:239:3;;;;;:::i;:::-;;:::i;5112:147:5:-;;;;;;;;;;-1:-1:-1;5112:147:5;;;;;:::i;:::-;;:::i;1838:208:3:-;;;;;;;;;;-1:-1:-1;1838:208:3;;;;;:::i;:::-;;:::i;1650:94:13:-;;;;;;;;;;;;;:::i;4321:140:5:-;;;;;;;;;;-1:-1:-1;4321:140:5;;;;;:::i;:::-;;:::i;1083:285::-;;;;;;;;;;-1:-1:-1;1083:285:5;;;;;:::i;:::-;;:::i;4469:119::-;;;;;;;;;;-1:-1:-1;4469:119:5;;;;;:::i;:::-;;:::i;672:35::-;;;;;;;;;;;;;;;;512:42;;;;;;;;;;;;544:10;512:42;;999:87:13;;;;;;;;;;-1:-1:-1;1072:6:13;;-1:-1:-1;;;;;1072:6:13;999:87;;4879:110:5;;;;;;;;;;-1:-1:-1;4879:110:5;;;;;:::i;:::-;;:::i;2583:104:3:-;;;;;;;;;;;;;:::i;4266:295::-;;;;;;;;;;-1:-1:-1;4266:295:3;;;;;:::i;:::-;;:::i;1499:291:5:-;;;;;;;;;;-1:-1:-1;1499:291:5;;;;;:::i;:::-;;:::i;5529:328:3:-;;;;;;;;;;-1:-1:-1;5529:328:3;;;;;:::i;:::-;;:::i;361:42:5:-;;;;;;;;;;;;398:5;361:42;;5381:378;;;;;;;;;;-1:-1:-1;5381:378:5;;;;;:::i;:::-;;:::i;410:43::-;;;;;;;;;;;;451:2;410:43;;716:32;;;;;;;;;;;;;;;;5267:106;;;;;;;;;;;;;:::i;4632:164:3:-;;;;;;;;;;-1:-1:-1;4632:164:3;;;;;:::i;:::-;-1:-1:-1;;;;;4753:25:3;;;4729:4;4753:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4632:164;2012:817:5;;;;;;:::i;:::-;;:::i;2837:1012::-;;;;;;:::i;:::-;;:::i;1899:192:13:-;;;;;;;;;;-1:-1:-1;1899:192:13;;;;;:::i;:::-;;:::i;644:19:5:-;;;;;;;;;;;;;:::i;1798:206::-;1873:7;-1:-1:-1;;;;;1900:19:5;;1892:62;;;;-1:-1:-1;;;1892:62:5;;6447:2:15;1892:62:5;;;6429:21:15;6486:2;6466:18;;;6459:30;6525:32;6505:18;;;6498:60;6575:18;;1892:62:5;;;;;;;;;-1:-1:-1;;;;;;1972:24:5;;;;;:17;:24;;;;;;;1798:206::o;937:224:4:-;1039:4;-1:-1:-1;;;;;;1063:50:4;;-1:-1:-1;;;1063:50:4;;:90;;;1117:36;1141:11;1117:23;:36::i;:::-;1056:97;937:224;-1:-1:-1;;937:224:4:o;2414:100:3:-;2468:13;2501:5;2494:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2414:100;:::o;3973:221::-;4049:7;7456:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7456:16:3;4069:73;;;;-1:-1:-1;;;4069:73:3;;7191:2:15;4069:73:3;;;7173:21:15;7230:2;7210:18;;;7203:30;7269:34;7249:18;;;7242:62;-1:-1:-1;;;7320:18:15;;;7313:42;7372:19;;4069:73:3;6989:408:15;4069:73:3;-1:-1:-1;4162:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4162:24:3;;3973:221::o;3496:411::-;3577:13;3593:23;3608:7;3593:14;:23::i;:::-;3577:39;;3641:5;-1:-1:-1;;;;;3635:11:3;:2;-1:-1:-1;;;;;3635:11:3;;;3627:57;;;;-1:-1:-1;;;3627:57:3;;7604:2:15;3627:57:3;;;7586:21:15;7643:2;7623:18;;;7616:30;7682:34;7662:18;;;7655:62;-1:-1:-1;;;7733:18:15;;;7726:31;7774:19;;3627:57:3;7402:397:15;3627:57:3;681:10:1;-1:-1:-1;;;;;3719:21:3;;;;:62;;-1:-1:-1;3744:37:3;3761:5;681:10:1;4632:164:3;:::i;3744:37::-;3697:168;;;;-1:-1:-1;;;3697:168:3;;8006:2:15;3697:168:3;;;7988:21:15;8045:2;8025:18;;;8018:30;8084:34;8064:18;;;8057:62;8155:26;8135:18;;;8128:54;8199:19;;3697:168:3;7804:420:15;3697:168:3;3878:21;3887:2;3891:7;3878:8;:21::i;:::-;3566:341;3496:411;;:::o;4596:113:5:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;4682:19:5::1;:5;4690:11:::0;;4682:19:::1;:::i;3857:344::-:0;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;398:5:5::1;3941:13;1665:10:4::0;:17;;1577:113;3941:13:5::1;:26;3933:66;;;;-1:-1:-1::0;;;3933:66:5::1;;;;;;;:::i;:::-;4016:9;4012:182;4031:13:::0;;::::1;4012:182;;;4066:15;4084:17;;4104:1;4084:21;;;;:::i;:::-;4066:39;;4141:1;4120:17;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;4157:25:5::1;::::0;-1:-1:-1;4167:2:5;;4170:1;4167:5;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;4174:7;4157:9;:25::i;:::-;-1:-1:-1::0;4046:3:5;::::1;::::0;::::1;:::i;:::-;;;;4012:182;;4863:339:3::0;5058:41;681:10:1;5091:7:3;5058:18;:41::i;:::-;5050:103;;;;-1:-1:-1;;;5050:103:3;;;;;;;:::i;:::-;5166:28;5176:4;5182:2;5186:7;5166:9;:28::i;4209:104:5:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;4285:8:5::1;:20:::0;;;::::1;;-1:-1:-1::0;;;4285:20:5::1;-1:-1:-1::0;;;;4285:20:5;;::::1;::::0;;;::::1;::::0;;4209:104::o;1245:256:4:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;-1:-1:-1;;;1362:87:4;;10103:2:15;1362:87:4;;;10085:21:15;10142:2;10122:18;;;10115:30;10181:34;10161:18;;;10154:62;-1:-1:-1;;;10232:18:15;;;10225:41;10283:19;;1362:87:4;9901:407:15;1362:87:4;-1:-1:-1;;;;;;1467:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1245:256::o;4717:154:5:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;4826:37:5::1;::::0;4794:21:::1;::::0;4834:10:::1;::::0;4826:37;::::1;;;::::0;4794:21;;4776:15:::1;4826:37:::0;4776:15;4826:37;4794:21;4834:10;4826:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;4765:106;4717:154::o:0;5273:185:3:-;5411:39;5428:4;5434:2;5438:7;5411:39;;;;;;;;;;;;:16;:39::i;1767:233:4:-;1842:7;1878:30;1665:10;:17;;1577:113;1878:30;1870:5;:38;1862:95;;;;-1:-1:-1;;;1862:95:4;;10515:2:15;1862:95:4;;;10497:21:15;10554:2;10534:18;;;10527:30;10593:34;10573:18;;;10566:62;-1:-1:-1;;;10644:18:15;;;10637:42;10696:19;;1862:95:4;10313:408:15;1862:95:4;1975:10;1986:5;1975:17;;;;;;;;:::i;:::-;;;;;;;;;1968:24;;1767:233;;;:::o;4997:107:5:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;5077:19:5::1;:13;5093:3:::0;;5077:19:::1;:::i;2108:239:3:-:0;2180:7;2216:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2216:16:3;2251:19;2243:73;;;;-1:-1:-1;;;2243:73:3;;10928:2:15;2243:73:3;;;10910:21:15;10967:2;10947:18;;;10940:30;11006:34;10986:18;;;10979:62;-1:-1:-1;;;11057:18:15;;;11050:39;11106:19;;2243:73:3;10726:405:15;5112:147:5;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;5212:39:5::1;:21;5236:15:::0;;5212:39:::1;:::i;1838:208:3:-:0;1910:7;-1:-1:-1;;;;;1938:19:3;;1930:74;;;;-1:-1:-1;;;1930:74:3;;11338:2:15;1930:74:3;;;11320:21:15;11377:2;11357:18;;;11350:30;11416:34;11396:18;;;11389:62;-1:-1:-1;;;11467:18:15;;;11460:40;11517:19;;1930:74:3;11136:406:15;1930:74:3;-1:-1:-1;;;;;;2022:16:3;;;;;:9;:16;;;;;;;1838:208::o;1650:94:13:-;1072:6;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;4321:140:5:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;4415:17:5::1;:38:::0;;;::::1;;-1:-1:-1::0;;;4415:38:5::1;-1:-1:-1::0;;;;4415:38:5;;::::1;::::0;;;::::1;::::0;;4321:140::o;1083:285::-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;1181:9:5::1;1176:185;1196:20:::0;;::::1;1176:185;;;1270:1;1246:9:::0;;1256:1;1246:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;1246:26:5::1;;;1238:65;;;::::0;-1:-1:-1;;;1238:65:5;;11749:2:15;1238:65:5::1;::::0;::::1;11731:21:15::0;11788:2;11768:18;;;11761:30;11827:28;11807:18;;;11800:56;11873:18;;1238:65:5::1;11547:350:15::0;1238:65:5::1;1345:4;1318:10;:24;1329:9;;1339:1;1329:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;1318:24:5::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;1318:24:5;:31;;-1:-1:-1;;1318:31:5::1;::::0;::::1;;::::0;;;::::1;::::0;;1218:3;::::1;::::0;::::1;:::i;:::-;;;;1176:185;;4469:119:::0;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;4554:16:5::1;:26:::0;4469:119::o;4879:110::-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;4963:18:5::1;:12;4978:3:::0;;4963:18:::1;:::i;2583:104:3:-:0;2639:13;2672:7;2665:14;;;;;:::i;4266:295::-;-1:-1:-1;;;;;4369:24:3;;681:10:1;4369:24:3;;4361:62;;;;-1:-1:-1;;;4361:62:3;;12104:2:15;4361:62:3;;;12086:21:15;12143:2;12123:18;;;12116:30;12182:27;12162:18;;;12155:55;12227:18;;4361:62:3;11902:349:15;4361:62:3;681:10:1;4436:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4436:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;4436:53:3;;;;;;;;;;4505:48;;1091:41:15;;;4436:42:3;;681:10:1;4505:48:3;;1064:18:15;4505:48:3;;;;;;;4266:295;;:::o;1499:291:5:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;1602:9:5::1;1597:186;1617:20:::0;;::::1;1597:186;;;1691:1;1667:9:::0;;1677:1;1667:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;1667:26:5::1;;;1659:65;;;::::0;-1:-1:-1;;;1659:65:5;;11749:2:15;1659:65:5::1;::::0;::::1;11731:21:15::0;11788:2;11768:18;;;11761:30;11827:28;11807:18;;;11800:56;11873:18;;1659:65:5::1;11547:350:15::0;1659:65:5::1;1766:5;1739:10;:24;1750:9;;1760:1;1750:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;1739:24:5::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;1739:24:5;:32;;-1:-1:-1;;1739:32:5::1;::::0;::::1;;::::0;;;::::1;::::0;;1639:3;::::1;::::0;::::1;:::i;:::-;;;;1597:186;;5529:328:3::0;5704:41;681:10:1;5737:7:3;5704:18;:41::i;:::-;5696:103;;;;-1:-1:-1;;;5696:103:3;;;;;;;:::i;:::-;5810:39;5824:4;5830:2;5834:7;5843:5;5810:13;:39::i;:::-;5529:328;;;;:::o;5381:378:5:-;7432:4:3;7456:16;;;:7;:16;;;;;;5454:13:5;;-1:-1:-1;;;;;7456:16:3;5480:49:5;;;;-1:-1:-1;;;5480:49:5;;12458:2:15;5480:49:5;;;12440:21:15;12497:2;12477:18;;;12470:30;-1:-1:-1;;;12516:18:15;;;12509:50;12576:18;;5480:49:5;12256:344:15;5480:49:5;5540:29;5572:21;5540:53;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5643:1;5617:15;5611:29;:33;:140;;5738:13;5611:140;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5680:15;5697:18;:7;:16;:18::i;:::-;5663:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5611:140;5604:147;5381:378;-1:-1:-1;;;5381:378:5:o;5267:106::-;5320:13;5353:12;5346:19;;;;;:::i;2012:817::-;2099:8;;-1:-1:-1;;;2099:8:5;;;;2091:43;;;;-1:-1:-1;;;2091:43:5;;13449:2:15;2091:43:5;;;13431:21:15;13488:2;13468:18;;;13461:30;-1:-1:-1;;;13507:18:15;;;13500:52;13569:18;;2091:43:5;13247:346:15;2091:43:5;2154:17;;-1:-1:-1;;;2154:17:5;;;;2153:18;2145:60;;;;-1:-1:-1;;;2145:60:5;;13800:2:15;2145:60:5;;;13782:21:15;13839:2;13819:18;;;13812:30;13878:31;13858:18;;;13851:59;13927:18;;2145:60:5;13598:353:15;2145:60:5;398:5;2224:13;1665:10:4;:17;;1577:113;2224:13:5;:26;2216:66;;;;-1:-1:-1;;;2216:66:5;;;;;;;:::i;:::-;451:2;2301:14;:32;;2293:72;;;;-1:-1:-1;;;2293:72:5;;14158:2:15;2293:72:5;;;14140:21:15;14197:2;14177:18;;;14170:30;14236:29;14216:18;;;14209:57;14283:18;;2293:72:5;13956:351:15;2293:72:5;398:5;2384:17;;:30;2376:75;;;;-1:-1:-1;;;2376:75:5;;14514:2:15;2376:75:5;;;14496:21:15;;;14533:18;;;14526:30;14592:34;14572:18;;;14565:62;14644:18;;2376:75:5;14312:356:15;2376:75:5;2496:9;2470:22;2478:14;544:10;2470:22;:::i;:::-;:35;;2462:76;;;;-1:-1:-1;;;2462:76:5;;15048:2:15;2462:76:5;;;15030:21:15;15087:2;15067:18;;;15060:30;15126;15106:18;;;15099:58;15174:18;;2462:76:5;14846:352:15;2462:76:5;2556:9;2551:271;2575:14;2571:1;:18;2551:271;;;398:5;2615:17;;:30;2611:200;;;2666:15;2684:17;;2704:1;2684:21;;;;:::i;:::-;2666:39;;2745:1;2724:17;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;2765:30:5;;-1:-1:-1;2775:10:5;2787:7;2765:9;:30::i;:::-;2647:164;2611:200;2591:3;;;;:::i;:::-;;;;2551:271;;2837:1012;2933:8;;-1:-1:-1;;;2933:8:5;;;;2925:43;;;;-1:-1:-1;;;2925:43:5;;13449:2:15;2925:43:5;;;13431:21:15;13488:2;13468:18;;;13461:30;-1:-1:-1;;;13507:18:15;;;13500:52;13569:18;;2925:43:5;13247:346:15;2925:43:5;2987:17;;-1:-1:-1;;;2987:17:5;;;;2979:54;;;;-1:-1:-1;;;2979:54:5;;15405:2:15;2979:54:5;;;15387:21:15;15444:2;15424:18;;;15417:30;15483:26;15463:18;;;15456:54;15527:18;;2979:54:5;15203:348:15;2979:54:5;3063:10;3052:22;;;;:10;:22;;;;;;;;3044:64;;;;-1:-1:-1;;;3044:64:5;;15758:2:15;3044:64:5;;;15740:21:15;15797:2;15777:18;;;15770:30;15836:31;15816:18;;;15809:59;15885:18;;3044:64:5;15556:353:15;3044:64:5;398:5;3127:13;1665:10:4;:17;;1577:113;3127:13:5;:26;3119:66;;;;-1:-1:-1;;;3119:66:5;;;;;;;:::i;:::-;3222:16;;3204:14;:34;;3196:79;;;;-1:-1:-1;;;3196:79:5;;16116:2:15;3196:79:5;;;16098:21:15;;;16135:18;;;16128:30;16194:34;16174:18;;;16167:62;16246:18;;3196:79:5;15914:356:15;3196:79:5;398:5;3314:14;3294:17;;:34;;;;:::i;:::-;:48;;3286:93;;;;-1:-1:-1;;;3286:93:5;;14514:2:15;3286:93:5;;;14496:21:15;;;14533:18;;;14526:30;14592:34;14572:18;;;14565:62;14644:18;;3286:93:5;14312:356:15;3286:93:5;3448:16;;3416:10;3398:29;;;;:17;:29;;;;;;:46;;3430:14;;3398:46;:::i;:::-;:66;;3390:107;;;;-1:-1:-1;;;3390:107:5;;16477:2:15;3390:107:5;;;16459:21:15;16516:2;16496:18;;;16489:30;16555;16535:18;;;16528:58;16603:18;;3390:107:5;16275:352:15;3390:107:5;3545:9;3516:25;3527:14;495:10;3516:25;:::i;:::-;:38;;3508:79;;;;-1:-1:-1;;;3508:79:5;;15048:2:15;3508:79:5;;;15030:21:15;15087:2;15067:18;;;15060:30;15126;15106:18;;;15099:58;15174:18;;3508:79:5;14846:352:15;3508:79:5;3605:9;3600:242;3624:14;3620:1;:18;3600:242;;;3660:15;3678:17;;3698:1;3678:21;;;;:::i;:::-;3660:39;;3735:1;3714:17;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;3769:10:5;3751:29;;;;:17;:29;;;;;:34;;3784:1;;3751:29;:34;;3784:1;;3751:34;:::i;:::-;;;;-1:-1:-1;3800:30:5;;-1:-1:-1;3810:10:5;3822:7;3800:9;:30::i;:::-;-1:-1:-1;3640:3:5;;;;:::i;:::-;;;;3600:242;;1899:192:13;1072:6;;-1:-1:-1;;;;;1072:6:13;681:10:1;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:13;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:13;;16834:2:15;1980:73:13::1;::::0;::::1;16816:21:15::0;16873:2;16853:18;;;16846:30;16912:34;16892:18;;;16885:62;-1:-1:-1;;;16963:18:15;;;16956:36;17009:19;;1980:73:13::1;16632:402:15::0;1980:73:13::1;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;644:19:5:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1481:293:3:-;1583:4;-1:-1:-1;;;;;;1616:40:3;;-1:-1:-1;;;1616:40:3;;:101;;-1:-1:-1;;;;;;;1669:48:3;;-1:-1:-1;;;1669:48:3;1616:101;:150;;;-1:-1:-1;;;;;;;;;;896:40:2;;;1730:36:3;787:157:2;11349:174:3;11424:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11424:29:3;-1:-1:-1;;;;;11424:29:3;;;;;;;;:24;;11478:23;11424:24;11478:14;:23::i;:::-;-1:-1:-1;;;;;11469:46:3;;;;;;;;;;;11349:174;;:::o;8351:110::-;8427:26;8437:2;8441:7;8427:26;;;;;;;;;;;;:9;:26::i;7661:348::-;7754:4;7456:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7456:16:3;7771:73;;;;-1:-1:-1;;;7771:73:3;;17241:2:15;7771:73:3;;;17223:21:15;17280:2;17260:18;;;17253:30;17319:34;17299:18;;;17292:62;-1:-1:-1;;;17370:18:15;;;17363:42;17422:19;;7771:73:3;17039:408:15;7771:73:3;7855:13;7871:23;7886:7;7871:14;:23::i;:::-;7855:39;;7924:5;-1:-1:-1;;;;;7913:16:3;:7;-1:-1:-1;;;;;7913:16:3;;:51;;;;7957:7;-1:-1:-1;;;;;7933:31:3;:20;7945:7;7933:11;:20::i;:::-;-1:-1:-1;;;;;7933:31:3;;7913:51;:87;;;-1:-1:-1;;;;;;4753:25:3;;;4729:4;4753:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7968:32;7905:96;7661:348;-1:-1:-1;;;;7661:348:3:o;10653:578::-;10812:4;-1:-1:-1;;;;;10785:31:3;:23;10800:7;10785:14;:23::i;:::-;-1:-1:-1;;;;;10785:31:3;;10777:85;;;;-1:-1:-1;;;10777:85:3;;17654:2:15;10777:85:3;;;17636:21:15;17693:2;17673:18;;;17666:30;17732:34;17712:18;;;17705:62;-1:-1:-1;;;17783:18:15;;;17776:39;17832:19;;10777:85:3;17452:405:15;10777:85:3;-1:-1:-1;;;;;10881:16:3;;10873:65;;;;-1:-1:-1;;;10873:65:3;;18064:2:15;10873:65:3;;;18046:21:15;18103:2;18083:18;;;18076:30;18142:34;18122:18;;;18115:62;-1:-1:-1;;;18193:18:15;;;18186:34;18237:19;;10873:65:3;17862:400:15;10873:65:3;10951:39;10972:4;10978:2;10982:7;10951:20;:39::i;:::-;11055:29;11072:1;11076:7;11055:8;:29::i;:::-;-1:-1:-1;;;;;11097:15:3;;;;;;:9;:15;;;;;:20;;11116:1;;11097:15;:20;;11116:1;;11097:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11128:13:3;;;;;;:9;:13;;;;;:18;;11145:1;;11128:13;:18;;11145:1;;11128:18;:::i;:::-;;;;-1:-1:-1;;11157:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11157:21:3;-1:-1:-1;;;;;11157:21:3;;;;;;;;;11196:27;;11157:16;;11196:27;;;;;;;10653:578;;;:::o;2099:173:13:-;2174:6;;;-1:-1:-1;;;;;2191:17:13;;;-1:-1:-1;;;;;;2191:17:13;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2144:128;2099:173;:::o;6739:315:3:-;6896:28;6906:4;6912:2;6916:7;6896:9;:28::i;:::-;6943:48;6966:4;6972:2;6976:7;6985:5;6943:22;:48::i;:::-;6935:111;;;;-1:-1:-1;;;6935:111:3;;;;;;;:::i;288:723:14:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:14;;;;;;;;;;;;-1:-1:-1;;;592:10:14;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:14;;-1:-1:-1;744:2:14;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:14;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:14;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;878:56:14;;;;;;;;-1:-1:-1;949:11:14;958:2;949:11;;:::i;:::-;;;818:154;;8688:321:3;8818:18;8824:2;8828:7;8818:5;:18::i;:::-;8869:54;8900:1;8904:2;8908:7;8917:5;8869:22;:54::i;:::-;8847:154;;;;-1:-1:-1;;;8847:154:3;;;;;;;:::i;2613:589:4:-;-1:-1:-1;;;;;2819:18:4;;2815:187;;2854:40;2886:7;4029:10;:17;;4002:24;;;;:15;:24;;;;;:44;;;4057:24;;;;;;;;;;;;3925:164;2854:40;2815:187;;;2924:2;-1:-1:-1;;;;;2916:10:4;:4;-1:-1:-1;;;;;2916:10:4;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;-1:-1:-1;;;;;3016:16:4;;3012:183;;3049:45;3086:7;3049:36;:45::i;3012:183::-;3122:4;-1:-1:-1;;;;;3116:10:4;:2;-1:-1:-1;;;;;3116:10:4;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;12088:803:3:-;12243:4;-1:-1:-1;;;;;12264:13:3;;1066:20:0;1114:8;12260:624:3;;12300:72;;-1:-1:-1;;;12300:72:3;;-1:-1:-1;;;;;12300:36:3;;;;;:72;;681:10:1;;12351:4:3;;12357:7;;12366:5;;12300:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12300:72:3;;;;;;;;-1:-1:-1;;12300:72:3;;;;;;;;;;;;:::i;:::-;;;12296:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12546:13:3;;12542:272;;12589:60;;-1:-1:-1;;;12589:60:3;;;;;;;:::i;12542:272::-;12764:6;12758:13;12749:6;12745:2;12741:15;12734:38;12296:533;-1:-1:-1;;;;;;12423:55:3;-1:-1:-1;;;12423:55:3;;-1:-1:-1;12416:62:3;;12260:624;-1:-1:-1;12868:4:3;12088:803;;;;;;:::o;9345:382::-;-1:-1:-1;;;;;9425:16:3;;9417:61;;;;-1:-1:-1;;;9417:61:3;;20140:2:15;9417:61:3;;;20122:21:15;;;20159:18;;;20152:30;20218:34;20198:18;;;20191:62;20270:18;;9417:61:3;19938:356:15;9417:61:3;7432:4;7456:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7456:16:3;:30;9489:58;;;;-1:-1:-1;;;9489:58:3;;20501:2:15;9489:58:3;;;20483:21:15;20540:2;20520:18;;;20513:30;20579;20559:18;;;20552:58;20627:18;;9489:58:3;20299:352:15;9489:58:3;9560:45;9589:1;9593:2;9597:7;9560:20;:45::i;:::-;-1:-1:-1;;;;;9618:13:3;;;;;;:9;:13;;;;;:18;;9635:1;;9618:13;:18;;9635:1;;9618:18;:::i;:::-;;;;-1:-1:-1;;9647:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9647:21:3;-1:-1:-1;;;;;9647:21:3;;;;;;;;9686:33;;9647:16;;;9686:33;;9647:16;;9686:33;9345:382;;:::o;4716:988:4:-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;5044:18;5065:26;;;:17;:26;;;;;;4982:51;;-1:-1:-1;5198:28:4;;;5194:328;;-1:-1:-1;;;;;5265:18:4;;5243:19;5265:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5316:30;;;;;;:44;;;5433:30;;:17;:30;;;;;:43;;;5194:328;-1:-1:-1;5618:26:4;;;;:17;:26;;;;;;;;5611:33;;;-1:-1:-1;;;;;5662:18:4;;;;;:12;:18;;;;;:34;;;;;;;5655:41;4716:988::o;5999:1079::-;6277:10;:17;6252:22;;6277:21;;6297:1;;6277:21;:::i;:::-;6309:18;6330:24;;;:15;:24;;;;;;6703:10;:26;;6252:46;;-1:-1:-1;6330:24:4;;6252:46;;6703:26;;;;;;:::i;:::-;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6847:28;;;:15;:28;;;;;;;:41;;;7019:24;;;;;7012:31;7054:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6070:1008;;;5999:1079;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;-1:-1:-1;;;;;3636:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3681:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3503:221:4:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:15;82:20;;-1:-1:-1;;;;;131:31:15;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;565:131::-;-1:-1:-1;;;;;;639:32:15;;629:43;;619:71;;686:1;683;676:12;701:245;759:6;812:2;800:9;791:7;787:23;783:32;780:52;;;828:1;825;818:12;780:52;867:9;854:23;886:30;910:5;886:30;:::i;1143:258::-;1215:1;1225:113;1239:6;1236:1;1233:13;1225:113;;;1315:11;;;1309:18;1296:11;;;1289:39;1261:2;1254:10;1225:113;;;1356:6;1353:1;1350:13;1347:48;;;-1:-1:-1;;1391:1:15;1373:16;;1366:27;1143:258::o;1406:::-;1448:3;1486:5;1480:12;1513:6;1508:3;1501:19;1529:63;1585:6;1578:4;1573:3;1569:14;1562:4;1555:5;1551:16;1529:63;:::i;:::-;1646:2;1625:15;-1:-1:-1;;1621:29:15;1612:39;;;;1653:4;1608:50;;1406:258;-1:-1:-1;;1406:258:15:o;1669:220::-;1818:2;1807:9;1800:21;1781:4;1838:45;1879:2;1868:9;1864:18;1856:6;1838:45;:::i;1894:180::-;1953:6;2006:2;1994:9;1985:7;1981:23;1977:32;1974:52;;;2022:1;2019;2012:12;1974:52;-1:-1:-1;2045:23:15;;1894:180;-1:-1:-1;1894:180:15:o;2287:254::-;2355:6;2363;2416:2;2404:9;2395:7;2391:23;2387:32;2384:52;;;2432:1;2429;2422:12;2384:52;2455:29;2474:9;2455:29;:::i;:::-;2445:39;2531:2;2516:18;;;;2503:32;;-1:-1:-1;;;2287:254:15:o;2546:592::-;2617:6;2625;2678:2;2666:9;2657:7;2653:23;2649:32;2646:52;;;2694:1;2691;2684:12;2646:52;2734:9;2721:23;2763:18;2804:2;2796:6;2793:14;2790:34;;;2820:1;2817;2810:12;2790:34;2858:6;2847:9;2843:22;2833:32;;2903:7;2896:4;2892:2;2888:13;2884:27;2874:55;;2925:1;2922;2915:12;2874:55;2965:2;2952:16;2991:2;2983:6;2980:14;2977:34;;;3007:1;3004;2997:12;2977:34;3052:7;3047:2;3038:6;3034:2;3030:15;3026:24;3023:37;3020:57;;;3073:1;3070;3063:12;3020:57;3104:2;3096:11;;;;;3126:6;;-1:-1:-1;2546:592:15;;-1:-1:-1;;;;2546:592:15:o;3143:615::-;3229:6;3237;3290:2;3278:9;3269:7;3265:23;3261:32;3258:52;;;3306:1;3303;3296:12;3258:52;3346:9;3333:23;3375:18;3416:2;3408:6;3405:14;3402:34;;;3432:1;3429;3422:12;3402:34;3470:6;3459:9;3455:22;3445:32;;3515:7;3508:4;3504:2;3500:13;3496:27;3486:55;;3537:1;3534;3527:12;3486:55;3577:2;3564:16;3603:2;3595:6;3592:14;3589:34;;;3619:1;3616;3609:12;3589:34;3672:7;3667:2;3657:6;3654:1;3650:14;3646:2;3642:23;3638:32;3635:45;3632:65;;;3693:1;3690;3683:12;3763:328;3840:6;3848;3856;3909:2;3897:9;3888:7;3884:23;3880:32;3877:52;;;3925:1;3922;3915:12;3877:52;3948:29;3967:9;3948:29;:::i;:::-;3938:39;;3996:38;4030:2;4019:9;4015:18;3996:38;:::i;:::-;3986:48;;4081:2;4070:9;4066:18;4053:32;4043:42;;3763:328;;;;;:::o;4096:160::-;4161:20;;4217:13;;4210:21;4200:32;;4190:60;;4246:1;4243;4236:12;4261:180;4317:6;4370:2;4358:9;4349:7;4345:23;4341:32;4338:52;;;4386:1;4383;4376:12;4338:52;4409:26;4425:9;4409:26;:::i;4446:254::-;4511:6;4519;4572:2;4560:9;4551:7;4547:23;4543:32;4540:52;;;4588:1;4585;4578:12;4540:52;4611:29;4630:9;4611:29;:::i;:::-;4601:39;;4659:35;4690:2;4679:9;4675:18;4659:35;:::i;:::-;4649:45;;4446:254;;;;;:::o;4705:127::-;4766:10;4761:3;4757:20;4754:1;4747:31;4797:4;4794:1;4787:15;4821:4;4818:1;4811:15;4837:1138;4932:6;4940;4948;4956;5009:3;4997:9;4988:7;4984:23;4980:33;4977:53;;;5026:1;5023;5016:12;4977:53;5049:29;5068:9;5049:29;:::i;:::-;5039:39;;5097:38;5131:2;5120:9;5116:18;5097:38;:::i;:::-;5087:48;;5182:2;5171:9;5167:18;5154:32;5144:42;;5237:2;5226:9;5222:18;5209:32;5260:18;5301:2;5293:6;5290:14;5287:34;;;5317:1;5314;5307:12;5287:34;5355:6;5344:9;5340:22;5330:32;;5400:7;5393:4;5389:2;5385:13;5381:27;5371:55;;5422:1;5419;5412:12;5371:55;5458:2;5445:16;5480:2;5476;5473:10;5470:36;;;5486:18;;:::i;:::-;5561:2;5555:9;5529:2;5615:13;;-1:-1:-1;;5611:22:15;;;5635:2;5607:31;5603:40;5591:53;;;5659:18;;;5679:22;;;5656:46;5653:72;;;5705:18;;:::i;:::-;5745:10;5741:2;5734:22;5780:2;5772:6;5765:18;5820:7;5815:2;5810;5806;5802:11;5798:20;5795:33;5792:53;;;5841:1;5838;5831:12;5792:53;5897:2;5892;5888;5884:11;5879:2;5871:6;5867:15;5854:46;5942:1;5937:2;5932;5924:6;5920:15;5916:24;5909:35;5963:6;5953:16;;;;;;;4837:1138;;;;;;;:::o;5980:260::-;6048:6;6056;6109:2;6097:9;6088:7;6084:23;6080:32;6077:52;;;6125:1;6122;6115:12;6077:52;6148:29;6167:9;6148:29;:::i;:::-;6138:39;;6196:38;6230:2;6219:9;6215:18;6196:38;:::i;6604:380::-;6683:1;6679:12;;;;6726;;;6747:61;;6801:4;6793:6;6789:17;6779:27;;6747:61;6854:2;6846:6;6843:14;6823:18;6820:38;6817:161;;;6900:10;6895:3;6891:20;6888:1;6881:31;6935:4;6932:1;6925:15;6963:4;6960:1;6953:15;6817:161;;6604:380;;;:::o;8229:356::-;8431:2;8413:21;;;8450:18;;;8443:30;8509:34;8504:2;8489:18;;8482:62;8576:2;8561:18;;8229:356::o;8590:351::-;8792:2;8774:21;;;8831:2;8811:18;;;8804:30;8870:29;8865:2;8850:18;;8843:57;8932:2;8917:18;;8590:351::o;8946:127::-;9007:10;9002:3;8998:20;8995:1;8988:31;9038:4;9035:1;9028:15;9062:4;9059:1;9052:15;9078:128;9118:3;9149:1;9145:6;9142:1;9139:13;9136:39;;;9155:18;;:::i;:::-;-1:-1:-1;9191:9:15;;9078:128::o;9211:127::-;9272:10;9267:3;9263:20;9260:1;9253:31;9303:4;9300:1;9293:15;9327:4;9324:1;9317:15;9343:135;9382:3;-1:-1:-1;;9403:17:15;;9400:43;;;9423:18;;:::i;:::-;-1:-1:-1;9470:1:15;9459:13;;9343:135::o;9483:413::-;9685:2;9667:21;;;9724:2;9704:18;;;9697:30;9763:34;9758:2;9743:18;;9736:62;-1:-1:-1;;;9829:2:15;9814:18;;9807:47;9886:3;9871:19;;9483:413::o;12605:637::-;12885:3;12923:6;12917:13;12939:53;12985:6;12980:3;12973:4;12965:6;12961:17;12939:53;:::i;:::-;13055:13;;13014:16;;;;13077:57;13055:13;13014:16;13111:4;13099:17;;13077:57;:::i;:::-;-1:-1:-1;;;13156:20:15;;13185:22;;;13234:1;13223:13;;12605:637;-1:-1:-1;;;;12605:637:15:o;14673:168::-;14713:7;14779:1;14775;14771:6;14767:14;14764:1;14761:21;14756:1;14749:9;14742:17;14738:45;14735:71;;;14786:18;;:::i;:::-;-1:-1:-1;14826:9:15;;14673:168::o;18267:125::-;18307:4;18335:1;18332;18329:8;18326:34;;;18340:18;;:::i;:::-;-1:-1:-1;18377:9:15;;18267:125::o;18397:414::-;18599:2;18581:21;;;18638:2;18618:18;;;18611:30;18677:34;18672:2;18657:18;;18650:62;-1:-1:-1;;;18743:2:15;18728:18;;18721:48;18801:3;18786:19;;18397:414::o;18816:127::-;18877:10;18872:3;18868:20;18865:1;18858:31;18908:4;18905:1;18898:15;18932:4;18929:1;18922:15;18948:120;18988:1;19014;19004:35;;19019:18;;:::i;:::-;-1:-1:-1;19053:9:15;;18948:120::o;19073:112::-;19105:1;19131;19121:35;;19136:18;;:::i;:::-;-1:-1:-1;19170:9:15;;19073:112::o;19190:489::-;-1:-1:-1;;;;;19459:15:15;;;19441:34;;19511:15;;19506:2;19491:18;;19484:43;19558:2;19543:18;;19536:34;;;19606:3;19601:2;19586:18;;19579:31;;;19384:4;;19627:46;;19653:19;;19645:6;19627:46;:::i;:::-;19619:54;19190:489;-1:-1:-1;;;;;;19190:489:15:o;19684:249::-;19753:6;19806:2;19794:9;19785:7;19781:23;19777:32;19774:52;;;19822:1;19819;19812:12;19774:52;19854:9;19848:16;19873:30;19897:5;19873:30;:::i;20656:127::-;20717:10;20712:3;20708:20;20705:1;20698:31;20748:4;20745:1;20738:15;20772:4;20769:1;20762:15

Swarm Source

ipfs://831dd79fbb6884690accbc347e5119efec21d27914e5510304d0f396ef5dba04
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.