ETH Price: $3,362.18 (-1.60%)
Gas: 8 Gwei

Token

Boonji Project (BOONJI)
 

Overview

Max Total Supply

11,111 BOONJI

Holders

4,337

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 BOONJI
0xC073786CF42cf5fa153400Cfb509E4e681CEe980
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Boonji Project is a collection of 11,111 unique digital Non-Fungible Tokens launched on the Ethereum blockchain created by world-renowned artist Brendan Murphy. Your Boonji Avatar NFT not only serves as artwork but also becomes the passport that allows you to travel with the Boonji Spaceman.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BoonjiNft

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-20
*/

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

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

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


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


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

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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


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



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

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

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

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

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

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

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


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

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

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

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

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

}


abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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


contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC721Tradable
 * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
abstract contract ERC721Tradable is ContextMixin, ERC721Enumerable, NativeMetaTransaction, Ownable {
    using SafeMath for uint256;

    address proxyRegistryAddress;

    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
        _initializeEIP712(_name);
    }

    function baseTokenURI() virtual public view returns (string memory);

    function tokenURI(uint256 _tokenId) override public view returns (string memory) {
        return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId)));
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender()
        internal
        override
        view
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }
}

interface INFT {
	function mint(address _to) external;
	function mintBatch(address _to, uint _amount) external;
}

