ETH Price: $2,629.49 (-0.88%)

Africarare Genesis Collection (gRARE)
 

Overview

TokenID

47

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
AFRICARARE

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-01
*/

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;



//    ▄████████    ▄████████    ▄████████  ▄█   ▄████████    ▄████████    ▄████████    ▄████████    ▄████████    ▄████████
//   ███    ███   ███    ███   ███    ███ ███  ███    ███   ███    ███   ███    ███   ███    ███   ███    ███   ███    ███
//   ███    ███   ███    █▀    ███    ███ ███▌ ███    █▀    ███    ███   ███    ███   ███    ███   ███    ███   ███    █▀
//   ███    ███  ▄███▄▄▄      ▄███▄▄▄▄██▀ ███▌ ███          ███    ███  ▄███▄▄▄▄██▀   ███    ███  ▄███▄▄▄▄██▀  ▄███▄▄▄
// ▀███████████ ▀▀███▀▀▀     ▀▀███▀▀▀▀▀   ███▌ ███        ▀███████████ ▀▀███▀▀▀▀▀   ▀███████████ ▀▀███▀▀▀▀▀   ▀▀███▀▀▀
//   ███    ███   ███        ▀███████████ ███  ███    █▄    ███    ███ ▀███████████   ███    ███ ▀███████████   ███    █▄
//   ███    ███   ███          ███    ███ ███  ███    ███   ███    ███   ███    ███   ███    ███   ███    ███   ███    ███
//   ███    █▀    ███          ███    ███ █▀   ████████▀    ███    █▀    ███    ███   ███    █▀    ███    ███   ██████████
//                             ███    ███                                ███    ███                ███    ███



/////////////IMPORTED LIBRARIES///////////

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }

    //Not in standard lib. Added by @beauwilliams
    function set(Counter storage counter, uint256 value) internal {
        counter._value = value;
    }
}



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

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



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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

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

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

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


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


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


/**
 * @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;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}



/**
 * @title AfricaRare Mint Contract
 * @author Beau Williams (@beauwilliams)
 * @dev Smart contract for Africarare to mint one off NFTs
 */

