ETH Price: $3,503.76 (+3.94%)
Gas: 4 Gwei

Token

(0x96fc56721d2b79485692350014875b3b67cb00eb)
 

Overview

Max Total Supply

8,000 ERC-721 TOKEN*

Holders

4,207

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 ERC-721 TOKEN*
0xc2a8b121dd355c3b882262758ede12c88b30fa80
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:
ASAC

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : ASAC.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;

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

contract OwnableDelegateProxy {}

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

contract ASAC is Ownable, ERC721 {
    uint256 public constant TOTAL_MAX_QTY = 8000;
    uint256 public constant FREE_MINT_MAX_QTY = 800;
    uint256 public constant PAID_MINT_MAX_QTY = 7120;
    uint256 public constant TOTAL_MINT_MAX_QTY =
        FREE_MINT_MAX_QTY + PAID_MINT_MAX_QTY;
    uint256 public constant GIFT_MAX_QTY = 80;
    uint256 public constant PRICE = 0.039 ether;
    uint256 public constant MAX_QTY_PER_WALLET = 20;
    string private _tokenBaseURI;
    uint256 public maxFreeQtyPerWallet = 0;
    uint256 public mintedQty = 0;
    uint256 public giftedQty = 0;
    mapping(address => uint256) public minterToTokenQty;
    address proxyRegistryAddress;

    constructor() ERC721("Anatomy Science Ape Club", "ASAC") {}

    function totalSupply() public view returns (uint256) {
        return mintedQty + giftedQty;
    }

    function mint(uint256 _mintQty) external payable {
        // free
        if (mintedQty < FREE_MINT_MAX_QTY) {
            require(mintedQty + _mintQty <= FREE_MINT_MAX_QTY, "MAXL");
            require(
                minterToTokenQty[msg.sender] + _mintQty <= maxFreeQtyPerWallet,
                "MAXF"
            );
        }
        //paid
        else {
            require(mintedQty + _mintQty <= TOTAL_MINT_MAX_QTY, "MAXL");
            require(
                minterToTokenQty[msg.sender] + _mintQty <= MAX_QTY_PER_WALLET,
                "MAXP"
            );
            require(msg.value >= PRICE * _mintQty, "SETH");
        }
        uint256 totalSupplyBefore = totalSupply();
        mintedQty += _mintQty;
        minterToTokenQty[msg.sender] += _mintQty;
        for (uint256 i = 0; i < _mintQty; i++) {
            _mint(msg.sender, ++totalSupplyBefore);
        }
    }

    function gift(address[] calldata receivers) external onlyOwner {
        require(giftedQty + receivers.length <= GIFT_MAX_QTY, "MAXG");

        uint256 totalSupplyBefore = totalSupply();
        giftedQty += receivers.length;
        for (uint256 i = 0; i < receivers.length; i++) {
            _mint(receivers[i], ++totalSupplyBefore);
        }
    }

    function withdrawAll() external onlyOwner {
        require(address(this).balance > 0, "ZERO");
        payable(msg.sender).transfer(address(this).balance);
    }

    function setMaxFreeQtyPerTx(uint256 _maxQtyPerTx) external onlyOwner {
        maxFreeQtyPerWallet = _maxQtyPerTx;
    }

    // rinkeby: 0xf57b2c51ded3a29e6891aba85459d600256cf317
    // mainnet: 0xa5409ec958c83c3f309868babaca7c86dcb077c1
    function setProxyRegistryAddress(address proxyAddress) external onlyOwner {
        proxyRegistryAddress = proxyAddress;
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

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

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

File 2 of 11 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 11 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 6 of 11 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 11 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 9 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 11 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        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 {}
}

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

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_MAX_QTY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GIFT_MAX_QTY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_QTY_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_MINT_MAX_QTY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_MAX_QTY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_MINT_MAX_QTY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giftedQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeQtyPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintQty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintedQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minterToTokenQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxQtyPerTx","type":"uint256"}],"name":"setMaxFreeQtyPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"setProxyRegistryAddress","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600060085560006009556000600a553480156200002057600080fd5b506040518060400160405280601881526020017f416e61746f6d7920536369656e63652041706520436c756200000000000000008152506040518060400160405280600481526020017f4153414300000000000000000000000000000000000000000000000000000000815250620000ad620000a1620000e760201b60201c565b620000ef60201b60201c565b8160019080519060200190620000c5929190620001b3565b508060029080519060200190620000de929190620001b3565b505050620002c8565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001c19062000292565b90600052602060002090601f016020900481019282620001e5576000855562000231565b82601f106200020057805160ff191683800117855562000231565b8280016001018555821562000231579182015b828111156200023057825182559160200191906001019062000213565b5b50905062000240919062000244565b5090565b5b808211156200025f57600081600090555060010162000245565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002ab57607f821691505b60208210811415620002c257620002c162000263565b5b50919050565b613d6580620002d86000396000f3fe6080604052600436106101f95760003560e01c806388aadd411161010d578063a22cb465116100a0578063d26ea6c01161006f578063d26ea6c014610702578063dee816e61461072b578063e351da4c14610756578063e985e9c514610781578063f2fde38b146107be576101f9565b8063a22cb46514610648578063b88d4fde14610671578063bd34fc571461069a578063c87b56dd146106c5576101f9565b806395d89b41116100dc57806395d89b41146105ab578063966784ec146105d65780639a525d9c14610601578063a0712d681461062c576101f9565b806388aadd41146104ed5780638d859f3e1461052a5780638da5cb5b14610555578063918ce43214610580576101f9565b80633f5632b0116101905780636352211e1161015f5780636352211e1461041c57806370a0823114610459578063715018a614610496578063738a92e8146104ad578063853828b6146104d6576101f9565b80633f5632b01461037457806342842e0e1461039f57806355f804b3146103c85780635f717202146103f1576101f9565b8063163e1e61116101cc578063163e1e61146102cc57806318160ddd146102f557806323b872dd146103205780633354fe3414610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061274d565b6107e7565b6040516102329190612795565b60405180910390f35b34801561024757600080fd5b506102506108c9565b60405161025d9190612849565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906128a1565b61095b565b60405161029a919061290f565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612956565b6109e0565b005b3480156102d857600080fd5b506102f360048036038101906102ee91906129fb565b610af8565b005b34801561030157600080fd5b5061030a610c54565b6040516103179190612a57565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190612a72565b610c6b565b005b34801561035557600080fd5b5061035e610ccb565b60405161036b9190612a57565b60405180910390f35b34801561038057600080fd5b50610389610cd0565b6040516103969190612a57565b60405180910390f35b3480156103ab57600080fd5b506103c660048036038101906103c19190612a72565b610cd6565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612b1b565b610cf6565b005b3480156103fd57600080fd5b50610406610d88565b6040516104139190612a57565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e91906128a1565b610d9b565b604051610450919061290f565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190612b68565b610e4d565b60405161048d9190612a57565b60405180910390f35b3480156104a257600080fd5b506104ab610f05565b005b3480156104b957600080fd5b506104d460048036038101906104cf91906128a1565b610f8d565b005b3480156104e257600080fd5b506104eb611013565b005b3480156104f957600080fd5b50610514600480360381019061050f9190612b68565b61111b565b6040516105219190612a57565b60405180910390f35b34801561053657600080fd5b5061053f611133565b60405161054c9190612a57565b60405180910390f35b34801561056157600080fd5b5061056a61113e565b604051610577919061290f565b60405180910390f35b34801561058c57600080fd5b50610595611167565b6040516105a29190612a57565b60405180910390f35b3480156105b757600080fd5b506105c061116d565b6040516105cd9190612849565b60405180910390f35b3480156105e257600080fd5b506105eb6111ff565b6040516105f89190612a57565b60405180910390f35b34801561060d57600080fd5b50610616611205565b6040516106239190612a57565b60405180910390f35b610646600480360381019061064191906128a1565b61120b565b005b34801561065457600080fd5b5061066f600480360381019061066a9190612bc1565b6114f4565b005b34801561067d57600080fd5b5061069860048036038101906106939190612d31565b611675565b005b3480156106a657600080fd5b506106af6116d7565b6040516106bc9190612a57565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e791906128a1565b6116dd565b6040516106f99190612849565b60405180910390f35b34801561070e57600080fd5b5061072960048036038101906107249190612b68565b611784565b005b34801561073757600080fd5b50610740611844565b60405161074d9190612a57565b60405180910390f35b34801561076257600080fd5b5061076b61184a565b6040516107789190612a57565b60405180910390f35b34801561078d57600080fd5b506107a860048036038101906107a39190612db4565b61184f565b6040516107b59190612795565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e09190612b68565b611951565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c257506108c182611a49565b5b9050919050565b6060600180546108d890612e23565b80601f016020809104026020016040519081016040528092919081815260200182805461090490612e23565b80156109515780601f1061092657610100808354040283529160200191610951565b820191906000526020600020905b81548152906001019060200180831161093457829003601f168201915b5050505050905090565b600061096682611ab3565b6109a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099c90612ec7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109eb82610d9b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5390612f59565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a7b611b1f565b73ffffffffffffffffffffffffffffffffffffffff161480610aaa5750610aa981610aa4611b1f565b61184f565b5b610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae090612feb565b60405180910390fd5b610af38383611b27565b505050565b610b00611b1f565b73ffffffffffffffffffffffffffffffffffffffff16610b1e61113e565b73ffffffffffffffffffffffffffffffffffffffff1614610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b90613057565b60405180910390fd5b605082829050600a54610b8791906130a6565b1115610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf90613148565b60405180910390fd5b6000610bd2610c54565b905082829050600a6000828254610be991906130a6565b9250508190555060005b83839050811015610c4e57610c3b848483818110610c1457610c13613168565b5b9050602002016020810190610c299190612b68565b83610c3390613197565b935083611be0565b8080610c4690613197565b915050610bf3565b50505050565b6000600a54600954610c6691906130a6565b905090565b610c7c610c76611b1f565b82611dae565b610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb290613252565b60405180910390fd5b610cc6838383611e8c565b505050565b605081565b60095481565b610cf183838360405180602001604052806000815250611675565b505050565b610cfe611b1f565b73ffffffffffffffffffffffffffffffffffffffff16610d1c61113e565b73ffffffffffffffffffffffffffffffffffffffff1614610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6990613057565b60405180910390fd5b818160079190610d8392919061263e565b505050565b611bd0610320610d9891906130a6565b81565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906132e4565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590613376565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f0d611b1f565b73ffffffffffffffffffffffffffffffffffffffff16610f2b61113e565b73ffffffffffffffffffffffffffffffffffffffff1614610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890613057565b60405180910390fd5b610f8b60006120e8565b565b610f95611b1f565b73ffffffffffffffffffffffffffffffffffffffff16610fb361113e565b73ffffffffffffffffffffffffffffffffffffffff1614611009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100090613057565b60405180910390fd5b8060088190555050565b61101b611b1f565b73ffffffffffffffffffffffffffffffffffffffff1661103961113e565b73ffffffffffffffffffffffffffffffffffffffff161461108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108690613057565b60405180910390fd5b600047116110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c9906133e2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611118573d6000803e3d6000fd5b50565b600b6020528060005260406000206000915090505481565b668a8e4b1a3d800081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611bd081565b60606002805461117c90612e23565b80601f01602080910402602001604051908101604052809291908181526020018280546111a890612e23565b80156111f55780601f106111ca576101008083540402835291602001916111f5565b820191906000526020600020905b8154815290600101906020018083116111d857829003601f168201915b5050505050905090565b60085481565b61032081565b61032060095410156112fd576103208160095461122891906130a6565b1115611269576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112609061344e565b60405180910390fd5b60085481600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112b791906130a6565b11156112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef906134ba565b60405180910390fd5b611440565b611bd061032061130d91906130a6565b8160095461131b91906130a6565b111561135c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113539061344e565b60405180910390fd5b601481600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113a991906130a6565b11156113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e190613526565b60405180910390fd5b80668a8e4b1a3d80006113fd9190613546565b34101561143f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611436906135ec565b60405180910390fd5b5b600061144a610c54565b9050816009600082825461145e91906130a6565b9250508190555081600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114b491906130a6565b9250508190555060005b828110156114ef576114dc33836114d490613197565b935083611be0565b80806114e790613197565b9150506114be565b505050565b6114fc611b1f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156190613658565b60405180910390fd5b8060066000611577611b1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611624611b1f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116699190612795565b60405180910390a35050565b611686611680611b1f565b83611dae565b6116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90613252565b60405180910390fd5b6116d1848484846121ac565b50505050565b600a5481565b60606116e882611ab3565b611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e906136ea565b60405180910390fd5b6000611731612208565b90506000815111611751576040518060200160405280600081525061177c565b8061175b8461229a565b60405160200161176c929190613746565b6040516020818303038152906040525b915050919050565b61178c611b1f565b73ffffffffffffffffffffffffffffffffffffffff166117aa61113e565b73ffffffffffffffffffffffffffffffffffffffff1614611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790613057565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611f4081565b601481565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016118c7919061290f565b60206040518083038186803b1580156118df57600080fd5b505afa1580156118f3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191791906137a8565b73ffffffffffffffffffffffffffffffffffffffff16141561193d57600191505061194b565b61194784846123fb565b9150505b92915050565b611959611b1f565b73ffffffffffffffffffffffffffffffffffffffff1661197761113e565b73ffffffffffffffffffffffffffffffffffffffff16146119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c490613057565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3490613847565b60405180910390fd5b611a46816120e8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b9a83610d9b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c47906138b3565b60405180910390fd5b611c5981611ab3565b15611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c909061391f565b60405180910390fd5b611ca56000838361248f565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cf591906130a6565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000611db982611ab3565b611df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611def906139b1565b60405180910390fd5b6000611e0383610d9b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e7257508373ffffffffffffffffffffffffffffffffffffffff16611e5a8461095b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e835750611e82818561184f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611eac82610d9b565b73ffffffffffffffffffffffffffffffffffffffff1614611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990613a43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6990613ad5565b60405180910390fd5b611f7d83838361248f565b611f88600082611b27565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fd89190613af5565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461202f91906130a6565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121b7848484611e8c565b6121c384848484612494565b612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990613b9b565b60405180910390fd5b50505050565b60606007805461221790612e23565b80601f016020809104026020016040519081016040528092919081815260200182805461224390612e23565b80156122905780601f1061226557610100808354040283529160200191612290565b820191906000526020600020905b81548152906001019060200180831161227357829003601f168201915b5050505050905090565b606060008214156122e2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123f6565b600082905060005b600082146123145780806122fd90613197565b915050600a8261230d9190613bea565b91506122ea565b60008167ffffffffffffffff8111156123305761232f612c06565b5b6040519080825280601f01601f1916602001820160405280156123625781602001600182028036833780820191505090505b5090505b600085146123ef5760018261237b9190613af5565b9150600a8561238a9190613c1b565b603061239691906130a6565b60f81b8183815181106123ac576123ab613168565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123e89190613bea565b9450612366565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b505050565b60006124b58473ffffffffffffffffffffffffffffffffffffffff1661262b565b1561261e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124de611b1f565b8786866040518563ffffffff1660e01b81526004016125009493929190613ca1565b602060405180830381600087803b15801561251a57600080fd5b505af192505050801561254b57506040513d601f19601f820116820180604052508101906125489190613d02565b60015b6125ce573d806000811461257b576040519150601f19603f3d011682016040523d82523d6000602084013e612580565b606091505b506000815114156125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd90613b9b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612623565b600190505b949350505050565b600080823b905060008111915050919050565b82805461264a90612e23565b90600052602060002090601f01602090048101928261266c57600085556126b3565b82601f1061268557803560ff19168380011785556126b3565b828001600101855582156126b3579182015b828111156126b2578235825591602001919060010190612697565b5b5090506126c091906126c4565b5090565b5b808211156126dd5760008160009055506001016126c5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61272a816126f5565b811461273557600080fd5b50565b60008135905061274781612721565b92915050565b600060208284031215612763576127626126eb565b5b600061277184828501612738565b91505092915050565b60008115159050919050565b61278f8161277a565b82525050565b60006020820190506127aa6000830184612786565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127ea5780820151818401526020810190506127cf565b838111156127f9576000848401525b50505050565b6000601f19601f8301169050919050565b600061281b826127b0565b61282581856127bb565b93506128358185602086016127cc565b61283e816127ff565b840191505092915050565b600060208201905081810360008301526128638184612810565b905092915050565b6000819050919050565b61287e8161286b565b811461288957600080fd5b50565b60008135905061289b81612875565b92915050565b6000602082840312156128b7576128b66126eb565b5b60006128c58482850161288c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128f9826128ce565b9050919050565b612909816128ee565b82525050565b60006020820190506129246000830184612900565b92915050565b612933816128ee565b811461293e57600080fd5b50565b6000813590506129508161292a565b92915050565b6000806040838503121561296d5761296c6126eb565b5b600061297b85828601612941565b925050602061298c8582860161288c565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126129bb576129ba612996565b5b8235905067ffffffffffffffff8111156129d8576129d761299b565b5b6020830191508360208202830111156129f4576129f36129a0565b5b9250929050565b60008060208385031215612a1257612a116126eb565b5b600083013567ffffffffffffffff811115612a3057612a2f6126f0565b5b612a3c858286016129a5565b92509250509250929050565b612a518161286b565b82525050565b6000602082019050612a6c6000830184612a48565b92915050565b600080600060608486031215612a8b57612a8a6126eb565b5b6000612a9986828701612941565b9350506020612aaa86828701612941565b9250506040612abb8682870161288c565b9150509250925092565b60008083601f840112612adb57612ada612996565b5b8235905067ffffffffffffffff811115612af857612af761299b565b5b602083019150836001820283011115612b1457612b136129a0565b5b9250929050565b60008060208385031215612b3257612b316126eb565b5b600083013567ffffffffffffffff811115612b5057612b4f6126f0565b5b612b5c85828601612ac5565b92509250509250929050565b600060208284031215612b7e57612b7d6126eb565b5b6000612b8c84828501612941565b91505092915050565b612b9e8161277a565b8114612ba957600080fd5b50565b600081359050612bbb81612b95565b92915050565b60008060408385031215612bd857612bd76126eb565b5b6000612be685828601612941565b9250506020612bf785828601612bac565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c3e826127ff565b810181811067ffffffffffffffff82111715612c5d57612c5c612c06565b5b80604052505050565b6000612c706126e1565b9050612c7c8282612c35565b919050565b600067ffffffffffffffff821115612c9c57612c9b612c06565b5b612ca5826127ff565b9050602081019050919050565b82818337600083830152505050565b6000612cd4612ccf84612c81565b612c66565b905082815260208101848484011115612cf057612cef612c01565b5b612cfb848285612cb2565b509392505050565b600082601f830112612d1857612d17612996565b5b8135612d28848260208601612cc1565b91505092915050565b60008060008060808587031215612d4b57612d4a6126eb565b5b6000612d5987828801612941565b9450506020612d6a87828801612941565b9350506040612d7b8782880161288c565b925050606085013567ffffffffffffffff811115612d9c57612d9b6126f0565b5b612da887828801612d03565b91505092959194509250565b60008060408385031215612dcb57612dca6126eb565b5b6000612dd985828601612941565b9250506020612dea85828601612941565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e3b57607f821691505b60208210811415612e4f57612e4e612df4565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612eb1602c836127bb565b9150612ebc82612e55565b604082019050919050565b60006020820190508181036000830152612ee081612ea4565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f436021836127bb565b9150612f4e82612ee7565b604082019050919050565b60006020820190508181036000830152612f7281612f36565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612fd56038836127bb565b9150612fe082612f79565b604082019050919050565b6000602082019050818103600083015261300481612fc8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130416020836127bb565b915061304c8261300b565b602082019050919050565b6000602082019050818103600083015261307081613034565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130b18261286b565b91506130bc8361286b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130f1576130f0613077565b5b828201905092915050565b7f4d41584700000000000000000000000000000000000000000000000000000000600082015250565b60006131326004836127bb565b915061313d826130fc565b602082019050919050565b6000602082019050818103600083015261316181613125565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006131a28261286b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131d5576131d4613077565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061323c6031836127bb565b9150613247826131e0565b604082019050919050565b6000602082019050818103600083015261326b8161322f565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006132ce6029836127bb565b91506132d982613272565b604082019050919050565b600060208201905081810360008301526132fd816132c1565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613360602a836127bb565b915061336b82613304565b604082019050919050565b6000602082019050818103600083015261338f81613353565b9050919050565b7f5a45524f00000000000000000000000000000000000000000000000000000000600082015250565b60006133cc6004836127bb565b91506133d782613396565b602082019050919050565b600060208201905081810360008301526133fb816133bf565b9050919050565b7f4d41584c00000000000000000000000000000000000000000000000000000000600082015250565b60006134386004836127bb565b915061344382613402565b602082019050919050565b600060208201905081810360008301526134678161342b565b9050919050565b7f4d41584600000000000000000000000000000000000000000000000000000000600082015250565b60006134a46004836127bb565b91506134af8261346e565b602082019050919050565b600060208201905081810360008301526134d381613497565b9050919050565b7f4d41585000000000000000000000000000000000000000000000000000000000600082015250565b60006135106004836127bb565b915061351b826134da565b602082019050919050565b6000602082019050818103600083015261353f81613503565b9050919050565b60006135518261286b565b915061355c8361286b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561359557613594613077565b5b828202905092915050565b7f5345544800000000000000000000000000000000000000000000000000000000600082015250565b60006135d66004836127bb565b91506135e1826135a0565b602082019050919050565b60006020820190508181036000830152613605816135c9565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006136426019836127bb565b915061364d8261360c565b602082019050919050565b6000602082019050818103600083015261367181613635565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006136d4602f836127bb565b91506136df82613678565b604082019050919050565b60006020820190508181036000830152613703816136c7565b9050919050565b600081905092915050565b6000613720826127b0565b61372a818561370a565b935061373a8185602086016127cc565b80840191505092915050565b60006137528285613715565b915061375e8284613715565b91508190509392505050565b6000613775826128ee565b9050919050565b6137858161376a565b811461379057600080fd5b50565b6000815190506137a28161377c565b92915050565b6000602082840312156137be576137bd6126eb565b5b60006137cc84828501613793565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138316026836127bb565b915061383c826137d5565b604082019050919050565b6000602082019050818103600083015261386081613824565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061389d6020836127bb565b91506138a882613867565b602082019050919050565b600060208201905081810360008301526138cc81613890565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613909601c836127bb565b9150613914826138d3565b602082019050919050565b60006020820190508181036000830152613938816138fc565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061399b602c836127bb565b91506139a68261393f565b604082019050919050565b600060208201905081810360008301526139ca8161398e565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613a2d6029836127bb565b9150613a38826139d1565b604082019050919050565b60006020820190508181036000830152613a5c81613a20565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613abf6024836127bb565b9150613aca82613a63565b604082019050919050565b60006020820190508181036000830152613aee81613ab2565b9050919050565b6000613b008261286b565b9150613b0b8361286b565b925082821015613b1e57613b1d613077565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613b856032836127bb565b9150613b9082613b29565b604082019050919050565b60006020820190508181036000830152613bb481613b78565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613bf58261286b565b9150613c008361286b565b925082613c1057613c0f613bbb565b5b828204905092915050565b6000613c268261286b565b9150613c318361286b565b925082613c4157613c40613bbb565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000613c7382613c4c565b613c7d8185613c57565b9350613c8d8185602086016127cc565b613c96816127ff565b840191505092915050565b6000608082019050613cb66000830187612900565b613cc36020830186612900565b613cd06040830185612a48565b8181036060830152613ce28184613c68565b905095945050505050565b600081519050613cfc81612721565b92915050565b600060208284031215613d1857613d176126eb565b5b6000613d2684828501613ced565b9150509291505056fea264697066735822122090bc3bcc308602d2cd1bf173fed3b9dc577dfb6519d17459c385dd5739ad0c3564736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806388aadd411161010d578063a22cb465116100a0578063d26ea6c01161006f578063d26ea6c014610702578063dee816e61461072b578063e351da4c14610756578063e985e9c514610781578063f2fde38b146107be576101f9565b8063a22cb46514610648578063b88d4fde14610671578063bd34fc571461069a578063c87b56dd146106c5576101f9565b806395d89b41116100dc57806395d89b41146105ab578063966784ec146105d65780639a525d9c14610601578063a0712d681461062c576101f9565b806388aadd41146104ed5780638d859f3e1461052a5780638da5cb5b14610555578063918ce43214610580576101f9565b80633f5632b0116101905780636352211e1161015f5780636352211e1461041c57806370a0823114610459578063715018a614610496578063738a92e8146104ad578063853828b6146104d6576101f9565b80633f5632b01461037457806342842e0e1461039f57806355f804b3146103c85780635f717202146103f1576101f9565b8063163e1e61116101cc578063163e1e61146102cc57806318160ddd146102f557806323b872dd146103205780633354fe3414610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061274d565b6107e7565b6040516102329190612795565b60405180910390f35b34801561024757600080fd5b506102506108c9565b60405161025d9190612849565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906128a1565b61095b565b60405161029a919061290f565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612956565b6109e0565b005b3480156102d857600080fd5b506102f360048036038101906102ee91906129fb565b610af8565b005b34801561030157600080fd5b5061030a610c54565b6040516103179190612a57565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190612a72565b610c6b565b005b34801561035557600080fd5b5061035e610ccb565b60405161036b9190612a57565b60405180910390f35b34801561038057600080fd5b50610389610cd0565b6040516103969190612a57565b60405180910390f35b3480156103ab57600080fd5b506103c660048036038101906103c19190612a72565b610cd6565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612b1b565b610cf6565b005b3480156103fd57600080fd5b50610406610d88565b6040516104139190612a57565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e91906128a1565b610d9b565b604051610450919061290f565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190612b68565b610e4d565b60405161048d9190612a57565b60405180910390f35b3480156104a257600080fd5b506104ab610f05565b005b3480156104b957600080fd5b506104d460048036038101906104cf91906128a1565b610f8d565b005b3480156104e257600080fd5b506104eb611013565b005b3480156104f957600080fd5b50610514600480360381019061050f9190612b68565b61111b565b6040516105219190612a57565b60405180910390f35b34801561053657600080fd5b5061053f611133565b60405161054c9190612a57565b60405180910390f35b34801561056157600080fd5b5061056a61113e565b604051610577919061290f565b60405180910390f35b34801561058c57600080fd5b50610595611167565b6040516105a29190612a57565b60405180910390f35b3480156105b757600080fd5b506105c061116d565b6040516105cd9190612849565b60405180910390f35b3480156105e257600080fd5b506105eb6111ff565b6040516105f89190612a57565b60405180910390f35b34801561060d57600080fd5b50610616611205565b6040516106239190612a57565b60405180910390f35b610646600480360381019061064191906128a1565b61120b565b005b34801561065457600080fd5b5061066f600480360381019061066a9190612bc1565b6114f4565b005b34801561067d57600080fd5b5061069860048036038101906106939190612d31565b611675565b005b3480156106a657600080fd5b506106af6116d7565b6040516106bc9190612a57565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e791906128a1565b6116dd565b6040516106f99190612849565b60405180910390f35b34801561070e57600080fd5b5061072960048036038101906107249190612b68565b611784565b005b34801561073757600080fd5b50610740611844565b60405161074d9190612a57565b60405180910390f35b34801561076257600080fd5b5061076b61184a565b6040516107789190612a57565b60405180910390f35b34801561078d57600080fd5b506107a860048036038101906107a39190612db4565b61184f565b6040516107b59190612795565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e09190612b68565b611951565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c257506108c182611a49565b5b9050919050565b6060600180546108d890612e23565b80601f016020809104026020016040519081016040528092919081815260200182805461090490612e23565b80156109515780601f1061092657610100808354040283529160200191610951565b820191906000526020600020905b81548152906001019060200180831161093457829003601f168201915b5050505050905090565b600061096682611ab3565b6109a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099c90612ec7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109eb82610d9b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5390612f59565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a7b611b1f565b73ffffffffffffffffffffffffffffffffffffffff161480610aaa5750610aa981610aa4611b1f565b61184f565b5b610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae090612feb565b60405180910390fd5b610af38383611b27565b505050565b610b00611b1f565b73ffffffffffffffffffffffffffffffffffffffff16610b1e61113e565b73ffffffffffffffffffffffffffffffffffffffff1614610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b90613057565b60405180910390fd5b605082829050600a54610b8791906130a6565b1115610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf90613148565b60405180910390fd5b6000610bd2610c54565b905082829050600a6000828254610be991906130a6565b9250508190555060005b83839050811015610c4e57610c3b848483818110610c1457610c13613168565b5b9050602002016020810190610c299190612b68565b83610c3390613197565b935083611be0565b8080610c4690613197565b915050610bf3565b50505050565b6000600a54600954610c6691906130a6565b905090565b610c7c610c76611b1f565b82611dae565b610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb290613252565b60405180910390fd5b610cc6838383611e8c565b505050565b605081565b60095481565b610cf183838360405180602001604052806000815250611675565b505050565b610cfe611b1f565b73ffffffffffffffffffffffffffffffffffffffff16610d1c61113e565b73ffffffffffffffffffffffffffffffffffffffff1614610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6990613057565b60405180910390fd5b818160079190610d8392919061263e565b505050565b611bd0610320610d9891906130a6565b81565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906132e4565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590613376565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f0d611b1f565b73ffffffffffffffffffffffffffffffffffffffff16610f2b61113e565b73ffffffffffffffffffffffffffffffffffffffff1614610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890613057565b60405180910390fd5b610f8b60006120e8565b565b610f95611b1f565b73ffffffffffffffffffffffffffffffffffffffff16610fb361113e565b73ffffffffffffffffffffffffffffffffffffffff1614611009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100090613057565b60405180910390fd5b8060088190555050565b61101b611b1f565b73ffffffffffffffffffffffffffffffffffffffff1661103961113e565b73ffffffffffffffffffffffffffffffffffffffff161461108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108690613057565b60405180910390fd5b600047116110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c9906133e2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611118573d6000803e3d6000fd5b50565b600b6020528060005260406000206000915090505481565b668a8e4b1a3d800081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611bd081565b60606002805461117c90612e23565b80601f01602080910402602001604051908101604052809291908181526020018280546111a890612e23565b80156111f55780601f106111ca576101008083540402835291602001916111f5565b820191906000526020600020905b8154815290600101906020018083116111d857829003601f168201915b5050505050905090565b60085481565b61032081565b61032060095410156112fd576103208160095461122891906130a6565b1115611269576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112609061344e565b60405180910390fd5b60085481600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112b791906130a6565b11156112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef906134ba565b60405180910390fd5b611440565b611bd061032061130d91906130a6565b8160095461131b91906130a6565b111561135c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113539061344e565b60405180910390fd5b601481600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113a991906130a6565b11156113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e190613526565b60405180910390fd5b80668a8e4b1a3d80006113fd9190613546565b34101561143f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611436906135ec565b60405180910390fd5b5b600061144a610c54565b9050816009600082825461145e91906130a6565b9250508190555081600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114b491906130a6565b9250508190555060005b828110156114ef576114dc33836114d490613197565b935083611be0565b80806114e790613197565b9150506114be565b505050565b6114fc611b1f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156190613658565b60405180910390fd5b8060066000611577611b1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611624611b1f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116699190612795565b60405180910390a35050565b611686611680611b1f565b83611dae565b6116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90613252565b60405180910390fd5b6116d1848484846121ac565b50505050565b600a5481565b60606116e882611ab3565b611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e906136ea565b60405180910390fd5b6000611731612208565b90506000815111611751576040518060200160405280600081525061177c565b8061175b8461229a565b60405160200161176c929190613746565b6040516020818303038152906040525b915050919050565b61178c611b1f565b73ffffffffffffffffffffffffffffffffffffffff166117aa61113e565b73ffffffffffffffffffffffffffffffffffffffff1614611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790613057565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611f4081565b601481565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016118c7919061290f565b60206040518083038186803b1580156118df57600080fd5b505afa1580156118f3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191791906137a8565b73ffffffffffffffffffffffffffffffffffffffff16141561193d57600191505061194b565b61194784846123fb565b9150505b92915050565b611959611b1f565b73ffffffffffffffffffffffffffffffffffffffff1661197761113e565b73ffffffffffffffffffffffffffffffffffffffff16146119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c490613057565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3490613847565b60405180910390fd5b611a46816120e8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b9a83610d9b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c47906138b3565b60405180910390fd5b611c5981611ab3565b15611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c909061391f565b60405180910390fd5b611ca56000838361248f565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cf591906130a6565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000611db982611ab3565b611df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611def906139b1565b60405180910390fd5b6000611e0383610d9b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e7257508373ffffffffffffffffffffffffffffffffffffffff16611e5a8461095b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e835750611e82818561184f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611eac82610d9b565b73ffffffffffffffffffffffffffffffffffffffff1614611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990613a43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6990613ad5565b60405180910390fd5b611f7d83838361248f565b611f88600082611b27565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fd89190613af5565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461202f91906130a6565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121b7848484611e8c565b6121c384848484612494565b612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990613b9b565b60405180910390fd5b50505050565b60606007805461221790612e23565b80601f016020809104026020016040519081016040528092919081815260200182805461224390612e23565b80156122905780601f1061226557610100808354040283529160200191612290565b820191906000526020600020905b81548152906001019060200180831161227357829003601f168201915b5050505050905090565b606060008214156122e2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123f6565b600082905060005b600082146123145780806122fd90613197565b915050600a8261230d9190613bea565b91506122ea565b60008167ffffffffffffffff8111156123305761232f612c06565b5b6040519080825280601f01601f1916602001820160405280156123625781602001600182028036833780820191505090505b5090505b600085146123ef5760018261237b9190613af5565b9150600a8561238a9190613c1b565b603061239691906130a6565b60f81b8183815181106123ac576123ab613168565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123e89190613bea565b9450612366565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b505050565b60006124b58473ffffffffffffffffffffffffffffffffffffffff1661262b565b1561261e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124de611b1f565b8786866040518563ffffffff1660e01b81526004016125009493929190613ca1565b602060405180830381600087803b15801561251a57600080fd5b505af192505050801561254b57506040513d601f19601f820116820180604052508101906125489190613d02565b60015b6125ce573d806000811461257b576040519150601f19603f3d011682016040523d82523d6000602084013e612580565b606091505b506000815114156125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd90613b9b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612623565b600190505b949350505050565b600080823b905060008111915050919050565b82805461264a90612e23565b90600052602060002090601f01602090048101928261266c57600085556126b3565b82601f1061268557803560ff19168380011785556126b3565b828001600101855582156126b3579182015b828111156126b2578235825591602001919060010190612697565b5b5090506126c091906126c4565b5090565b5b808211156126dd5760008160009055506001016126c5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61272a816126f5565b811461273557600080fd5b50565b60008135905061274781612721565b92915050565b600060208284031215612763576127626126eb565b5b600061277184828501612738565b91505092915050565b60008115159050919050565b61278f8161277a565b82525050565b60006020820190506127aa6000830184612786565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127ea5780820151818401526020810190506127cf565b838111156127f9576000848401525b50505050565b6000601f19601f8301169050919050565b600061281b826127b0565b61282581856127bb565b93506128358185602086016127cc565b61283e816127ff565b840191505092915050565b600060208201905081810360008301526128638184612810565b905092915050565b6000819050919050565b61287e8161286b565b811461288957600080fd5b50565b60008135905061289b81612875565b92915050565b6000602082840312156128b7576128b66126eb565b5b60006128c58482850161288c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128f9826128ce565b9050919050565b612909816128ee565b82525050565b60006020820190506129246000830184612900565b92915050565b612933816128ee565b811461293e57600080fd5b50565b6000813590506129508161292a565b92915050565b6000806040838503121561296d5761296c6126eb565b5b600061297b85828601612941565b925050602061298c8582860161288c565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126129bb576129ba612996565b5b8235905067ffffffffffffffff8111156129d8576129d761299b565b5b6020830191508360208202830111156129f4576129f36129a0565b5b9250929050565b60008060208385031215612a1257612a116126eb565b5b600083013567ffffffffffffffff811115612a3057612a2f6126f0565b5b612a3c858286016129a5565b92509250509250929050565b612a518161286b565b82525050565b6000602082019050612a6c6000830184612a48565b92915050565b600080600060608486031215612a8b57612a8a6126eb565b5b6000612a9986828701612941565b9350506020612aaa86828701612941565b9250506040612abb8682870161288c565b9150509250925092565b60008083601f840112612adb57612ada612996565b5b8235905067ffffffffffffffff811115612af857612af761299b565b5b602083019150836001820283011115612b1457612b136129a0565b5b9250929050565b60008060208385031215612b3257612b316126eb565b5b600083013567ffffffffffffffff811115612b5057612b4f6126f0565b5b612b5c85828601612ac5565b92509250509250929050565b600060208284031215612b7e57612b7d6126eb565b5b6000612b8c84828501612941565b91505092915050565b612b9e8161277a565b8114612ba957600080fd5b50565b600081359050612bbb81612b95565b92915050565b60008060408385031215612bd857612bd76126eb565b5b6000612be685828601612941565b9250506020612bf785828601612bac565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c3e826127ff565b810181811067ffffffffffffffff82111715612c5d57612c5c612c06565b5b80604052505050565b6000612c706126e1565b9050612c7c8282612c35565b919050565b600067ffffffffffffffff821115612c9c57612c9b612c06565b5b612ca5826127ff565b9050602081019050919050565b82818337600083830152505050565b6000612cd4612ccf84612c81565b612c66565b905082815260208101848484011115612cf057612cef612c01565b5b612cfb848285612cb2565b509392505050565b600082601f830112612d1857612d17612996565b5b8135612d28848260208601612cc1565b91505092915050565b60008060008060808587031215612d4b57612d4a6126eb565b5b6000612d5987828801612941565b9450506020612d6a87828801612941565b9350506040612d7b8782880161288c565b925050606085013567ffffffffffffffff811115612d9c57612d9b6126f0565b5b612da887828801612d03565b91505092959194509250565b60008060408385031215612dcb57612dca6126eb565b5b6000612dd985828601612941565b9250506020612dea85828601612941565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e3b57607f821691505b60208210811415612e4f57612e4e612df4565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612eb1602c836127bb565b9150612ebc82612e55565b604082019050919050565b60006020820190508181036000830152612ee081612ea4565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f436021836127bb565b9150612f4e82612ee7565b604082019050919050565b60006020820190508181036000830152612f7281612f36565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612fd56038836127bb565b9150612fe082612f79565b604082019050919050565b6000602082019050818103600083015261300481612fc8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130416020836127bb565b915061304c8261300b565b602082019050919050565b6000602082019050818103600083015261307081613034565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130b18261286b565b91506130bc8361286b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130f1576130f0613077565b5b828201905092915050565b7f4d41584700000000000000000000000000000000000000000000000000000000600082015250565b60006131326004836127bb565b915061313d826130fc565b602082019050919050565b6000602082019050818103600083015261316181613125565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006131a28261286b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131d5576131d4613077565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061323c6031836127bb565b9150613247826131e0565b604082019050919050565b6000602082019050818103600083015261326b8161322f565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006132ce6029836127bb565b91506132d982613272565b604082019050919050565b600060208201905081810360008301526132fd816132c1565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613360602a836127bb565b915061336b82613304565b604082019050919050565b6000602082019050818103600083015261338f81613353565b9050919050565b7f5a45524f00000000000000000000000000000000000000000000000000000000600082015250565b60006133cc6004836127bb565b91506133d782613396565b602082019050919050565b600060208201905081810360008301526133fb816133bf565b9050919050565b7f4d41584c00000000000000000000000000000000000000000000000000000000600082015250565b60006134386004836127bb565b915061344382613402565b602082019050919050565b600060208201905081810360008301526134678161342b565b9050919050565b7f4d41584600000000000000000000000000000000000000000000000000000000600082015250565b60006134a46004836127bb565b91506134af8261346e565b602082019050919050565b600060208201905081810360008301526134d381613497565b9050919050565b7f4d41585000000000000000000000000000000000000000000000000000000000600082015250565b60006135106004836127bb565b915061351b826134da565b602082019050919050565b6000602082019050818103600083015261353f81613503565b9050919050565b60006135518261286b565b915061355c8361286b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561359557613594613077565b5b828202905092915050565b7f5345544800000000000000000000000000000000000000000000000000000000600082015250565b60006135d66004836127bb565b91506135e1826135a0565b602082019050919050565b60006020820190508181036000830152613605816135c9565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006136426019836127bb565b915061364d8261360c565b602082019050919050565b6000602082019050818103600083015261367181613635565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006136d4602f836127bb565b91506136df82613678565b604082019050919050565b60006020820190508181036000830152613703816136c7565b9050919050565b600081905092915050565b6000613720826127b0565b61372a818561370a565b935061373a8185602086016127cc565b80840191505092915050565b60006137528285613715565b915061375e8284613715565b91508190509392505050565b6000613775826128ee565b9050919050565b6137858161376a565b811461379057600080fd5b50565b6000815190506137a28161377c565b92915050565b6000602082840312156137be576137bd6126eb565b5b60006137cc84828501613793565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138316026836127bb565b915061383c826137d5565b604082019050919050565b6000602082019050818103600083015261386081613824565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061389d6020836127bb565b91506138a882613867565b602082019050919050565b600060208201905081810360008301526138cc81613890565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613909601c836127bb565b9150613914826138d3565b602082019050919050565b60006020820190508181036000830152613938816138fc565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061399b602c836127bb565b91506139a68261393f565b604082019050919050565b600060208201905081810360008301526139ca8161398e565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613a2d6029836127bb565b9150613a38826139d1565b604082019050919050565b60006020820190508181036000830152613a5c81613a20565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613abf6024836127bb565b9150613aca82613a63565b604082019050919050565b60006020820190508181036000830152613aee81613ab2565b9050919050565b6000613b008261286b565b9150613b0b8361286b565b925082821015613b1e57613b1d613077565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613b856032836127bb565b9150613b9082613b29565b604082019050919050565b60006020820190508181036000830152613bb481613b78565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613bf58261286b565b9150613c008361286b565b925082613c1057613c0f613bbb565b5b828204905092915050565b6000613c268261286b565b9150613c318361286b565b925082613c4157613c40613bbb565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000613c7382613c4c565b613c7d8185613c57565b9350613c8d8185602086016127cc565b613c96816127ff565b840191505092915050565b6000608082019050613cb66000830187612900565b613cc36020830186612900565b613cd06040830185612a48565b8181036060830152613ce28184613c68565b905095945050505050565b600081519050613cfc81612721565b92915050565b600060208284031215613d1857613d176126eb565b5b6000613d2684828501613ced565b9150509291505056fea264697066735822122090bc3bcc308602d2cd1bf173fed3b9dc577dfb6519d17459c385dd5739ad0c3564736f6c63430008090033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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