contract BoonjiNft is INFT, ERC721Tradable {

	uint public lastTokenId = 11111;
	uint public currentTokenId = 0;

	mapping(address => bool) public operators;
	
	string internal _baseTokenURI;

	constructor(
		address _proxyRegistryAddress,
		string memory _name,
		string memory _symbol,
		string memory __baseTokenURI,
		address[] memory _operators
	) ERC721Tradable(_name, _symbol, _proxyRegistryAddress)
	{
		_baseTokenURI = __baseTokenURI;

		for(uint i = 0; i < _operators.length; i++) {
			operators[_operators[i]] = true;
		}
	}

    /*
     * @dev function to update base URI for NFT marketplaces
     * @param __baseURI The new base URI 
     */
    function updateBaseURI(string memory __baseURI) public onlyOwner {
    	_baseTokenURI = __baseURI;
    }
    
    /*
     * @dev set operator status
     * @param _operatorAddress The address to which the changes will be applied 
     * @param _status Enabled or disabled (true/false)
     */
	function updateOperator(address _operatorAddress, bool _status) public onlyOwner {
		operators[_operatorAddress] = _status;
	}
    
    /*
     * @dev function to set lastTokenId
     * @param _lastTokenId Last token id
     */
	function changeLastTokenId(uint _lastTokenId) public onlyOwner {
		lastTokenId = _lastTokenId;
	}
    
    /*
     * @dev function to mint 1 NFT
     * @param _to To whom NFT will be minted
     */
	function mint(address _to) public override {
		require(operators[msg.sender], "only operators");
		require(currentTokenId + 1 <= lastTokenId, "exceed nft limit");
		currentTokenId++;
		
		_safeMint(_to, currentTokenId);
	}
    
    /*
     * @dev function to mint batch NFT's
     * @param _to To whom NFT will be minted
     * @param _amount How much tokens will be minted
     */
	function mintBatch(address _to, uint _amount) public override {
		require(operators[msg.sender], "only operators");
		require(currentTokenId + _amount <= lastTokenId, "exceed nft limit");

		uint buf = currentTokenId;
		for(uint i = 0; i < _amount; i++) {
			buf++;
			_safeMint(_to, buf);
		}
		
		currentTokenId = buf;	
	}
	
	function baseTokenURI() public view override returns(string memory) {
        return _baseTokenURI;
	}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"__baseTokenURI","type":"string"},{"internalType":"address[]","name":"_operators","type":"address[]"}],"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":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lastTokenId","type":"uint256"}],"name":"changeLastTokenId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"operators","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operatorAddress","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"updateOperator","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a805460ff19169055612b67600f5560006010553480156200002657600080fd5b5060405162002dee38038062002dee833981016040819052620000499162000472565b83838682828160009080519060200190620000669291906200031a565b5080516200007c9060019060208401906200031a565b5050506000620000916200019960201b60201c565b600d80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600e80546001600160a01b0319166001600160a01b0383161790556200010583620001b5565b505082516200011d915060129060208501906200031a565b5060005b81518110156200018d576001601160008484815181106200014657620001466200065a565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580620001848162000630565b91505062000121565b50505050505062000686565b6000620001b06200021960201b620013cf1760201c565b905090565b600a5460ff1615620001fe5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b620002098162000278565b50600a805460ff19166001179055565b6000333014156200027257600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620002759050565b50335b90565b6040518060800160405280604f815260200162002d9f604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b8280546200032890620005f3565b90600052602060002090601f0160209004810192826200034c576000855562000397565b82601f106200036757805160ff191683800117855562000397565b8280016001018555821562000397579182015b82811115620003975782518255916020019190600101906200037a565b50620003a5929150620003a9565b5090565b5b80821115620003a55760008155600101620003aa565b80516001600160a01b0381168114620003d857600080fd5b919050565b600082601f830112620003ef57600080fd5b81516001600160401b038111156200040b576200040b62000670565b602062000421601f8301601f19168201620005c0565b82815285828487010111156200043657600080fd5b60005b838110156200045657858101830151828201840152820162000439565b83811115620004685760008385840101525b5095945050505050565b600080600080600060a086880312156200048b57600080fd5b6200049686620003c0565b602087810151919650906001600160401b0380821115620004b657600080fd5b620004c48a838b01620003dd565b96506040890151915080821115620004db57600080fd5b620004e98a838b01620003dd565b955060608901519150808211156200050057600080fd5b6200050e8a838b01620003dd565b945060808901519150808211156200052557600080fd5b818901915089601f8301126200053a57600080fd5b8151818111156200054f576200054f62000670565b8060051b915062000562848301620005c0565b8181528481019084860184860187018e10156200057e57600080fd5b600095505b83861015620005ac576200059781620003c0565b83526001959095019491860191860162000583565b508096505050505050509295509295909350565b604051601f8201601f191681016001600160401b0381118282101715620005eb57620005eb62000670565b604052919050565b600181811c908216806200060857607f821691505b602082108114156200062a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200065357634e487b7160e01b600052601160045260246000fd5b5060010190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b61270980620006966000396000f3fe6080604052600436106101ed5760003560e01c80634f6ccce71161010d578063931688cb116100a0578063c87b56dd1161006f578063c87b56dd14610592578063d547cfb7146105b2578063e985e9c5146105c7578063f2fde38b146105e7578063f84ddf0b1461060757600080fd5b8063931688cb1461051d57806395d89b411461053d578063a22cb46514610552578063b88d4fde1461057257600080fd5b806370a08231116100dc57806370a08231146104aa578063715018a6146104ca57806383669867146104df5780638da5cb5b146104ff57600080fd5b80634f6ccce71461042a5780636352211e1461044a5780636a6278421461046a5780636d44a3b21461048a57600080fd5b806318160ddd116101855780632d0335ab116101545780632d0335ab146103a15780632f745c59146103d75780633408e470146103f757806342842e0e1461040a57600080fd5b806318160ddd1461033757806320379ee51461034c57806323b872dd14610361578063248b71fc1461038157600080fd5b8063095ea7b3116101c1578063095ea7b3146102a55780630c53c51c146102c75780630f7e5970146102da57806313e7c9d81461030757600080fd5b80629a9b7b146101f257806301ffc9a71461021b57806306fdde031461024b578063081812fc1461026d575b600080fd5b3480156101fe57600080fd5b5061020860105481565b6040519081526020015b60405180910390f35b34801561022757600080fd5b5061023b61023636600461225a565b61061d565b6040519015158152602001610212565b34801561025757600080fd5b50610260610648565b6040516102129190612433565b34801561027957600080fd5b5061028d6102883660046122fa565b6106da565b6040516001600160a01b039091168152602001610212565b3480156102b157600080fd5b506102c56102c036600461222e565b610774565b005b6102606102d53660046121b0565b61089c565b3480156102e657600080fd5b50610260604051806040016040528060018152602001603160f81b81525081565b34801561031357600080fd5b5061023b61032236600461207a565b60116020526000908152604090205460ff1681565b34801561034357600080fd5b50600854610208565b34801561035857600080fd5b50600b54610208565b34801561036d57600080fd5b506102c561037c3660046120d0565b610a86565b34801561038d57600080fd5b506102c561039c36600461222e565b610abe565b3480156103ad57600080fd5b506102086103bc36600461207a565b6001600160a01b03166000908152600c602052604090205490565b3480156103e357600080fd5b506102086103f236600461222e565b610b9f565b34801561040357600080fd5b5046610208565b34801561041657600080fd5b506102c56104253660046120d0565b610c35565b34801561043657600080fd5b506102086104453660046122fa565b610c50565b34801561045657600080fd5b5061028d6104653660046122fa565b610ce3565b34801561047657600080fd5b506102c561048536600461207a565b610d5a565b34801561049657600080fd5b506102c56104a536600461217d565b610e20565b3480156104b657600080fd5b506102086104c536600461207a565b610e94565b3480156104d657600080fd5b506102c5610f1b565b3480156104eb57600080fd5b506102c56104fa3660046122fa565b610fae565b34801561050b57600080fd5b50600d546001600160a01b031661028d565b34801561052957600080fd5b506102c56105383660046122b1565b610ffc565b34801561054957600080fd5b5061026061105c565b34801561055e57600080fd5b506102c561056d36600461217d565b61106b565b34801561057e57600080fd5b506102c561058d366004612111565b61116d565b34801561059e57600080fd5b506102606105ad3660046122fa565b6111ac565b3480156105be57600080fd5b506102606111e6565b3480156105d357600080fd5b5061023b6105e2366004612097565b6111f5565b3480156105f357600080fd5b506102c561060236600461207a565b6112c5565b34801561061357600080fd5b50610208600f5481565b60006001600160e01b0319821663780e9d6360e01b148061064257506106428261142c565b92915050565b6060600080546106579061258d565b80601f01602080910402602001604051908101604052809291908181526020018280546106839061258d565b80156106d05780601f106106a5576101008083540402835291602001916106d0565b820191906000526020600020905b8154815290600101906020018083116106b357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077f82610ce3565b9050806001600160a01b0316836001600160a01b031614156107ed5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161074f565b806001600160a01b03166107ff61147c565b6001600160a01b0316148061081b575061081b816105e261147c565b61088d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161074f565b610897838361148b565b505050565b60408051606081810183526001600160a01b0388166000818152600c6020908152908590205484528301529181018690526108da87828787876114f9565b6109305760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b606482015260840161074f565b6001600160a01b0387166000908152600c60205260409020546109549060016115e9565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b906109a490899033908a906123c1565b60405180910390a1600080306001600160a01b0316888a6040516020016109cc92919061235b565b60408051601f19818403018152908290526109e69161233f565b6000604051808303816000865af19150503d8060008114610a23576040519150601f19603f3d011682016040523d82523d6000602084013e610a28565b606091505b509150915081610a7a5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604482015260640161074f565b98975050505050505050565b610a97610a9161147c565b826115fc565b610ab35760405162461bcd60e51b815260040161074f906124cd565b6108978383836116cb565b3360009081526011602052604090205460ff16610b0e5760405162461bcd60e51b815260206004820152600e60248201526d6f6e6c79206f70657261746f727360901b604482015260640161074f565b600f5481601054610b1f919061251e565b1115610b605760405162461bcd60e51b815260206004820152601060248201526f195e18d95959081b999d081b1a5b5a5d60821b604482015260640161074f565b60105460005b82811015610b975781610b78816125c8565b925050610b858483611876565b80610b8f816125c8565b915050610b66565b506010555050565b6000610baa83610e94565b8210610c0c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161074f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108978383836040518060200160405280600081525061116d565b6000610c5b60085490565b8210610cbe5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161074f565b60088281548110610cd157610cd1612639565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106425760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161074f565b3360009081526011602052604090205460ff16610daa5760405162461bcd60e51b815260206004820152600e60248201526d6f6e6c79206f70657261746f727360901b604482015260640161074f565b600f54601054610dbb90600161251e565b1115610dfc5760405162461bcd60e51b815260206004820152601060248201526f195e18d95959081b999d081b1a5b5a5d60821b604482015260640161074f565b60108054906000610e0c836125c8565b9190505550610e1d81601054611876565b50565b610e2861147c565b6001600160a01b0316610e43600d546001600160a01b031690565b6001600160a01b031614610e695760405162461bcd60e51b815260040161074f90612498565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b60006001600160a01b038216610eff5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161074f565b506001600160a01b031660009081526003602052604090205490565b610f2361147c565b6001600160a01b0316610f3e600d546001600160a01b031690565b6001600160a01b031614610f645760405162461bcd60e51b815260040161074f90612498565b600d546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600d80546001600160a01b0319169055565b610fb661147c565b6001600160a01b0316610fd1600d546001600160a01b031690565b6001600160a01b031614610ff75760405162461bcd60e51b815260040161074f90612498565b600f55565b61100461147c565b6001600160a01b031661101f600d546001600160a01b031690565b6001600160a01b0316146110455760405162461bcd60e51b815260040161074f90612498565b8051611058906012906020840190611f4b565b5050565b6060600180546106579061258d565b61107361147c565b6001600160a01b0316826001600160a01b031614156110d45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161074f565b80600560006110e161147c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561112561147c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611161911515815260200190565b60405180910390a35050565b61117e61117861147c565b836115fc565b61119a5760405162461bcd60e51b815260040161074f906124cd565b6111a684848484611890565b50505050565b60606111b66111e6565b6111bf836118c3565b6040516020016111d0929190612392565b6040516020818303038152906040529050919050565b6060601280546106579061258d565b600e5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561124257600080fd5b505afa158015611256573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127a9190612294565b6001600160a01b03161415611293576001915050610642565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6112cd61147c565b6001600160a01b03166112e8600d546001600160a01b031690565b6001600160a01b03161461130e5760405162461bcd60e51b815260040161074f90612498565b6001600160a01b0381166113735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074f565b600d546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60003330141561142657600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506114299050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b148061145d57506001600160e01b03198216635b5e139f60e01b145b8061064257506301ffc9a760e01b6001600160e01b0319831614610642565b60006114866113cf565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114c082610ce3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b03861661155f5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b606482015260840161074f565b600161157261156d876119c1565b611a3e565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156115c0573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006115f5828461251e565b9392505050565b6000818152600260205260408120546001600160a01b03166116755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161074f565b600061168083610ce3565b9050806001600160a01b0316846001600160a01b031614806116bb5750836001600160a01b03166116b0846106da565b6001600160a01b0316145b806112bd57506112bd81856111f5565b826001600160a01b03166116de82610ce3565b6001600160a01b0316146117465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161074f565b6001600160a01b0382166117a85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161074f565b6117b3838383611a6e565b6117be60008261148b565b6001600160a01b03831660009081526003602052604081208054600192906117e790849061254a565b90915550506001600160a01b038216600090815260036020526040812080546001929061181590849061251e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611058828260405180602001604052806000815250611b26565b61189b8484846116cb565b6118a784848484611b59565b6111a65760405162461bcd60e51b815260040161074f90612446565b6060816118e75750506040805180820190915260018152600360fc1b602082015290565b8160005b811561191157806118fb816125c8565b915061190a9050600a83612536565b91506118eb565b60008167ffffffffffffffff81111561192c5761192c61264f565b6040519080825280601f01601f191660200182016040528015611956576020820181803683370190505b5090505b84156112bd5761196b60018361254a565b9150611978600a866125e3565b61198390603061251e565b60f81b81838151811061199857611998612639565b60200101906001600160f81b031916908160001a9053506119ba600a86612536565b945061195a565b60006040518060800160405280604381526020016126916043913980516020918201208351848301516040808701518051908601209051611a21950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611a49600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201611a21565b6001600160a01b038316611ac957611ac481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611aec565b816001600160a01b0316836001600160a01b031614611aec57611aec8382611c6d565b6001600160a01b038216611b035761089781611d0a565b826001600160a01b0316826001600160a01b031614610897576108978282611db9565b611b308383611dfd565b611b3d6000848484611b59565b6108975760405162461bcd60e51b815260040161074f90612446565b60006001600160a01b0384163b15611c6257836001600160a01b031663150b7a02611b8261147c565b8786866040518563ffffffff1660e01b8152600401611ba494939291906123f6565b602060405180830381600087803b158015611bbe57600080fd5b505af1925050508015611bee575060408051601f3d908101601f19168201909252611beb91810190612277565b60015b611c48573d808015611c1c576040519150601f19603f3d011682016040523d82523d6000602084013e611c21565b606091505b508051611c405760405162461bcd60e51b815260040161074f90612446565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112bd565b506001949350505050565b60006001611c7a84610e94565b611c84919061254a565b600083815260076020526040902054909150808214611cd7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d1c9060019061254a565b60008381526009602052604081205460088054939450909284908110611d4457611d44612639565b906000526020600020015490508060088381548110611d6557611d65612639565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d9d57611d9d612623565b6001900381819060005260206000200160009055905550505050565b6000611dc483610e94565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e535760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161074f565b6000818152600260205260409020546001600160a01b031615611eb85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074f565b611ec460008383611a6e565b6001600160a01b0382166000908152600360205260408120805460019290611eed90849061251e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f579061258d565b90600052602060002090601f016020900481019282611f795760008555611fbf565b82601f10611f9257805160ff1916838001178555611fbf565b82800160010185558215611fbf579182015b82811115611fbf578251825591602001919060010190611fa4565b50611fcb929150611fcf565b5090565b5b80821115611fcb5760008155600101611fd0565b600067ffffffffffffffff80841115611fff57611fff61264f565b604051601f8501601f19908116603f011681019082821181831017156120275761202761264f565b8160405280935085815286868601111561204057600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261206b57600080fd5b6115f583833560208501611fe4565b60006020828403121561208c57600080fd5b81356115f581612665565b600080604083850312156120aa57600080fd5b82356120b581612665565b915060208301356120c581612665565b809150509250929050565b6000806000606084860312156120e557600080fd5b83356120f081612665565b9250602084013561210081612665565b929592945050506040919091013590565b6000806000806080858703121561212757600080fd5b843561213281612665565b9350602085013561214281612665565b925060408501359150606085013567ffffffffffffffff81111561216557600080fd5b6121718782880161205a565b91505092959194509250565b6000806040838503121561219057600080fd5b823561219b81612665565b9150602083013580151581146120c557600080fd5b600080600080600060a086880312156121c857600080fd5b85356121d381612665565b9450602086013567ffffffffffffffff8111156121ef57600080fd5b6121fb8882890161205a565b9450506040860135925060608601359150608086013560ff8116811461222057600080fd5b809150509295509295909350565b6000806040838503121561224157600080fd5b823561224c81612665565b946020939093013593505050565b60006020828403121561226c57600080fd5b81356115f58161267a565b60006020828403121561228957600080fd5b81516115f58161267a565b6000602082840312156122a657600080fd5b81516115f581612665565b6000602082840312156122c357600080fd5b813567ffffffffffffffff8111156122da57600080fd5b8201601f810184136122eb57600080fd5b6112bd84823560208401611fe4565b60006020828403121561230c57600080fd5b5035919050565b6000815180845261232b816020860160208601612561565b601f01601f19169290920160200192915050565b60008251612351818460208701612561565b9190910192915050565b6000835161236d818460208801612561565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600083516123a4818460208801612561565b8351908301906123b8818360208801612561565b01949350505050565b6001600160a01b038481168252831660208201526060604082018190526000906123ed90830184612313565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061242990830184612313565b9695505050505050565b6020815260006115f56020830184612313565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612531576125316125f7565b500190565b6000826125455761254561260d565b500490565b60008282101561255c5761255c6125f7565b500390565b60005b8381101561257c578181015183820152602001612564565b838111156111a65750506000910152565b600181811c908216806125a157607f821691505b602082108114156125c257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125dc576125dc6125f7565b5060010190565b6000826125f2576125f261260d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610e1d57600080fd5b6001600160e01b031981168114610e1d57600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212209f9ee3eb2f44ae5056257a972fa4ae27c7f3c18e5cf972b55c1c7eae5224138264736f6c63430008070033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000e426f6f6e6a692050726f6a6563740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006424f4f4e4a49000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ed5760003560e01c80634f6ccce71161010d578063931688cb116100a0578063c87b56dd1161006f578063c87b56dd14610592578063d547cfb7146105b2578063e985e9c5146105c7578063f2fde38b146105e7578063f84ddf0b1461060757600080fd5b8063931688cb1461051d57806395d89b411461053d578063a22cb46514610552578063b88d4fde1461057257600080fd5b806370a08231116100dc57806370a08231146104aa578063715018a6146104ca57806383669867146104df5780638da5cb5b146104ff57600080fd5b80634f6ccce71461042a5780636352211e1461044a5780636a6278421461046a5780636d44a3b21461048a57600080fd5b806318160ddd116101855780632d0335ab116101545780632d0335ab146103a15780632f745c59146103d75780633408e470146103f757806342842e0e1461040a57600080fd5b806318160ddd1461033757806320379ee51461034c57806323b872dd14610361578063248b71fc1461038157600080fd5b8063095ea7b3116101c1578063095ea7b3146102a55780630c53c51c146102c75780630f7e5970146102da57806313e7c9d81461030757600080fd5b80629a9b7b146101f257806301ffc9a71461021b57806306fdde031461024b578063081812fc1461026d575b600080fd5b3480156101fe57600080fd5b5061020860105481565b6040519081526020015b60405180910390f35b34801561022757600080fd5b5061023b61023636600461225a565b61061d565b6040519015158152602001610212565b34801561025757600080fd5b50610260610648565b6040516102129190612433565b34801561027957600080fd5b5061028d6102883660046122fa565b6106da565b6040516001600160a01b039091168152602001610212565b3480156102b157600080fd5b506102c56102c036600461222e565b610774565b005b6102606102d53660046121b0565b61089c565b3480156102e657600080fd5b50610260604051806040016040528060018152602001603160f81b81525081565b34801561031357600080fd5b5061023b61032236600461207a565b60116020526000908152604090205460ff1681565b34801561034357600080fd5b50600854610208565b34801561035857600080fd5b50600b54610208565b34801561036d57600080fd5b506102c561037c3660046120d0565b610a86565b34801561038d57600080fd5b506102c561039c36600461222e565b610abe565b3480156103ad57600080fd5b506102086103bc36600461207a565b6001600160a01b03166000908152600c602052604090205490565b3480156103e357600080fd5b506102086103f236600461222e565b610b9f565b34801561040357600080fd5b5046610208565b34801561041657600080fd5b506102c56104253660046120d0565b610c35565b34801561043657600080fd5b506102086104453660046122fa565b610c50565b34801561045657600080fd5b5061028d6104653660046122fa565b610ce3565b34801561047657600080fd5b506102c561048536600461207a565b610d5a565b34801561049657600080fd5b506102c56104a536600461217d565b610e20565b3480156104b657600080fd5b506102086104c536600461207a565b610e94565b3480156104d657600080fd5b506102c5610f1b565b3480156104eb57600080fd5b506102c56104fa3660046122fa565b610fae565b34801561050b57600080fd5b50600d546001600160a01b031661028d565b34801561052957600080fd5b506102c56105383660046122b1565b610ffc565b34801561054957600080fd5b5061026061105c565b34801561055e57600080fd5b506102c561056d36600461217d565b61106b565b34801561057e57600080fd5b506102c561058d366004612111565b61116d565b34801561059e57600080fd5b506102606105ad3660046122fa565b6111ac565b3480156105be57600080fd5b506102606111e6565b3480156105d357600080fd5b5061023b6105e2366004612097565b6111f5565b3480156105f357600080fd5b506102c561060236600461207a565b6112c5565b34801561061357600080fd5b50610208600f5481565b60006001600160e01b0319821663780e9d6360e01b148061064257506106428261142c565b92915050565b6060600080546106579061258d565b80601f01602080910402602001604051908101604052809291908181526020018280546106839061258d565b80156106d05780601f106106a5576101008083540402835291602001916106d0565b820191906000526020600020905b8154815290600101906020018083116106b357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077f82610ce3565b9050806001600160a01b0316836001600160a01b031614156107ed5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161074f565b806001600160a01b03166107ff61147c565b6001600160a01b0316148061081b575061081b816105e261147c565b61088d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161074f565b610897838361148b565b505050565b60408051606081810183526001600160a01b0388166000818152600c6020908152908590205484528301529181018690526108da87828787876114f9565b6109305760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b606482015260840161074f565b6001600160a01b0387166000908152600c60205260409020546109549060016115e9565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b906109a490899033908a906123c1565b60405180910390a1600080306001600160a01b0316888a6040516020016109cc92919061235b565b60408051601f19818403018152908290526109e69161233f565b6000604051808303816000865af19150503d8060008114610a23576040519150601f19603f3d011682016040523d82523d6000602084013e610a28565b606091505b509150915081610a7a5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604482015260640161074f565b98975050505050505050565b610a97610a9161147c565b826115fc565b610ab35760405162461bcd60e51b815260040161074f906124cd565b6108978383836116cb565b3360009081526011602052604090205460ff16610b0e5760405162461bcd60e51b815260206004820152600e60248201526d6f6e6c79206f70657261746f727360901b604482015260640161074f565b600f5481601054610b1f919061251e565b1115610b605760405162461bcd60e51b815260206004820152601060248201526f195e18d95959081b999d081b1a5b5a5d60821b604482015260640161074f565b60105460005b82811015610b975781610b78816125c8565b925050610b858483611876565b80610b8f816125c8565b915050610b66565b506010555050565b6000610baa83610e94565b8210610c0c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161074f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108978383836040518060200160405280600081525061116d565b6000610c5b60085490565b8210610cbe5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161074f565b60088281548110610cd157610cd1612639565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106425760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161074f565b3360009081526011602052604090205460ff16610daa5760405162461bcd60e51b815260206004820152600e60248201526d6f6e6c79206f70657261746f727360901b604482015260640161074f565b600f54601054610dbb90600161251e565b1115610dfc5760405162461bcd60e51b815260206004820152601060248201526f195e18d95959081b999d081b1a5b5a5d60821b604482015260640161074f565b60108054906000610e0c836125c8565b9190505550610e1d81601054611876565b50565b610e2861147c565b6001600160a01b0316610e43600d546001600160a01b031690565b6001600160a01b031614610e695760405162461bcd60e51b815260040161074f90612498565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b60006001600160a01b038216610eff5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161074f565b506001600160a01b031660009081526003602052604090205490565b610f2361147c565b6001600160a01b0316610f3e600d546001600160a01b031690565b6001600160a01b031614610f645760405162461bcd60e51b815260040161074f90612498565b600d546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600d80546001600160a01b0319169055565b610fb661147c565b6001600160a01b0316610fd1600d546001600160a01b031690565b6001600160a01b031614610ff75760405162461bcd60e51b815260040161074f90612498565b600f55565b61100461147c565b6001600160a01b031661101f600d546001600160a01b031690565b6001600160a01b0316146110455760405162461bcd60e51b815260040161074f90612498565b8051611058906012906020840190611f4b565b5050565b6060600180546106579061258d565b61107361147c565b6001600160a01b0316826001600160a01b031614156110d45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161074f565b80600560006110e161147c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561112561147c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611161911515815260200190565b60405180910390a35050565b61117e61117861147c565b836115fc565b61119a5760405162461bcd60e51b815260040161074f906124cd565b6111a684848484611890565b50505050565b60606111b66111e6565b6111bf836118c3565b6040516020016111d0929190612392565b6040516020818303038152906040529050919050565b6060601280546106579061258d565b600e5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561124257600080fd5b505afa158015611256573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127a9190612294565b6001600160a01b03161415611293576001915050610642565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6112cd61147c565b6001600160a01b03166112e8600d546001600160a01b031690565b6001600160a01b03161461130e5760405162461bcd60e51b815260040161074f90612498565b6001600160a01b0381166113735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074f565b600d546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60003330141561142657600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506114299050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b148061145d57506001600160e01b03198216635b5e139f60e01b145b8061064257506301ffc9a760e01b6001600160e01b0319831614610642565b60006114866113cf565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114c082610ce3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b03861661155f5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b606482015260840161074f565b600161157261156d876119c1565b611a3e565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156115c0573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006115f5828461251e565b9392505050565b6000818152600260205260408120546001600160a01b03166116755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161074f565b600061168083610ce3565b9050806001600160a01b0316846001600160a01b031614806116bb5750836001600160a01b03166116b0846106da565b6001600160a01b0316145b806112bd57506112bd81856111f5565b826001600160a01b03166116de82610ce3565b6001600160a01b0316146117465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161074f565b6001600160a01b0382166117a85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161074f565b6117b3838383611a6e565b6117be60008261148b565b6001600160a01b03831660009081526003602052604081208054600192906117e790849061254a565b90915550506001600160a01b038216600090815260036020526040812080546001929061181590849061251e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611058828260405180602001604052806000815250611b26565b61189b8484846116cb565b6118a784848484611b59565b6111a65760405162461bcd60e51b815260040161074f90612446565b6060816118e75750506040805180820190915260018152600360fc1b602082015290565b8160005b811561191157806118fb816125c8565b915061190a9050600a83612536565b91506118eb565b60008167ffffffffffffffff81111561192c5761192c61264f565b6040519080825280601f01601f191660200182016040528015611956576020820181803683370190505b5090505b84156112bd5761196b60018361254a565b9150611978600a866125e3565b61198390603061251e565b60f81b81838151811061199857611998612639565b60200101906001600160f81b031916908160001a9053506119ba600a86612536565b945061195a565b60006040518060800160405280604381526020016126916043913980516020918201208351848301516040808701518051908601209051611a21950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611a49600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201611a21565b6001600160a01b038316611ac957611ac481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611aec565b816001600160a01b0316836001600160a01b031614611aec57611aec8382611c6d565b6001600160a01b038216611b035761089781611d0a565b826001600160a01b0316826001600160a01b031614610897576108978282611db9565b611b308383611dfd565b611b3d6000848484611b59565b6108975760405162461bcd60e51b815260040161074f90612446565b60006001600160a01b0384163b15611c6257836001600160a01b031663150b7a02611b8261147c565b8786866040518563ffffffff1660e01b8152600401611ba494939291906123f6565b602060405180830381600087803b158015611bbe57600080fd5b505af1925050508015611bee575060408051601f3d908101601f19168201909252611beb91810190612277565b60015b611c48573d808015611c1c576040519150601f19603f3d011682016040523d82523d6000602084013e611c21565b606091505b508051611c405760405162461bcd60e51b815260040161074f90612446565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112bd565b506001949350505050565b60006001611c7a84610e94565b611c84919061254a565b600083815260076020526040902054909150808214611cd7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d1c9060019061254a565b60008381526009602052604081205460088054939450909284908110611d4457611d44612639565b906000526020600020015490508060088381548110611d6557611d65612639565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d9d57611d9d612623565b6001900381819060005260206000200160009055905550505050565b6000611dc483610e94565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e535760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161074f565b6000818152600260205260409020546001600160a01b031615611eb85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074f565b611ec460008383611a6e565b6001600160a01b0382166000908152600360205260408120805460019290611eed90849061251e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f579061258d565b90600052602060002090601f016020900481019282611f795760008555611fbf565b82601f10611f9257805160ff1916838001178555611fbf565b82800160010185558215611fbf579182015b82811115611fbf578251825591602001919060010190611fa4565b50611fcb929150611fcf565b5090565b5b80821115611fcb5760008155600101611fd0565b600067ffffffffffffffff80841115611fff57611fff61264f565b604051601f8501601f19908116603f011681019082821181831017156120275761202761264f565b8160405280935085815286868601111561204057600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261206b57600080fd5b6115f583833560208501611fe4565b60006020828403121561208c57600080fd5b81356115f581612665565b600080604083850312156120aa57600080fd5b82356120b581612665565b915060208301356120c581612665565b809150509250929050565b6000806000606084860312156120e557600080fd5b83356120f081612665565b9250602084013561210081612665565b929592945050506040919091013590565b6000806000806080858703121561212757600080fd5b843561213281612665565b9350602085013561214281612665565b925060408501359150606085013567ffffffffffffffff81111561216557600080fd5b6121718782880161205a565b91505092959194509250565b6000806040838503121561219057600080fd5b823561219b81612665565b9150602083013580151581146120c557600080fd5b600080600080600060a086880312156121c857600080fd5b85356121d381612665565b9450602086013567ffffffffffffffff8111156121ef57600080fd5b6121fb8882890161205a565b9450506040860135925060608601359150608086013560ff8116811461222057600080fd5b809150509295509295909350565b6000806040838503121561224157600080fd5b823561224c81612665565b946020939093013593505050565b60006020828403121561226c57600080fd5b81356115f58161267a565b60006020828403121561228957600080fd5b81516115f58161267a565b6000602082840312156122a657600080fd5b81516115f581612665565b6000602082840312156122c357600080fd5b813567ffffffffffffffff8111156122da57600080fd5b8201601f810184136122eb57600080fd5b6112bd84823560208401611fe4565b60006020828403121561230c57600080fd5b5035919050565b6000815180845261232b816020860160208601612561565b601f01601f19169290920160200192915050565b60008251612351818460208701612561565b9190910192915050565b6000835161236d818460208801612561565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600083516123a4818460208801612561565b8351908301906123b8818360208801612561565b01949350505050565b6001600160a01b038481168252831660208201526060604082018190526000906123ed90830184612313565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061242990830184612313565b9695505050505050565b6020815260006115f56020830184612313565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612531576125316125f7565b500190565b6000826125455761254561260d565b500490565b60008282101561255c5761255c6125f7565b500390565b60005b8381101561257c578181015183820152602001612564565b838111156111a65750506000910152565b600181811c908216806125a157607f821691505b602082108114156125c257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125dc576125dc6125f7565b5060010190565b6000826125f2576125f261260d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610e1d57600080fd5b6001600160e01b031981168114610e1d57600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212209f9ee3eb2f44ae5056257a972fa4ae27c7f3c18e5cf972b55c1c7eae5224138264736f6c63430008070033

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000e426f6f6e6a692050726f6a6563740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006424f4f4e4a49000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [1] : _name (string): Boonji Project
Arg [2] : _symbol (string): BOONJI
Arg [3] : __baseTokenURI (string):

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [6] : 426f6f6e6a692050726f6a656374000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [8] : 424f4f4e4a490000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