contract AFRICARARE is ERC721, Ownable, Pausable {


    //Tracks num minted
    uint256 public numMinted = 0;
    //URI of the genesis NFT metadata
    string public genesisMetadata = "https://ipfs.io/ipfs/bafkreicyanj53lbyw5kt57uedtvd565t4csmaoyve6xz377ydj2ajjcfdy";



    // Mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    //Constructor
    constructor() ERC721("Africarare Genesis Collection", "gRARE") {
    }



    /**
    * @dev sets token URI
    */
    function _setTokenURI(uint256 tokenId, string memory URI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = URI;
    }


    /**
    * @dev gets token URI
    */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return _tokenURIs[tokenId];
    }


    /**
    * @dev Mints 1 NFT to senders address
    */
    function mintSingleGenesisNFT(string memory URI) internal onlyOwner {
        uint256 tokenId = numMinted;
        require(!_exists(tokenId), "That token ID has already been minted. Please try again.");
        ++numMinted;
        _safeMint(msg.sender, tokenId);
        _setTokenURI(tokenId, URI);

    }


    /**
    * @dev Mints 1 NFT to specified address
    */
    function mintToAddressSingleGenesisNFT(string memory URI, address receiverAddress) internal onlyOwner {
        uint256 tokenId = numMinted;
        require(!_exists(tokenId), "That token ID has already been minted. Please try again.");
        ++numMinted;
        _safeMint(receiverAddress, tokenId);
        _setTokenURI(tokenId, URI);

    }

    /**
    * @dev Mints batch of n number of NFTs
    */
    function mintBatchOfGenesisNFT(uint256 numToMint) external onlyOwner {
        for (uint i=0; i < numToMint; i++) {
            mintSingleGenesisNFT(genesisMetadata);
        }
    }

    /**
    * @dev Mints batch of n number of NFTs to specified address
    */
    function mintToAddressBatchOfGenesisNFT(uint256 numToMint, address receiverAddress) external onlyOwner {
        for (uint i=0; i < numToMint; i++) {
            mintToAddressSingleGenesisNFT(genesisMetadata, receiverAddress);
        }
    }

    /**
    * @dev Withdraw funds from this contract (Callable by owner)
    */
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        address payable ownerAddress = payable(msg.sender);
        require(ownerAddress != address(0), "ERC20: transfer to the zero address");
        ownerAddress.transfer(balance);
    }


    /**
    * @dev Pause
    */
    function pause() external virtual onlyOwner() {
        super._pause();
    }

  /**
    * @dev Unpause
    */
    function unpause() external virtual onlyOwner() {
        super._unpause();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"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":"genesisMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numToMint","type":"uint256"}],"name":"mintBatchOfGenesisNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numToMint","type":"uint256"},{"internalType":"address","name":"receiverAddress","type":"address"}],"name":"mintToAddressBatchOfGenesisNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000600755610100604052605060808181529062001e2460a03980516200002f916008916020909101906200013c565b503480156200003d57600080fd5b50604080518082018252601d81527f416672696361726172652047656e6573697320436f6c6c656374696f6e000000602080830191825283518085019094526005845264675241524560d81b908401528151919291620000a0916000916200013c565b508051620000b69060019060208401906200013c565b505050620000d3620000cd620000e660201b60201c565b620000ea565b6006805460ff60a01b191690556200021f565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014a90620001e2565b90600052602060002090601f0160209004810192826200016e5760008555620001b9565b82601f106200018957805160ff1916838001178555620001b9565b82800160010185558215620001b9579182015b82811115620001b95782518255916020019190600101906200019c565b50620001c7929150620001cb565b5090565b5b80821115620001c75760008155600101620001cc565b600181811c90821680620001f757607f821691505b602082108114156200021957634e487b7160e01b600052602260045260246000fd5b50919050565b611bf5806200022f6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c8063734ec1a4116100c3578063c87b56dd1161007c578063c87b56dd146102b8578063d52079b4146102cb578063e985e9c5146102d4578063e9fcc3ac14610310578063f2fde38b14610318578063f5221dc01461032b57600080fd5b8063734ec1a41461025e5780638456cb59146102715780638da5cb5b1461027957806395d89b411461028a578063a22cb46514610292578063b88d4fde146102a557600080fd5b80633f4ba83a116101155780633f4ba83a146101f557806342842e0e146101fd5780635c975abb146102105780636352211e1461022257806370a0823114610235578063715018a61461025657600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c557806323b872dd146101da5780633ccfd60b146101ed575b600080fd5b61017061016b3660046118b0565b61033e565b60405190151581526020015b60405180910390f35b61018d610390565b60405161017c91906119b0565b6101ad6101a83660046118ea565b610422565b6040516001600160a01b03909116815260200161017c565b6101d86101d3366004611886565b6104af565b005b6101d86101e8366004611732565b6105c5565b6101d86105f6565b6101d86106b1565b6101d861020b366004611732565b6106e5565b600654600160a01b900460ff16610170565b6101ad6102303660046118ea565b610700565b6102486102433660046116dd565b610777565b60405190815260200161017c565b6101d86107fe565b6101d861026c3660046118ea565b610832565b6101d8610910565b6006546001600160a01b03166101ad565b61018d610942565b6101d86102a036600461184a565b610951565b6101d86102b336600461176e565b610a16565b61018d6102c63660046118ea565b610a4e565b61024860075481565b6101706102e23660046116ff565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61018d610b5b565b6101d86103263660046116dd565b610be9565b6101d8610339366004611903565b610c84565b60006001600160e01b031982166380ac58cd60e01b148061036f57506001600160e01b03198216635b5e139f60e01b145b8061038a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461039f90611b27565b80601f01602080910402602001604051908101604052809291908181526020018280546103cb90611b27565b80156104185780601f106103ed57610100808354040283529160200191610418565b820191906000526020600020905b8154815290600101906020018083116103fb57829003601f168201915b5050505050905090565b600061042d82610d5f565b6104935760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104ba82610700565b9050806001600160a01b0316836001600160a01b031614156105285760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161048a565b336001600160a01b0382161480610544575061054481336102e2565b6105b65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161048a565b6105c08383610d7c565b505050565b6105cf3382610dea565b6105eb5760405162461bcd60e51b815260040161048a90611aa7565b6105c0838383610ed4565b6006546001600160a01b031633146106205760405162461bcd60e51b815260040161048a90611a15565b47338061067b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161048a565b6040516001600160a01b0382169083156108fc029084906000818181858888f193505050501580156105c0573d6000803e3d6000fd5b6006546001600160a01b031633146106db5760405162461bcd60e51b815260040161048a90611a15565b6106e3611074565b565b6105c083838360405180602001604052806000815250610a16565b6000818152600260205260408120546001600160a01b03168061038a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161048a565b60006001600160a01b0382166107e25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161048a565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146108285760405162461bcd60e51b815260040161048a90611a15565b6106e36000611111565b6006546001600160a01b0316331461085c5760405162461bcd60e51b815260040161048a90611a15565b60005b8181101561090c576108fa6008805461087790611b27565b80601f01602080910402602001604051908101604052809291908181526020018280546108a390611b27565b80156108f05780601f106108c5576101008083540402835291602001916108f0565b820191906000526020600020905b8154815290600101906020018083116108d357829003601f168201915b5050505050611163565b8061090481611b62565b91505061085f565b5050565b6006546001600160a01b0316331461093a5760405162461bcd60e51b815260040161048a90611a15565b6106e36111dd565b60606001805461039f90611b27565b6001600160a01b0382163314156109aa5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161048a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a203383610dea565b610a3c5760405162461bcd60e51b815260040161048a90611aa7565b610a4884848484611265565b50505050565b6060610a5982610d5f565b610abd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161048a565b60008281526009602052604090208054610ad690611b27565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0290611b27565b8015610b4f5780601f10610b2457610100808354040283529160200191610b4f565b820191906000526020600020905b815481529060010190602001808311610b3257829003601f168201915b50505050509050919050565b60088054610b6890611b27565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9490611b27565b8015610be15780601f10610bb657610100808354040283529160200191610be1565b820191906000526020600020905b815481529060010190602001808311610bc457829003601f168201915b505050505081565b6006546001600160a01b03163314610c135760405162461bcd60e51b815260040161048a90611a15565b6001600160a01b038116610c785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161048a565b610c8181611111565b50565b6006546001600160a01b03163314610cae5760405162461bcd60e51b815260040161048a90611a15565b60005b828110156105c057610d4d60088054610cc990611b27565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf590611b27565b8015610d425780601f10610d1757610100808354040283529160200191610d42565b820191906000526020600020905b815481529060010190602001808311610d2557829003601f168201915b505050505083611298565b80610d5781611b62565b915050610cb1565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610db182610700565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610df582610d5f565b610e565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161048a565b6000610e6183610700565b9050806001600160a01b0316846001600160a01b03161480610e9c5750836001600160a01b0316610e9184610422565b6001600160a01b0316145b80610ecc57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610ee782610700565b6001600160a01b031614610f4f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161048a565b6001600160a01b038216610fb15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161048a565b610fbc600082610d7c565b6001600160a01b0383166000908152600360205260408120805460019290610fe5908490611b10565b90915550506001600160a01b0382166000908152600360205260408120805460019290611013908490611af8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600654600160a01b900460ff166110c45760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161048a565b6006805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b0316331461118d5760405162461bcd60e51b815260040161048a90611a15565b60075461119981610d5f565b156111b65760405162461bcd60e51b815260040161048a90611a4a565b6007600081546111c590611b62565b909155506111d33382611312565b61090c818361132c565b600654600160a01b900460ff161561122a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161048a565b6006805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110f43390565b611270848484610ed4565b61127c848484846113b5565b610a485760405162461bcd60e51b815260040161048a906119c3565b6006546001600160a01b031633146112c25760405162461bcd60e51b815260040161048a90611a15565b6007546112ce81610d5f565b156112eb5760405162461bcd60e51b815260040161048a90611a4a565b6007600081546112fa90611b62565b909155506113088282611312565b6105c0818461132c565b61090c8282604051806020016040528060008152506114c2565b61133582610d5f565b6113965760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161048a565b600082815260096020908152604090912082516105c092840190611628565b60006001600160a01b0384163b156114b757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113f9903390899088908890600401611973565b602060405180830381600087803b15801561141357600080fd5b505af1925050508015611443575060408051601f3d908101601f19168201909252611440918101906118cd565b60015b61149d573d808015611471576040519150601f19603f3d011682016040523d82523d6000602084013e611476565b606091505b5080516114955760405162461bcd60e51b815260040161048a906119c3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ecc565b506001949350505050565b6114cc83836114f5565b6114d960008484846113b5565b6105c05760405162461bcd60e51b815260040161048a906119c3565b6001600160a01b03821661154b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161048a565b61155481610d5f565b156115a15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161048a565b6001600160a01b03821660009081526003602052604081208054600192906115ca908490611af8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461163490611b27565b90600052602060002090601f016020900481019282611656576000855561169c565b82601f1061166f57805160ff191683800117855561169c565b8280016001018555821561169c579182015b8281111561169c578251825591602001919060010190611681565b506116a89291506116ac565b5090565b5b808211156116a857600081556001016116ad565b80356001600160a01b03811681146116d857600080fd5b919050565b6000602082840312156116ef57600080fd5b6116f8826116c1565b9392505050565b6000806040838503121561171257600080fd5b61171b836116c1565b9150611729602084016116c1565b90509250929050565b60008060006060848603121561174757600080fd5b611750846116c1565b925061175e602085016116c1565b9150604084013590509250925092565b6000806000806080858703121561178457600080fd5b61178d856116c1565b935061179b602086016116c1565b925060408501359150606085013567ffffffffffffffff808211156117bf57600080fd5b818701915087601f8301126117d357600080fd5b8135818111156117e5576117e5611b93565b604051601f8201601f19908116603f0116810190838211818310171561180d5761180d611b93565b816040528281528a602084870101111561182657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561185d57600080fd5b611866836116c1565b91506020830135801515811461187b57600080fd5b809150509250929050565b6000806040838503121561189957600080fd5b6118a2836116c1565b946020939093013593505050565b6000602082840312156118c257600080fd5b81356116f881611ba9565b6000602082840312156118df57600080fd5b81516116f881611ba9565b6000602082840312156118fc57600080fd5b5035919050565b6000806040838503121561191657600080fd5b82359150611729602084016116c1565b6000815180845260005b8181101561194c57602081850181015186830182015201611930565b8181111561195e576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119a690830184611926565b9695505050505050565b6020815260006116f86020830184611926565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526038908201527f5468617420746f6b656e2049442068617320616c7265616479206265656e206d60408201527f696e7465642e20506c656173652074727920616761696e2e0000000000000000606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611b0b57611b0b611b7d565b500190565b600082821015611b2257611b22611b7d565b500390565b600181811c90821680611b3b57607f821691505b60208210811415611b5c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b7657611b76611b7d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c8157600080fdfea2646970667358221220abb041296819a664c1b9aa39960db8ab0b378079d515103bb6e92cb10928798364736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f6261666b7265696379616e6a35336c627977356b743537756564747664353635743463736d616f79766536787a33373779646a32616a6a63666479

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c8063734ec1a4116100c3578063c87b56dd1161007c578063c87b56dd146102b8578063d52079b4146102cb578063e985e9c5146102d4578063e9fcc3ac14610310578063f2fde38b14610318578063f5221dc01461032b57600080fd5b8063734ec1a41461025e5780638456cb59146102715780638da5cb5b1461027957806395d89b411461028a578063a22cb46514610292578063b88d4fde146102a557600080fd5b80633f4ba83a116101155780633f4ba83a146101f557806342842e0e146101fd5780635c975abb146102105780636352211e1461022257806370a0823114610235578063715018a61461025657600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c557806323b872dd146101da5780633ccfd60b146101ed575b600080fd5b61017061016b3660046118b0565b61033e565b60405190151581526020015b60405180910390f35b61018d610390565b60405161017c91906119b0565b6101ad6101a83660046118ea565b610422565b6040516001600160a01b03909116815260200161017c565b6101d86101d3366004611886565b6104af565b005b6101d86101e8366004611732565b6105c5565b6101d86105f6565b6101d86106b1565b6101d861020b366004611732565b6106e5565b600654600160a01b900460ff16610170565b6101ad6102303660046118ea565b610700565b6102486102433660046116dd565b610777565b60405190815260200161017c565b6101d86107fe565b6101d861026c3660046118ea565b610832565b6101d8610910565b6006546001600160a01b03166101ad565b61018d610942565b6101d86102a036600461184a565b610951565b6101d86102b336600461176e565b610a16565b61018d6102c63660046118ea565b610a4e565b61024860075481565b6101706102e23660046116ff565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61018d610b5b565b6101d86103263660046116dd565b610be9565b6101d8610339366004611903565b610c84565b60006001600160e01b031982166380ac58cd60e01b148061036f57506001600160e01b03198216635b5e139f60e01b145b8061038a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461039f90611b27565b80601f01602080910402602001604051908101604052809291908181526020018280546103cb90611b27565b80156104185780601f106103ed57610100808354040283529160200191610418565b820191906000526020600020905b8154815290600101906020018083116103fb57829003601f168201915b5050505050905090565b600061042d82610d5f565b6104935760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104ba82610700565b9050806001600160a01b0316836001600160a01b031614156105285760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161048a565b336001600160a01b0382161480610544575061054481336102e2565b6105b65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161048a565b6105c08383610d7c565b505050565b6105cf3382610dea565b6105eb5760405162461bcd60e51b815260040161048a90611aa7565b6105c0838383610ed4565b6006546001600160a01b031633146106205760405162461bcd60e51b815260040161048a90611a15565b47338061067b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161048a565b6040516001600160a01b0382169083156108fc029084906000818181858888f193505050501580156105c0573d6000803e3d6000fd5b6006546001600160a01b031633146106db5760405162461bcd60e51b815260040161048a90611a15565b6106e3611074565b565b6105c083838360405180602001604052806000815250610a16565b6000818152600260205260408120546001600160a01b03168061038a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161048a565b60006001600160a01b0382166107e25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161048a565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146108285760405162461bcd60e51b815260040161048a90611a15565b6106e36000611111565b6006546001600160a01b0316331461085c5760405162461bcd60e51b815260040161048a90611a15565b60005b8181101561090c576108fa6008805461087790611b27565b80601f01602080910402602001604051908101604052809291908181526020018280546108a390611b27565b80156108f05780601f106108c5576101008083540402835291602001916108f0565b820191906000526020600020905b8154815290600101906020018083116108d357829003601f168201915b5050505050611163565b8061090481611b62565b91505061085f565b5050565b6006546001600160a01b0316331461093a5760405162461bcd60e51b815260040161048a90611a15565b6106e36111dd565b60606001805461039f90611b27565b6001600160a01b0382163314156109aa5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161048a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a203383610dea565b610a3c5760405162461bcd60e51b815260040161048a90611aa7565b610a4884848484611265565b50505050565b6060610a5982610d5f565b610abd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161048a565b60008281526009602052604090208054610ad690611b27565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0290611b27565b8015610b4f5780601f10610b2457610100808354040283529160200191610b4f565b820191906000526020600020905b815481529060010190602001808311610b3257829003601f168201915b50505050509050919050565b60088054610b6890611b27565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9490611b27565b8015610be15780601f10610bb657610100808354040283529160200191610be1565b820191906000526020600020905b815481529060010190602001808311610bc457829003601f168201915b505050505081565b6006546001600160a01b03163314610c135760405162461bcd60e51b815260040161048a90611a15565b6001600160a01b038116610c785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161048a565b610c8181611111565b50565b6006546001600160a01b03163314610cae5760405162461bcd60e51b815260040161048a90611a15565b60005b828110156105c057610d4d60088054610cc990611b27565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf590611b27565b8015610d425780601f10610d1757610100808354040283529160200191610d42565b820191906000526020600020905b815481529060010190602001808311610d2557829003601f168201915b505050505083611298565b80610d5781611b62565b915050610cb1565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610db182610700565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610df582610d5f565b610e565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161048a565b6000610e6183610700565b9050806001600160a01b0316846001600160a01b03161480610e9c5750836001600160a01b0316610e9184610422565b6001600160a01b0316145b80610ecc57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610ee782610700565b6001600160a01b031614610f4f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161048a565b6001600160a01b038216610fb15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161048a565b610fbc600082610d7c565b6001600160a01b0383166000908152600360205260408120805460019290610fe5908490611b10565b90915550506001600160a01b0382166000908152600360205260408120805460019290611013908490611af8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600654600160a01b900460ff166110c45760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161048a565b6006805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b0316331461118d5760405162461bcd60e51b815260040161048a90611a15565b60075461119981610d5f565b156111b65760405162461bcd60e51b815260040161048a90611a4a565b6007600081546111c590611b62565b909155506111d33382611312565b61090c818361132c565b600654600160a01b900460ff161561122a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161048a565b6006805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110f43390565b611270848484610ed4565b61127c848484846113b5565b610a485760405162461bcd60e51b815260040161048a906119c3565b6006546001600160a01b031633146112c25760405162461bcd60e51b815260040161048a90611a15565b6007546112ce81610d5f565b156112eb5760405162461bcd60e51b815260040161048a90611a4a565b6007600081546112fa90611b62565b909155506113088282611312565b6105c0818461132c565b61090c8282604051806020016040528060008152506114c2565b61133582610d5f565b6113965760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161048a565b600082815260096020908152604090912082516105c092840190611628565b60006001600160a01b0384163b156114b757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113f9903390899088908890600401611973565b602060405180830381600087803b15801561141357600080fd5b505af1925050508015611443575060408051601f3d908101601f19168201909252611440918101906118cd565b60015b61149d573d808015611471576040519150601f19603f3d011682016040523d82523d6000602084013e611476565b606091505b5080516114955760405162461bcd60e51b815260040161048a906119c3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ecc565b506001949350505050565b6114cc83836114f5565b6114d960008484846113b5565b6105c05760405162461bcd60e51b815260040161048a906119c3565b6001600160a01b03821661154b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161048a565b61155481610d5f565b156115a15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161048a565b6001600160a01b03821660009081526003602052604081208054600192906115ca908490611af8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461163490611b27565b90600052602060002090601f016020900481019282611656576000855561169c565b82601f1061166f57805160ff191683800117855561169c565b8280016001018555821561169c579182015b8281111561169c578251825591602001919060010190611681565b506116a89291506116ac565b5090565b5b808211156116a857600081556001016116ad565b80356001600160a01b03811681146116d857600080fd5b919050565b6000602082840312156116ef57600080fd5b6116f8826116c1565b9392505050565b6000806040838503121561171257600080fd5b61171b836116c1565b9150611729602084016116c1565b90509250929050565b60008060006060848603121561174757600080fd5b611750846116c1565b925061175e602085016116c1565b9150604084013590509250925092565b6000806000806080858703121561178457600080fd5b61178d856116c1565b935061179b602086016116c1565b925060408501359150606085013567ffffffffffffffff808211156117bf57600080fd5b818701915087601f8301126117d357600080fd5b8135818111156117e5576117e5611b93565b604051601f8201601f19908116603f0116810190838211818310171561180d5761180d611b93565b816040528281528a602084870101111561182657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561185d57600080fd5b611866836116c1565b91506020830135801515811461187b57600080fd5b809150509250929050565b6000806040838503121561189957600080fd5b6118a2836116c1565b946020939093013593505050565b6000602082840312156118c257600080fd5b81356116f881611ba9565b6000602082840312156118df57600080fd5b81516116f881611ba9565b6000602082840312156118fc57600080fd5b5035919050565b6000806040838503121561191657600080fd5b82359150611729602084016116c1565b6000815180845260005b8181101561194c57602081850181015186830182015201611930565b8181111561195e576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119a690830184611926565b9695505050505050565b6020815260006116f86020830184611926565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526038908201527f5468617420746f6b656e2049442068617320616c7265616479206265656e206d60408201527f696e7465642e20506c656173652074727920616761696e2e0000000000000000606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611b0b57611b0b611b7d565b500190565b600082821015611b2257611b22611b7d565b500390565b600181811c90821680611b3b57607f821691505b60208210811415611b5c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b7657611b76611b7d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c8157600080fdfea2646970667358221220abb041296819a664c1b9aa39960db8ab0b378079d515103bb6e92cb10928798364736f6c63430008070033

