ETH Price: $3,389.62 (-1.36%)
Gas: 3 Gwei

Token

ComplexityAlpha (ALPHA)
 

Overview

Max Total Supply

512 ALPHA

Holders

215

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ALPHA
0x431973b9593a6f273512008670979d32ce4f756d
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:
ComplexityAlpha

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-01
*/

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity ^0.8.0;


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

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

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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


// File: @openzeppelin/contracts/utils/Strings.sol
pragma solidity ^0.8.0;

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

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

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

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

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

}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: ComplexityAlpha.sol
pragma solidity ^0.8.0;

contract ComplexityAlpha is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    // Sale
    uint256 public MAIN_NFT_SUPPLY = 511;
    uint256 public TOTAL_NFT_SUPPLY = 512;
    uint public constant MAX_PURCHASABLE = 20;
    uint256 public MINT_PRICE = 42069000000000000; // 0.042069 ETH
    bool public ANON = false;

    // Base URI
    string private _baseURIextended;

    constructor() ERC721("ComplexityAlpha", "ALPHA") {
    }

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

    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        string memory baseURI = _baseURI();
        return string(abi.encodePacked(baseURI, tokenId.toString()));
    }

    function ratwell() public payable {
        require(totalSupply() < TOTAL_NFT_SUPPLY, "All NFTs have been minted.");
        require(MINT_PRICE == msg.value, "Incorrect Ether value.");
        require(ANON == false);
        ANON = true;
        _safeMint(msg.sender, 511);
    }

   function mint(uint256 amountToMint) public payable {
        uint256 sup;
        if (ANON == false) {
            sup = MAIN_NFT_SUPPLY;
        } else {
            sup = TOTAL_NFT_SUPPLY;
        }
        require(totalSupply() <= sup, "All NFTs have been minted.");
        require(amountToMint > 0, "Must mint at least one.");
        require(amountToMint <= MAX_PURCHASABLE, "Maximum amount to mint is 20.");
        require(totalSupply() + amountToMint <= sup, "The amount of NFTs you are trying to mint exceeds the max supply.");
        require(MINT_PRICE.mul(amountToMint) == msg.value, "Incorrect Ether value.");

        for (uint256 i = 0; i < amountToMint; i++) {
            uint256 mintIndex;
            if (ANON == false) {
                mintIndex = totalSupply();
            } else {
                mintIndex = totalSupply() - 1; 
            }
            _safeMint(msg.sender, mintIndex);
        }
   }

    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ANON","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAIN_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASABLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"ratwell","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526101ff600b55610200600c5566957588590e5000600d556000600e60006101000a81548160ff0219169083151502179055503480156200004357600080fd5b506040518060400160405280600f81526020017f436f6d706c6578697479416c70686100000000000000000000000000000000008152506040518060400160405280600581526020017f414c5048410000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c8929190620001a3565b508060019080519060200190620000e1929190620001a3565b5050506000620000f66200019b60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002b8565b600033905090565b828054620001b19062000253565b90600052602060002090601f016020900481019282620001d5576000855562000221565b82601f10620001f057805160ff191683800117855562000221565b8280016001018555821562000221579182015b828111156200022057825182559160200191906001019062000203565b5b50905062000230919062000234565b5090565b5b808211156200024f57600081600090555060010162000235565b5090565b600060028204905060018216806200026c57607f821691505b6020821081141562000283576200028262000289565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613d2f80620002c86000396000f3fe6080604052600436106101b75760003560e01c80634f6ccce7116100ec578063a0712d681161008a578063c002d23d11610064578063c002d23d146105bf578063c87b56dd146105ea578063e985e9c514610627578063f2fde38b14610664576101b7565b8063a0712d6814610551578063a22cb4651461056d578063b88d4fde14610596576101b7565b806370a08231116100c657806370a08231146104a7578063715018a6146104e45780638da5cb5b146104fb57806395d89b4114610526576101b7565b80634f6ccce71461040457806355f804b3146104415780636352211e1461046a576101b7565b8063228760e4116101595780632f745c59116101335780632f745c5914610369578063399b70fb146103a65780633ccfd60b146103d157806342842e0e146103db576101b7565b8063228760e4146102ea57806323b872dd146103155780632c2f672e1461033e576101b7565b8063095ea7b311610195578063095ea7b314610261578063119e43981461028a57806318160ddd146102b5578063200e90b4146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612b9c565b61068d565b6040516101f0919061356d565b60405180910390f35b34801561020557600080fd5b5061020e610707565b60405161021b9190613588565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612c2f565b610799565b6040516102589190613506565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612b60565b61081e565b005b34801561029657600080fd5b5061029f610936565b6040516102ac919061386a565b60405180910390f35b3480156102c157600080fd5b506102ca61093b565b6040516102d7919061386a565b60405180910390f35b6102e8610948565b005b3480156102f657600080fd5b506102ff610a20565b60405161030c919061386a565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612a5a565b610a26565b005b34801561034a57600080fd5b50610353610a86565b604051610360919061386a565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b9190612b60565b610a8c565b60405161039d919061386a565b60405180910390f35b3480156103b257600080fd5b506103bb610b31565b6040516103c8919061356d565b60405180910390f35b6103d9610b44565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190612a5a565b610c00565b005b34801561041057600080fd5b5061042b60048036038101906104269190612c2f565b610c20565b604051610438919061386a565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190612bee565b610cb7565b005b34801561047657600080fd5b50610491600480360381019061048c9190612c2f565b610d4d565b60405161049e9190613506565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c991906129f5565b610dff565b6040516104db919061386a565b60405180910390f35b3480156104f057600080fd5b506104f9610eb7565b005b34801561050757600080fd5b50610510610ff4565b60405161051d9190613506565b60405180910390f35b34801561053257600080fd5b5061053b61101e565b6040516105489190613588565b60405180910390f35b61056b60048036038101906105669190612c2f565b6110b0565b005b34801561057957600080fd5b50610594600480360381019061058f9190612b24565b6112ca565b005b3480156105a257600080fd5b506105bd60048036038101906105b89190612aa9565b61144b565b005b3480156105cb57600080fd5b506105d46114ad565b6040516105e1919061386a565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190612c2f565b6114b3565b60405161061e9190613588565b60405180910390f35b34801561063357600080fd5b5061064e60048036038101906106499190612a1e565b6114f3565b60405161065b919061356d565b60405180910390f35b34801561067057600080fd5b5061068b600480360381019061068691906129f5565b611587565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070057506106ff82611733565b5b9050919050565b60606000805461071690613b24565b80601f016020809104026020016040519081016040528092919081815260200182805461074290613b24565b801561078f5780601f106107645761010080835404028352916020019161078f565b820191906000526020600020905b81548152906001019060200180831161077257829003601f168201915b5050505050905090565b60006107a482611815565b6107e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107da9061378a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082982610d4d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561089a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610891906137ea565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108b9611881565b73ffffffffffffffffffffffffffffffffffffffff1614806108e857506108e7816108e2611881565b6114f3565b5b610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e906136ea565b60405180910390fd5b6109318383611889565b505050565b601481565b6000600880549050905090565b600c5461095361093b565b10610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a9061368a565b60405180910390fd5b34600d54146109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce9061374a565b60405180910390fd5b60001515600e60009054906101000a900460ff161515146109f757600080fd5b6001600e60006101000a81548160ff021916908315150217905550610a1e336101ff611942565b565b600b5481565b610a37610a31611881565b82611960565b610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d9061380a565b60405180910390fd5b610a81838383611a3e565b505050565b600c5481565b6000610a9783610dff565b8210610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf906135aa565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600e60009054906101000a900460ff1681565b610b4c611881565b73ffffffffffffffffffffffffffffffffffffffff16610b6a610ff4565b73ffffffffffffffffffffffffffffffffffffffff1614610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb7906137aa565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610bfe57600080fd5b565b610c1b8383836040518060200160405280600081525061144b565b505050565b6000610c2a61093b565b8210610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c629061382a565b60405180910390fd5b60088281548110610ca5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610cbf611881565b73ffffffffffffffffffffffffffffffffffffffff16610cdd610ff4565b73ffffffffffffffffffffffffffffffffffffffff1614610d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2a906137aa565b60405180910390fd5b80600f9080519060200190610d49929190612819565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded9061372a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e679061370a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ebf611881565b73ffffffffffffffffffffffffffffffffffffffff16610edd610ff4565b73ffffffffffffffffffffffffffffffffffffffff1614610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a906137aa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461102d90613b24565b80601f016020809104026020016040519081016040528092919081815260200182805461105990613b24565b80156110a65780601f1061107b576101008083540402835291602001916110a6565b820191906000526020600020905b81548152906001019060200180831161108957829003601f168201915b5050505050905090565b6000801515600e60009054906101000a900460ff16151514156110d757600b5490506110dd565b600c5490505b806110e661093b565b1115611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e9061368a565b60405180910390fd5b6000821161116a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611161906136ca565b60405180910390fd5b60148211156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a59061384a565b60405180910390fd5b80826111b861093b565b6111c29190613959565b1115611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa9061360a565b60405180910390fd5b3461121983600d54611c9a90919063ffffffff16565b14611259576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112509061374a565b60405180910390fd5b60005b828110156112c5576000801515600e60009054906101000a900460ff16151514156112905761128961093b565b90506112a7565b600161129a61093b565b6112a49190613a3a565b90505b6112b13382611942565b5080806112bd90613b56565b91505061125c565b505050565b6112d2611881565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611340576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113379061366a565b60405180910390fd5b806005600061134d611881565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113fa611881565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161143f919061356d565b60405180910390a35050565b61145c611456611881565b83611960565b61149b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114929061380a565b60405180910390fd5b6114a784848484611cb0565b50505050565b600d5481565b606060006114bf611d0c565b9050806114cb84611d9e565b6040516020016114dc9291906134e2565b604051602081830303815290604052915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61158f611881565b73ffffffffffffffffffffffffffffffffffffffff166115ad610ff4565b73ffffffffffffffffffffffffffffffffffffffff1614611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa906137aa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a906135ea565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806117fe57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061180e575061180d82611f4b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118fc83610d4d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61195c828260405180602001604052806000815250611fb5565b5050565b600061196b82611815565b6119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a1906136aa565b60405180910390fd5b60006119b583610d4d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a2457508373ffffffffffffffffffffffffffffffffffffffff16611a0c84610799565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a355750611a3481856114f3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a5e82610d4d565b73ffffffffffffffffffffffffffffffffffffffff1614611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab906137ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1b9061364a565b60405180910390fd5b611b2f838383612010565b611b3a600082611889565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b8a9190613a3a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611be19190613959565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611ca891906139e0565b905092915050565b611cbb848484611a3e565b611cc784848484612124565b611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd906135ca565b60405180910390fd5b50505050565b6060600f8054611d1b90613b24565b80601f0160208091040260200160405190810160405280929190818152602001828054611d4790613b24565b8015611d945780601f10611d6957610100808354040283529160200191611d94565b820191906000526020600020905b815481529060010190602001808311611d7757829003601f168201915b5050505050905090565b60606000821415611de6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f46565b600082905060005b60008214611e18578080611e0190613b56565b915050600a82611e1191906139af565b9150611dee565b60008167ffffffffffffffff811115611e5a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e8c5781602001600182028036833780820191505090505b5090505b60008514611f3f57600182611ea59190613a3a565b9150600a85611eb49190613b9f565b6030611ec09190613959565b60f81b818381518110611efc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f3891906139af565b9450611e90565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611fbf83836122bb565b611fcc6000848484612124565b61200b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612002906135ca565b60405180910390fd5b505050565b61201b838383612489565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561205e576120598161248e565b61209d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461209c5761209b83826124d7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120e0576120db81612644565b61211f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461211e5761211d8282612787565b5b5b505050565b60006121458473ffffffffffffffffffffffffffffffffffffffff16612806565b156122ae578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261216e611881565b8786866040518563ffffffff1660e01b81526004016121909493929190613521565b602060405180830381600087803b1580156121aa57600080fd5b505af19250505080156121db57506040513d601f19601f820116820180604052508101906121d89190612bc5565b60015b61225e573d806000811461220b576040519150601f19603f3d011682016040523d82523d6000602084013e612210565b606091505b50600081511415612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224d906135ca565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122b3565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561232b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123229061376a565b60405180910390fd5b61233481611815565b15612374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236b9061362a565b60405180910390fd5b61238060008383612010565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123d09190613959565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016124e484610dff565b6124ee9190613a3a565b90506000600760008481526020019081526020016000205490508181146125d3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126589190613a3a565b90506000600960008481526020019081526020016000205490506000600883815481106126ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106126f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061276b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061279283610dff565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461282590613b24565b90600052602060002090601f016020900481019282612847576000855561288e565b82601f1061286057805160ff191683800117855561288e565b8280016001018555821561288e579182015b8281111561288d578251825591602001919060010190612872565b5b50905061289b919061289f565b5090565b5b808211156128b85760008160009055506001016128a0565b5090565b60006128cf6128ca846138b6565b613885565b9050828152602081018484840111156128e757600080fd5b6128f2848285613ae2565b509392505050565b600061290d612908846138e6565b613885565b90508281526020810184848401111561292557600080fd5b612930848285613ae2565b509392505050565b60008135905061294781613c9d565b92915050565b60008135905061295c81613cb4565b92915050565b60008135905061297181613ccb565b92915050565b60008151905061298681613ccb565b92915050565b600082601f83011261299d57600080fd5b81356129ad8482602086016128bc565b91505092915050565b600082601f8301126129c757600080fd5b81356129d78482602086016128fa565b91505092915050565b6000813590506129ef81613ce2565b92915050565b600060208284031215612a0757600080fd5b6000612a1584828501612938565b91505092915050565b60008060408385031215612a3157600080fd5b6000612a3f85828601612938565b9250506020612a5085828601612938565b9150509250929050565b600080600060608486031215612a6f57600080fd5b6000612a7d86828701612938565b9350506020612a8e86828701612938565b9250506040612a9f868287016129e0565b9150509250925092565b60008060008060808587031215612abf57600080fd5b6000612acd87828801612938565b9450506020612ade87828801612938565b9350506040612aef878288016129e0565b925050606085013567ffffffffffffffff811115612b0c57600080fd5b612b188782880161298c565b91505092959194509250565b60008060408385031215612b3757600080fd5b6000612b4585828601612938565b9250506020612b568582860161294d565b9150509250929050565b60008060408385031215612b7357600080fd5b6000612b8185828601612938565b9250506020612b92858286016129e0565b9150509250929050565b600060208284031215612bae57600080fd5b6000612bbc84828501612962565b91505092915050565b600060208284031215612bd757600080fd5b6000612be584828501612977565b91505092915050565b600060208284031215612c0057600080fd5b600082013567ffffffffffffffff811115612c1a57600080fd5b612c26848285016129b6565b91505092915050565b600060208284031215612c4157600080fd5b6000612c4f848285016129e0565b91505092915050565b612c6181613a6e565b82525050565b612c7081613a80565b82525050565b6000612c8182613916565b612c8b818561392c565b9350612c9b818560208601613af1565b612ca481613c8c565b840191505092915050565b6000612cba82613921565b612cc4818561393d565b9350612cd4818560208601613af1565b612cdd81613c8c565b840191505092915050565b6000612cf382613921565b612cfd818561394e565b9350612d0d818560208601613af1565b80840191505092915050565b6000612d26602b8361393d565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000612d8c60328361393d565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612df260268361393d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612e5860418361393d565b91507f54686520616d6f756e74206f66204e46547320796f752061726520747279696e60008301527f6720746f206d696e74206578636565647320746865206d617820737570706c7960208301527f2e000000000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000612ee4601c8361393d565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612f2460248361393d565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f8a60198361393d565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612fca601a8361393d565b91507f416c6c204e4654732068617665206265656e206d696e7465642e0000000000006000830152602082019050919050565b600061300a602c8361393d565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061307060178361393d565b91507f4d757374206d696e74206174206c65617374206f6e652e0000000000000000006000830152602082019050919050565b60006130b060388361393d565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613116602a8361393d565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061317c60298361393d565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006131e260168361393d565b91507f496e636f72726563742045746865722076616c75652e000000000000000000006000830152602082019050919050565b600061322260208361393d565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613262602c8361393d565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006132c860208361393d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061330860298361393d565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061336e60218361393d565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133d460318361393d565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061343a602c8361393d565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006134a0601d8361393d565b91507f4d6178696d756d20616d6f756e7420746f206d696e742069732032302e0000006000830152602082019050919050565b6134dc81613ad8565b82525050565b60006134ee8285612ce8565b91506134fa8284612ce8565b91508190509392505050565b600060208201905061351b6000830184612c58565b92915050565b60006080820190506135366000830187612c58565b6135436020830186612c58565b61355060408301856134d3565b81810360608301526135628184612c76565b905095945050505050565b60006020820190506135826000830184612c67565b92915050565b600060208201905081810360008301526135a28184612caf565b905092915050565b600060208201905081810360008301526135c381612d19565b9050919050565b600060208201905081810360008301526135e381612d7f565b9050919050565b6000602082019050818103600083015261360381612de5565b9050919050565b6000602082019050818103600083015261362381612e4b565b9050919050565b6000602082019050818103600083015261364381612ed7565b9050919050565b6000602082019050818103600083015261366381612f17565b9050919050565b6000602082019050818103600083015261368381612f7d565b9050919050565b600060208201905081810360008301526136a381612fbd565b9050919050565b600060208201905081810360008301526136c381612ffd565b9050919050565b600060208201905081810360008301526136e381613063565b9050919050565b60006020820190508181036000830152613703816130a3565b9050919050565b6000602082019050818103600083015261372381613109565b9050919050565b600060208201905081810360008301526137438161316f565b9050919050565b60006020820190508181036000830152613763816131d5565b9050919050565b6000602082019050818103600083015261378381613215565b9050919050565b600060208201905081810360008301526137a381613255565b9050919050565b600060208201905081810360008301526137c3816132bb565b9050919050565b600060208201905081810360008301526137e3816132fb565b9050919050565b6000602082019050818103600083015261380381613361565b9050919050565b60006020820190508181036000830152613823816133c7565b9050919050565b600060208201905081810360008301526138438161342d565b9050919050565b6000602082019050818103600083015261386381613493565b9050919050565b600060208201905061387f60008301846134d3565b92915050565b6000604051905081810181811067ffffffffffffffff821117156138ac576138ab613c5d565b5b8060405250919050565b600067ffffffffffffffff8211156138d1576138d0613c5d565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561390157613900613c5d565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061396482613ad8565b915061396f83613ad8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139a4576139a3613bd0565b5b828201905092915050565b60006139ba82613ad8565b91506139c583613ad8565b9250826139d5576139d4613bff565b5b828204905092915050565b60006139eb82613ad8565b91506139f683613ad8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a2f57613a2e613bd0565b5b828202905092915050565b6000613a4582613ad8565b9150613a5083613ad8565b925082821015613a6357613a62613bd0565b5b828203905092915050565b6000613a7982613ab8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b0f578082015181840152602081019050613af4565b83811115613b1e576000848401525b50505050565b60006002820490506001821680613b3c57607f821691505b60208210811415613b5057613b4f613c2e565b5b50919050565b6000613b6182613ad8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b9457613b93613bd0565b5b600182019050919050565b6000613baa82613ad8565b9150613bb583613ad8565b925082613bc557613bc4613bff565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613ca681613a6e565b8114613cb157600080fd5b50565b613cbd81613a80565b8114613cc857600080fd5b50565b613cd481613a8c565b8114613cdf57600080fd5b50565b613ceb81613ad8565b8114613cf657600080fd5b5056fea264697066735822122039dc25672b1c2a8c63c1f30586c24606514068f40d69e27e5e1ae3dde49a3efd64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80634f6ccce7116100ec578063a0712d681161008a578063c002d23d11610064578063c002d23d146105bf578063c87b56dd146105ea578063e985e9c514610627578063f2fde38b14610664576101b7565b8063a0712d6814610551578063a22cb4651461056d578063b88d4fde14610596576101b7565b806370a08231116100c657806370a08231146104a7578063715018a6146104e45780638da5cb5b146104fb57806395d89b4114610526576101b7565b80634f6ccce71461040457806355f804b3146104415780636352211e1461046a576101b7565b8063228760e4116101595780632f745c59116101335780632f745c5914610369578063399b70fb146103a65780633ccfd60b146103d157806342842e0e146103db576101b7565b8063228760e4146102ea57806323b872dd146103155780632c2f672e1461033e576101b7565b8063095ea7b311610195578063095ea7b314610261578063119e43981461028a57806318160ddd146102b5578063200e90b4146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612b9c565b61068d565b6040516101f0919061356d565b60405180910390f35b34801561020557600080fd5b5061020e610707565b60405161021b9190613588565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612c2f565b610799565b6040516102589190613506565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612b60565b61081e565b005b34801561029657600080fd5b5061029f610936565b6040516102ac919061386a565b60405180910390f35b3480156102c157600080fd5b506102ca61093b565b6040516102d7919061386a565b60405180910390f35b6102e8610948565b005b3480156102f657600080fd5b506102ff610a20565b60405161030c919061386a565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612a5a565b610a26565b005b34801561034a57600080fd5b50610353610a86565b604051610360919061386a565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b9190612b60565b610a8c565b60405161039d919061386a565b60405180910390f35b3480156103b257600080fd5b506103bb610b31565b6040516103c8919061356d565b60405180910390f35b6103d9610b44565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190612a5a565b610c00565b005b34801561041057600080fd5b5061042b60048036038101906104269190612c2f565b610c20565b604051610438919061386a565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190612bee565b610cb7565b005b34801561047657600080fd5b50610491600480360381019061048c9190612c2f565b610d4d565b60405161049e9190613506565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c991906129f5565b610dff565b6040516104db919061386a565b60405180910390f35b3480156104f057600080fd5b506104f9610eb7565b005b34801561050757600080fd5b50610510610ff4565b60405161051d9190613506565b60405180910390f35b34801561053257600080fd5b5061053b61101e565b6040516105489190613588565b60405180910390f35b61056b60048036038101906105669190612c2f565b6110b0565b005b34801561057957600080fd5b50610594600480360381019061058f9190612b24565b6112ca565b005b3480156105a257600080fd5b506105bd60048036038101906105b89190612aa9565b61144b565b005b3480156105cb57600080fd5b506105d46114ad565b6040516105e1919061386a565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190612c2f565b6114b3565b60405161061e9190613588565b60405180910390f35b34801561063357600080fd5b5061064e60048036038101906106499190612a1e565b6114f3565b60405161065b919061356d565b60405180910390f35b34801561067057600080fd5b5061068b600480360381019061068691906129f5565b611587565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070057506106ff82611733565b5b9050919050565b60606000805461071690613b24565b80601f016020809104026020016040519081016040528092919081815260200182805461074290613b24565b801561078f5780601f106107645761010080835404028352916020019161078f565b820191906000526020600020905b81548152906001019060200180831161077257829003601f168201915b5050505050905090565b60006107a482611815565b6107e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107da9061378a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082982610d4d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561089a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610891906137ea565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108b9611881565b73ffffffffffffffffffffffffffffffffffffffff1614806108e857506108e7816108e2611881565b6114f3565b5b610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e906136ea565b60405180910390fd5b6109318383611889565b505050565b601481565b6000600880549050905090565b600c5461095361093b565b10610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a9061368a565b60405180910390fd5b34600d54146109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce9061374a565b60405180910390fd5b60001515600e60009054906101000a900460ff161515146109f757600080fd5b6001600e60006101000a81548160ff021916908315150217905550610a1e336101ff611942565b565b600b5481565b610a37610a31611881565b82611960565b610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d9061380a565b60405180910390fd5b610a81838383611a3e565b505050565b600c5481565b6000610a9783610dff565b8210610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf906135aa565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600e60009054906101000a900460ff1681565b610b4c611881565b73ffffffffffffffffffffffffffffffffffffffff16610b6a610ff4565b73ffffffffffffffffffffffffffffffffffffffff1614610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb7906137aa565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610bfe57600080fd5b565b610c1b8383836040518060200160405280600081525061144b565b505050565b6000610c2a61093b565b8210610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c629061382a565b60405180910390fd5b60088281548110610ca5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610cbf611881565b73ffffffffffffffffffffffffffffffffffffffff16610cdd610ff4565b73ffffffffffffffffffffffffffffffffffffffff1614610d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2a906137aa565b60405180910390fd5b80600f9080519060200190610d49929190612819565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded9061372a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e679061370a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ebf611881565b73ffffffffffffffffffffffffffffffffffffffff16610edd610ff4565b73ffffffffffffffffffffffffffffffffffffffff1614610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a906137aa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461102d90613b24565b80601f016020809104026020016040519081016040528092919081815260200182805461105990613b24565b80156110a65780601f1061107b576101008083540402835291602001916110a6565b820191906000526020600020905b81548152906001019060200180831161108957829003601f168201915b5050505050905090565b6000801515600e60009054906101000a900460ff16151514156110d757600b5490506110dd565b600c5490505b806110e661093b565b1115611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e9061368a565b60405180910390fd5b6000821161116a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611161906136ca565b60405180910390fd5b60148211156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a59061384a565b60405180910390fd5b80826111b861093b565b6111c29190613959565b1115611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa9061360a565b60405180910390fd5b3461121983600d54611c9a90919063ffffffff16565b14611259576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112509061374a565b60405180910390fd5b60005b828110156112c5576000801515600e60009054906101000a900460ff16151514156112905761128961093b565b90506112a7565b600161129a61093b565b6112a49190613a3a565b90505b6112b13382611942565b5080806112bd90613b56565b91505061125c565b505050565b6112d2611881565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611340576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113379061366a565b60405180910390fd5b806005600061134d611881565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113fa611881565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161143f919061356d565b60405180910390a35050565b61145c611456611881565b83611960565b61149b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114929061380a565b60405180910390fd5b6114a784848484611cb0565b50505050565b600d5481565b606060006114bf611d0c565b9050806114cb84611d9e565b6040516020016114dc9291906134e2565b604051602081830303815290604052915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61158f611881565b73ffffffffffffffffffffffffffffffffffffffff166115ad610ff4565b73ffffffffffffffffffffffffffffffffffffffff1614611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa906137aa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a906135ea565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806117fe57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061180e575061180d82611f4b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118fc83610d4d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61195c828260405180602001604052806000815250611fb5565b5050565b600061196b82611815565b6119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a1906136aa565b60405180910390fd5b60006119b583610d4d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a2457508373ffffffffffffffffffffffffffffffffffffffff16611a0c84610799565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a355750611a3481856114f3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a5e82610d4d565b73ffffffffffffffffffffffffffffffffffffffff1614611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab906137ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1b9061364a565b60405180910390fd5b611b2f838383612010565b611b3a600082611889565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b8a9190613a3a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611be19190613959565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611ca891906139e0565b905092915050565b611cbb848484611a3e565b611cc784848484612124565b611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd906135ca565b60405180910390fd5b50505050565b6060600f8054611d1b90613b24565b80601f0160208091040260200160405190810160405280929190818152602001828054611d4790613b24565b8015611d945780601f10611d6957610100808354040283529160200191611d94565b820191906000526020600020905b815481529060010190602001808311611d7757829003601f168201915b5050505050905090565b60606000821415611de6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f46565b600082905060005b60008214611e18578080611e0190613b56565b915050600a82611e1191906139af565b9150611dee565b60008167ffffffffffffffff811115611e5a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e8c5781602001600182028036833780820191505090505b5090505b60008514611f3f57600182611ea59190613a3a565b9150600a85611eb49190613b9f565b6030611ec09190613959565b60f81b818381518110611efc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f3891906139af565b9450611e90565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611fbf83836122bb565b611fcc6000848484612124565b61200b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612002906135ca565b60405180910390fd5b505050565b61201b838383612489565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561205e576120598161248e565b61209d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461209c5761209b83826124d7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120e0576120db81612644565b61211f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461211e5761211d8282612787565b5b5b505050565b60006121458473ffffffffffffffffffffffffffffffffffffffff16612806565b156122ae578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261216e611881565b8786866040518563ffffffff1660e01b81526004016121909493929190613521565b602060405180830381600087803b1580156121aa57600080fd5b505af19250505080156121db57506040513d601f19601f820116820180604052508101906121d89190612bc5565b60015b61225e573d806000811461220b576040519150601f19603f3d011682016040523d82523d6000602084013e612210565b606091505b50600081511415612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224d906135ca565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122b3565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561232b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123229061376a565b60405180910390fd5b61233481611815565b15612374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236b9061362a565b60405180910390fd5b61238060008383612010565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123d09190613959565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016124e484610dff565b6124ee9190613a3a565b90506000600760008481526020019081526020016000205490508181146125d3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126589190613a3a565b90506000600960008481526020019081526020016000205490506000600883815481106126ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106126f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061276b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061279283610dff565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461282590613b24565b90600052602060002090601f016020900481019282612847576000855561288e565b82601f1061286057805160ff191683800117855561288e565b8280016001018555821561288e579182015b8281111561288d578251825591602001919060010190612872565b5b50905061289b919061289f565b5090565b5b808211156128b85760008160009055506001016128a0565b5090565b60006128cf6128ca846138b6565b613885565b9050828152602081018484840111156128e757600080fd5b6128f2848285613ae2565b509392505050565b600061290d612908846138e6565b613885565b90508281526020810184848401111561292557600080fd5b612930848285613ae2565b509392505050565b60008135905061294781613c9d565b92915050565b60008135905061295c81613cb4565b92915050565b60008135905061297181613ccb565b92915050565b60008151905061298681613ccb565b92915050565b600082601f83011261299d57600080fd5b81356129ad8482602086016128bc565b91505092915050565b600082601f8301126129c757600080fd5b81356129d78482602086016128fa565b91505092915050565b6000813590506129ef81613ce2565b92915050565b600060208284031215612a0757600080fd5b6000612a1584828501612938565b91505092915050565b60008060408385031215612a3157600080fd5b6000612a3f85828601612938565b9250506020612a5085828601612938565b9150509250929050565b600080600060608486031215612a6f57600080fd5b6000612a7d86828701612938565b9350506020612a8e86828701612938565b9250506040612a9f868287016129e0565b9150509250925092565b60008060008060808587031215612abf57600080fd5b6000612acd87828801612938565b9450506020612ade87828801612938565b9350506040612aef878288016129e0565b925050606085013567ffffffffffffffff811115612b0c57600080fd5b612b188782880161298c565b91505092959194509250565b60008060408385031215612b3757600080fd5b6000612b4585828601612938565b9250506020612b568582860161294d565b9150509250929050565b60008060408385031215612b7357600080fd5b6000612b8185828601612938565b9250506020612b92858286016129e0565b9150509250929050565b600060208284031215612bae57600080fd5b6000612bbc84828501612962565b91505092915050565b600060208284031215612bd757600080fd5b6000612be584828501612977565b91505092915050565b600060208284031215612c0057600080fd5b600082013567ffffffffffffffff811115612c1a57600080fd5b612c26848285016129b6565b91505092915050565b600060208284031215612c4157600080fd5b6000612c4f848285016129e0565b91505092915050565b612c6181613a6e565b82525050565b612c7081613a80565b82525050565b6000612c8182613916565b612c8b818561392c565b9350612c9b818560208601613af1565b612ca481613c8c565b840191505092915050565b6000612cba82613921565b612cc4818561393d565b9350612cd4818560208601613af1565b612cdd81613c8c565b840191505092915050565b6000612cf382613921565b612cfd818561394e565b9350612d0d818560208601613af1565b80840191505092915050565b6000612d26602b8361393d565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000612d8c60328361393d565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612df260268361393d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612e5860418361393d565b91507f54686520616d6f756e74206f66204e46547320796f752061726520747279696e60008301527f6720746f206d696e74206578636565647320746865206d617820737570706c7960208301527f2e000000000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000612ee4601c8361393d565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612f2460248361393d565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f8a60198361393d565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612fca601a8361393d565b91507f416c6c204e4654732068617665206265656e206d696e7465642e0000000000006000830152602082019050919050565b600061300a602c8361393d565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061307060178361393d565b91507f4d757374206d696e74206174206c65617374206f6e652e0000000000000000006000830152602082019050919050565b60006130b060388361393d565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613116602a8361393d565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061317c60298361393d565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006131e260168361393d565b91507f496e636f72726563742045746865722076616c75652e000000000000000000006000830152602082019050919050565b600061322260208361393d565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613262602c8361393d565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006132c860208361393d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061330860298361393d565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061336e60218361393d565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133d460318361393d565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061343a602c8361393d565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006134a0601d8361393d565b91507f4d6178696d756d20616d6f756e7420746f206d696e742069732032302e0000006000830152602082019050919050565b6134dc81613ad8565b82525050565b60006134ee8285612ce8565b91506134fa8284612ce8565b91508190509392505050565b600060208201905061351b6000830184612c58565b92915050565b60006080820190506135366000830187612c58565b6135436020830186612c58565b61355060408301856134d3565b81810360608301526135628184612c76565b905095945050505050565b60006020820190506135826000830184612c67565b92915050565b600060208201905081810360008301526135a28184612caf565b905092915050565b600060208201905081810360008301526135c381612d19565b9050919050565b600060208201905081810360008301526135e381612d7f565b9050919050565b6000602082019050818103600083015261360381612de5565b9050919050565b6000602082019050818103600083015261362381612e4b565b9050919050565b6000602082019050818103600083015261364381612ed7565b9050919050565b6000602082019050818103600083015261366381612f17565b9050919050565b6000602082019050818103600083015261368381612f7d565b9050919050565b600060208201905081810360008301526136a381612fbd565b9050919050565b600060208201905081810360008301526136c381612ffd565b9050919050565b600060208201905081810360008301526136e381613063565b9050919050565b60006020820190508181036000830152613703816130a3565b9050919050565b6000602082019050818103600083015261372381613109565b9050919050565b600060208201905081810360008301526137438161316f565b9050919050565b60006020820190508181036000830152613763816131d5565b9050919050565b6000602082019050818103600083015261378381613215565b9050919050565b600060208201905081810360008301526137a381613255565b9050919050565b600060208201905081810360008301526137c3816132bb565b9050919050565b600060208201905081810360008301526137e3816132fb565b9050919050565b6000602082019050818103600083015261380381613361565b9050919050565b60006020820190508181036000830152613823816133c7565b9050919050565b600060208201905081810360008301526138438161342d565b9050919050565b6000602082019050818103600083015261386381613493565b9050919050565b600060208201905061387f60008301846134d3565b92915050565b6000604051905081810181811067ffffffffffffffff821117156138ac576138ab613c5d565b5b8060405250919050565b600067ffffffffffffffff8211156138d1576138d0613c5d565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561390157613900613c5d565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061396482613ad8565b915061396f83613ad8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139a4576139a3613bd0565b5b828201905092915050565b60006139ba82613ad8565b91506139c583613ad8565b9250826139d5576139d4613bff565b5b828204905092915050565b60006139eb82613ad8565b91506139f683613ad8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a2f57613a2e613bd0565b5b828202905092915050565b6000613a4582613ad8565b9150613a5083613ad8565b925082821015613a6357613a62613bd0565b5b828203905092915050565b6000613a7982613ab8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b0f578082015181840152602081019050613af4565b83811115613b1e576000848401525b50505050565b60006002820490506001821680613b3c57607f821691505b60208210811415613b5057613b4f613c2e565b5b50919050565b6000613b6182613ad8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b9457613b93613bd0565b5b600182019050919050565b6000613baa82613ad8565b9150613bb583613ad8565b925082613bc557613bc4613bff565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613ca681613a6e565b8114613cb157600080fd5b50565b613cbd81613a80565b8114613cc857600080fd5b50565b613cd481613a8c565b8114613cdf57600080fd5b50565b613ceb81613ad8565b8114613cf657600080fd5b5056fea264697066735822122039dc25672b1c2a8c63c1f30586c24606514068f40d69e27e5e1ae3dde49a3efd64736f6c63430008000033

