ETH Price: $2,433.53 (+5.86%)

Token

Numerati (#)
 

Overview

Max Total Supply

0 #

Holders

20

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

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:
Numerati

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-07
*/

// SPDX-License-Identifier: MIT

/*
 *  1111    111                                                 777    888
 *  11111   111                                                 777    888
 *  111111  111                                                 777
 *  1111111 111 222  222 333333333333   444444  5555555 666666  777777 888
 *  111 1111111 222  222 333 3333 3333 444  444 55555      6666 777    888
 *  111  111111 222  222 333  333  333 44444444 555    66666666 777    888
 *  111   11111 2222 222 333  333  333 4444     555    666  666 77777  888
 *  111    1111  2222222 333  333  333  444444  555    66666666  77777 888
 *
 *                0x12345678910f9de260d08f4e179103ce14cfd8eb
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

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

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

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

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

}

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

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

interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        require(_msgSender() == owner || ERC721.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 || ERC721.isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

contract Numerati is ERC721, Ownable {
	address public signer;
	uint256 public lastMint;
	uint256 public price = 123e15; // 0.123eth

	constructor (address _signer) ERC721("Numerati", "#")  {
		signer = _signer;
	}

	function setSigner(address _signer) public onlyOwner {
		signer = _signer;
	}

	function withdraw() public onlyOwner {
		payable(owner()).transfer(address(this).balance);
	}

	function buy(uint256 _num) public payable {
		require(msg.value >= price, "insufficient payment");
		_safeMint(msg.sender, _num);
		lastMint = _num;
	}

	function authClaim(uint256 _num, bytes memory _sig) public {
		require(verify(msg.sender, _num, _sig), "invalid signature");
		_safeMint(msg.sender, _num);
		lastMint = _num;
	}

	function verify(address _addr, uint256 _num, bytes memory _sig) public view returns (bool) {
		bytes32 digest = keccak256(abi.encodePacked(_addr, _num));
		(bytes32 r, bytes32 s, uint8 v) = splitSignature(_sig);
		return ecrecover(digest, v, r, s) == signer;
	}

	// https://solidity-by-example.org/signature/
	function splitSignature(bytes memory sig) public pure returns (bytes32 r, bytes32 s, uint8 v) {
		require(sig.length == 65, "invalid signature length");
		assembly {
			r := mload(add(sig, 32))
			s := mload(add(sig, 64))
			v := byte(0, mload(add(sig, 96)))
		}
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"},{"internalType":"bytes","name":"_sig","type":"bytes"}],"name":"authClaim","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":"_num","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastMint","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"splitSignature","outputs":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"},{"internalType":"bytes","name":"_sig","type":"bytes"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526701b4fbd92b5f80006009553480156200001d57600080fd5b50604051620038ee380380620038ee8339818101604052810190620000439190620002ab565b6040518060400160405280600881526020017f4e756d65726174690000000000000000000000000000000000000000000000008152506040518060400160405280600181526020017f23000000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c7929190620001e4565b508060019080519060200190620000e0929190620001e4565b5050506000620000f5620001dc60201b60201c565b905080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506200038a565b600033905090565b828054620001f2906200030b565b90600052602060002090601f01602090048101928262000216576000855562000262565b82601f106200023157805160ff191683800117855562000262565b8280016001018555821562000262579182015b828111156200026157825182559160200191906001019062000244565b5b50905062000271919062000275565b5090565b5b808211156200029057600081600090555060010162000276565b5090565b600081519050620002a58162000370565b92915050565b600060208284031215620002be57600080fd5b6000620002ce8482850162000294565b91505092915050565b6000620002e482620002eb565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200032457607f821691505b602082108114156200033b576200033a62000341565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200037b81620002d7565b81146200038757600080fd5b50565b613554806200039a6000396000f3fe6080604052600436106101665760003560e01c806370a08231116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461052a578063d96a094a14610567578063e985e9c514610583578063f2fde38b146105c057610166565b8063a22cb46514610499578063a7bb5803146104c2578063b88d4fde1461050157610166565b806370a082311461039b578063715018a6146103d85780638da5cb5b146103ef57806395d89b411461041a5780639aa5a5c514610445578063a035b1fe1461046e57610166565b80633ccfd60b116101235780633ccfd60b1461028d57806342842e0e146102a4578063586fc5b5146102cd5780636352211e146102f85780636c19e783146103355780636f576e061461035e57610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b314610210578063238ac9331461023957806323b872dd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612339565b6105e9565b60405161019f91906128b5565b60405180910390f35b3480156101b457600080fd5b506101bd6106cb565b6040516101ca919061294c565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f591906123cc565b61075d565b604051610207919061284e565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612296565b6107e2565b005b34801561024557600080fd5b5061024e6108fa565b60405161025b919061284e565b60405180910390f35b34801561027057600080fd5b5061028b60048036038101906102869190612190565b610920565b005b34801561029957600080fd5b506102a2610980565b005b3480156102b057600080fd5b506102cb60048036038101906102c69190612190565b610a4c565b005b3480156102d957600080fd5b506102e2610a6c565b6040516102ef9190612bce565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a91906123cc565b610a72565b60405161032c919061284e565b60405180910390f35b34801561034157600080fd5b5061035c6004803603810190610357919061212b565b610b24565b005b34801561036a57600080fd5b50610385600480360381019061038091906122d2565b610be4565b60405161039291906128b5565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd919061212b565b610cd2565b6040516103cf9190612bce565b60405180910390f35b3480156103e457600080fd5b506103ed610d8a565b005b3480156103fb57600080fd5b50610404610ec7565b604051610411919061284e565b60405180910390f35b34801561042657600080fd5b5061042f610ef1565b60405161043c919061294c565b60405180910390f35b34801561045157600080fd5b5061046c600480360381019061046791906123f5565b610f83565b005b34801561047a57600080fd5b50610483610fe2565b6040516104909190612bce565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb919061225a565b610fe8565b005b3480156104ce57600080fd5b506104e960048036038101906104e4919061238b565b611169565b6040516104f8939291906128d0565b60405180910390f35b34801561050d57600080fd5b50610528600480360381019061052391906121df565b6111d1565b005b34801561053657600080fd5b50610551600480360381019061054c91906123cc565b611233565b60405161055e919061294c565b60405180910390f35b610581600480360381019061057c91906123cc565b6112da565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190612154565b611333565b6040516105b791906128b5565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e2919061212b565b6113c7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c457506106c382611573565b5b9050919050565b6060600080546106da90612e0a565b80601f016020809104026020016040519081016040528092919081815260200182805461070690612e0a565b80156107535780601f1061072857610100808354040283529160200191610753565b820191906000526020600020905b81548152906001019060200180831161073657829003601f168201915b5050505050905090565b6000610768826115dd565b6107a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079e90612aee565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107ed82610a72565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561085e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085590612b6e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661087d611649565b73ffffffffffffffffffffffffffffffffffffffff1614806108ac57506108ab816108a6611649565b611333565b5b6108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290612a6e565b60405180910390fd5b6108f58383611651565b505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61093161092b611649565b8261170a565b610970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096790612b8e565b60405180910390fd5b61097b8383836117e8565b505050565b610988611649565b73ffffffffffffffffffffffffffffffffffffffff166109a6610ec7565b73ffffffffffffffffffffffffffffffffffffffff16146109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f390612b0e565b60405180910390fd5b610a04610ec7565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a49573d6000803e3d6000fd5b50565b610a67838383604051806020016040528060008152506111d1565b505050565b60085481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1290612aae565b60405180910390fd5b80915050919050565b610b2c611649565b73ffffffffffffffffffffffffffffffffffffffff16610b4a610ec7565b73ffffffffffffffffffffffffffffffffffffffff1614610ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9790612b0e565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808484604051602001610bfa9291906127fe565b6040516020818303038152906040528051906020012090506000806000610c2086611169565b925092509250600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660018583868660405160008152602001604052604051610c829493929190612907565b6020604051602081039080840390855afa158015610ca4573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16149450505050509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90612a8e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d92611649565b73ffffffffffffffffffffffffffffffffffffffff16610db0610ec7565b73ffffffffffffffffffffffffffffffffffffffff1614610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90612b0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f0090612e0a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2c90612e0a565b8015610f795780601f10610f4e57610100808354040283529160200191610f79565b820191906000526020600020905b815481529060010190602001808311610f5c57829003601f168201915b5050505050905090565b610f8e338383610be4565b610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc49061296e565b60405180910390fd5b610fd73383611a44565b816008819055505050565b60095481565b610ff0611649565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105590612a2e565b60405180910390fd5b806005600061106b611649565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611118611649565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161115d91906128b5565b60405180910390a35050565b600080600060418451146111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a990612bae565b60405180910390fd5b6020840151925060408401519150606084015160001a90509193909250565b6111e26111dc611649565b8361170a565b611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890612b8e565b60405180910390fd5b61122d84848484611a62565b50505050565b606061123e826115dd565b61127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490612b4e565b60405180910390fd5b6000611287611abe565b905060008151116112a757604051806020016040528060008152506112d2565b806112b184611ad5565b6040516020016112c292919061282a565b6040516020818303038152906040525b915050919050565b60095434101561131f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131690612a0e565b60405180910390fd5b6113293382611a44565b8060088190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113cf611649565b73ffffffffffffffffffffffffffffffffffffffff166113ed610ec7565b73ffffffffffffffffffffffffffffffffffffffff1614611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90612b0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa906129ae565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116c483610a72565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611715826115dd565b611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b90612a4e565b60405180910390fd5b600061175f83610a72565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117ce57508373ffffffffffffffffffffffffffffffffffffffff166117b68461075d565b73ffffffffffffffffffffffffffffffffffffffff16145b806117df57506117de8185611333565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661180882610a72565b73ffffffffffffffffffffffffffffffffffffffff161461185e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185590612b2e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c5906129ee565b60405180910390fd5b6118d9838383611c82565b6118e4600082611651565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119349190612d09565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461198b9190612c82565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611a5e828260405180602001604052806000815250611c87565b5050565b611a6d8484846117e8565b611a7984848484611ce2565b611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf9061298e565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606000821415611b1d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c7d565b600082905060005b60008214611b4f578080611b3890612e6d565b915050600a82611b489190612cd8565b9150611b25565b60008167ffffffffffffffff811115611b91577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611bc35781602001600182028036833780820191505090505b5090505b60008514611c7657600182611bdc9190612d09565b9150600a85611beb9190612ee4565b6030611bf79190612c82565b60f81b818381518110611c33577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c6f9190612cd8565b9450611bc7565b8093505050505b919050565b505050565b611c918383611e79565b611c9e6000848484611ce2565b611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd49061298e565b60405180910390fd5b505050565b6000611d038473ffffffffffffffffffffffffffffffffffffffff16612047565b15611e6c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d2c611649565b8786866040518563ffffffff1660e01b8152600401611d4e9493929190612869565b602060405180830381600087803b158015611d6857600080fd5b505af1925050508015611d9957506040513d601f19601f82011682018060405250810190611d969190612362565b60015b611e1c573d8060008114611dc9576040519150601f19603f3d011682016040523d82523d6000602084013e611dce565b606091505b50600081511415611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b9061298e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e71565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee090612ace565b60405180910390fd5b611ef2816115dd565b15611f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f29906129ce565b60405180910390fd5b611f3e60008383611c82565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f8e9190612c82565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b600061206d61206884612c0e565b612be9565b90508281526020810184848401111561208557600080fd5b612090848285612dc8565b509392505050565b6000813590506120a7816134c2565b92915050565b6000813590506120bc816134d9565b92915050565b6000813590506120d1816134f0565b92915050565b6000815190506120e6816134f0565b92915050565b600082601f8301126120fd57600080fd5b813561210d84826020860161205a565b91505092915050565b60008135905061212581613507565b92915050565b60006020828403121561213d57600080fd5b600061214b84828501612098565b91505092915050565b6000806040838503121561216757600080fd5b600061217585828601612098565b925050602061218685828601612098565b9150509250929050565b6000806000606084860312156121a557600080fd5b60006121b386828701612098565b93505060206121c486828701612098565b92505060406121d586828701612116565b9150509250925092565b600080600080608085870312156121f557600080fd5b600061220387828801612098565b945050602061221487828801612098565b935050604061222587828801612116565b925050606085013567ffffffffffffffff81111561224257600080fd5b61224e878288016120ec565b91505092959194509250565b6000806040838503121561226d57600080fd5b600061227b85828601612098565b925050602061228c858286016120ad565b9150509250929050565b600080604083850312156122a957600080fd5b60006122b785828601612098565b92505060206122c885828601612116565b9150509250929050565b6000806000606084860312156122e757600080fd5b60006122f586828701612098565b935050602061230686828701612116565b925050604084013567ffffffffffffffff81111561232357600080fd5b61232f868287016120ec565b9150509250925092565b60006020828403121561234b57600080fd5b6000612359848285016120c2565b91505092915050565b60006020828403121561237457600080fd5b6000612382848285016120d7565b91505092915050565b60006020828403121561239d57600080fd5b600082013567ffffffffffffffff8111156123b757600080fd5b6123c3848285016120ec565b91505092915050565b6000602082840312156123de57600080fd5b60006123ec84828501612116565b91505092915050565b6000806040838503121561240857600080fd5b600061241685828601612116565b925050602083013567ffffffffffffffff81111561243357600080fd5b61243f858286016120ec565b9150509250929050565b61245281612d3d565b82525050565b61246961246482612d3d565b612eb6565b82525050565b61247881612d4f565b82525050565b61248781612d5b565b82525050565b600061249882612c3f565b6124a28185612c55565b93506124b2818560208601612dd7565b6124bb81612fd1565b840191505092915050565b60006124d182612c4a565b6124db8185612c66565b93506124eb818560208601612dd7565b6124f481612fd1565b840191505092915050565b600061250a82612c4a565b6125148185612c77565b9350612524818560208601612dd7565b80840191505092915050565b600061253d601183612c66565b915061254882612fef565b602082019050919050565b6000612560603283612c66565b915061256b82613018565b604082019050919050565b6000612583602683612c66565b915061258e82613067565b604082019050919050565b60006125a6601c83612c66565b91506125b1826130b6565b602082019050919050565b60006125c9602483612c66565b91506125d4826130df565b604082019050919050565b60006125ec601483612c66565b91506125f78261312e565b602082019050919050565b600061260f601983612c66565b915061261a82613157565b602082019050919050565b6000612632602c83612c66565b915061263d82613180565b604082019050919050565b6000612655603883612c66565b9150612660826131cf565b604082019050919050565b6000612678602a83612c66565b91506126838261321e565b604082019050919050565b600061269b602983612c66565b91506126a68261326d565b604082019050919050565b60006126be602083612c66565b91506126c9826132bc565b602082019050919050565b60006126e1602c83612c66565b91506126ec826132e5565b604082019050919050565b6000612704602083612c66565b915061270f82613334565b602082019050919050565b6000612727602983612c66565b91506127328261335d565b604082019050919050565b600061274a602f83612c66565b9150612755826133ac565b604082019050919050565b600061276d602183612c66565b9150612778826133fb565b604082019050919050565b6000612790603183612c66565b915061279b8261344a565b604082019050919050565b60006127b3601883612c66565b91506127be82613499565b602082019050919050565b6127d281612db1565b82525050565b6127e96127e482612db1565b612eda565b82525050565b6127f881612dbb565b82525050565b600061280a8285612458565b60148201915061281a82846127d8565b6020820191508190509392505050565b600061283682856124ff565b915061284282846124ff565b91508190509392505050565b60006020820190506128636000830184612449565b92915050565b600060808201905061287e6000830187612449565b61288b6020830186612449565b61289860408301856127c9565b81810360608301526128aa818461248d565b905095945050505050565b60006020820190506128ca600083018461246f565b92915050565b60006060820190506128e5600083018661247e565b6128f2602083018561247e565b6128ff60408301846127ef565b949350505050565b600060808201905061291c600083018761247e565b61292960208301866127ef565b612936604083018561247e565b612943606083018461247e565b95945050505050565b6000602082019050818103600083015261296681846124c6565b905092915050565b6000602082019050818103600083015261298781612530565b9050919050565b600060208201905081810360008301526129a781612553565b9050919050565b600060208201905081810360008301526129c781612576565b9050919050565b600060208201905081810360008301526129e781612599565b9050919050565b60006020820190508181036000830152612a07816125bc565b9050919050565b60006020820190508181036000830152612a27816125df565b9050919050565b60006020820190508181036000830152612a4781612602565b9050919050565b60006020820190508181036000830152612a6781612625565b9050919050565b60006020820190508181036000830152612a8781612648565b9050919050565b60006020820190508181036000830152612aa78161266b565b9050919050565b60006020820190508181036000830152612ac78161268e565b9050919050565b60006020820190508181036000830152612ae7816126b1565b9050919050565b60006020820190508181036000830152612b07816126d4565b9050919050565b60006020820190508181036000830152612b27816126f7565b9050919050565b60006020820190508181036000830152612b478161271a565b9050919050565b60006020820190508181036000830152612b678161273d565b9050919050565b60006020820190508181036000830152612b8781612760565b9050919050565b60006020820190508181036000830152612ba781612783565b9050919050565b60006020820190508181036000830152612bc7816127a6565b9050919050565b6000602082019050612be360008301846127c9565b92915050565b6000612bf3612c04565b9050612bff8282612e3c565b919050565b6000604051905090565b600067ffffffffffffffff821115612c2957612c28612fa2565b5b612c3282612fd1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c8d82612db1565b9150612c9883612db1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ccd57612ccc612f15565b5b828201905092915050565b6000612ce382612db1565b9150612cee83612db1565b925082612cfe57612cfd612f44565b5b828204905092915050565b6000612d1482612db1565b9150612d1f83612db1565b925082821015612d3257612d31612f15565b5b828203905092915050565b6000612d4882612d91565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612df5578082015181840152602081019050612dda565b83811115612e04576000848401525b50505050565b60006002820490506001821680612e2257607f821691505b60208210811415612e3657612e35612f73565b5b50919050565b612e4582612fd1565b810181811067ffffffffffffffff82111715612e6457612e63612fa2565b5b80604052505050565b6000612e7882612db1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612eab57612eaa612f15565b5b600182019050919050565b6000612ec182612ec8565b9050919050565b6000612ed382612fe2565b9050919050565b6000819050919050565b6000612eef82612db1565b9150612efa83612db1565b925082612f0a57612f09612f44565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f696e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f696e76616c6964207369676e6174757265206c656e6774680000000000000000600082015250565b6134cb81612d3d565b81146134d657600080fd5b50565b6134e281612d4f565b81146134ed57600080fd5b50565b6134f981612d65565b811461350457600080fd5b50565b61351081612db1565b811461351b57600080fd5b5056fea2646970667358221220791d205057a4ee66d468fb9bb79680fe91ae2509cd159a4870f9098e6e58acd364736f6c6343000802003300000000000000000000000012345678910c6892bb1762a377516a26b8136548

Deployed Bytecode

0x6080604052600436106101665760003560e01c806370a08231116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461052a578063d96a094a14610567578063e985e9c514610583578063f2fde38b146105c057610166565b8063a22cb46514610499578063a7bb5803146104c2578063b88d4fde1461050157610166565b806370a082311461039b578063715018a6146103d85780638da5cb5b146103ef57806395d89b411461041a5780639aa5a5c514610445578063a035b1fe1461046e57610166565b80633ccfd60b116101235780633ccfd60b1461028d57806342842e0e146102a4578063586fc5b5146102cd5780636352211e146102f85780636c19e783146103355780636f576e061461035e57610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b314610210578063238ac9331461023957806323b872dd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612339565b6105e9565b60405161019f91906128b5565b60405180910390f35b3480156101b457600080fd5b506101bd6106cb565b6040516101ca919061294c565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f591906123cc565b61075d565b604051610207919061284e565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612296565b6107e2565b005b34801561024557600080fd5b5061024e6108fa565b60405161025b919061284e565b60405180910390f35b34801561027057600080fd5b5061028b60048036038101906102869190612190565b610920565b005b34801561029957600080fd5b506102a2610980565b005b3480156102b057600080fd5b506102cb60048036038101906102c69190612190565b610a4c565b005b3480156102d957600080fd5b506102e2610a6c565b6040516102ef9190612bce565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a91906123cc565b610a72565b60405161032c919061284e565b60405180910390f35b34801561034157600080fd5b5061035c6004803603810190610357919061212b565b610b24565b005b34801561036a57600080fd5b50610385600480360381019061038091906122d2565b610be4565b60405161039291906128b5565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd919061212b565b610cd2565b6040516103cf9190612bce565b60405180910390f35b3480156103e457600080fd5b506103ed610d8a565b005b3480156103fb57600080fd5b50610404610ec7565b604051610411919061284e565b60405180910390f35b34801561042657600080fd5b5061042f610ef1565b60405161043c919061294c565b60405180910390f35b34801561045157600080fd5b5061046c600480360381019061046791906123f5565b610f83565b005b34801561047a57600080fd5b50610483610fe2565b6040516104909190612bce565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb919061225a565b610fe8565b005b3480156104ce57600080fd5b506104e960048036038101906104e4919061238b565b611169565b6040516104f8939291906128d0565b60405180910390f35b34801561050d57600080fd5b50610528600480360381019061052391906121df565b6111d1565b005b34801561053657600080fd5b50610551600480360381019061054c91906123cc565b611233565b60405161055e919061294c565b60405180910390f35b610581600480360381019061057c91906123cc565b6112da565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190612154565b611333565b6040516105b791906128b5565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e2919061212b565b6113c7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c457506106c382611573565b5b9050919050565b6060600080546106da90612e0a565b80601f016020809104026020016040519081016040528092919081815260200182805461070690612e0a565b80156107535780601f1061072857610100808354040283529160200191610753565b820191906000526020600020905b81548152906001019060200180831161073657829003601f168201915b5050505050905090565b6000610768826115dd565b6107a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079e90612aee565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107ed82610a72565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561085e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085590612b6e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661087d611649565b73ffffffffffffffffffffffffffffffffffffffff1614806108ac57506108ab816108a6611649565b611333565b5b6108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290612a6e565b60405180910390fd5b6108f58383611651565b505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61093161092b611649565b8261170a565b610970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096790612b8e565b60405180910390fd5b61097b8383836117e8565b505050565b610988611649565b73ffffffffffffffffffffffffffffffffffffffff166109a6610ec7565b73ffffffffffffffffffffffffffffffffffffffff16146109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f390612b0e565b60405180910390fd5b610a04610ec7565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a49573d6000803e3d6000fd5b50565b610a67838383604051806020016040528060008152506111d1565b505050565b60085481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1290612aae565b60405180910390fd5b80915050919050565b610b2c611649565b73ffffffffffffffffffffffffffffffffffffffff16610b4a610ec7565b73ffffffffffffffffffffffffffffffffffffffff1614610ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9790612b0e565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808484604051602001610bfa9291906127fe565b6040516020818303038152906040528051906020012090506000806000610c2086611169565b925092509250600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660018583868660405160008152602001604052604051610c829493929190612907565b6020604051602081039080840390855afa158015610ca4573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16149450505050509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90612a8e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d92611649565b73ffffffffffffffffffffffffffffffffffffffff16610db0610ec7565b73ffffffffffffffffffffffffffffffffffffffff1614610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90612b0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f0090612e0a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2c90612e0a565b8015610f795780601f10610f4e57610100808354040283529160200191610f79565b820191906000526020600020905b815481529060010190602001808311610f5c57829003601f168201915b5050505050905090565b610f8e338383610be4565b610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc49061296e565b60405180910390fd5b610fd73383611a44565b816008819055505050565b60095481565b610ff0611649565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105590612a2e565b60405180910390fd5b806005600061106b611649565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611118611649565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161115d91906128b5565b60405180910390a35050565b600080600060418451146111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a990612bae565b60405180910390fd5b6020840151925060408401519150606084015160001a90509193909250565b6111e26111dc611649565b8361170a565b611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890612b8e565b60405180910390fd5b61122d84848484611a62565b50505050565b606061123e826115dd565b61127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490612b4e565b60405180910390fd5b6000611287611abe565b905060008151116112a757604051806020016040528060008152506112d2565b806112b184611ad5565b6040516020016112c292919061282a565b6040516020818303038152906040525b915050919050565b60095434101561131f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131690612a0e565b60405180910390fd5b6113293382611a44565b8060088190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113cf611649565b73ffffffffffffffffffffffffffffffffffffffff166113ed610ec7565b73ffffffffffffffffffffffffffffffffffffffff1614611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90612b0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa906129ae565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116c483610a72565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611715826115dd565b611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b90612a4e565b60405180910390fd5b600061175f83610a72565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117ce57508373ffffffffffffffffffffffffffffffffffffffff166117b68461075d565b73ffffffffffffffffffffffffffffffffffffffff16145b806117df57506117de8185611333565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661180882610a72565b73ffffffffffffffffffffffffffffffffffffffff161461185e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185590612b2e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c5906129ee565b60405180910390fd5b6118d9838383611c82565b6118e4600082611651565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119349190612d09565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461198b9190612c82565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611a5e828260405180602001604052806000815250611c87565b5050565b611a6d8484846117e8565b611a7984848484611ce2565b611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf9061298e565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606000821415611b1d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c7d565b600082905060005b60008214611b4f578080611b3890612e6d565b915050600a82611b489190612cd8565b9150611b25565b60008167ffffffffffffffff811115611b91577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611bc35781602001600182028036833780820191505090505b5090505b60008514611c7657600182611bdc9190612d09565b9150600a85611beb9190612ee4565b6030611bf79190612c82565b60f81b818381518110611c33577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c6f9190612cd8565b9450611bc7565b8093505050505b919050565b505050565b611c918383611e79565b611c9e6000848484611ce2565b611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd49061298e565b60405180910390fd5b505050565b6000611d038473ffffffffffffffffffffffffffffffffffffffff16612047565b15611e6c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d2c611649565b8786866040518563ffffffff1660e01b8152600401611d4e9493929190612869565b602060405180830381600087803b158015611d6857600080fd5b505af1925050508015611d9957506040513d601f19601f82011682018060405250810190611d969190612362565b60015b611e1c573d8060008114611dc9576040519150601f19603f3d011682016040523d82523d6000602084013e611dce565b606091505b50600081511415611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b9061298e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e71565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee090612ace565b60405180910390fd5b611ef2816115dd565b15611f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f29906129ce565b60405180910390fd5b611f3e60008383611c82565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f8e9190612c82565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b600061206d61206884612c0e565b612be9565b90508281526020810184848401111561208557600080fd5b612090848285612dc8565b509392505050565b6000813590506120a7816134c2565b92915050565b6000813590506120bc816134d9565b92915050565b6000813590506120d1816134f0565b92915050565b6000815190506120e6816134f0565b92915050565b600082601f8301126120fd57600080fd5b813561210d84826020860161205a565b91505092915050565b60008135905061212581613507565b92915050565b60006020828403121561213d57600080fd5b600061214b84828501612098565b91505092915050565b6000806040838503121561216757600080fd5b600061217585828601612098565b925050602061218685828601612098565b9150509250929050565b6000806000606084860312156121a557600080fd5b60006121b386828701612098565b93505060206121c486828701612098565b92505060406121d586828701612116565b9150509250925092565b600080600080608085870312156121f557600080fd5b600061220387828801612098565b945050602061221487828801612098565b935050604061222587828801612116565b925050606085013567ffffffffffffffff81111561224257600080fd5b61224e878288016120ec565b91505092959194509250565b6000806040838503121561226d57600080fd5b600061227b85828601612098565b925050602061228c858286016120ad565b9150509250929050565b600080604083850312156122a957600080fd5b60006122b785828601612098565b92505060206122c885828601612116565b9150509250929050565b6000806000606084860312156122e757600080fd5b60006122f586828701612098565b935050602061230686828701612116565b925050604084013567ffffffffffffffff81111561232357600080fd5b61232f868287016120ec565b9150509250925092565b60006020828403121561234b57600080fd5b6000612359848285016120c2565b91505092915050565b60006020828403121561237457600080fd5b6000612382848285016120d7565b91505092915050565b60006020828403121561239d57600080fd5b600082013567ffffffffffffffff8111156123b757600080fd5b6123c3848285016120ec565b91505092915050565b6000602082840312156123de57600080fd5b60006123ec84828501612116565b91505092915050565b6000806040838503121561240857600080fd5b600061241685828601612116565b925050602083013567ffffffffffffffff81111561243357600080fd5b61243f858286016120ec565b9150509250929050565b61245281612d3d565b82525050565b61246961246482612d3d565b612eb6565b82525050565b61247881612d4f565b82525050565b61248781612d5b565b82525050565b600061249882612c3f565b6124a28185612c55565b93506124b2818560208601612dd7565b6124bb81612fd1565b840191505092915050565b60006124d182612c4a565b6124db8185612c66565b93506124eb818560208601612dd7565b6124f481612fd1565b840191505092915050565b600061250a82612c4a565b6125148185612c77565b9350612524818560208601612dd7565b80840191505092915050565b600061253d601183612c66565b915061254882612fef565b602082019050919050565b6000612560603283612c66565b915061256b82613018565b604082019050919050565b6000612583602683612c66565b915061258e82613067565b604082019050919050565b60006125a6601c83612c66565b91506125b1826130b6565b602082019050919050565b60006125c9602483612c66565b91506125d4826130df565b604082019050919050565b60006125ec601483612c66565b91506125f78261312e565b602082019050919050565b600061260f601983612c66565b915061261a82613157565b602082019050919050565b6000612632602c83612c66565b915061263d82613180565b604082019050919050565b6000612655603883612c66565b9150612660826131cf565b604082019050919050565b6000612678602a83612c66565b91506126838261321e565b604082019050919050565b600061269b602983612c66565b91506126a68261326d565b604082019050919050565b60006126be602083612c66565b91506126c9826132bc565b602082019050919050565b60006126e1602c83612c66565b91506126ec826132e5565b604082019050919050565b6000612704602083612c66565b915061270f82613334565b602082019050919050565b6000612727602983612c66565b91506127328261335d565b604082019050919050565b600061274a602f83612c66565b9150612755826133ac565b604082019050919050565b600061276d602183612c66565b9150612778826133fb565b604082019050919050565b6000612790603183612c66565b915061279b8261344a565b604082019050919050565b60006127b3601883612c66565b91506127be82613499565b602082019050919050565b6127d281612db1565b82525050565b6127e96127e482612db1565b612eda565b82525050565b6127f881612dbb565b82525050565b600061280a8285612458565b60148201915061281a82846127d8565b6020820191508190509392505050565b600061283682856124ff565b915061284282846124ff565b91508190509392505050565b60006020820190506128636000830184612449565b92915050565b600060808201905061287e6000830187612449565b61288b6020830186612449565b61289860408301856127c9565b81810360608301526128aa818461248d565b905095945050505050565b60006020820190506128ca600083018461246f565b92915050565b60006060820190506128e5600083018661247e565b6128f2602083018561247e565b6128ff60408301846127ef565b949350505050565b600060808201905061291c600083018761247e565b61292960208301866127ef565b612936604083018561247e565b612943606083018461247e565b95945050505050565b6000602082019050818103600083015261296681846124c6565b905092915050565b6000602082019050818103600083015261298781612530565b9050919050565b600060208201905081810360008301526129a781612553565b9050919050565b600060208201905081810360008301526129c781612576565b9050919050565b600060208201905081810360008301526129e781612599565b9050919050565b60006020820190508181036000830152612a07816125bc565b9050919050565b60006020820190508181036000830152612a27816125df565b9050919050565b60006020820190508181036000830152612a4781612602565b9050919050565b60006020820190508181036000830152612a6781612625565b9050919050565b60006020820190508181036000830152612a8781612648565b9050919050565b60006020820190508181036000830152612aa78161266b565b9050919050565b60006020820190508181036000830152612ac78161268e565b9050919050565b60006020820190508181036000830152612ae7816126b1565b9050919050565b60006020820190508181036000830152612b07816126d4565b9050919050565b60006020820190508181036000830152612b27816126f7565b9050919050565b60006020820190508181036000830152612b478161271a565b9050919050565b60006020820190508181036000830152612b678161273d565b9050919050565b60006020820190508181036000830152612b8781612760565b9050919050565b60006020820190508181036000830152612ba781612783565b9050919050565b60006020820190508181036000830152612bc7816127a6565b9050919050565b6000602082019050612be360008301846127c9565b92915050565b6000612bf3612c04565b9050612bff8282612e3c565b919050565b6000604051905090565b600067ffffffffffffffff821115612c2957612c28612fa2565b5b612c3282612fd1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c8d82612db1565b9150612c9883612db1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ccd57612ccc612f15565b5b828201905092915050565b6000612ce382612db1565b9150612cee83612db1565b925082612cfe57612cfd612f44565b5b828204905092915050565b6000612d1482612db1565b9150612d1f83612db1565b925082821015612d3257612d31612f15565b5b828203905092915050565b6000612d4882612d91565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612df5578082015181840152602081019050612dda565b83811115612e04576000848401525b50505050565b60006002820490506001821680612e2257607f821691505b60208210811415612e3657612e35612f73565b5b50919050565b612e4582612fd1565b810181811067ffffffffffffffff82111715612e6457612e63612fa2565b5b80604052505050565b6000612e7882612db1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612eab57612eaa612f15565b5b600182019050919050565b6000612ec182612ec8565b9050919050565b6000612ed382612fe2565b9050919050565b6000819050919050565b6000612eef82612db1565b9150612efa83612db1565b925082612f0a57612f09612f44565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f696e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f696e76616c6964207369676e6174757265206c656e6774680000000000000000600082015250565b6134cb81612d3d565b81146134d657600080fd5b50565b6134e281612d4f565b81146134ed57600080fd5b50565b6134f981612d65565b811461350457600080fd5b50565b61351081612db1565b811461351b57600080fd5b5056fea2646970667358221220791d205057a4ee66d468fb9bb79680fe91ae2509cd159a4870f9098e6e58acd364736f6c63430008020033

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

00000000000000000000000012345678910c6892bb1762a377516a26b8136548

-----Decoded View---------------
Arg [0] : _signer (address): 0x12345678910C6892bB1762a377516a26B8136548

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000012345678910c6892bb1762a377516a26b8136548


Deployed Bytecode Sourcemap

32560:1349:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20742:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21674:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23141:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22671:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32601:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24031:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32870:95;;;;;;;;;;;;;:::i;:::-;;24407:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32626:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21368:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32786:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33316:265;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21098:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13178:148;;;;;;;;;;;;;:::i;:::-;;12527:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21843:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33130:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32653:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23434:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33634:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;24629:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22018:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32970:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23800:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13481:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20742:292;20844:4;20883:25;20868:40;;;:11;:40;;;;:105;;;;20940:33;20925:48;;;:11;:48;;;;20868:105;:158;;;;20990:36;21014:11;20990:23;:36::i;:::-;20868:158;20861:165;;20742:292;;;:::o;21674:100::-;21728:13;21761:5;21754:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21674:100;:::o;23141:221::-;23217:7;23245:16;23253:7;23245;:16::i;:::-;23237:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23330:15;:24;23346:7;23330:24;;;;;;;;;;;;;;;;;;;;;23323:31;;23141:221;;;:::o;22671:404::-;22752:13;22768:23;22783:7;22768:14;:23::i;:::-;22752:39;;22816:5;22810:11;;:2;:11;;;;22802:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22896:5;22880:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;22905:44;22929:5;22936:12;:10;:12::i;:::-;22905:23;:44::i;:::-;22880:69;22872:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;23046:21;23055:2;23059:7;23046:8;:21::i;:::-;22671:404;;;:::o;32601:21::-;;;;;;;;;;;;;:::o;24031:305::-;24192:41;24211:12;:10;:12::i;:::-;24225:7;24192:18;:41::i;:::-;24184:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24300:28;24310:4;24316:2;24320:7;24300:9;:28::i;:::-;24031:305;;;:::o;32870:95::-;12758:12;:10;:12::i;:::-;12747:23;;:7;:5;:7::i;:::-;:23;;;12739:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32920:7:::1;:5;:7::i;:::-;32912:25;;:48;32938:21;32912:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;32870:95::o:0;24407:151::-;24511:39;24528:4;24534:2;24538:7;24511:39;;;;;;;;;;;;:16;:39::i;:::-;24407:151;;;:::o;32626:23::-;;;;:::o;21368:239::-;21440:7;21460:13;21476:7;:16;21484:7;21476:16;;;;;;;;;;;;;;;;;;;;;21460:32;;21528:1;21511:19;;:5;:19;;;;21503:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21594:5;21587:12;;;21368:239;;;:::o;32786:79::-;12758:12;:10;:12::i;:::-;12747:23;;:7;:5;:7::i;:::-;:23;;;12739:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32853:7:::1;32844:6;;:16;;;;;;;;;;;;;;;;;;32786:79:::0;:::o;33316:265::-;33401:4;33412:14;33456:5;33463:4;33439:29;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33429:40;;;;;;33412:57;;33475:9;33486;33497:7;33508:20;33523:4;33508:14;:20::i;:::-;33474:54;;;;;;33570:6;;;;;;;;;;;33540:36;;:26;33550:6;33558:1;33561;33564;33540:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;33533:43;;;;;;33316:265;;;;;:::o;21098:208::-;21170:7;21215:1;21198:19;;:5;:19;;;;21190:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21282:9;:16;21292:5;21282:16;;;;;;;;;;;;;;;;21275:23;;21098:208;;;:::o;13178:148::-;12758:12;:10;:12::i;:::-;12747:23;;:7;:5;:7::i;:::-;:23;;;12739:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13285:1:::1;13248:40;;13269:6;;;;;;;;;;;13248:40;;;;;;;;;;;;13316:1;13299:6;;:19;;;;;;;;;;;;;;;;;;13178:148::o:0;12527:87::-;12573:7;12600:6;;;;;;;;;;;12593:13;;12527:87;:::o;21843:104::-;21899:13;21932:7;21925:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21843:104;:::o;33130:181::-;33202:30;33209:10;33221:4;33227;33202:6;:30::i;:::-;33194:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;33259:27;33269:10;33281:4;33259:9;:27::i;:::-;33302:4;33291:8;:15;;;;33130:181;;:::o;32653:29::-;;;;:::o;23434:295::-;23549:12;:10;:12::i;:::-;23537:24;;:8;:24;;;;23529:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23649:8;23604:18;:32;23623:12;:10;:12::i;:::-;23604:32;;;;;;;;;;;;;;;:42;23637:8;23604:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23702:8;23673:48;;23688:12;:10;:12::i;:::-;23673:48;;;23712:8;23673:48;;;;;;:::i;:::-;;;;;;;;23434:295;;:::o;33634:272::-;33697:9;33708;33719:7;33755:2;33741:3;:10;:16;33733:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;33826:2;33821:3;33817:12;33811:19;33806:24;;33855:2;33850:3;33846:12;33840:19;33835:24;;33892:2;33887:3;33883:12;33877:19;33874:1;33869:28;33864:33;;33800:102;;;;;:::o;24629:285::-;24761:41;24780:12;:10;:12::i;:::-;24794:7;24761:18;:41::i;:::-;24753:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24867:39;24881:4;24887:2;24891:7;24900:5;24867:13;:39::i;:::-;24629:285;;;;:::o;22018:360::-;22091:13;22125:16;22133:7;22125;:16::i;:::-;22117:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22206:21;22230:10;:8;:10::i;:::-;22206:34;;22282:1;22264:7;22258:21;:25;:112;;;;;;;;;;;;;;;;;22323:7;22332:18;:7;:16;:18::i;:::-;22306:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22258:112;22251:119;;;22018:360;;;:::o;32970:155::-;33038:5;;33025:9;:18;;33017:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;33073:27;33083:10;33095:4;33073:9;:27::i;:::-;33116:4;33105:8;:15;;;;32970:155;:::o;23800:164::-;23897:4;23921:18;:25;23940:5;23921:25;;;;;;;;;;;;;;;:35;23947:8;23921:35;;;;;;;;;;;;;;;;;;;;;;;;;23914:42;;23800:164;;;;:::o;13481:244::-;12758:12;:10;:12::i;:::-;12747:23;;:7;:5;:7::i;:::-;:23;;;12739:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13590:1:::1;13570:22;;:8;:22;;;;13562:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13680:8;13651:38;;13672:6;;;;;;;;;;;13651:38;;;;;;;;;;;;13709:8;13700:6;;:17;;;;;;;;;;;;;;;;;;13481:244:::0;:::o;13839:157::-;13924:4;13963:25;13948:40;;;:11;:40;;;;13941:47;;13839:157;;;:::o;26381:127::-;26446:4;26498:1;26470:30;;:7;:16;26478:7;26470:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26463:37;;26381:127;;;:::o;8615:98::-;8668:7;8695:10;8688:17;;8615:98;:::o;30265:174::-;30367:2;30340:15;:24;30356:7;30340:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30423:7;30419:2;30385:46;;30394:23;30409:7;30394:14;:23::i;:::-;30385:46;;;;;;;;;;;;30265:174;;:::o;26675:355::-;26768:4;26793:16;26801:7;26793;:16::i;:::-;26785:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26869:13;26885:23;26900:7;26885:14;:23::i;:::-;26869:39;;26938:5;26927:16;;:7;:16;;;:51;;;;26971:7;26947:31;;:20;26959:7;26947:11;:20::i;:::-;:31;;;26927:51;:94;;;;26982:39;27006:5;27013:7;26982:23;:39::i;:::-;26927:94;26919:103;;;26675:355;;;;:::o;29603:544::-;29728:4;29701:31;;:23;29716:7;29701:14;:23::i;:::-;:31;;;29693:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29811:1;29797:16;;:2;:16;;;;29789:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29867:39;29888:4;29894:2;29898:7;29867:20;:39::i;:::-;29971:29;29988:1;29992:7;29971:8;:29::i;:::-;30032:1;30013:9;:15;30023:4;30013:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30061:1;30044:9;:13;30054:2;30044:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30092:2;30073:7;:16;30081:7;30073:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30131:7;30127:2;30112:27;;30121:4;30112:27;;;;;;;;;;;;29603:544;;;:::o;27372:110::-;27448:26;27458:2;27462:7;27448:26;;;;;;;;;;;;:9;:26::i;:::-;27372:110;;:::o;25796:272::-;25910:28;25920:4;25926:2;25930:7;25910:9;:28::i;:::-;25957:48;25980:4;25986:2;25990:7;25999:5;25957:22;:48::i;:::-;25949:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25796:272;;;;:::o;22515:94::-;22566:13;22592:9;;;;;;;;;;;;;;22515:94;:::o;9147:723::-;9203:13;9433:1;9424:5;:10;9420:53;;;9451:10;;;;;;;;;;;;;;;;;;;;;9420:53;9483:12;9498:5;9483:20;;9514:14;9539:78;9554:1;9546:4;:9;9539:78;;9572:8;;;;;:::i;:::-;;;;9603:2;9595:10;;;;;:::i;:::-;;;9539:78;;;9627:19;9659:6;9649:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9627:39;;9677:154;9693:1;9684:5;:10;9677:154;;9721:1;9711:11;;;;;:::i;:::-;;;9788:2;9780:5;:10;;;;:::i;:::-;9767:2;:24;;;;:::i;:::-;9754:39;;9737:6;9744;9737:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;9817:2;9808:11;;;;;:::i;:::-;;;9677:154;;;9855:6;9841:21;;;;;9147:723;;;;:::o;32460:93::-;;;;:::o;27709:250::-;27805:18;27811:2;27815:7;27805:5;:18::i;:::-;27842:54;27873:1;27877:2;27881:7;27890:5;27842:22;:54::i;:::-;27834:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;27709:250;;;:::o;31004:843::-;31125:4;31151:15;:2;:13;;;:15::i;:::-;31147:693;;;31203:2;31187:36;;;31224:12;:10;:12::i;:::-;31238:4;31244:7;31253:5;31187:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31183:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31450:1;31433:6;:13;:18;31429:341;;;31476:60;;;;;;;;;;:::i;:::-;;;;;;;;31429:341;31720:6;31714:13;31705:6;31701:2;31697:15;31690:38;31183:602;31320:45;;;31310:55;;;:6;:55;;;;31303:62;;;;;31147:693;31824:4;31817:11;;31004:843;;;;;;;:::o;28295:382::-;28389:1;28375:16;;:2;:16;;;;28367:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28448:16;28456:7;28448;:16::i;:::-;28447:17;28439:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28510:45;28539:1;28543:2;28547:7;28510:20;:45::i;:::-;28585:1;28568:9;:13;28578:2;28568:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28616:2;28597:7;:16;28605:7;28597:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28661:7;28657:2;28636:33;;28653:1;28636:33;;;;;;;;;;;;28295:382;;:::o;1323:422::-;1383:4;1591:12;1702:7;1690:20;1682:28;;1736:1;1729:4;:8;1722:15;;;1323:422;;;:::o;7:343:1:-;;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;501:133::-;;582:6;569:20;560:29;;598:30;622:5;598:30;:::i;:::-;550:84;;;;:::o;640:137::-;;723:6;710:20;701:29;;739:32;765:5;739:32;:::i;:::-;691:86;;;;:::o;783:141::-;;870:6;864:13;855:22;;886:32;912:5;886:32;:::i;:::-;845:79;;;;:::o;943:271::-;;1047:3;1040:4;1032:6;1028:17;1024:27;1014:2;;1065:1;1062;1055:12;1014:2;1105:6;1092:20;1130:78;1204:3;1196:6;1189:4;1181:6;1177:17;1130:78;:::i;:::-;1121:87;;1004:210;;;;;:::o;1220:139::-;;1304:6;1291:20;1282:29;;1320:33;1347:5;1320:33;:::i;:::-;1272:87;;;;:::o;1365:262::-;;1473:2;1461:9;1452:7;1448:23;1444:32;1441:2;;;1489:1;1486;1479:12;1441:2;1532:1;1557:53;1602:7;1593:6;1582:9;1578:22;1557:53;:::i;:::-;1547:63;;1503:117;1431:196;;;;:::o;1633:407::-;;;1758:2;1746:9;1737:7;1733:23;1729:32;1726:2;;;1774:1;1771;1764:12;1726:2;1817:1;1842:53;1887:7;1878:6;1867:9;1863:22;1842:53;:::i;:::-;1832:63;;1788:117;1944:2;1970:53;2015:7;2006:6;1995:9;1991:22;1970:53;:::i;:::-;1960:63;;1915:118;1716:324;;;;;:::o;2046:552::-;;;;2188:2;2176:9;2167:7;2163:23;2159:32;2156:2;;;2204:1;2201;2194:12;2156:2;2247:1;2272:53;2317:7;2308:6;2297:9;2293:22;2272:53;:::i;:::-;2262:63;;2218:117;2374:2;2400:53;2445:7;2436:6;2425:9;2421:22;2400:53;:::i;:::-;2390:63;;2345:118;2502:2;2528:53;2573:7;2564:6;2553:9;2549:22;2528:53;:::i;:::-;2518:63;;2473:118;2146:452;;;;;:::o;2604:809::-;;;;;2772:3;2760:9;2751:7;2747:23;2743:33;2740:2;;;2789:1;2786;2779:12;2740:2;2832:1;2857:53;2902:7;2893:6;2882:9;2878:22;2857:53;:::i;:::-;2847:63;;2803:117;2959:2;2985:53;3030:7;3021:6;3010:9;3006:22;2985:53;:::i;:::-;2975:63;;2930:118;3087:2;3113:53;3158:7;3149:6;3138:9;3134:22;3113:53;:::i;:::-;3103:63;;3058:118;3243:2;3232:9;3228:18;3215:32;3274:18;3266:6;3263:30;3260:2;;;3306:1;3303;3296:12;3260:2;3334:62;3388:7;3379:6;3368:9;3364:22;3334:62;:::i;:::-;3324:72;;3186:220;2730:683;;;;;;;:::o;3419:401::-;;;3541:2;3529:9;3520:7;3516:23;3512:32;3509:2;;;3557:1;3554;3547:12;3509:2;3600:1;3625:53;3670:7;3661:6;3650:9;3646:22;3625:53;:::i;:::-;3615:63;;3571:117;3727:2;3753:50;3795:7;3786:6;3775:9;3771:22;3753:50;:::i;:::-;3743:60;;3698:115;3499:321;;;;;:::o;3826:407::-;;;3951:2;3939:9;3930:7;3926:23;3922:32;3919:2;;;3967:1;3964;3957:12;3919:2;4010:1;4035:53;4080:7;4071:6;4060:9;4056:22;4035:53;:::i;:::-;4025:63;;3981:117;4137:2;4163:53;4208:7;4199:6;4188:9;4184:22;4163:53;:::i;:::-;4153:63;;4108:118;3909:324;;;;;:::o;4239:663::-;;;;4390:2;4378:9;4369:7;4365:23;4361:32;4358:2;;;4406:1;4403;4396:12;4358:2;4449:1;4474:53;4519:7;4510:6;4499:9;4495:22;4474:53;:::i;:::-;4464:63;;4420:117;4576:2;4602:53;4647:7;4638:6;4627:9;4623:22;4602:53;:::i;:::-;4592:63;;4547:118;4732:2;4721:9;4717:18;4704:32;4763:18;4755:6;4752:30;4749:2;;;4795:1;4792;4785:12;4749:2;4823:62;4877:7;4868:6;4857:9;4853:22;4823:62;:::i;:::-;4813:72;;4675:220;4348:554;;;;;:::o;4908:260::-;;5015:2;5003:9;4994:7;4990:23;4986:32;4983:2;;;5031:1;5028;5021:12;4983:2;5074:1;5099:52;5143:7;5134:6;5123:9;5119:22;5099:52;:::i;:::-;5089:62;;5045:116;4973:195;;;;:::o;5174:282::-;;5292:2;5280:9;5271:7;5267:23;5263:32;5260:2;;;5308:1;5305;5298:12;5260:2;5351:1;5376:63;5431:7;5422:6;5411:9;5407:22;5376:63;:::i;:::-;5366:73;;5322:127;5250:206;;;;:::o;5462:373::-;;5579:2;5567:9;5558:7;5554:23;5550:32;5547:2;;;5595:1;5592;5585:12;5547:2;5666:1;5655:9;5651:17;5638:31;5696:18;5688:6;5685:30;5682:2;;;5728:1;5725;5718:12;5682:2;5756:62;5810:7;5801:6;5790:9;5786:22;5756:62;:::i;:::-;5746:72;;5609:219;5537:298;;;;:::o;5841:262::-;;5949:2;5937:9;5928:7;5924:23;5920:32;5917:2;;;5965:1;5962;5955:12;5917:2;6008:1;6033:53;6078:7;6069:6;6058:9;6054:22;6033:53;:::i;:::-;6023:63;;5979:117;5907:196;;;;:::o;6109:518::-;;;6243:2;6231:9;6222:7;6218:23;6214:32;6211:2;;;6259:1;6256;6249:12;6211:2;6302:1;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6273:117;6457:2;6446:9;6442:18;6429:32;6488:18;6480:6;6477:30;6474:2;;;6520:1;6517;6510:12;6474:2;6548:62;6602:7;6593:6;6582:9;6578:22;6548:62;:::i;:::-;6538:72;;6400:220;6201:426;;;;;:::o;6633:118::-;6720:24;6738:5;6720:24;:::i;:::-;6715:3;6708:37;6698:53;;:::o;6757:157::-;6862:45;6882:24;6900:5;6882:24;:::i;:::-;6862:45;:::i;:::-;6857:3;6850:58;6840:74;;:::o;6920:109::-;7001:21;7016:5;7001:21;:::i;:::-;6996:3;6989:34;6979:50;;:::o;7035:118::-;7122:24;7140:5;7122:24;:::i;:::-;7117:3;7110:37;7100:53;;:::o;7159:360::-;;7273:38;7305:5;7273:38;:::i;:::-;7327:70;7390:6;7385:3;7327:70;:::i;:::-;7320:77;;7406:52;7451:6;7446:3;7439:4;7432:5;7428:16;7406:52;:::i;:::-;7483:29;7505:6;7483:29;:::i;:::-;7478:3;7474:39;7467:46;;7249:270;;;;;:::o;7525:364::-;;7641:39;7674:5;7641:39;:::i;:::-;7696:71;7760:6;7755:3;7696:71;:::i;:::-;7689:78;;7776:52;7821:6;7816:3;7809:4;7802:5;7798:16;7776:52;:::i;:::-;7853:29;7875:6;7853:29;:::i;:::-;7848:3;7844:39;7837:46;;7617:272;;;;;:::o;7895:377::-;;8029:39;8062:5;8029:39;:::i;:::-;8084:89;8166:6;8161:3;8084:89;:::i;:::-;8077:96;;8182:52;8227:6;8222:3;8215:4;8208:5;8204:16;8182:52;:::i;:::-;8259:6;8254:3;8250:16;8243:23;;8005:267;;;;;:::o;8278:366::-;;8441:67;8505:2;8500:3;8441:67;:::i;:::-;8434:74;;8517:93;8606:3;8517:93;:::i;:::-;8635:2;8630:3;8626:12;8619:19;;8424:220;;;:::o;8650:366::-;;8813:67;8877:2;8872:3;8813:67;:::i;:::-;8806:74;;8889:93;8978:3;8889:93;:::i;:::-;9007:2;9002:3;8998:12;8991:19;;8796:220;;;:::o;9022:366::-;;9185:67;9249:2;9244:3;9185:67;:::i;:::-;9178:74;;9261:93;9350:3;9261:93;:::i;:::-;9379:2;9374:3;9370:12;9363:19;;9168:220;;;:::o;9394:366::-;;9557:67;9621:2;9616:3;9557:67;:::i;:::-;9550:74;;9633:93;9722:3;9633:93;:::i;:::-;9751:2;9746:3;9742:12;9735:19;;9540:220;;;:::o;9766:366::-;;9929:67;9993:2;9988:3;9929:67;:::i;:::-;9922:74;;10005:93;10094:3;10005:93;:::i;:::-;10123:2;10118:3;10114:12;10107:19;;9912:220;;;:::o;10138:366::-;;10301:67;10365:2;10360:3;10301:67;:::i;:::-;10294:74;;10377:93;10466:3;10377:93;:::i;:::-;10495:2;10490:3;10486:12;10479:19;;10284:220;;;:::o;10510:366::-;;10673:67;10737:2;10732:3;10673:67;:::i;:::-;10666:74;;10749:93;10838:3;10749:93;:::i;:::-;10867:2;10862:3;10858:12;10851:19;;10656:220;;;:::o;10882:366::-;;11045:67;11109:2;11104:3;11045:67;:::i;:::-;11038:74;;11121:93;11210:3;11121:93;:::i;:::-;11239:2;11234:3;11230:12;11223:19;;11028:220;;;:::o;11254:366::-;;11417:67;11481:2;11476:3;11417:67;:::i;:::-;11410:74;;11493:93;11582:3;11493:93;:::i;:::-;11611:2;11606:3;11602:12;11595:19;;11400:220;;;:::o;11626:366::-;;11789:67;11853:2;11848:3;11789:67;:::i;:::-;11782:74;;11865:93;11954:3;11865:93;:::i;:::-;11983:2;11978:3;11974:12;11967:19;;11772:220;;;:::o;11998:366::-;;12161:67;12225:2;12220:3;12161:67;:::i;:::-;12154:74;;12237:93;12326:3;12237:93;:::i;:::-;12355:2;12350:3;12346:12;12339:19;;12144:220;;;:::o;12370:366::-;;12533:67;12597:2;12592:3;12533:67;:::i;:::-;12526:74;;12609:93;12698:3;12609:93;:::i;:::-;12727:2;12722:3;12718:12;12711:19;;12516:220;;;:::o;12742:366::-;;12905:67;12969:2;12964:3;12905:67;:::i;:::-;12898:74;;12981:93;13070:3;12981:93;:::i;:::-;13099:2;13094:3;13090:12;13083:19;;12888:220;;;:::o;13114:366::-;;13277:67;13341:2;13336:3;13277:67;:::i;:::-;13270:74;;13353:93;13442:3;13353:93;:::i;:::-;13471:2;13466:3;13462:12;13455:19;;13260:220;;;:::o;13486:366::-;;13649:67;13713:2;13708:3;13649:67;:::i;:::-;13642:74;;13725:93;13814:3;13725:93;:::i;:::-;13843:2;13838:3;13834:12;13827:19;;13632:220;;;:::o;13858:366::-;;14021:67;14085:2;14080:3;14021:67;:::i;:::-;14014:74;;14097:93;14186:3;14097:93;:::i;:::-;14215:2;14210:3;14206:12;14199:19;;14004:220;;;:::o;14230:366::-;;14393:67;14457:2;14452:3;14393:67;:::i;:::-;14386:74;;14469:93;14558:3;14469:93;:::i;:::-;14587:2;14582:3;14578:12;14571:19;;14376:220;;;:::o;14602:366::-;;14765:67;14829:2;14824:3;14765:67;:::i;:::-;14758:74;;14841:93;14930:3;14841:93;:::i;:::-;14959:2;14954:3;14950:12;14943:19;;14748:220;;;:::o;14974:366::-;;15137:67;15201:2;15196:3;15137:67;:::i;:::-;15130:74;;15213:93;15302:3;15213:93;:::i;:::-;15331:2;15326:3;15322:12;15315:19;;15120:220;;;:::o;15346:118::-;15433:24;15451:5;15433:24;:::i;:::-;15428:3;15421:37;15411:53;;:::o;15470:157::-;15575:45;15595:24;15613:5;15595:24;:::i;:::-;15575:45;:::i;:::-;15570:3;15563:58;15553:74;;:::o;15633:112::-;15716:22;15732:5;15716:22;:::i;:::-;15711:3;15704:35;15694:51;;:::o;15751:397::-;;15906:75;15977:3;15968:6;15906:75;:::i;:::-;16006:2;16001:3;15997:12;15990:19;;16019:75;16090:3;16081:6;16019:75;:::i;:::-;16119:2;16114:3;16110:12;16103:19;;16139:3;16132:10;;15895:253;;;;;:::o;16154:435::-;;16356:95;16447:3;16438:6;16356:95;:::i;:::-;16349:102;;16468:95;16559:3;16550:6;16468:95;:::i;:::-;16461:102;;16580:3;16573:10;;16338:251;;;;;:::o;16595:222::-;;16726:2;16715:9;16711:18;16703:26;;16739:71;16807:1;16796:9;16792:17;16783:6;16739:71;:::i;:::-;16693:124;;;;:::o;16823:640::-;;17056:3;17045:9;17041:19;17033:27;;17070:71;17138:1;17127:9;17123:17;17114:6;17070:71;:::i;:::-;17151:72;17219:2;17208:9;17204:18;17195:6;17151:72;:::i;:::-;17233;17301:2;17290:9;17286:18;17277:6;17233:72;:::i;:::-;17352:9;17346:4;17342:20;17337:2;17326:9;17322:18;17315:48;17380:76;17451:4;17442:6;17380:76;:::i;:::-;17372:84;;17023:440;;;;;;;:::o;17469:210::-;;17594:2;17583:9;17579:18;17571:26;;17607:65;17669:1;17658:9;17654:17;17645:6;17607:65;:::i;:::-;17561:118;;;;:::o;17685:434::-;;17868:2;17857:9;17853:18;17845:26;;17881:71;17949:1;17938:9;17934:17;17925:6;17881:71;:::i;:::-;17962:72;18030:2;18019:9;18015:18;18006:6;17962:72;:::i;:::-;18044:68;18108:2;18097:9;18093:18;18084:6;18044:68;:::i;:::-;17835:284;;;;;;:::o;18125:545::-;;18336:3;18325:9;18321:19;18313:27;;18350:71;18418:1;18407:9;18403:17;18394:6;18350:71;:::i;:::-;18431:68;18495:2;18484:9;18480:18;18471:6;18431:68;:::i;:::-;18509:72;18577:2;18566:9;18562:18;18553:6;18509:72;:::i;:::-;18591;18659:2;18648:9;18644:18;18635:6;18591:72;:::i;:::-;18303:367;;;;;;;:::o;18676:313::-;;18827:2;18816:9;18812:18;18804:26;;18876:9;18870:4;18866:20;18862:1;18851:9;18847:17;18840:47;18904:78;18977:4;18968:6;18904:78;:::i;:::-;18896:86;;18794:195;;;;:::o;18995:419::-;;19199:2;19188:9;19184:18;19176:26;;19248:9;19242:4;19238:20;19234:1;19223:9;19219:17;19212:47;19276:131;19402:4;19276:131;:::i;:::-;19268:139;;19166:248;;;:::o;19420:419::-;;19624:2;19613:9;19609:18;19601:26;;19673:9;19667:4;19663:20;19659:1;19648:9;19644:17;19637:47;19701:131;19827:4;19701:131;:::i;:::-;19693:139;;19591:248;;;:::o;19845:419::-;;20049:2;20038:9;20034:18;20026:26;;20098:9;20092:4;20088:20;20084:1;20073:9;20069:17;20062:47;20126:131;20252:4;20126:131;:::i;:::-;20118:139;;20016:248;;;:::o;20270:419::-;;20474:2;20463:9;20459:18;20451:26;;20523:9;20517:4;20513:20;20509:1;20498:9;20494:17;20487:47;20551:131;20677:4;20551:131;:::i;:::-;20543:139;;20441:248;;;:::o;20695:419::-;;20899:2;20888:9;20884:18;20876:26;;20948:9;20942:4;20938:20;20934:1;20923:9;20919:17;20912:47;20976:131;21102:4;20976:131;:::i;:::-;20968:139;;20866:248;;;:::o;21120:419::-;;21324:2;21313:9;21309:18;21301:26;;21373:9;21367:4;21363:20;21359:1;21348:9;21344:17;21337:47;21401:131;21527:4;21401:131;:::i;:::-;21393:139;;21291:248;;;:::o;21545:419::-;;21749:2;21738:9;21734:18;21726:26;;21798:9;21792:4;21788:20;21784:1;21773:9;21769:17;21762:47;21826:131;21952:4;21826:131;:::i;:::-;21818:139;;21716:248;;;:::o;21970:419::-;;22174:2;22163:9;22159:18;22151:26;;22223:9;22217:4;22213:20;22209:1;22198:9;22194:17;22187:47;22251:131;22377:4;22251:131;:::i;:::-;22243:139;;22141:248;;;:::o;22395:419::-;;22599:2;22588:9;22584:18;22576:26;;22648:9;22642:4;22638:20;22634:1;22623:9;22619:17;22612:47;22676:131;22802:4;22676:131;:::i;:::-;22668:139;;22566:248;;;:::o;22820:419::-;;23024:2;23013:9;23009:18;23001:26;;23073:9;23067:4;23063:20;23059:1;23048:9;23044:17;23037:47;23101:131;23227:4;23101:131;:::i;:::-;23093:139;;22991:248;;;:::o;23245:419::-;;23449:2;23438:9;23434:18;23426:26;;23498:9;23492:4;23488:20;23484:1;23473:9;23469:17;23462:47;23526:131;23652:4;23526:131;:::i;:::-;23518:139;;23416:248;;;:::o;23670:419::-;;23874:2;23863:9;23859:18;23851:26;;23923:9;23917:4;23913:20;23909:1;23898:9;23894:17;23887:47;23951:131;24077:4;23951:131;:::i;:::-;23943:139;;23841:248;;;:::o;24095:419::-;;24299:2;24288:9;24284:18;24276:26;;24348:9;24342:4;24338:20;24334:1;24323:9;24319:17;24312:47;24376:131;24502:4;24376:131;:::i;:::-;24368:139;;24266:248;;;:::o;24520:419::-;;24724:2;24713:9;24709:18;24701:26;;24773:9;24767:4;24763:20;24759:1;24748:9;24744:17;24737:47;24801:131;24927:4;24801:131;:::i;:::-;24793:139;;24691:248;;;:::o;24945:419::-;;25149:2;25138:9;25134:18;25126:26;;25198:9;25192:4;25188:20;25184:1;25173:9;25169:17;25162:47;25226:131;25352:4;25226:131;:::i;:::-;25218:139;;25116:248;;;:::o;25370:419::-;;25574:2;25563:9;25559:18;25551:26;;25623:9;25617:4;25613:20;25609:1;25598:9;25594:17;25587:47;25651:131;25777:4;25651:131;:::i;:::-;25643:139;;25541:248;;;:::o;25795:419::-;;25999:2;25988:9;25984:18;25976:26;;26048:9;26042:4;26038:20;26034:1;26023:9;26019:17;26012:47;26076:131;26202:4;26076:131;:::i;:::-;26068:139;;25966:248;;;:::o;26220:419::-;;26424:2;26413:9;26409:18;26401:26;;26473:9;26467:4;26463:20;26459:1;26448:9;26444:17;26437:47;26501:131;26627:4;26501:131;:::i;:::-;26493:139;;26391:248;;;:::o;26645:419::-;;26849:2;26838:9;26834:18;26826:26;;26898:9;26892:4;26888:20;26884:1;26873:9;26869:17;26862:47;26926:131;27052:4;26926:131;:::i;:::-;26918:139;;26816:248;;;:::o;27070:222::-;;27201:2;27190:9;27186:18;27178:26;;27214:71;27282:1;27271:9;27267:17;27258:6;27214:71;:::i;:::-;27168:124;;;;:::o;27298:129::-;;27359:20;;:::i;:::-;27349:30;;27388:33;27416:4;27408:6;27388:33;:::i;:::-;27339:88;;;:::o;27433:75::-;;27499:2;27493:9;27483:19;;27473:35;:::o;27514:307::-;;27665:18;27657:6;27654:30;27651:2;;;27687:18;;:::i;:::-;27651:2;27725:29;27747:6;27725:29;:::i;:::-;27717:37;;27809:4;27803;27799:15;27791:23;;27580:241;;;:::o;27827:98::-;;27912:5;27906:12;27896:22;;27885:40;;;:::o;27931:99::-;;28017:5;28011:12;28001:22;;27990:40;;;:::o;28036:168::-;;28153:6;28148:3;28141:19;28193:4;28188:3;28184:14;28169:29;;28131:73;;;;:::o;28210:169::-;;28328:6;28323:3;28316:19;28368:4;28363:3;28359:14;28344:29;;28306:73;;;;:::o;28385:148::-;;28524:3;28509:18;;28499:34;;;;:::o;28539:305::-;;28598:20;28616:1;28598:20;:::i;:::-;28593:25;;28632:20;28650:1;28632:20;:::i;:::-;28627:25;;28786:1;28718:66;28714:74;28711:1;28708:81;28705:2;;;28792:18;;:::i;:::-;28705:2;28836:1;28833;28829:9;28822:16;;28583:261;;;;:::o;28850:185::-;;28907:20;28925:1;28907:20;:::i;:::-;28902:25;;28941:20;28959:1;28941:20;:::i;:::-;28936:25;;28980:1;28970:2;;28985:18;;:::i;:::-;28970:2;29027:1;29024;29020:9;29015:14;;28892:143;;;;:::o;29041:191::-;;29101:20;29119:1;29101:20;:::i;:::-;29096:25;;29135:20;29153:1;29135:20;:::i;:::-;29130:25;;29174:1;29171;29168:8;29165:2;;;29179:18;;:::i;:::-;29165:2;29224:1;29221;29217:9;29209:17;;29086:146;;;;:::o;29238:96::-;;29304:24;29322:5;29304:24;:::i;:::-;29293:35;;29283:51;;;:::o;29340:90::-;;29417:5;29410:13;29403:21;29392:32;;29382:48;;;:::o;29436:77::-;;29502:5;29491:16;;29481:32;;;:::o;29519:149::-;;29595:66;29588:5;29584:78;29573:89;;29563:105;;;:::o;29674:126::-;;29751:42;29744:5;29740:54;29729:65;;29719:81;;;:::o;29806:77::-;;29872:5;29861:16;;29851:32;;;:::o;29889:86::-;;29964:4;29957:5;29953:16;29942:27;;29932:43;;;:::o;29981:154::-;30065:6;30060:3;30055;30042:30;30127:1;30118:6;30113:3;30109:16;30102:27;30032:103;;;:::o;30141:307::-;30209:1;30219:113;30233:6;30230:1;30227:13;30219:113;;;30318:1;30313:3;30309:11;30303:18;30299:1;30294:3;30290:11;30283:39;30255:2;30252:1;30248:10;30243:15;;30219:113;;;30350:6;30347:1;30344:13;30341:2;;;30430:1;30421:6;30416:3;30412:16;30405:27;30341:2;30190:258;;;;:::o;30454:320::-;;30535:1;30529:4;30525:12;30515:22;;30582:1;30576:4;30572:12;30603:18;30593:2;;30659:4;30651:6;30647:17;30637:27;;30593:2;30721;30713:6;30710:14;30690:18;30687:38;30684:2;;;30740:18;;:::i;:::-;30684:2;30505:269;;;;:::o;30780:281::-;30863:27;30885:4;30863:27;:::i;:::-;30855:6;30851:40;30993:6;30981:10;30978:22;30957:18;30945:10;30942:34;30939:62;30936:2;;;31004:18;;:::i;:::-;30936:2;31044:10;31040:2;31033:22;30823:238;;;:::o;31067:233::-;;31129:24;31147:5;31129:24;:::i;:::-;31120:33;;31175:66;31168:5;31165:77;31162:2;;;31245:18;;:::i;:::-;31162:2;31292:1;31285:5;31281:13;31274:20;;31110:190;;;:::o;31306:100::-;;31374:26;31394:5;31374:26;:::i;:::-;31363:37;;31353:53;;;:::o;31412:94::-;;31480:20;31494:5;31480:20;:::i;:::-;31469:31;;31459:47;;;:::o;31512:79::-;;31580:5;31569:16;;31559:32;;;:::o;31597:176::-;;31646:20;31664:1;31646:20;:::i;:::-;31641:25;;31680:20;31698:1;31680:20;:::i;:::-;31675:25;;31719:1;31709:2;;31724:18;;:::i;:::-;31709:2;31765:1;31762;31758:9;31753:14;;31631:142;;;;:::o;31779:180::-;31827:77;31824:1;31817:88;31924:4;31921:1;31914:15;31948:4;31945:1;31938:15;31965:180;32013:77;32010:1;32003:88;32110:4;32107:1;32100:15;32134:4;32131:1;32124:15;32151:180;32199:77;32196:1;32189:88;32296:4;32293:1;32286:15;32320:4;32317:1;32310:15;32337:180;32385:77;32382:1;32375:88;32482:4;32479:1;32472:15;32506:4;32503:1;32496:15;32523:102;;32615:2;32611:7;32606:2;32599:5;32595:14;32591:28;32581:38;;32571:54;;;:::o;32631:94::-;;32712:5;32708:2;32704:14;32683:35;;32673:52;;;:::o;32731:167::-;32871:19;32867:1;32859:6;32855:14;32848:43;32837:61;:::o;32904:237::-;33044:34;33040:1;33032:6;33028:14;33021:58;33113:20;33108:2;33100:6;33096:15;33089:45;33010:131;:::o;33147:225::-;33287:34;33283:1;33275:6;33271:14;33264:58;33356:8;33351:2;33343:6;33339:15;33332:33;33253:119;:::o;33378:178::-;33518:30;33514:1;33506:6;33502:14;33495:54;33484:72;:::o;33562:223::-;33702:34;33698:1;33690:6;33686:14;33679:58;33771:6;33766:2;33758:6;33754:15;33747:31;33668:117;:::o;33791:170::-;33931:22;33927:1;33919:6;33915:14;33908:46;33897:64;:::o;33967:175::-;34107:27;34103:1;34095:6;34091:14;34084:51;34073:69;:::o;34148:231::-;34288:34;34284:1;34276:6;34272:14;34265:58;34357:14;34352:2;34344:6;34340:15;34333:39;34254:125;:::o;34385:243::-;34525:34;34521:1;34513:6;34509:14;34502:58;34594:26;34589:2;34581:6;34577:15;34570:51;34491:137;:::o;34634:229::-;34774:34;34770:1;34762:6;34758:14;34751:58;34843:12;34838:2;34830:6;34826:15;34819:37;34740:123;:::o;34869:228::-;35009:34;35005:1;34997:6;34993:14;34986:58;35078:11;35073:2;35065:6;35061:15;35054:36;34975:122;:::o;35103:182::-;35243:34;35239:1;35231:6;35227:14;35220:58;35209:76;:::o;35291:231::-;35431:34;35427:1;35419:6;35415:14;35408:58;35500:14;35495:2;35487:6;35483:15;35476:39;35397:125;:::o;35528:182::-;35668:34;35664:1;35656:6;35652:14;35645:58;35634:76;:::o;35716:228::-;35856:34;35852:1;35844:6;35840:14;35833:58;35925:11;35920:2;35912:6;35908:15;35901:36;35822:122;:::o;35950:234::-;36090:34;36086:1;36078:6;36074:14;36067:58;36159:17;36154:2;36146:6;36142:15;36135:42;36056:128;:::o;36190:220::-;36330:34;36326:1;36318:6;36314:14;36307:58;36399:3;36394:2;36386:6;36382:15;36375:28;36296:114;:::o;36416:236::-;36556:34;36552:1;36544:6;36540:14;36533:58;36625:19;36620:2;36612:6;36608:15;36601:44;36522:130;:::o;36658:174::-;36798:26;36794:1;36786:6;36782:14;36775:50;36764:68;:::o;36838:122::-;36911:24;36929:5;36911:24;:::i;:::-;36904:5;36901:35;36891:2;;36950:1;36947;36940:12;36891:2;36881:79;:::o;36966:116::-;37036:21;37051:5;37036:21;:::i;:::-;37029:5;37026:32;37016:2;;37072:1;37069;37062:12;37016:2;37006:76;:::o;37088:120::-;37160:23;37177:5;37160:23;:::i;:::-;37153:5;37150:34;37140:2;;37198:1;37195;37188:12;37140:2;37130:78;:::o;37214:122::-;37287:24;37305:5;37287:24;:::i;:::-;37280:5;37277:35;37267:2;;37326:1;37323;37316:12;37267:2;37257:79;:::o

Swarm Source

ipfs://791d205057a4ee66d468fb9bb79680fe91ae2509cd159a4870f9098e6e58acd3
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.