Deployed Bytecode Sourcemap

40264:3021:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25817:305;;;;;;:::i;:::-;;:::i;:::-;;;5025:14:1;;5018:22;5000:41;;4988:2;4973:18;25817:305:0;;;;;;;;26762:100;;;:::i;:::-;;;;;;;:::i;28321:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4323:32:1;;;4305:51;;4293:2;4278:18;28321:221:0;4159:203:1;27844:411:0;;;;;;:::i;:::-;;:::i;:::-;;29211:339;;;;;;:::i;:::-;;:::i;42748:284::-;;;:::i;43199:83::-;;;:::i;29621:185::-;;;;;;:::i;:::-;;:::i;38924:86::-;38995:7;;-1:-1:-1;;;38995:7:0;;;;38924:86;;26456:239;;;;;;:::i;:::-;;:::i;26186:208::-;;;;;;:::i;:::-;;:::i;:::-;;;13740:25:1;;;13728:2;13713:18;26186:208:0;13594:177:1;6135:94:0;;;:::i;42135:186::-;;;;;;:::i;:::-;;:::i;43077:79::-;;;:::i;5484:87::-;5557:6;;-1:-1:-1;;;;;5557:6:0;5484:87;;26931:104;;;:::i;28614:295::-;;;;;;:::i;:::-;;:::i;29877:328::-;;;;;;:::i;:::-;;:::i;41039:220::-;;;;;;:::i;:::-;;:::i;40349:28::-;;;;;;28980:164;;;;;;:::i;:::-;-1:-1:-1;;;;;29101:25:0;;;29077:4;29101:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28980:164;40423:114;;;:::i;6384:192::-;;;;;;:::i;:::-;;:::i;42411:246::-;;;;;;:::i;:::-;;:::i;25817:305::-;25919:4;-1:-1:-1;;;;;;25956:40:0;;-1:-1:-1;;;25956:40:0;;:105;;-1:-1:-1;;;;;;;26013:48:0;;-1:-1:-1;;;26013:48:0;25956:105;:158;;;-1:-1:-1;;;;;;;;;;24519:40:0;;;26078:36;25936:178;25817:305;-1:-1:-1;;25817:305:0:o;26762:100::-;26816:13;26849:5;26842:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26762:100;:::o;28321:221::-;28397:7;28425:16;28433:7;28425;:16::i;:::-;28417:73;;;;-1:-1:-1;;;28417:73:0;;10538:2:1;28417:73:0;;;10520:21:1;10577:2;10557:18;;;10550:30;10616:34;10596:18;;;10589:62;-1:-1:-1;;;10667:18:1;;;10660:42;10719:19;;28417:73:0;;;;;;;;;-1:-1:-1;28510:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28510:24:0;;28321:221::o;27844:411::-;27925:13;27941:23;27956:7;27941:14;:23::i;:::-;27925:39;;27989:5;-1:-1:-1;;;;;27983:11:0;:2;-1:-1:-1;;;;;27983:11:0;;;27975:57;;;;-1:-1:-1;;;27975:57:0;;12976:2:1;27975:57:0;;;12958:21:1;13015:2;12995:18;;;12988:30;13054:34;13034:18;;;13027:62;-1:-1:-1;;;13105:18:1;;;13098:31;13146:19;;27975:57:0;12774:397:1;27975:57:0;4436:10;-1:-1:-1;;;;;28067:21:0;;;;:62;;-1:-1:-1;28092:37:0;28109:5;4436:10;28980:164;:::i;28092:37::-;28045:168;;;;-1:-1:-1;;;28045:168:0;;8931:2:1;28045:168:0;;;8913:21:1;8970:2;8950:18;;;8943:30;9009:34;8989:18;;;8982:62;9080:26;9060:18;;;9053:54;9124:19;;28045:168:0;8729:420:1;28045:168:0;28226:21;28235:2;28239:7;28226:8;:21::i;:::-;27914:341;27844:411;;:::o;29211:339::-;29406:41;4436:10;29439:7;29406:18;:41::i;:::-;29398:103;;;;-1:-1:-1;;;29398:103:0;;;;;;;:::i;:::-;29514:28;29524:4;29530:2;29534:7;29514:9;:28::i;42748:284::-;5557:6;;-1:-1:-1;;;;;5557:6:0;4436:10;5704:23;5696:68;;;;-1:-1:-1;;;5696:68:0;;;;;;;:::i;:::-;42816:21:::1;42887:10;42917:26:::0;42909:74:::1;;;::::0;-1:-1:-1;;;42909:74:0;;5478:2:1;42909:74:0::1;::::0;::::1;5460:21:1::0;5517:2;5497:18;;;5490:30;5556:34;5536:18;;;5529:62;-1:-1:-1;;;5607:18:1;;;5600:33;5650:19;;42909:74:0::1;5276:399:1::0;42909:74:0::1;42994:30;::::0;-1:-1:-1;;;;;42994:21:0;::::1;::::0;:30;::::1;;;::::0;43016:7;;42994:30:::1;::::0;;;43016:7;42994:21;:30;::::1;;;;;;;;;;;;;::::0;::::1;;;;43199:83:::0;5557:6;;-1:-1:-1;;;;;5557:6:0;4436:10;5704:23;5696:68;;;;-1:-1:-1;;;5696:68:0;;;;;;;:::i;:::-;43258:16:::1;:14;:16::i;:::-;43199:83::o:0;29621:185::-;29759:39;29776:4;29782:2;29786:7;29759:39;;;;;;;;;;;;:16;:39::i;26456:239::-;26528:7;26564:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26564:16:0;26599:19;26591:73;;;;-1:-1:-1;;;26591:73:0;;9767:2:1;26591:73:0;;;9749:21:1;9806:2;9786:18;;;9779:30;9845:34;9825:18;;;9818:62;-1:-1:-1;;;9896:18:1;;;9889:39;9945:19;;26591:73:0;9565:405:1;26186:208:0;26258:7;-1:-1:-1;;;;;26286:19:0;;26278:74;;;;-1:-1:-1;;;26278:74:0;;9356:2:1;26278:74:0;;;9338:21:1;9395:2;9375:18;;;9368:30;9434:34;9414:18;;;9407:62;-1:-1:-1;;;9485:18:1;;;9478:40;9535:19;;26278:74:0;9154:406:1;26278:74:0;-1:-1:-1;;;;;;26370:16:0;;;;;:9;:16;;;;;;;26186:208::o;6135:94::-;5557:6;;-1:-1:-1;;;;;5557:6:0;4436:10;5704:23;5696:68;;;;-1:-1:-1;;;5696:68:0;;;;;;;:::i;:::-;6200:21:::1;6218:1;6200:9;:21::i;42135:186::-:0;5557:6;;-1:-1:-1;;;;;5557:6:0;4436:10;5704:23;5696:68;;;;-1:-1:-1;;;5696:68:0;;;;;;;:::i;:::-;42220:6:::1;42215:99;42234:9;42230:1;:13;42215:99;;;42265:37;42286:15;42265:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:20;:37::i;:::-;42245:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42215:99;;;;42135:186:::0;:::o;43077:79::-;5557:6;;-1:-1:-1;;;;;5557:6:0;4436:10;5704:23;5696:68;;;;-1:-1:-1;;;5696:68:0;;;;;;;:::i;:::-;43134:14:::1;:12;:14::i;26931:104::-:0;26987:13;27020:7;27013:14;;;;;:::i;28614:295::-;-1:-1:-1;;;;;28717:24:0;;4436:10;28717:24;;28709:62;;;;-1:-1:-1;;;28709:62:0;;7819:2:1;28709:62:0;;;7801:21:1;7858:2;7838:18;;;7831:30;7897:27;7877:18;;;7870:55;7942:18;;28709:62:0;7617:349:1;28709:62:0;4436:10;28784:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28784:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28784:53:0;;;;;;;;;;28853:48;;5000:41:1;;;28784:42:0;;4436:10;28853:48;;4973:18:1;28853:48:0;;;;;;;28614:295;;:::o;29877:328::-;30052:41;4436:10;30085:7;30052:18;:41::i;:::-;30044:103;;;;-1:-1:-1;;;30044:103:0;;;;;;;:::i;:::-;30158:39;30172:4;30178:2;30182:7;30191:5;30158:13;:39::i;:::-;29877:328;;;;:::o;41039:220::-;41112:13;41146:16;41154:7;41146;:16::i;:::-;41138:76;;;;-1:-1:-1;;;41138:76:0;;12135:2:1;41138:76:0;;;12117:21:1;12174:2;12154:18;;;12147:30;12213:34;12193:18;;;12186:62;-1:-1:-1;;;12264:18:1;;;12257:45;12319:19;;41138:76:0;11933:411:1;41138:76:0;41232:19;;;;:10;:19;;;;;41225:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41039:220;;;:::o;40423:114::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6384:192::-;5557:6;;-1:-1:-1;;;;;5557:6:0;4436:10;5704:23;5696:68;;;;-1:-1:-1;;;5696:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6473:22:0;::::1;6465:73;;;::::0;-1:-1:-1;;;6465:73:0;;6650:2:1;6465:73:0::1;::::0;::::1;6632:21:1::0;6689:2;6669:18;;;6662:30;6728:34;6708:18;;;6701:62;-1:-1:-1;;;6779:18:1;;;6772:36;6825:19;;6465:73:0::1;6448:402:1::0;6465:73:0::1;6549:19;6559:8;6549:9;:19::i;:::-;6384:192:::0;:::o;42411:246::-;5557:6;;-1:-1:-1;;;;;5557:6:0;4436:10;5704:23;5696:68;;;;-1:-1:-1;;;5696:68:0;;;;;;;:::i;:::-;42530:6:::1;42525:125;42544:9;42540:1;:13;42525:125;;;42575:63;42605:15;42575:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42622:15;42575:29;:63::i;:::-;42555:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42525:125;;31715:127:::0;31780:4;31804:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31804:16:0;:30;;;31715:127::o;35697:174::-;35772:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35772:29:0;-1:-1:-1;;;;;35772:29:0;;;;;;;;:24;;35826:23;35772:24;35826:14;:23::i;:::-;-1:-1:-1;;;;;35817:46:0;;;;;;;;;;;35697:174;;:::o;32009:348::-;32102:4;32127:16;32135:7;32127;:16::i;:::-;32119:73;;;;-1:-1:-1;;;32119:73:0;;8173:2:1;32119:73:0;;;8155:21:1;8212:2;8192:18;;;8185:30;8251:34;8231:18;;;8224:62;-1:-1:-1;;;8302:18:1;;;8295:42;8354:19;;32119:73:0;7971:408:1;32119:73:0;32203:13;32219:23;32234:7;32219:14;:23::i;:::-;32203:39;;32272:5;-1:-1:-1;;;;;32261:16:0;:7;-1:-1:-1;;;;;32261:16:0;;:51;;;;32305:7;-1:-1:-1;;;;;32281:31:0;:20;32293:7;32281:11;:20::i;:::-;-1:-1:-1;;;;;32281:31:0;;32261:51;:87;;;-1:-1:-1;;;;;;29101:25:0;;;29077:4;29101:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32316:32;32253:96;32009:348;-1:-1:-1;;;;32009:348:0:o;35001:578::-;35160:4;-1:-1:-1;;;;;35133:31:0;:23;35148:7;35133:14;:23::i;:::-;-1:-1:-1;;;;;35133:31:0;;35125:85;;;;-1:-1:-1;;;35125:85:0;;11725:2:1;35125:85:0;;;11707:21:1;11764:2;11744:18;;;11737:30;11803:34;11783:18;;;11776:62;-1:-1:-1;;;11854:18:1;;;11847:39;11903:19;;35125:85:0;11523:405:1;35125:85:0;-1:-1:-1;;;;;35229:16:0;;35221:65;;;;-1:-1:-1;;;35221:65:0;;7414:2:1;35221:65:0;;;7396:21:1;7453:2;7433:18;;;7426:30;7492:34;7472:18;;;7465:62;-1:-1:-1;;;7543:18:1;;;7536:34;7587:19;;35221:65:0;7212:400:1;35221:65:0;35403:29;35420:1;35424:7;35403:8;:29::i;:::-;-1:-1:-1;;;;;35445:15:0;;;;;;:9;:15;;;;;:20;;35464:1;;35445:15;:20;;35464:1;;35445:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35476:13:0;;;;;;:9;:13;;;;;:18;;35493:1;;35476:13;:18;;35493:1;;35476:18;:::i;:::-;;;;-1:-1:-1;;35505:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35505:21:0;-1:-1:-1;;;;;35505:21:0;;;;;;;;;35544:27;;35505:16;;35544:27;;;;;;;35001:578;;;:::o;39983:120::-;38995:7;;-1:-1:-1;;;38995:7:0;;;;39519:41;;;;-1:-1:-1;;;39519:41:0;;5882:2:1;39519:41:0;;;5864:21:1;5921:2;5901:18;;;5894:30;-1:-1:-1;;;5940:18:1;;;5933:50;6000:18;;39519:41:0;5680:344:1;39519:41:0;40042:7:::1;:15:::0;;-1:-1:-1;;;;40042:15:0::1;::::0;;40073:22:::1;4436:10:::0;40082:12:::1;40073:22;::::0;-1:-1:-1;;;;;4323:32:1;;;4305:51;;4293:2;4278:18;40073:22:0::1;;;;;;;39983:120::o:0;6584:173::-;6659:6;;;-1:-1:-1;;;;;6676:17:0;;;-1:-1:-1;;;;;;6676:17:0;;;;;;;6709:40;;6659:6;;;6676:17;6659:6;;6709:40;;6640:16;;6709:40;6629:128;6584:173;:::o;41329:313::-;5557:6;;-1:-1:-1;;;;;5557:6:0;4436:10;5704:23;5696:68;;;;-1:-1:-1;;;5696:68:0;;;;;;;:::i;:::-;41426:9:::1;::::0;41455:16:::1;41426:9:::0;41455:7:::1;:16::i;:::-;41454:17;41446:86;;;;-1:-1:-1::0;;;41446:86:0::1;;;;;;;:::i;:::-;41545:9;;41543:11;;;;;:::i;:::-;::::0;;;-1:-1:-1;41565:30:0::1;41575:10;41587:7:::0;41565:9:::1;:30::i;:::-;41606:26;41619:7;41628:3;41606:12;:26::i;39724:118::-:0;38995:7;;-1:-1:-1;;;38995:7:0;;;;39249:9;39241:38;;;;-1:-1:-1;;;39241:38:0;;8586:2:1;39241:38:0;;;8568:21:1;8625:2;8605:18;;;8598:30;-1:-1:-1;;;8644:18:1;;;8637:46;8700:18;;39241:38:0;8384:340:1;39241:38:0;39784:7:::1;:14:::0;;-1:-1:-1;;;;39784:14:0::1;-1:-1:-1::0;;;39784:14:0::1;::::0;;39814:20:::1;39821:12;4436:10:::0;;4356:98;31087:315;31244:28;31254:4;31260:2;31264:7;31244:9;:28::i;:::-;31291:48;31314:4;31320:2;31324:7;31333:5;31291:22;:48::i;:::-;31283:111;;;;-1:-1:-1;;;31283:111:0;;;;;;;:::i;41714:352::-;5557:6;;-1:-1:-1;;;;;5557:6:0;4436:10;5704:23;5696:68;;;;-1:-1:-1;;;5696:68:0;;;;;;;:::i;:::-;41845:9:::1;::::0;41874:16:::1;41845:9:::0;41874:7:::1;:16::i;:::-;41873:17;41865:86;;;;-1:-1:-1::0;;;41865:86:0::1;;;;;;;:::i;:::-;41964:9;;41962:11;;;;;:::i;:::-;::::0;;;-1:-1:-1;41984:35:0::1;41994:15:::0;42011:7;41984:9:::1;:35::i;:::-;42030:26;42043:7;42052:3;42030:12;:26::i;32699:110::-:0;32775:26;32785:2;32789:7;32775:26;;;;;;;;;;;;:9;:26::i;40782:203::-;40876:16;40884:7;40876;:16::i;:::-;40868:73;;;;-1:-1:-1;;;40868:73:0;;10951:2:1;40868:73:0;;;10933:21:1;10990:2;10970:18;;;10963:30;11029:34;11009:18;;;11002:62;-1:-1:-1;;;11080:18:1;;;11073:42;11132:19;;40868:73:0;10749:408:1;40868:73:0;40952:19;;;;:10;:19;;;;;;;;:25;;;;;;;;:::i;36436:799::-;36591:4;-1:-1:-1;;;;;36612:13:0;;14715:20;14763:8;36608:620;;36648:72;;-1:-1:-1;;;36648:72:0;;-1:-1:-1;;;;;36648:36:0;;;;;:72;;4436:10;;36699:4;;36705:7;;36714:5;;36648:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36648:72:0;;;;;;;;-1:-1:-1;;36648:72:0;;;;;;;;;;;;:::i;:::-;;;36644:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36890:13:0;;36886:272;;36933:60;;-1:-1:-1;;;36933:60:0;;;;;;;:::i;36886:272::-;37108:6;37102:13;37093:6;37089:2;37085:15;37078:38;36644:529;-1:-1:-1;;;;;;36771:51:0;-1:-1:-1;;;36771:51:0;;-1:-1:-1;36764:58:0;;36608:620;-1:-1:-1;37212:4:0;36436:799;;;;;;:::o;33036:321::-;33166:18;33172:2;33176:7;33166:5;:18::i;:::-;33217:54;33248:1;33252:2;33256:7;33265:5;33217:22;:54::i;:::-;33195:154;;;;-1:-1:-1;;;33195:154:0;;;;;;;:::i;33693:382::-;-1:-1:-1;;;;;33773:16:0;;33765:61;;;;-1:-1:-1;;;33765:61:0;;10177:2:1;33765:61:0;;;10159:21:1;;;10196:18;;;10189:30;10255:34;10235:18;;;10228:62;10307:18;;33765:61:0;9975:356:1;33765:61:0;33846:16;33854:7;33846;:16::i;:::-;33845:17;33837:58;;;;-1:-1:-1;;;33837:58:0;;7057:2:1;33837:58:0;;;7039:21:1;7096:2;7076:18;;;7069:30;7135;7115:18;;;7108:58;7183:18;;33837:58:0;6855:352:1;33837:58:0;-1:-1:-1;;;;;33966:13:0;;;;;;:9;:13;;;;;:18;;33983:1;;33966:13;:18;;33983:1;;33966:18;:::i;:::-;;;;-1:-1:-1;;33995:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33995:21:0;-1:-1:-1;;;;;33995:21:0;;;;;;;;34034:33;;33995:16;;;34034:33;;33995:16;;34034:33;33693:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:180::-;3298:6;3351:2;3339:9;3330:7;3326:23;3322:32;3319:52;;;3367:1;3364;3357:12;3319:52;-1:-1:-1;3390:23:1;;3239:180;-1:-1:-1;3239:180:1:o;3424:254::-;3492:6;3500;3553:2;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;3605:9;3592:23;3582:33;;3634:38;3668:2;3657:9;3653:18;3634:38;:::i;3683:471::-;3724:3;3762:5;3756:12;3789:6;3784:3;3777:19;3814:1;3824:162;3838:6;3835:1;3832:13;3824:162;;;3900:4;3956:13;;;3952:22;;3946:29;3928:11;;;3924:20;;3917:59;3853:12;3824:162;;;4004:6;4001:1;3998:13;3995:87;;;4070:1;4063:4;4054:6;4049:3;4045:16;4041:27;4034:38;3995:87;-1:-1:-1;4136:2:1;4115:15;-1:-1:-1;;4111:29:1;4102:39;;;;4143:4;4098:50;;3683:471;-1:-1:-1;;3683:471:1:o;4367:488::-;-1:-1:-1;;;;;4636:15:1;;;4618:34;;4688:15;;4683:2;4668:18;;4661:43;4735:2;4720:18;;4713:34;;;4783:3;4778:2;4763:18;;4756:31;;;4561:4;;4804:45;;4829:19;;4821:6;4804:45;:::i;:::-;4796:53;4367:488;-1:-1:-1;;;;;;4367:488:1:o;5052:219::-;5201:2;5190:9;5183:21;5164:4;5221:44;5261:2;5250:9;5246:18;5238:6;5221:44;:::i;6029:414::-;6231:2;6213:21;;;6270:2;6250:18;;;6243:30;6309:34;6304:2;6289:18;;6282:62;-1:-1:-1;;;6375:2:1;6360:18;;6353:48;6433:3;6418:19;;6029:414::o;11162:356::-;11364:2;11346:21;;;11383:18;;;11376:30;11442:34;11437:2;11422:18;;11415:62;11509:2;11494:18;;11162:356::o;12349:420::-;12551:2;12533:21;;;12590:2;12570:18;;;12563:30;12629:34;12624:2;12609:18;;12602:62;12700:26;12695:2;12680:18;;12673:54;12759:3;12744:19;;12349:420::o;13176:413::-;13378:2;13360:21;;;13417:2;13397:18;;;13390:30;13456:34;13451:2;13436:18;;13429:62;-1:-1:-1;;;13522:2:1;13507:18;;13500:47;13579:3;13564:19;;13176:413::o;13776:128::-;13816:3;13847:1;13843:6;13840:1;13837:13;13834:39;;;13853:18;;:::i;:::-;-1:-1:-1;13889:9:1;;13776:128::o;13909:125::-;13949:4;13977:1;13974;13971:8;13968:34;;;13982:18;;:::i;:::-;-1:-1:-1;14019:9:1;;13909:125::o;14039:380::-;14118:1;14114:12;;;;14161;;;14182:61;;14236:4;14228:6;14224:17;14214:27;;14182:61;14289:2;14281:6;14278:14;14258:18;14255:38;14252:161;;;14335:10;14330:3;14326:20;14323:1;14316:31;14370:4;14367:1;14360:15;14398:4;14395:1;14388:15;14252:161;;14039:380;;;:::o;14424:135::-;14463:3;-1:-1:-1;;14484:17:1;;14481:43;;;14504:18;;:::i;:::-;-1:-1:-1;14551:1:1;14540:13;;14424:135::o;14564:127::-;14625:10;14620:3;14616:20;14613:1;14606:31;14656:4;14653:1;14646:15;14680:4;14677:1;14670:15;14696:127;14757:10;14752:3;14748:20;14745:1;14738:31;14788:4;14785:1;14778:15;14812:4;14809:1;14802:15;14828:131;-1:-1:-1;;;;;;14902:32:1;;14892:43;;14882:71;;14949:1;14946;14939:12

Swarm Source

ipfs://abb041296819a664c1b9aa39960db8ab0b378079d515103bb6e92cb109287983
Loading...
Loading
Loading...
Loading
[ 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.