56541:2388:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56625:30;;;;;;;;;;;;;;;;;;;8892:25:1;;;8880:2;8865:18;56625:30:0;;;;;;;;31287:237;;;;;;;;;;-1:-1:-1;31287:237:0;;;;;:::i;:::-;;:::i;:::-;;;8719:14:1;;8712:22;8694:41;;8682:2;8667:18;31287:237:0;8554:187:1;18721:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20181:221::-;;;;;;;;;;-1:-1:-1;20181:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7581:32:1;;;7563:51;;7551:2;7536:18;20181:221:0;7417:203:1;19718:397:0;;;;;;;;;;-1:-1:-1;19718:397:0;;;;;:::i;:::-;;:::i;:::-;;52400:1151;;;;;;:::i;:::-;;:::i;49665:43::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49665:43:0;;;;;56661:41;;;;;;;;;;-1:-1:-1;56661:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31940:113;;;;;;;;;;-1:-1:-1;32028:10:0;:17;31940:113;;50674:101;;;;;;;;;;-1:-1:-1;50752:15:0;;50674:101;;21071:305;;;;;;;;;;-1:-1:-1;21071:305:0;;;;;:::i;:::-;;:::i;58371:335::-;;;;;;;;;;-1:-1:-1;58371:335:0;;;;;:::i;:::-;;:::i;53977:107::-;;;;;;;;;;-1:-1:-1;53977:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;54064:12:0;54030:13;54064:12;;;:6;:12;;;;;;;53977:107;31608:256;;;;;;;;;;-1:-1:-1;31608:256:0;;;;;:::i;:::-;;:::i;50783:161::-;;;;;;;;;;-1:-1:-1;50897:9:0;50783:161;;21447:151;;;;;;;;;;-1:-1:-1;21447:151:0;;;;;:::i;:::-;;:::i;32130:233::-;;;;;;;;;;-1:-1:-1;32130:233:0;;;;;:::i;:::-;;:::i;18415:239::-;;;;;;;;;;-1:-1:-1;18415:239:0;;;;;:::i;:::-;;:::i;57975:228::-;;;;;;;;;;-1:-1:-1;57975:228:0;;;;;:::i;:::-;;:::i;57531:128::-;;;;;;;;;;-1:-1:-1;57531:128:0;;;;;:::i;:::-;;:::i;18145:208::-;;;;;;;;;;-1:-1:-1;18145:208:0;;;;;:::i;:::-;;:::i;39077:148::-;;;;;;;;;;;;;:::i;57768:99::-;;;;;;;;;;-1:-1:-1;57768:99:0;;;;;:::i;:::-;;:::i;38426:87::-;;;;;;;;;;-1:-1:-1;38499:6:0;;-1:-1:-1;;;;;38499:6:0;38426:87;;57228:106;;;;;;;;;;-1:-1:-1;57228:106:0;;;;;:::i;:::-;;:::i;18890:104::-;;;;;;;;;;;;;:::i;20474:295::-;;;;;;;;;;-1:-1:-1;20474:295:0;;;;;:::i;:::-;;:::i;21669:285::-;;;;;;;;;;-1:-1:-1;21669:285:0;;;;;:::i;:::-;;:::i;55357:175::-;;;;;;;;;;-1:-1:-1;55357:175:0;;;;;:::i;:::-;;:::i;58712:104::-;;;;;;;;;;;;;:::i;55664:445::-;;;;;;;;;;-1:-1:-1;55664:445:0;;;;;:::i;:::-;;:::i;39380:244::-;;;;;;;;;;-1:-1:-1;39380:244:0;;;;;:::i;:::-;;:::i;56590:31::-;;;;;;;;;;;;;;;;31287:237;31389:4;-1:-1:-1;;;;;;31413:50:0;;-1:-1:-1;;;31413:50:0;;:103;;;31480:36;31504:11;31480:23;:36::i;:::-;31406:110;31287:237;-1:-1:-1;;31287:237:0:o;18721:100::-;18775:13;18808:5;18801:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18721:100;:::o;20181:221::-;20257:7;23510:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23510:16:0;20277:73;;;;-1:-1:-1;;;20277:73:0;;15881:2:1;20277:73:0;;;15863:21:1;15920:2;15900:18;;;15893:30;15959:34;15939:18;;;15932:62;-1:-1:-1;;;16010:18:1;;;16003:42;16062:19;;20277:73:0;;;;;;;;;-1:-1:-1;20370:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20370:24:0;;20181:221::o;19718:397::-;19799:13;19815:23;19830:7;19815:14;:23::i;:::-;19799:39;;19863:5;-1:-1:-1;;;;;19857:11:0;:2;-1:-1:-1;;;;;19857:11:0;;;19849:57;;;;-1:-1:-1;;;19849:57:0;;17467:2:1;19849:57:0;;;17449:21:1;17506:2;17486:18;;;17479:30;17545:34;17525:18;;;17518:62;-1:-1:-1;;;17596:18:1;;;17589:31;17637:19;;19849:57:0;17265:397:1;19849:57:0;19943:5;-1:-1:-1;;;;;19927:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;19927:21:0;;:62;;;;19952:37;19969:5;19976:12;:10;:12::i;19952:37::-;19919:154;;;;-1:-1:-1;;;19919:154:0;;14274:2:1;19919:154:0;;;14256:21:1;14313:2;14293:18;;;14286:30;14352:34;14332:18;;;14325:62;14423:26;14403:18;;;14396:54;14467:19;;19919:154:0;14072:420:1;19919:154:0;20086:21;20095:2;20099:7;20086:8;:21::i;:::-;19788:327;19718:397;;:::o;52400:1151::-;52658:152;;;52601:12;52658:152;;;;;-1:-1:-1;;;;;52696:19:0;;52626:29;52696:19;;;:6;:19;;;;;;;;;52658:152;;;;;;;;;;;52845:45;52703:11;52658:152;52873:4;52879;52885;52845:6;:45::i;:::-;52823:128;;;;-1:-1:-1;;;52823:128:0;;17065:2:1;52823:128:0;;;17047:21:1;17104:2;17084:18;;;17077:30;17143:34;17123:18;;;17116:62;-1:-1:-1;;;17194:18:1;;;17187:31;17235:19;;52823:128:0;16863:397:1;52823:128:0;-1:-1:-1;;;;;53040:19:0;;;;;;:6;:19;;;;;;:26;;53064:1;53040:23;:26::i;:::-;-1:-1:-1;;;;;53018:19:0;;;;;;:6;:19;;;;;;;:48;;;;53084:126;;;;;53025:11;;53156:10;;53182:17;;53084:126;:::i;:::-;;;;;;;;53321:12;53335:23;53370:4;-1:-1:-1;;;;;53362:18:0;53412:17;53431:11;53395:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;53395:48:0;;;;;;;;;;53362:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53320:134;;;;53473:7;53465:48;;;;-1:-1:-1;;;53465:48:0;;11982:2:1;53465:48:0;;;11964:21:1;12021:2;12001:18;;;11994:30;12060;12040:18;;;12033:58;12108:18;;53465:48:0;11780:352:1;53465:48:0;53533:10;52400:1151;-1:-1:-1;;;;;;;;52400:1151:0:o;21071:305::-;21232:41;21251:12;:10;:12::i;:::-;21265:7;21232:18;:41::i;:::-;21224:103;;;;-1:-1:-1;;;21224:103:0;;;;;;;:::i;:::-;21340:28;21350:4;21356:2;21360:7;21340:9;:28::i;58371:335::-;58456:10;58446:21;;;;:9;:21;;;;;;;;58438:48;;;;-1:-1:-1;;;58438:48:0;;10401:2:1;58438:48:0;;;10383:21:1;10440:2;10420:18;;;10413:30;-1:-1:-1;;;10459:18:1;;;10452:44;10513:18;;58438:48:0;10199:338:1;58438:48:0;58527:11;;58516:7;58499:14;;:24;;;;:::i;:::-;:39;;58491:68;;;;-1:-1:-1;;;58491:68:0;;18700:2:1;58491:68:0;;;18682:21:1;18739:2;18719:18;;;18712:30;-1:-1:-1;;;18758:18:1;;;18751:46;18814:18;;58491:68:0;18498:340:1;58491:68:0;58577:14;;58566:8;58596:76;58616:7;58612:1;:11;58596:76;;;58636:5;;;;:::i;:::-;;;;58647:19;58657:3;58662;58647:9;:19::i;:::-;58625:3;;;;:::i;:::-;;;;58596:76;;;-1:-1:-1;58680:14:0;:20;-1:-1:-1;;58371:335:0:o;31608:256::-;31705:7;31741:23;31758:5;31741:16;:23::i;:::-;31733:5;:31;31725:87;;;;-1:-1:-1;;;31725:87:0;;10744:2:1;31725:87:0;;;10726:21:1;10783:2;10763:18;;;10756:30;10822:34;10802:18;;;10795:62;-1:-1:-1;;;10873:18:1;;;10866:41;10924:19;;31725:87:0;10542:407:1;31725:87:0;-1:-1:-1;;;;;;31830:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;31608:256::o;21447:151::-;21551:39;21568:4;21574:2;21578:7;21551:39;;;;;;;;;;;;:16;:39::i;32130:233::-;32205:7;32241:30;32028:10;:17;;31940:113;32241:30;32233:5;:38;32225:95;;;;-1:-1:-1;;;32225:95:0;;18287:2:1;32225:95:0;;;18269:21:1;18326:2;18306:18;;;18299:30;18365:34;18345:18;;;18338:62;-1:-1:-1;;;18416:18:1;;;18409:42;18468:19;;32225:95:0;18085:408:1;32225:95:0;32338:10;32349:5;32338:17;;;;;;;;:::i;:::-;;;;;;;;;32331:24;;32130:233;;;:::o;18415:239::-;18487:7;18523:16;;;:7;:16;;;;;;-1:-1:-1;;;;;18523:16:0;18558:19;18550:73;;;;-1:-1:-1;;;18550:73:0;;15110:2:1;18550:73:0;;;15092:21:1;15149:2;15129:18;;;15122:30;15188:34;15168:18;;;15161:62;-1:-1:-1;;;15239:18:1;;;15232:39;15288:19;;18550:73:0;14908:405:1;57975:228:0;58041:10;58031:21;;;;:9;:21;;;;;;;;58023:48;;;;-1:-1:-1;;;58023:48:0;;10401:2:1;58023:48:0;;;10383:21:1;10440:2;10420:18;;;10413:30;-1:-1:-1;;;10459:18:1;;;10452:44;10513:18;;58023:48:0;10199:338:1;58023:48:0;58106:11;;58084:14;;:18;;58101:1;58084:18;:::i;:::-;:33;;58076:62;;;;-1:-1:-1;;;58076:62:0;;18700:2:1;58076:62:0;;;18682:21:1;18739:2;18719:18;;;18712:30;-1:-1:-1;;;18758:18:1;;;18751:46;18814:18;;58076:62:0;18498:340:1;58076:62:0;58143:14;:16;;;:14;:16;;;:::i;:::-;;;;;;58168:30;58178:3;58183:14;;58168:9;:30::i;:::-;57975:228;:::o;57531:128::-;38657:12;:10;:12::i;:::-;-1:-1:-1;;;;;38646:23:0;:7;38499:6;;-1:-1:-1;;;;;38499:6:0;;38426:87;38646:7;-1:-1:-1;;;;;38646:23:0;;38638:68;;;;-1:-1:-1;;;38638:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;57617:27:0;;;::::1;;::::0;;;:9:::1;:27;::::0;;;;:37;;-1:-1:-1;;57617:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;57531:128::o;18145:208::-;18217:7;-1:-1:-1;;;;;18245:19:0;;18237:74;;;;-1:-1:-1;;;18237:74:0;;14699:2:1;18237:74:0;;;14681:21:1;14738:2;14718:18;;;14711:30;14777:34;14757:18;;;14750:62;-1:-1:-1;;;14828:18:1;;;14821:40;14878:19;;18237:74:0;14497:406:1;18237:74:0;-1:-1:-1;;;;;;18329:16:0;;;;;:9;:16;;;;;;;18145:208::o;39077:148::-;38657:12;:10;:12::i;:::-;-1:-1:-1;;;;;38646:23:0;:7;38499:6;;-1:-1:-1;;;;;38499:6:0;;38426:87;38646:7;-1:-1:-1;;;;;38646:23:0;;38638:68;;;;-1:-1:-1;;;38638:68:0;;;;;;;:::i;:::-;39168:6:::1;::::0;39147:40:::1;::::0;39184:1:::1;::::0;-1:-1:-1;;;;;39168:6:0::1;::::0;39147:40:::1;::::0;39184:1;;39147:40:::1;39198:6;:19:::0;;-1:-1:-1;;;;;;39198:19:0::1;::::0;;39077:148::o;57768:99::-;38657:12;:10;:12::i;:::-;-1:-1:-1;;;;;38646:23:0;:7;38499:6;;-1:-1:-1;;;;;38499:6:0;;38426:87;38646:7;-1:-1:-1;;;;;38646:23:0;;38638:68;;;;-1:-1:-1;;;38638:68:0;;;;;;;:::i;:::-;57836:11:::1;:26:::0;57768:99::o;57228:106::-;38657:12;:10;:12::i;:::-;-1:-1:-1;;;;;38646:23:0;:7;38499:6;;-1:-1:-1;;;;;38499:6:0;;38426:87;38646:7;-1:-1:-1;;;;;38646:23:0;;38638:68;;;;-1:-1:-1;;;38638:68:0;;;;;;;:::i;:::-;57301:25;;::::1;::::0;:13:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57228:106:::0;:::o;18890:104::-;18946:13;18979:7;18972:14;;;;;:::i;20474:295::-;20589:12;:10;:12::i;:::-;-1:-1:-1;;;;;20577:24:0;:8;-1:-1:-1;;;;;20577:24:0;;;20569:62;;;;-1:-1:-1;;;20569:62:0;;13101:2:1;20569:62:0;;;13083:21:1;13140:2;13120:18;;;13113:30;13179:27;13159:18;;;13152:55;13224:18;;20569:62:0;12899:349:1;20569:62:0;20689:8;20644:18;:32;20663:12;:10;:12::i;:::-;-1:-1:-1;;;;;20644:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;20644:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;20644:53:0;;;;;;;;;;;20728:12;:10;:12::i;:::-;-1:-1:-1;;;;;20713:48:0;;20752:8;20713:48;;;;8719:14:1;8712:22;8694:41;;8682:2;8667:18;;8554:187;20713:48:0;;;;;;;;20474:295;;:::o;21669:285::-;21801:41;21820:12;:10;:12::i;:::-;21834:7;21801:18;:41::i;:::-;21793:103;;;;-1:-1:-1;;;21793:103:0;;;;;;;:::i;:::-;21907:39;21921:4;21927:2;21931:7;21940:5;21907:13;:39::i;:::-;21669:285;;;;:::o;55357:175::-;55423:13;55480:14;:12;:14::i;:::-;55496:26;55513:8;55496:16;:26::i;:::-;55463:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55449:75;;55357:175;;;:::o;58712:104::-;58765:13;58798;58791:20;;;;;:::i;55664:445::-;55918:20;;55962:28;;-1:-1:-1;;;55962:28:0;;-1:-1:-1;;;;;7581:32:1;;;55962:28:0;;;7563:51:1;55789:4:0;;55918:20;;;55954:49;;;;55918:20;;55962:21;;7536:18:1;;55962:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;55954:49:0;;55950:93;;;56027:4;56020:11;;;;;55950:93;-1:-1:-1;;;;;20961:25:0;;;20937:4;20961:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;56062:39;56055:46;55664:445;-1:-1:-1;;;;55664:445:0:o;39380:244::-;38657:12;:10;:12::i;:::-;-1:-1:-1;;;;;38646:23:0;:7;38499:6;;-1:-1:-1;;;;;38499:6:0;;38426:87;38646:7;-1:-1:-1;;;;;38646:23:0;;38638:68;;;;-1:-1:-1;;;38638:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39469:22:0;::::1;39461:73;;;::::0;-1:-1:-1;;;39461:73:0;;11575:2:1;39461:73:0::1;::::0;::::1;11557:21:1::0;11614:2;11594:18;;;11587:30;11653:34;11633:18;;;11626:62;-1:-1:-1;;;11704:18:1;;;11697:36;11750:19;;39461:73:0::1;11373:402:1::0;39461:73:0::1;39571:6;::::0;39550:38:::1;::::0;-1:-1:-1;;;;;39550:38:0;;::::1;::::0;39571:6:::1;::::0;39550:38:::1;::::0;39571:6:::1;::::0;39550:38:::1;39599:6;:17:::0;;-1:-1:-1;;;;;;39599:17:0::1;-1:-1:-1::0;;;;;39599:17:0;;;::::1;::::0;;;::::1;::::0;;39380:244::o;41652:650::-;41723:22;41767:10;41789:4;41767:27;41763:508;;;41811:18;41832:8;;41811:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;41871:8:0;42082:17;42076:24;-1:-1:-1;;;;;42050:134:0;;-1:-1:-1;41763:508:0;;-1:-1:-1;41763:508:0;;-1:-1:-1;42248:10:0;41763:508;41652:650;:::o;17789:292::-;17891:4;-1:-1:-1;;;;;;17915:40:0;;-1:-1:-1;;;17915:40:0;;:105;;-1:-1:-1;;;;;;;17972:48:0;;-1:-1:-1;;;17972:48:0;17915:105;:158;;;-1:-1:-1;;;;;;;;;;2436:40:0;;;18037:36;2327:157;56253:161;56343:14;56382:24;:22;:24::i;:::-;56375:31;;56253:161;:::o;27298:174::-;27373:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;27373:29:0;-1:-1:-1;;;;;27373:29:0;;;;;;;;:24;;27427:23;27373:24;27427:14;:23::i;:::-;-1:-1:-1;;;;;27418:46:0;;;;;;;;;;;27298:174;;:::o;54092:486::-;54270:4;-1:-1:-1;;;;;54295:20:0;;54287:70;;;;-1:-1:-1;;;54287:70:0;;13868:2:1;54287:70:0;;;13850:21:1;13907:2;13887:18;;;13880:30;13946:34;13926:18;;;13919:62;-1:-1:-1;;;13997:18:1;;;13990:35;14042:19;;54287:70:0;13666:401:1;54287:70:0;54411:159;54439:47;54458:27;54478:6;54458:19;:27::i;:::-;54439:18;:47::i;:::-;54411:159;;;;;;;;;;;;9577:25:1;;;;9650:4;9638:17;;9618:18;;;9611:45;9672:18;;;9665:34;;;9715:18;;;9708:34;;;9549:19;;54411:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54388:182:0;:6;-1:-1:-1;;;;;54388:182:0;;54368:202;;54092:486;;;;;;;:::o;45010:98::-;45068:7;45095:5;45099:1;45095;:5;:::i;:::-;45088:12;45010:98;-1:-1:-1;;;45010:98:0:o;23715:348::-;23808:4;23510:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23510:16:0;23825:73;;;;-1:-1:-1;;;23825:73:0;;13455:2:1;23825:73:0;;;13437:21:1;13494:2;13474:18;;;13467:30;13533:34;13513:18;;;13506:62;-1:-1:-1;;;13584:18:1;;;13577:42;13636:19;;23825:73:0;13253:408:1;23825:73:0;23909:13;23925:23;23940:7;23925:14;:23::i;:::-;23909:39;;23978:5;-1:-1:-1;;;;;23967:16:0;:7;-1:-1:-1;;;;;23967:16:0;;:51;;;;24011:7;-1:-1:-1;;;;;23987:31:0;:20;23999:7;23987:11;:20::i;:::-;-1:-1:-1;;;;;23987:31:0;;23967:51;:87;;;;24022:32;24039:5;24046:7;24022:16;:32::i;26636:544::-;26761:4;-1:-1:-1;;;;;26734:31:0;:23;26749:7;26734:14;:23::i;:::-;-1:-1:-1;;;;;26734:31:0;;26726:85;;;;-1:-1:-1;;;26726:85:0;;16655:2:1;26726:85:0;;;16637:21:1;16694:2;16674:18;;;16667:30;16733:34;16713:18;;;16706:62;-1:-1:-1;;;16784:18:1;;;16777:39;16833:19;;26726:85:0;16453:405:1;26726:85:0;-1:-1:-1;;;;;26830:16:0;;26822:65;;;;-1:-1:-1;;;26822:65:0;;12696:2:1;26822:65:0;;;12678:21:1;12735:2;12715:18;;;12708:30;12774:34;12754:18;;;12747:62;-1:-1:-1;;;12825:18:1;;;12818:34;12869:19;;26822:65:0;12494:400:1;26822:65:0;26900:39;26921:4;26927:2;26931:7;26900:20;:39::i;:::-;27004:29;27021:1;27025:7;27004:8;:29::i;:::-;-1:-1:-1;;;;;27046:15:0;;;;;;:9;:15;;;;;:20;;27065:1;;27046:15;:20;;27065:1;;27046:20;:::i;:::-;;;;-1:-1:-1;;;;;;;27077:13:0;;;;;;:9;:13;;;;;:18;;27094:1;;27077:13;:18;;27094:1;;27077:18;:::i;:::-;;;;-1:-1:-1;;27106:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;27106:21:0;-1:-1:-1;;;;;27106:21:0;;;;;;;;;27145:27;;27106:16;;27145:27;;;;;;;26636:544;;;:::o;24405:110::-;24481:26;24491:2;24495:7;24481:26;;;;;;;;;;;;:9;:26::i;22836:272::-;22950:28;22960:4;22966:2;22970:7;22950:9;:28::i;:::-;22997:48;23020:4;23026:2;23030:7;23039:5;22997:22;:48::i;:::-;22989:111;;;;-1:-1:-1;;;22989:111:0;;;;;;;:::i;39855:723::-;39911:13;40132:10;40128:53;;-1:-1:-1;;40159:10:0;;;;;;;;;;;;-1:-1:-1;;;40159:10:0;;;;;39855:723::o;40128:53::-;40206:5;40191:12;40247:78;40254:9;;40247:78;;40280:8;;;;:::i;:::-;;-1:-1:-1;40303:10:0;;-1:-1:-1;40311:2:0;40303:10;;:::i;:::-;;;40247:78;;;40335:19;40367:6;40357:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40357:17:0;;40335:39;;40385:154;40392:10;;40385:154;;40419:11;40429:1;40419:11;;:::i;:::-;;-1:-1:-1;40488:10:0;40496:2;40488:5;:10;:::i;:::-;40475:24;;:2;:24;:::i;:::-;40462:39;;40445:6;40452;40445:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;40445:56:0;;;;;;;;-1:-1:-1;40516:11:0;40525:2;40516:11;;:::i;:::-;;;40385:154;;53559:410;53669:7;51736:100;;;;;;;;;;;;;;;;;51716:127;;;;;;;53823:12;;53858:11;;;;53902:24;;;;;53892:35;;;;;;53742:204;;;;;9159:25:1;;;9215:2;9200:18;;9193:34;;;;-1:-1:-1;;;;;9263:32:1;9258:2;9243:18;;9236:60;9327:2;9312:18;;9305:34;9146:3;9131:19;;8928:417;53742:204:0;;;;;;;;;;;;;53714:247;;;;;;53694:267;;53559:410;;;:::o;51313:258::-;51412:7;51514:20;50752:15;;;50674:101;51514:20;51485:63;;-1:-1:-1;;;51485:63:0;;;7278:27:1;7321:11;;;7314:27;;;;7357:12;;;7350:28;;;7394:12;;51485:63:0;7020:392:1;32976:555:0;-1:-1:-1;;;;;33148:18:0;;33144:187;;33183:40;33215:7;34358:10;:17;;34331:24;;;;:15;:24;;;;;:44;;;34386:24;;;;;;;;;;;;34254:164;33183:40;33144:187;;;33253:2;-1:-1:-1;;;;;33245:10:0;:4;-1:-1:-1;;;;;33245:10:0;;33241:90;;33272:47;33305:4;33311:7;33272:32;:47::i;:::-;-1:-1:-1;;;;;33345:16:0;;33341:183;;33378:45;33415:7;33378:36;:45::i;33341:183::-;33451:4;-1:-1:-1;;;;;33445:10:0;:2;-1:-1:-1;;;;;33445:10:0;;33441:83;;33472:40;33500:2;33504:7;33472:27;:40::i;24742:250::-;24838:18;24844:2;24848:7;24838:5;:18::i;:::-;24875:54;24906:1;24910:2;24914:7;24923:5;24875:22;:54::i;:::-;24867:117;;;;-1:-1:-1;;;24867:117:0;;;;;;;:::i;28037:843::-;28158:4;-1:-1:-1;;;;;28184:13:0;;8773:20;8812:8;28180:693;;28236:2;-1:-1:-1;;;;;28220:36:0;;28257:12;:10;:12::i;:::-;28271:4;28277:7;28286:5;28220:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28220:72:0;;;;;;;;-1:-1:-1;;28220:72:0;;;;;;;;;;;;:::i;:::-;;;28216:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28466:13:0;;28462:341;;28509:60;;-1:-1:-1;;;28509:60:0;;;;;;;:::i;28462:341::-;28753:6;28747:13;28738:6;28734:2;28730:15;28723:38;28216:602;-1:-1:-1;;;;;;28343:55:0;-1:-1:-1;;;28343:55:0;;-1:-1:-1;28336:62:0;;28180:693;-1:-1:-1;28857:4:0;28037:843;;;;;;:::o;35045:988::-;35311:22;35361:1;35336:22;35353:4;35336:16;:22::i;:::-;:26;;;;:::i;:::-;35373:18;35394:26;;;:17;:26;;;;;;35311:51;;-1:-1:-1;35527:28:0;;;35523:328;;-1:-1:-1;;;;;35594:18:0;;35572:19;35594:18;;;:12;:18;;;;;;;;:34;;;;;;;;;35645:30;;;;;;:44;;;35762:30;;:17;:30;;;;;:43;;;35523:328;-1:-1:-1;35947:26:0;;;;:17;:26;;;;;;;;35940:33;;;-1:-1:-1;;;;;35991:18:0;;;;;:12;:18;;;;;:34;;;;;;;35984:41;35045:988::o;36328:1079::-;36606:10;:17;36581:22;;36606:21;;36626:1;;36606:21;:::i;:::-;36638:18;36659:24;;;:15;:24;;;;;;37032:10;:26;;36581:46;;-1:-1:-1;36659:24:0;;36581:46;;37032:26;;;;;;:::i;:::-;;;;;;;;;37010:48;;37096:11;37071:10;37082;37071:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;37176:28;;;:15;:28;;;;;;;:41;;;37348:24;;;;;37341:31;37383:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;36399:1008;;;36328:1079;:::o;33832:221::-;33917:14;33934:20;33951:2;33934:16;:20::i;:::-;-1:-1:-1;;;;;33965:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;34010:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;33832:221:0:o;25328:382::-;-1:-1:-1;;;;;25408:16:0;;25400:61;;;;-1:-1:-1;;;25400:61:0;;15520:2:1;25400:61:0;;;15502:21:1;;;15539:18;;;15532:30;15598:34;15578:18;;;15571:62;15650:18;;25400:61:0;15318:356:1;25400:61:0;23486:4;23510:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23510:16:0;:30;25472:58;;;;-1:-1:-1;;;25472:58:0;;12339:2:1;25472:58:0;;;12321:21:1;12378:2;12358:18;;;12351:30;12417;12397:18;;;12390:58;12465:18;;25472:58:0;12137:352:1;25472:58:0;25543:45;25572:1;25576:2;25580:7;25543:20;:45::i;:::-;-1:-1:-1;;;;;25601:13:0;;;;;;:9;:13;;;;;:18;;25618:1;;25601:13;:18;;25618:1;;25601:18;:::i;:::-;;;;-1:-1:-1;;25630:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;25630:21:0;-1:-1:-1;;;;;25630:21:0;;;;;;;;25669:33;;25630:16;;;25669:33;;25630:16;;25669:33;25328:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:220::-;692:5;745:3;738:4;730:6;726:17;722:27;712:55;;763:1;760;753:12;712:55;785:79;860:3;851:6;838:20;831:4;823:6;819:17;785:79;:::i;875:247::-;934:6;987:2;975:9;966:7;962:23;958:32;955:52;;;1003:1;1000;993:12;955:52;1042:9;1029:23;1061:31;1086:5;1061:31;:::i;1127:388::-;1195:6;1203;1256:2;1244:9;1235:7;1231:23;1227:32;1224:52;;;1272:1;1269;1262:12;1224:52;1311:9;1298:23;1330:31;1355:5;1330:31;:::i;:::-;1380:5;-1:-1:-1;1437:2:1;1422:18;;1409:32;1450:33;1409:32;1450:33;:::i;:::-;1502:7;1492:17;;;1127:388;;;;;:::o;1520:456::-;1597:6;1605;1613;1666:2;1654:9;1645:7;1641:23;1637:32;1634:52;;;1682:1;1679;1672:12;1634:52;1721:9;1708:23;1740:31;1765:5;1740:31;:::i;:::-;1790:5;-1:-1:-1;1847:2:1;1832:18;;1819:32;1860:33;1819:32;1860:33;:::i;:::-;1520:456;;1912:7;;-1:-1:-1;;;1966:2:1;1951:18;;;;1938:32;;1520:456::o;1981:665::-;2076:6;2084;2092;2100;2153:3;2141:9;2132:7;2128:23;2124:33;2121:53;;;2170:1;2167;2160:12;2121:53;2209:9;2196:23;2228:31;2253:5;2228:31;:::i;:::-;2278:5;-1:-1:-1;2335:2:1;2320:18;;2307:32;2348:33;2307:32;2348:33;:::i;:::-;2400:7;-1:-1:-1;2454:2:1;2439:18;;2426:32;;-1:-1:-1;2509:2:1;2494:18;;2481:32;2536:18;2525:30;;2522:50;;;2568:1;2565;2558:12;2522:50;2591:49;2632:7;2623:6;2612:9;2608:22;2591:49;:::i;:::-;2581:59;;;1981:665;;;;;;;:::o;2651:416::-;2716:6;2724;2777:2;2765:9;2756:7;2752:23;2748:32;2745:52;;;2793:1;2790;2783:12;2745:52;2832:9;2819:23;2851:31;2876:5;2851:31;:::i;:::-;2901:5;-1:-1:-1;2958:2:1;2943:18;;2930:32;3000:15;;2993:23;2981:36;;2971:64;;3031:1;3028;3021:12;3072:758;3174:6;3182;3190;3198;3206;3259:3;3247:9;3238:7;3234:23;3230:33;3227:53;;;3276:1;3273;3266:12;3227:53;3315:9;3302:23;3334:31;3359:5;3334:31;:::i;:::-;3384:5;-1:-1:-1;3440:2:1;3425:18;;3412:32;3467:18;3456:30;;3453:50;;;3499:1;3496;3489:12;3453:50;3522:49;3563:7;3554:6;3543:9;3539:22;3522:49;:::i;:::-;3512:59;;;3618:2;3607:9;3603:18;3590:32;3580:42;;3669:2;3658:9;3654:18;3641:32;3631:42;;3725:3;3714:9;3710:19;3697:33;3774:4;3765:7;3761:18;3752:7;3749:31;3739:59;;3794:1;3791;3784:12;3739:59;3817:7;3807:17;;;3072:758;;;;;;;;:::o;3835:315::-;3903:6;3911;3964:2;3952:9;3943:7;3939:23;3935:32;3932:52;;;3980:1;3977;3970:12;3932:52;4019:9;4006:23;4038:31;4063:5;4038:31;:::i;:::-;4088:5;4140:2;4125:18;;;;4112:32;;-1:-1:-1;;;3835:315:1:o;4155:245::-;4213:6;4266:2;4254:9;4245:7;4241:23;4237:32;4234:52;;;4282:1;4279;4272:12;4234:52;4321:9;4308:23;4340:30;4364:5;4340:30;:::i;4405:249::-;4474:6;4527:2;4515:9;4506:7;4502:23;4498:32;4495:52;;;4543:1;4540;4533:12;4495:52;4575:9;4569:16;4594:30;4618:5;4594:30;:::i;4659:280::-;4758:6;4811:2;4799:9;4790:7;4786:23;4782:32;4779:52;;;4827:1;4824;4817:12;4779:52;4859:9;4853:16;4878:31;4903:5;4878:31;:::i;4944:450::-;5013:6;5066:2;5054:9;5045:7;5041:23;5037:32;5034:52;;;5082:1;5079;5072:12;5034:52;5122:9;5109:23;5155:18;5147:6;5144:30;5141:50;;;5187:1;5184;5177:12;5141:50;5210:22;;5263:4;5255:13;;5251:27;-1:-1:-1;5241:55:1;;5292:1;5289;5282:12;5241:55;5315:73;5380:7;5375:2;5362:16;5357:2;5353;5349:11;5315:73;:::i;5399:180::-;5458:6;5511:2;5499:9;5490:7;5486:23;5482:32;5479:52;;;5527:1;5524;5517:12;5479:52;-1:-1:-1;5550:23:1;;5399:180;-1:-1:-1;5399:180:1:o;5584:257::-;5625:3;5663:5;5657:12;5690:6;5685:3;5678:19;5706:63;5762:6;5755:4;5750:3;5746:14;5739:4;5732:5;5728:16;5706:63;:::i;:::-;5823:2;5802:15;-1:-1:-1;;5798:29:1;5789:39;;;;5830:4;5785:50;;5584:257;-1:-1:-1;;5584:257:1:o;5846:274::-;5975:3;6013:6;6007:13;6029:53;6075:6;6070:3;6063:4;6055:6;6051:17;6029:53;:::i;:::-;6098:16;;;;;5846:274;-1:-1:-1;;5846:274:1:o;6125:415::-;6282:3;6320:6;6314:13;6336:53;6382:6;6377:3;6370:4;6362:6;6358:17;6336:53;:::i;:::-;6458:2;6454:15;;;;-1:-1:-1;;6450:53:1;6411:16;;;;6436:68;;;6531:2;6520:14;;6125:415;-1:-1:-1;;6125:415:1:o;6545:470::-;6724:3;6762:6;6756:13;6778:53;6824:6;6819:3;6812:4;6804:6;6800:17;6778:53;:::i;:::-;6894:13;;6853:16;;;;6916:57;6894:13;6853:16;6950:4;6938:17;;6916:57;:::i;:::-;6989:20;;6545:470;-1:-1:-1;;;;6545:470:1:o;7625:431::-;-1:-1:-1;;;;;7882:15:1;;;7864:34;;7934:15;;7929:2;7914:18;;7907:43;7986:2;7981;7966:18;;7959:30;;;7807:4;;8006:44;;8031:18;;8023:6;8006:44;:::i;:::-;7998:52;7625:431;-1:-1:-1;;;;;7625:431:1:o;8061:488::-;-1:-1:-1;;;;;8330:15:1;;;8312:34;;8382:15;;8377:2;8362:18;;8355:43;8429:2;8414:18;;8407:34;;;8477:3;8472:2;8457:18;;8450:31;;;8255:4;;8498:45;;8523:19;;8515:6;8498:45;:::i;:::-;8490:53;8061:488;-1:-1:-1;;;;;;8061:488:1:o;9753:217::-;9900:2;9889:9;9882:21;9863:4;9920:44;9960:2;9949:9;9945:18;9937:6;9920:44;:::i;10954:414::-;11156:2;11138:21;;;11195:2;11175:18;;;11168:30;11234:34;11229:2;11214:18;;11207:62;-1:-1:-1;;;11300:2:1;11285:18;;11278:48;11358:3;11343:19;;10954:414::o;16092:356::-;16294:2;16276:21;;;16313:18;;;16306:30;16372:34;16367:2;16352:18;;16345:62;16439:2;16424:18;;16092:356::o;17667:413::-;17869:2;17851:21;;;17908:2;17888:18;;;17881:30;17947:34;17942:2;17927:18;;17920:62;-1:-1:-1;;;18013:2:1;17998:18;;17991:47;18070:3;18055:19;;17667:413::o;19025:128::-;19065:3;19096:1;19092:6;19089:1;19086:13;19083:39;;;19102:18;;:::i;:::-;-1:-1:-1;19138:9:1;;19025:128::o;19158:120::-;19198:1;19224;19214:35;;19229:18;;:::i;:::-;-1:-1:-1;19263:9:1;;19158:120::o;19283:125::-;19323:4;19351:1;19348;19345:8;19342:34;;;19356:18;;:::i;:::-;-1:-1:-1;19393:9:1;;19283:125::o;19413:258::-;19485:1;19495:113;19509:6;19506:1;19503:13;19495:113;;;19585:11;;;19579:18;19566:11;;;19559:39;19531:2;19524:10;19495:113;;;19626:6;19623:1;19620:13;19617:48;;;-1:-1:-1;;19661:1:1;19643:16;;19636:27;19413:258::o;19676:380::-;19755:1;19751:12;;;;19798;;;19819:61;;19873:4;19865:6;19861:17;19851:27;;19819:61;19926:2;19918:6;19915:14;19895:18;19892:38;19889:161;;;19972:10;19967:3;19963:20;19960:1;19953:31;20007:4;20004:1;19997:15;20035:4;20032:1;20025:15;19889:161;;19676:380;;;:::o;20061:135::-;20100:3;-1:-1:-1;;20121:17:1;;20118:43;;;20141:18;;:::i;:::-;-1:-1:-1;20188:1:1;20177:13;;20061:135::o;20201:112::-;20233:1;20259;20249:35;;20264:18;;:::i;:::-;-1:-1:-1;20298:9:1;;20201:112::o;20318:127::-;20379:10;20374:3;20370:20;20367:1;20360:31;20410:4;20407:1;20400:15;20434:4;20431:1;20424:15;20450:127;20511:10;20506:3;20502:20;20499:1;20492:31;20542:4;20539:1;20532:15;20566:4;20563:1;20556:15;20582:127;20643:10;20638:3;20634:20;20631:1;20624:31;20674:4;20671:1;20664:15;20698:4;20695:1;20688:15;20714:127;20775:10;20770:3;20766:20;20763:1;20756:31;20806:4;20803:1;20796:15;20830:4;20827:1;20820:15;20846:127;20907:10;20902:3;20898:20;20895:1;20888:31;20938:4;20935:1;20928:15;20962:4;20959:1;20952:15;20978:131;-1:-1:-1;;;;;21053:31:1;;21043:42;;21033:70;;21099:1;21096;21089:12;21114:131;-1:-1:-1;;;;;;21188:32:1;;21178:43;;21168:71;;21235:1;21232;21225:12

Swarm Source

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