Deployed Bytecode Sourcemap

49765:2336:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34260:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21483:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22943:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22480:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49993:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34913:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50728:285;;;:::i;:::-;;49906:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23833:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49949:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34581:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50109:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51978:120;;;:::i;:::-;;24209:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35103:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50389:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21177:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20907:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42132:148;;;;;;;;;;;;;:::i;:::-;;41481:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21652:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51020:950;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23236:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24431:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50041:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50508:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23602:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42435:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34260:237;34362:4;34401:35;34386:50;;;:11;:50;;;;:103;;;;34453:36;34477:11;34453:23;:36::i;:::-;34386:103;34379:110;;34260:237;;;:::o;21483:100::-;21537:13;21570:5;21563:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21483:100;:::o;22943:221::-;23019:7;23047:16;23055:7;23047;:16::i;:::-;23039:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23132:15;:24;23148:7;23132:24;;;;;;;;;;;;;;;;;;;;;23125:31;;22943:221;;;:::o;22480:397::-;22561:13;22577:23;22592:7;22577:14;:23::i;:::-;22561:39;;22625:5;22619:11;;:2;:11;;;;22611:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22705:5;22689:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22714:37;22731:5;22738:12;:10;:12::i;:::-;22714:16;:37::i;:::-;22689:62;22681:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;22848:21;22857:2;22861:7;22848:8;:21::i;:::-;22480:397;;;:::o;49993:41::-;50032:2;49993:41;:::o;34913:113::-;34974:7;35001:10;:17;;;;34994:24;;34913:113;:::o;50728:285::-;50797:16;;50781:13;:11;:13::i;:::-;:32;50773:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;50877:9;50863:10;;:23;50855:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;50940:5;50932:13;;:4;;;;;;;;;;;:13;;;50924:22;;;;;;50964:4;50957;;:11;;;;;;;;;;;;;;;;;;50979:26;50989:10;51001:3;50979:9;:26::i;:::-;50728:285::o;49906:36::-;;;;:::o;23833:305::-;23994:41;24013:12;:10;:12::i;:::-;24027:7;23994:18;:41::i;:::-;23986:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24102:28;24112:4;24118:2;24122:7;24102:9;:28::i;:::-;23833:305;;;:::o;49949:37::-;;;;:::o;34581:256::-;34678:7;34714:23;34731:5;34714:16;:23::i;:::-;34706:5;:31;34698:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34803:12;:19;34816:5;34803:19;;;;;;;;;;;;;;;:26;34823:5;34803:26;;;;;;;;;;;;34796:33;;34581:256;;;;:::o;50109:24::-;;;;;;;;;;;;;:::o;51978:120::-;41712:12;:10;:12::i;:::-;41701:23;;:7;:5;:7::i;:::-;:23;;;41693:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52050:10:::1;52042:24;;:47;52067:21;52042:47;;;;;;;;;;;;;;;;;;;;;;;52034:56;;;::::0;::::1;;51978:120::o:0;24209:151::-;24313:39;24330:4;24336:2;24340:7;24313:39;;;;;;;;;;;;:16;:39::i;:::-;24209:151;;;:::o;35103:233::-;35178:7;35214:30;:28;:30::i;:::-;35206:5;:38;35198:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35311:10;35322:5;35311:17;;;;;;;;;;;;;;;;;;;;;;;;35304:24;;35103:233;;;:::o;50389:111::-;41712:12;:10;:12::i;:::-;41701:23;;:7;:5;:7::i;:::-;:23;;;41693:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50484:8:::1;50465:16;:27;;;;;;;;;;;;:::i;:::-;;50389:111:::0;:::o;21177:239::-;21249:7;21269:13;21285:7;:16;21293:7;21285:16;;;;;;;;;;;;;;;;;;;;;21269:32;;21337:1;21320:19;;:5;:19;;;;21312:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21403:5;21396:12;;;21177:239;;;:::o;20907:208::-;20979:7;21024:1;21007:19;;:5;:19;;;;20999:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21091:9;:16;21101:5;21091:16;;;;;;;;;;;;;;;;21084:23;;20907:208;;;:::o;42132:148::-;41712:12;:10;:12::i;:::-;41701:23;;:7;:5;:7::i;:::-;:23;;;41693:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42239:1:::1;42202:40;;42223:6;;;;;;;;;;;42202:40;;;;;;;;;;;;42270:1;42253:6;;:19;;;;;;;;;;;;;;;;;;42132:148::o:0;41481:87::-;41527:7;41554:6;;;;;;;;;;;41547:13;;41481:87;:::o;21652:104::-;21708:13;21741:7;21734:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21652:104;:::o;51020:950::-;51082:11;51116:5;51108:13;;:4;;;;;;;;;;;:13;;;51104:122;;;51144:15;;51138:21;;51104:122;;;51198:16;;51192:22;;51104:122;51261:3;51244:13;:11;:13::i;:::-;:20;;51236:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;51329:1;51314:12;:16;51306:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;50032:2;51377:12;:31;;51369:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;51493:3;51477:12;51461:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:35;;51453:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;51617:9;51585:28;51600:12;51585:10;;:14;;:28;;;;:::i;:::-;:41;51577:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;51671:9;51666:298;51690:12;51686:1;:16;51666:298;;;51724:17;51768:5;51760:13;;:4;;;;;;;;;;;:13;;;51756:150;;;51806:13;:11;:13::i;:::-;51794:25;;51756:150;;;51888:1;51872:13;:11;:13::i;:::-;:17;;;;:::i;:::-;51860:29;;51756:150;51920:32;51930:10;51942:9;51920;:32::i;:::-;51666:298;51704:3;;;;;:::i;:::-;;;;51666:298;;;;51020:950;;:::o;23236:295::-;23351:12;:10;:12::i;:::-;23339:24;;:8;:24;;;;23331:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23451:8;23406:18;:32;23425:12;:10;:12::i;:::-;23406:32;;;;;;;;;;;;;;;:42;23439:8;23406:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23504:8;23475:48;;23490:12;:10;:12::i;:::-;23475:48;;;23514:8;23475:48;;;;;;:::i;:::-;;;;;;;;23236:295;;:::o;24431:285::-;24563:41;24582:12;:10;:12::i;:::-;24596:7;24563:18;:41::i;:::-;24555:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24669:39;24683:4;24689:2;24693:7;24702:5;24669:13;:39::i;:::-;24431:285;;;;:::o;50041:45::-;;;;:::o;50508:212::-;50581:13;50607:21;50631:10;:8;:10::i;:::-;50607:34;;50683:7;50692:18;:7;:16;:18::i;:::-;50666:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50652:60;;;50508:212;;;:::o;23602:164::-;23699:4;23723:18;:25;23742:5;23723:25;;;;;;;;;;;;;;;:35;23749:8;23723:35;;;;;;;;;;;;;;;;;;;;;;;;;23716:42;;23602:164;;;;:::o;42435:244::-;41712:12;:10;:12::i;:::-;41701:23;;:7;:5;:7::i;:::-;:23;;;41693:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42544:1:::1;42524:22;;:8;:22;;;;42516:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42634:8;42605:38;;42626:6;;;;;;;;;;;42605:38;;;;;;;;;;;;42663:8;42654:6;;:17;;;;;;;;;;;;;;;;;;42435:244:::0;:::o;20551:292::-;20653:4;20692:25;20677:40;;;:11;:40;;;;:105;;;;20749:33;20734:48;;;:11;:48;;;;20677:105;:158;;;;20799:36;20823:11;20799:23;:36::i;:::-;20677:158;20670:165;;20551:292;;;:::o;26183:127::-;26248:4;26300:1;26272:30;;:7;:16;26280:7;26272:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26265:37;;26183:127;;;:::o;15867:98::-;15920:7;15947:10;15940:17;;15867:98;:::o;30060:174::-;30162:2;30135:15;:24;30151:7;30135:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30218:7;30214:2;30180:46;;30189:23;30204:7;30189:14;:23::i;:::-;30180:46;;;;;;;;;;;;30060:174;;:::o;27167:110::-;27243:26;27253:2;27257:7;27243:26;;;;;;;;;;;;:9;:26::i;:::-;27167:110;;:::o;26477:348::-;26570:4;26595:16;26603:7;26595;:16::i;:::-;26587:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26671:13;26687:23;26702:7;26687:14;:23::i;:::-;26671:39;;26740:5;26729:16;;:7;:16;;;:51;;;;26773:7;26749:31;;:20;26761:7;26749:11;:20::i;:::-;:31;;;26729:51;:87;;;;26784:32;26801:5;26808:7;26784:16;:32::i;:::-;26729:87;26721:96;;;26477:348;;;;:::o;29398:544::-;29523:4;29496:31;;:23;29511:7;29496:14;:23::i;:::-;:31;;;29488:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29606:1;29592:16;;:2;:16;;;;29584:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29662:39;29683:4;29689:2;29693:7;29662:20;:39::i;:::-;29766:29;29783:1;29787:7;29766:8;:29::i;:::-;29827:1;29808:9;:15;29818:4;29808:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29856:1;29839:9;:13;29849:2;29839:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29887:2;29868:7;:16;29876:7;29868:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29926:7;29922:2;29907:27;;29916:4;29907:27;;;;;;;;;;;;29398:544;;;:::o;46154:98::-;46212:7;46243:1;46239;:5;;;;:::i;:::-;46232:12;;46154:98;;;;:::o;25598:272::-;25712:28;25722:4;25728:2;25732:7;25712:9;:28::i;:::-;25759:48;25782:4;25788:2;25792:7;25801:5;25759:22;:48::i;:::-;25751:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25598:272;;;;:::o;50264:117::-;50324:13;50357:16;50350:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50264:117;:::o;16518:723::-;16574:13;16804:1;16795:5;:10;16791:53;;;16822:10;;;;;;;;;;;;;;;;;;;;;16791:53;16854:12;16869:5;16854:20;;16885:14;16910:78;16925:1;16917:4;:9;16910:78;;16943:8;;;;;:::i;:::-;;;;16974:2;16966:10;;;;;:::i;:::-;;;16910:78;;;16998:19;17030:6;17020:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16998:39;;17048:154;17064:1;17055:5;:10;17048:154;;17092:1;17082:11;;;;;:::i;:::-;;;17159:2;17151:5;:10;;;;:::i;:::-;17138:2;:24;;;;:::i;:::-;17125:39;;17108:6;17115;17108:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17188:2;17179:11;;;;;:::i;:::-;;;17048:154;;;17226:6;17212:21;;;;;16518:723;;;;:::o;19067:157::-;19152:4;19191:25;19176:40;;;:11;:40;;;;19169:47;;19067:157;;;:::o;27504:250::-;27600:18;27606:2;27610:7;27600:5;:18::i;:::-;27637:54;27668:1;27672:2;27676:7;27685:5;27637:22;:54::i;:::-;27629:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;27504:250;;;:::o;35949:555::-;36059:45;36086:4;36092:2;36096:7;36059:26;:45::i;:::-;36137:1;36121:18;;:4;:18;;;36117:187;;;36156:40;36188:7;36156:31;:40::i;:::-;36117:187;;;36226:2;36218:10;;:4;:10;;;36214:90;;36245:47;36278:4;36284:7;36245:32;:47::i;:::-;36214:90;36117:187;36332:1;36318:16;;:2;:16;;;36314:183;;;36351:45;36388:7;36351:36;:45::i;:::-;36314:183;;;36424:4;36418:10;;:2;:10;;;36414:83;;36445:40;36473:2;36477:7;36445:27;:40::i;:::-;36414:83;36314:183;35949:555;;;:::o;30799:843::-;30920:4;30946:15;:2;:13;;;:15::i;:::-;30942:693;;;30998:2;30982:36;;;31019:12;:10;:12::i;:::-;31033:4;31039:7;31048:5;30982:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30978:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31245:1;31228:6;:13;:18;31224:341;;;31271:60;;;;;;;;;;:::i;:::-;;;;;;;;31224:341;31515:6;31509:13;31500:6;31496:2;31492:15;31485:38;30978:602;31115:45;;;31105:55;;;:6;:55;;;;31098:62;;;;;30942:693;31619:4;31612:11;;30799:843;;;;;;;:::o;28090:382::-;28184:1;28170:16;;:2;:16;;;;28162:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28243:16;28251:7;28243;:16::i;:::-;28242:17;28234:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28305:45;28334:1;28338:2;28342:7;28305:20;:45::i;:::-;28380:1;28363:9;:13;28373:2;28363:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28411:2;28392:7;:16;28400:7;28392:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28456:7;28452:2;28431:33;;28448:1;28431:33;;;;;;;;;;;;28090:382;;:::o;32255:93::-;;;;:::o;37227:164::-;37331:10;:17;;;;37304:15;:24;37320:7;37304:24;;;;;;;;;;;:44;;;;37359:10;37375:7;37359:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37227:164;:::o;38018:988::-;38284:22;38334:1;38309:22;38326:4;38309:16;:22::i;:::-;:26;;;;:::i;:::-;38284:51;;38346:18;38367:17;:26;38385:7;38367:26;;;;;;;;;;;;38346:47;;38514:14;38500:10;:28;38496:328;;38545:19;38567:12;:18;38580:4;38567:18;;;;;;;;;;;;;;;:34;38586:14;38567:34;;;;;;;;;;;;38545:56;;38651:11;38618:12;:18;38631:4;38618:18;;;;;;;;;;;;;;;:30;38637:10;38618:30;;;;;;;;;;;:44;;;;38768:10;38735:17;:30;38753:11;38735:30;;;;;;;;;;;:43;;;;38496:328;;38920:17;:26;38938:7;38920:26;;;;;;;;;;;38913:33;;;38964:12;:18;38977:4;38964:18;;;;;;;;;;;;;;;:34;38983:14;38964:34;;;;;;;;;;;38957:41;;;38018:988;;;;:::o;39301:1079::-;39554:22;39599:1;39579:10;:17;;;;:21;;;;:::i;:::-;39554:46;;39611:18;39632:15;:24;39648:7;39632:24;;;;;;;;;;;;39611:45;;39983:19;40005:10;40016:14;40005:26;;;;;;;;;;;;;;;;;;;;;;;;39983:48;;40069:11;40044:10;40055;40044:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40180:10;40149:15;:28;40165:11;40149:28;;;;;;;;;;;:41;;;;40321:15;:24;40337:7;40321:24;;;;;;;;;;;40314:31;;;40356:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39301:1079;;;;:::o;36805:221::-;36890:14;36907:20;36924:2;36907:16;:20::i;:::-;36890:37;;36965:7;36938:12;:16;36951:2;36938:16;;;;;;;;;;;;;;;:24;36955:6;36938:24;;;;;;;;;;;:34;;;;37012:6;36983:17;:26;37001:7;36983:26;;;;;;;;;;;:35;;;;36805:221;;;:::o;7984:422::-;8044:4;8252:12;8363:7;8351:20;8343:28;;8397:1;8390:4;:8;8383:15;;;7984:422;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:118::-;6171:24;6189:5;6171:24;:::i;:::-;6166:3;6159:37;6149:53;;:::o;6208:109::-;6289:21;6304:5;6289:21;:::i;:::-;6284:3;6277:34;6267:50;;:::o;6323:360::-;;6437:38;6469:5;6437:38;:::i;:::-;6491:70;6554:6;6549:3;6491:70;:::i;:::-;6484:77;;6570:52;6615:6;6610:3;6603:4;6596:5;6592:16;6570:52;:::i;:::-;6647:29;6669:6;6647:29;:::i;:::-;6642:3;6638:39;6631:46;;6413:270;;;;;:::o;6689:364::-;;6805:39;6838:5;6805:39;:::i;:::-;6860:71;6924:6;6919:3;6860:71;:::i;:::-;6853:78;;6940:52;6985:6;6980:3;6973:4;6966:5;6962:16;6940:52;:::i;:::-;7017:29;7039:6;7017:29;:::i;:::-;7012:3;7008:39;7001:46;;6781:272;;;;;:::o;7059:377::-;;7193:39;7226:5;7193:39;:::i;:::-;7248:89;7330:6;7325:3;7248:89;:::i;:::-;7241:96;;7346:52;7391:6;7386:3;7379:4;7372:5;7368:16;7346:52;:::i;:::-;7423:6;7418:3;7414:16;7407:23;;7169:267;;;;;:::o;7442:375::-;;7605:67;7669:2;7664:3;7605:67;:::i;:::-;7598:74;;7702:34;7698:1;7693:3;7689:11;7682:55;7768:13;7763:2;7758:3;7754:12;7747:35;7808:2;7803:3;7799:12;7792:19;;7588:229;;;:::o;7823:382::-;;7986:67;8050:2;8045:3;7986:67;:::i;:::-;7979:74;;8083:34;8079:1;8074:3;8070:11;8063:55;8149:20;8144:2;8139:3;8135:12;8128:42;8196:2;8191:3;8187:12;8180:19;;7969:236;;;:::o;8211:370::-;;8374:67;8438:2;8433:3;8374:67;:::i;:::-;8367:74;;8471:34;8467:1;8462:3;8458:11;8451:55;8537:8;8532:2;8527:3;8523:12;8516:30;8572:2;8567:3;8563:12;8556:19;;8357:224;;;:::o;8587:431::-;;8750:67;8814:2;8809:3;8750:67;:::i;:::-;8743:74;;8847:34;8843:1;8838:3;8834:11;8827:55;8913:34;8908:2;8903:3;8899:12;8892:56;8979:3;8974:2;8969:3;8965:12;8958:25;9009:2;9004:3;9000:12;8993:19;;8733:285;;;:::o;9024:326::-;;9187:67;9251:2;9246:3;9187:67;:::i;:::-;9180:74;;9284:30;9280:1;9275:3;9271:11;9264:51;9341:2;9336:3;9332:12;9325:19;;9170:180;;;:::o;9356:368::-;;9519:67;9583:2;9578:3;9519:67;:::i;:::-;9512:74;;9616:34;9612:1;9607:3;9603:11;9596:55;9682:6;9677:2;9672:3;9668:12;9661:28;9715:2;9710:3;9706:12;9699:19;;9502:222;;;:::o;9730:323::-;;9893:67;9957:2;9952:3;9893:67;:::i;:::-;9886:74;;9990:27;9986:1;9981:3;9977:11;9970:48;10044:2;10039:3;10035:12;10028:19;;9876:177;;;:::o;10059:324::-;;10222:67;10286:2;10281:3;10222:67;:::i;:::-;10215:74;;10319:28;10315:1;10310:3;10306:11;10299:49;10374:2;10369:3;10365:12;10358:19;;10205:178;;;:::o;10389:376::-;;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10649:34;10645:1;10640:3;10636:11;10629:55;10715:14;10710:2;10705:3;10701:12;10694:36;10756:2;10751:3;10747:12;10740:19;;10535:230;;;:::o;10771:321::-;;10934:67;10998:2;10993:3;10934:67;:::i;:::-;10927:74;;11031:25;11027:1;11022:3;11018:11;11011:46;11083:2;11078:3;11074:12;11067:19;;10917:175;;;:::o;11098:388::-;;11261:67;11325:2;11320:3;11261:67;:::i;:::-;11254:74;;11358:34;11354:1;11349:3;11345:11;11338:55;11424:26;11419:2;11414:3;11410:12;11403:48;11477:2;11472:3;11468:12;11461:19;;11244:242;;;:::o;11492:374::-;;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11752:34;11748:1;11743:3;11739:11;11732:55;11818:12;11813:2;11808:3;11804:12;11797:34;11857:2;11852:3;11848:12;11841:19;;11638:228;;;:::o;11872:373::-;;12035:67;12099:2;12094:3;12035:67;:::i;:::-;12028:74;;12132:34;12128:1;12123:3;12119:11;12112:55;12198:11;12193:2;12188:3;12184:12;12177:33;12236:2;12231:3;12227:12;12220:19;;12018:227;;;:::o;12251:320::-;;12414:67;12478:2;12473:3;12414:67;:::i;:::-;12407:74;;12511:24;12507:1;12502:3;12498:11;12491:45;12562:2;12557:3;12553:12;12546:19;;12397:174;;;:::o;12577:330::-;;12740:67;12804:2;12799:3;12740:67;:::i;:::-;12733:74;;12837:34;12833:1;12828:3;12824:11;12817:55;12898:2;12893:3;12889:12;12882:19;;12723:184;;;:::o;12913:376::-;;13076:67;13140:2;13135:3;13076:67;:::i;:::-;13069:74;;13173:34;13169:1;13164:3;13160:11;13153:55;13239:14;13234:2;13229:3;13225:12;13218:36;13280:2;13275:3;13271:12;13264:19;;13059:230;;;:::o;13295:330::-;;13458:67;13522:2;13517:3;13458:67;:::i;:::-;13451:74;;13555:34;13551:1;13546:3;13542:11;13535:55;13616:2;13611:3;13607:12;13600:19;;13441:184;;;:::o;13631:373::-;;13794:67;13858:2;13853:3;13794:67;:::i;:::-;13787:74;;13891:34;13887:1;13882:3;13878:11;13871:55;13957:11;13952:2;13947:3;13943:12;13936:33;13995:2;13990:3;13986:12;13979:19;;13777:227;;;:::o;14010:365::-;;14173:67;14237:2;14232:3;14173:67;:::i;:::-;14166:74;;14270:34;14266:1;14261:3;14257:11;14250:55;14336:3;14331:2;14326:3;14322:12;14315:25;14366:2;14361:3;14357:12;14350:19;;14156:219;;;:::o;14381:381::-;;14544:67;14608:2;14603:3;14544:67;:::i;:::-;14537:74;;14641:34;14637:1;14632:3;14628:11;14621:55;14707:19;14702:2;14697:3;14693:12;14686:41;14753:2;14748:3;14744:12;14737:19;;14527:235;;;:::o;14768:376::-;;14931:67;14995:2;14990:3;14931:67;:::i;:::-;14924:74;;15028:34;15024:1;15019:3;15015:11;15008:55;15094:14;15089:2;15084:3;15080:12;15073:36;15135:2;15130:3;15126:12;15119:19;;14914:230;;;:::o;15150:327::-;;15313:67;15377:2;15372:3;15313:67;:::i;:::-;15306:74;;15410:31;15406:1;15401:3;15397:11;15390:52;15468:2;15463:3;15459:12;15452:19;;15296:181;;;:::o;15483:118::-;15570:24;15588:5;15570:24;:::i;:::-;15565:3;15558:37;15548:53;;:::o;15607:435::-;;15809:95;15900:3;15891:6;15809:95;:::i;:::-;15802:102;;15921:95;16012:3;16003:6;15921:95;:::i;:::-;15914:102;;16033:3;16026:10;;15791:251;;;;;:::o;16048:222::-;;16179:2;16168:9;16164:18;16156:26;;16192:71;16260:1;16249:9;16245:17;16236:6;16192:71;:::i;:::-;16146:124;;;;:::o;16276:640::-;;16509:3;16498:9;16494:19;16486:27;;16523:71;16591:1;16580:9;16576:17;16567:6;16523:71;:::i;:::-;16604:72;16672:2;16661:9;16657:18;16648:6;16604:72;:::i;:::-;16686;16754:2;16743:9;16739:18;16730:6;16686:72;:::i;:::-;16805:9;16799:4;16795:20;16790:2;16779:9;16775:18;16768:48;16833:76;16904:4;16895:6;16833:76;:::i;:::-;16825:84;;16476:440;;;;;;;:::o;16922:210::-;;17047:2;17036:9;17032:18;17024:26;;17060:65;17122:1;17111:9;17107:17;17098:6;17060:65;:::i;:::-;17014:118;;;;:::o;17138:313::-;;17289:2;17278:9;17274:18;17266:26;;17338:9;17332:4;17328:20;17324:1;17313:9;17309:17;17302:47;17366:78;17439:4;17430:6;17366:78;:::i;:::-;17358:86;;17256:195;;;;:::o;17457:419::-;;17661:2;17650:9;17646:18;17638:26;;17710:9;17704:4;17700:20;17696:1;17685:9;17681:17;17674:47;17738:131;17864:4;17738:131;:::i;:::-;17730:139;;17628:248;;;:::o;17882:419::-;;18086:2;18075:9;18071:18;18063:26;;18135:9;18129:4;18125:20;18121:1;18110:9;18106:17;18099:47;18163:131;18289:4;18163:131;:::i;:::-;18155:139;;18053:248;;;:::o;18307:419::-;;18511:2;18500:9;18496:18;18488:26;;18560:9;18554:4;18550:20;18546:1;18535:9;18531:17;18524:47;18588:131;18714:4;18588:131;:::i;:::-;18580:139;;18478:248;;;:::o;18732:419::-;;18936:2;18925:9;18921:18;18913:26;;18985:9;18979:4;18975:20;18971:1;18960:9;18956:17;18949:47;19013:131;19139:4;19013:131;:::i;:::-;19005:139;;18903:248;;;:::o;19157:419::-;;19361:2;19350:9;19346:18;19338:26;;19410:9;19404:4;19400:20;19396:1;19385:9;19381:17;19374:47;19438:131;19564:4;19438:131;:::i;:::-;19430:139;;19328:248;;;:::o;19582:419::-;;19786:2;19775:9;19771:18;19763:26;;19835:9;19829:4;19825:20;19821:1;19810:9;19806:17;19799:47;19863:131;19989:4;19863:131;:::i;:::-;19855:139;;19753:248;;;:::o;20007:419::-;;20211:2;20200:9;20196:18;20188:26;;20260:9;20254:4;20250:20;20246:1;20235:9;20231:17;20224:47;20288:131;20414:4;20288:131;:::i;:::-;20280:139;;20178:248;;;:::o;20432:419::-;;20636:2;20625:9;20621:18;20613:26;;20685:9;20679:4;20675:20;20671:1;20660:9;20656:17;20649:47;20713:131;20839:4;20713:131;:::i;:::-;20705:139;;20603:248;;;:::o;20857:419::-;;21061:2;21050:9;21046:18;21038:26;;21110:9;21104:4;21100:20;21096:1;21085:9;21081:17;21074:47;21138:131;21264:4;21138:131;:::i;:::-;21130:139;;21028:248;;;:::o;21282:419::-;;21486:2;21475:9;21471:18;21463:26;;21535:9;21529:4;21525:20;21521:1;21510:9;21506:17;21499:47;21563:131;21689:4;21563:131;:::i;:::-;21555:139;;21453:248;;;:::o;21707:419::-;;21911:2;21900:9;21896:18;21888:26;;21960:9;21954:4;21950:20;21946:1;21935:9;21931:17;21924:47;21988:131;22114:4;21988:131;:::i;:::-;21980:139;;21878:248;;;:::o;22132:419::-;;22336:2;22325:9;22321:18;22313:26;;22385:9;22379:4;22375:20;22371:1;22360:9;22356:17;22349:47;22413:131;22539:4;22413:131;:::i;:::-;22405:139;;22303:248;;;:::o;22557:419::-;;22761:2;22750:9;22746:18;22738:26;;22810:9;22804:4;22800:20;22796:1;22785:9;22781:17;22774:47;22838:131;22964:4;22838:131;:::i;:::-;22830:139;;22728:248;;;:::o;22982:419::-;;23186:2;23175:9;23171:18;23163:26;;23235:9;23229:4;23225:20;23221:1;23210:9;23206:17;23199:47;23263:131;23389:4;23263:131;:::i;:::-;23255:139;;23153:248;;;:::o;23407:419::-;;23611:2;23600:9;23596:18;23588:26;;23660:9;23654:4;23650:20;23646:1;23635:9;23631:17;23624:47;23688:131;23814:4;23688:131;:::i;:::-;23680:139;;23578:248;;;:::o;23832:419::-;;24036:2;24025:9;24021:18;24013:26;;24085:9;24079:4;24075:20;24071:1;24060:9;24056:17;24049:47;24113:131;24239:4;24113:131;:::i;:::-;24105:139;;24003:248;;;:::o;24257:419::-;;24461:2;24450:9;24446:18;24438:26;;24510:9;24504:4;24500:20;24496:1;24485:9;24481:17;24474:47;24538:131;24664:4;24538:131;:::i;:::-;24530:139;;24428:248;;;:::o;24682:419::-;;24886:2;24875:9;24871:18;24863:26;;24935:9;24929:4;24925:20;24921:1;24910:9;24906:17;24899:47;24963:131;25089:4;24963:131;:::i;:::-;24955:139;;24853:248;;;:::o;25107:419::-;;25311:2;25300:9;25296:18;25288:26;;25360:9;25354:4;25350:20;25346:1;25335:9;25331:17;25324:47;25388:131;25514:4;25388:131;:::i;:::-;25380:139;;25278:248;;;:::o;25532:419::-;;25736:2;25725:9;25721:18;25713:26;;25785:9;25779:4;25775:20;25771:1;25760:9;25756:17;25749:47;25813:131;25939:4;25813:131;:::i;:::-;25805:139;;25703:248;;;:::o;25957:419::-;;26161:2;26150:9;26146:18;26138:26;;26210:9;26204:4;26200:20;26196:1;26185:9;26181:17;26174:47;26238:131;26364:4;26238:131;:::i;:::-;26230:139;;26128:248;;;:::o;26382:419::-;;26586:2;26575:9;26571:18;26563:26;;26635:9;26629:4;26625:20;26621:1;26610:9;26606:17;26599:47;26663:131;26789:4;26663:131;:::i;:::-;26655:139;;26553:248;;;:::o;26807:222::-;;26938:2;26927:9;26923:18;26915:26;;26951:71;27019:1;27008:9;27004:17;26995:6;26951:71;:::i;:::-;26905:124;;;;:::o;27035:283::-;;27101:2;27095:9;27085:19;;27143:4;27135:6;27131:17;27250:6;27238:10;27235:22;27214:18;27202:10;27199:34;27196:62;27193:2;;;27261:18;;:::i;:::-;27193:2;27301:10;27297:2;27290:22;27075:243;;;;:::o;27324:331::-;;27475:18;27467:6;27464:30;27461:2;;;27497:18;;:::i;:::-;27461:2;27582:4;27578:9;27571:4;27563:6;27559:17;27555:33;27547:41;;27643:4;27637;27633:15;27625:23;;27390:265;;;:::o;27661:332::-;;27813:18;27805:6;27802:30;27799:2;;;27835:18;;:::i;:::-;27799:2;27920:4;27916:9;27909:4;27901:6;27897:17;27893:33;27885:41;;27981:4;27975;27971:15;27963:23;;27728:265;;;:::o;27999:98::-;;28084:5;28078:12;28068:22;;28057:40;;;:::o;28103:99::-;;28189:5;28183:12;28173:22;;28162:40;;;:::o;28208:168::-;;28325:6;28320:3;28313:19;28365:4;28360:3;28356:14;28341:29;;28303:73;;;;:::o;28382:169::-;;28500:6;28495:3;28488:19;28540:4;28535:3;28531:14;28516:29;;28478:73;;;;:::o;28557:148::-;;28696:3;28681:18;;28671:34;;;;:::o;28711:305::-;;28770:20;28788:1;28770:20;:::i;:::-;28765:25;;28804:20;28822:1;28804:20;:::i;:::-;28799:25;;28958:1;28890:66;28886:74;28883:1;28880:81;28877:2;;;28964:18;;:::i;:::-;28877:2;29008:1;29005;29001:9;28994:16;;28755:261;;;;:::o;29022:185::-;;29079:20;29097:1;29079:20;:::i;:::-;29074:25;;29113:20;29131:1;29113:20;:::i;:::-;29108:25;;29152:1;29142:2;;29157:18;;:::i;:::-;29142:2;29199:1;29196;29192:9;29187:14;;29064:143;;;;:::o;29213:348::-;;29276:20;29294:1;29276:20;:::i;:::-;29271:25;;29310:20;29328:1;29310:20;:::i;:::-;29305:25;;29498:1;29430:66;29426:74;29423:1;29420:81;29415:1;29408:9;29401:17;29397:105;29394:2;;;29505:18;;:::i;:::-;29394:2;29553:1;29550;29546:9;29535:20;;29261:300;;;;:::o;29567:191::-;;29627:20;29645:1;29627:20;:::i;:::-;29622:25;;29661:20;29679:1;29661:20;:::i;:::-;29656:25;;29700:1;29697;29694:8;29691:2;;;29705:18;;:::i;:::-;29691:2;29750:1;29747;29743:9;29735:17;;29612:146;;;;:::o;29764:96::-;;29830:24;29848:5;29830:24;:::i;:::-;29819:35;;29809:51;;;:::o;29866:90::-;;29943:5;29936:13;29929:21;29918:32;;29908:48;;;:::o;29962:149::-;;30038:66;30031:5;30027:78;30016:89;;30006:105;;;:::o;30117:126::-;;30194:42;30187:5;30183:54;30172:65;;30162:81;;;:::o;30249:77::-;;30315:5;30304:16;;30294:32;;;:::o;30332:154::-;30416:6;30411:3;30406;30393:30;30478:1;30469:6;30464:3;30460:16;30453:27;30383:103;;;:::o;30492:307::-;30560:1;30570:113;30584:6;30581:1;30578:13;30570:113;;;30669:1;30664:3;30660:11;30654:18;30650:1;30645:3;30641:11;30634:39;30606:2;30603:1;30599:10;30594:15;;30570:113;;;30701:6;30698:1;30695:13;30692:2;;;30781:1;30772:6;30767:3;30763:16;30756:27;30692:2;30541:258;;;;:::o;30805:320::-;;30886:1;30880:4;30876:12;30866:22;;30933:1;30927:4;30923:12;30954:18;30944:2;;31010:4;31002:6;30998:17;30988:27;;30944:2;31072;31064:6;31061:14;31041:18;31038:38;31035:2;;;31091:18;;:::i;:::-;31035:2;30856:269;;;;:::o;31131:233::-;;31193:24;31211:5;31193:24;:::i;:::-;31184:33;;31239:66;31232:5;31229:77;31226:2;;;31309:18;;:::i;:::-;31226:2;31356:1;31349:5;31345:13;31338:20;;31174:190;;;:::o;31370:176::-;;31419:20;31437:1;31419:20;:::i;:::-;31414:25;;31453:20;31471:1;31453:20;:::i;:::-;31448:25;;31492:1;31482:2;;31497:18;;:::i;:::-;31482:2;31538:1;31535;31531:9;31526:14;;31404:142;;;;:::o;31552:180::-;31600:77;31597:1;31590:88;31697:4;31694:1;31687:15;31721:4;31718:1;31711:15;31738:180;31786:77;31783:1;31776:88;31883:4;31880:1;31873:15;31907:4;31904:1;31897:15;31924:180;31972:77;31969:1;31962:88;32069:4;32066:1;32059:15;32093:4;32090:1;32083:15;32110:180;32158:77;32155:1;32148:88;32255:4;32252:1;32245:15;32279:4;32276:1;32269:15;32296:102;;32388:2;32384:7;32379:2;32372:5;32368:14;32364:28;32354:38;;32344:54;;;:::o;32404:122::-;32477:24;32495:5;32477:24;:::i;:::-;32470:5;32467:35;32457:2;;32516:1;32513;32506:12;32457:2;32447:79;:::o;32532:116::-;32602:21;32617:5;32602:21;:::i;:::-;32595:5;32592:32;32582:2;;32638:1;32635;32628:12;32582:2;32572:76;:::o;32654:120::-;32726:23;32743:5;32726:23;:::i;:::-;32719:5;32716:34;32706:2;;32764:1;32761;32754:12;32706:2;32696:78;:::o;32780:122::-;32853:24;32871:5;32853:24;:::i;:::-;32846:5;32843:35;32833:2;;32892:1;32889;32882:12;32833:2;32823:79;:::o

Swarm Source

ipfs://39dc25672b1c2a8c63c1f30586c24606514068f40d69e27e5e1ae3dde49a3efd
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.