ERC-721
Overview
Max Total Supply
540 TAOM
Holders
311
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheArtOfMathematics
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-21 */ /** */ /** $$$$$$$$\ $$\ $$$$$$\ $$\ $$$$$$\ $$$$$$\ $$\ $$\ $$\ $$\ $$\ $$\ \__$$ __|$$ | $$ __$$\ $$ | $$ __$$\ $$ __$$\ $$$\ $$$ | $$ | $$ | $$ | \__| $$ | $$$$$$$\ $$$$$$\ $$ / $$ | $$$$$$\ $$$$$$\ $$ / $$ |$$ / \__| $$$$\ $$$$ | $$$$$$\ $$$$$$\ $$$$$$$\ $$$$$$\ $$$$$$\$$$$\ $$$$$$\ $$$$$$\ $$\ $$$$$$$\ $$$$$$$\ $$ | $$ __$$\ $$ __$$\ $$$$$$$$ |$$ __$$\\_$$ _| $$ | $$ |$$$$\ $$\$$\$$ $$ | \____$$\\_$$ _| $$ __$$\ $$ __$$\ $$ _$$ _$$\ \____$$\\_$$ _| $$ |$$ _____|$$ _____| $$ | $$ | $$ |$$$$$$$$ | $$ __$$ |$$ | \__| $$ | $$ | $$ |$$ _| $$ \$$$ $$ | $$$$$$$ | $$ | $$ | $$ |$$$$$$$$ |$$ / $$ / $$ | $$$$$$$ | $$ | $$ |$$ / \$$$$$$\ $$ | $$ | $$ |$$ ____| $$ | $$ |$$ | $$ |$$\ $$ | $$ |$$ | $$ |\$ /$$ |$$ __$$ | $$ |$$\ $$ | $$ |$$ ____|$$ | $$ | $$ |$$ __$$ | $$ |$$\ $$ |$$ | \____$$\ $$ | $$ | $$ |\$$$$$$$\ $$ | $$ |$$ | \$$$$ | $$$$$$ |$$ | $$ | \_/ $$ |\$$$$$$$ | \$$$$ |$$ | $$ |\$$$$$$$\ $$ | $$ | $$ |\$$$$$$$ | \$$$$ |$$ |\$$$$$$$\ $$$$$$$ | \__| \__| \__| \_______| \__| \__|\__| \____/ \______/ \__| \__| \__| \_______| \____/ \__| \__| \_______|\__| \__| \__| \_______| \____/ \__| \_______|\_______/ */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (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) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (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() { _transferOwnership(_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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (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/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) 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/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (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/IERC721.sol // OpenZeppelin Contracts v4.4.1 (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/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (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: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _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 { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { 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 TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/DokeV.sol pragma solidity ^0.8.0; contract TheArtOfMathematics is ERC721A, Ownable, ReentrancyGuard { using Address for address; using Strings for uint; string public baseTokenURI = "ipfs://QmYHT6RkGvoEfFk77AEu5qcDM2Rgo6GsCmSrE9cmgavEG6/"; uint256 public maxSupply = 540; uint256 public MAX_MINTS_PER_TX = 5; uint256 public PUBLIC_SALE_PRICE = 0.005 ether; uint256 public NUM_FREE_MINTS = 100; uint256 public MAX_FREE_PER_WALLET = 1; uint256 public freeNFTAlreadyMinted = 0; bool public isPublicSaleActive = false ; constructor( ) ERC721A("The Art Of Mathematics", "TAOM") { } function mint(uint256 numberOfTokens) external payable { require(isPublicSaleActive, "Public sale is not open"); require(totalSupply() + numberOfTokens < maxSupply + 1, "No more"); if(freeNFTAlreadyMinted + numberOfTokens > NUM_FREE_MINTS){ require( (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value, "Incorrect ETH value sent" ); } else { if (balanceOf(msg.sender) + numberOfTokens > MAX_FREE_PER_WALLET) { require( (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value, "Incorrect ETH value sent" ); require( numberOfTokens <= MAX_MINTS_PER_TX, "Max mints per transaction exceeded" ); } else { require( numberOfTokens <= MAX_FREE_PER_WALLET, "Max mints per transaction exceeded" ); freeNFTAlreadyMinted += numberOfTokens; } } _safeMint(msg.sender, numberOfTokens); } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function treasuryMint(uint quantity) public onlyOwner { require( quantity > 0, "Invalid mint amount" ); require( totalSupply() + quantity <= maxSupply, "Maximum supply exceeded" ); _safeMint(msg.sender, quantity); } function withdraw() public onlyOwner nonReentrant { Address.sendValue(payable(msg.sender), address(this).balance); } function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json")); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } function setNumFreeMints(uint256 _numfreemints) external onlyOwner { NUM_FREE_MINTS = _numfreemints; } function setSalePrice(uint256 _price) external onlyOwner { PUBLIC_SALE_PRICE = _price; } function cutMaxSupply(uint256 _amount) public onlyOwner { require( maxSupply +_amount >= 1, "Supply cannot fall below minted tokens." ); maxSupply += _amount; } function setMaxLimitPerTransaction(uint256 _limit) external onlyOwner { MAX_MINTS_PER_TX = _limit; } function setFreeLimitPerWallet(uint256 _limit) external onlyOwner { MAX_FREE_PER_WALLET = _limit; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","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":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"cutMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","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":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","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":"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":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052604051806060016040528060368152602001620042ca60369139600a9080519060200190620000359291906200023f565b5061021c600b556005600c556611c37937e08000600d556064600e556001600f5560006010556000601160006101000a81548160ff0219169083151502179055503480156200008357600080fd5b506040518060400160405280601681526020017f54686520417274204f66204d617468656d6174696373000000000000000000008152506040518060400160405280600481526020017f54414f4d000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001089291906200023f565b508060039080519060200190620001219291906200023f565b50620001326200016860201b60201c565b60008190555050506200015a6200014e6200017160201b60201c565b6200017960201b60201c565b600160098190555062000354565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024d90620002ef565b90600052602060002090601f016020900481019282620002715760008555620002bd565b82601f106200028c57805160ff1916838001178555620002bd565b82800160010185558215620002bd579182015b82811115620002bc5782518255916020019190600101906200029f565b5b509050620002cc9190620002d0565b5090565b5b80821115620002eb576000816000905550600101620002d1565b5090565b600060028204905060018216806200030857607f821691505b602082108114156200031f576200031e62000325565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613f6680620003646000396000f3fe6080604052600436106102045760003560e01c80636352211e11610118578063a22cb465116100a0578063d547cfb71161006f578063d547cfb71461071e578063d5abeb0114610749578063e985e9c514610774578063efdc7788146107b1578063f2fde38b146107da57610204565b8063a22cb46514610664578063b88d4fde1461068d578063c6a91b42146106b6578063c87b56dd146106e157610204565b806395d89b41116100e757806395d89b411461059e578063982d669e146105c957806398710d1e146105f45780639e9fcffc1461061f578063a0712d681461064857610204565b80636352211e146104e257806370a082311461051f578063715018a61461055c5780638da5cb5b1461057357610204565b80631919fed71161019b57806323b872dd1161016a57806323b872dd1461042757806328cad13d146104505780633ccfd60b1461047957806342842e0e1461049057806355f804b3146104b957610204565b80631919fed71461037f578063193ad7b4146103a85780631e84c413146103d3578063202f298a146103fe57610204565b8063095ea7b3116101d7578063095ea7b3146102d95780630a00ae83146103025780631141df201461032b57806318160ddd1461035457610204565b806301ffc9a71461020957806306fdde031461024657806307e89ec014610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061300d565b610803565b60405161023d9190613512565b60405180910390f35b34801561025257600080fd5b5061025b6108e5565b604051610268919061352d565b60405180910390f35b34801561027d57600080fd5b50610286610977565b60405161029391906136ef565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be91906130b0565b61097d565b6040516102d091906134ab565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190612fa0565b6109f9565b005b34801561030e57600080fd5b50610329600480360381019061032491906130b0565b610b04565b005b34801561033757600080fd5b50610352600480360381019061034d91906130b0565b610b8a565b005b34801561036057600080fd5b50610369610c73565b60405161037691906136ef565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a191906130b0565b610c8a565b005b3480156103b457600080fd5b506103bd610d10565b6040516103ca91906136ef565b60405180910390f35b3480156103df57600080fd5b506103e8610d16565b6040516103f59190613512565b60405180910390f35b34801561040a57600080fd5b50610425600480360381019061042091906130b0565b610d29565b005b34801561043357600080fd5b5061044e60048036038101906104499190612e8a565b610daf565b005b34801561045c57600080fd5b5061047760048036038101906104729190612fe0565b610dbf565b005b34801561048557600080fd5b5061048e610e58565b005b34801561049c57600080fd5b506104b760048036038101906104b29190612e8a565b610f36565b005b3480156104c557600080fd5b506104e060048036038101906104db9190613067565b610f56565b005b3480156104ee57600080fd5b50610509600480360381019061050491906130b0565b610fec565b60405161051691906134ab565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190612e1d565b611002565b60405161055391906136ef565b60405180910390f35b34801561056857600080fd5b506105716110d2565b005b34801561057f57600080fd5b5061058861115a565b60405161059591906134ab565b60405180910390f35b3480156105aa57600080fd5b506105b3611184565b6040516105c0919061352d565b60405180910390f35b3480156105d557600080fd5b506105de611216565b6040516105eb91906136ef565b60405180910390f35b34801561060057600080fd5b5061060961121c565b60405161061691906136ef565b60405180910390f35b34801561062b57600080fd5b50610646600480360381019061064191906130b0565b611222565b005b610662600480360381019061065d91906130b0565b6112a8565b005b34801561067057600080fd5b5061068b60048036038101906106869190612f60565b6114e9565b005b34801561069957600080fd5b506106b460048036038101906106af9190612edd565b611661565b005b3480156106c257600080fd5b506106cb6116dd565b6040516106d891906136ef565b60405180910390f35b3480156106ed57600080fd5b50610708600480360381019061070391906130b0565b6116e3565b604051610715919061352d565b60405180910390f35b34801561072a57600080fd5b5061073361175f565b604051610740919061352d565b60405180910390f35b34801561075557600080fd5b5061075e6117ed565b60405161076b91906136ef565b60405180910390f35b34801561078057600080fd5b5061079b60048036038101906107969190612e4a565b6117f3565b6040516107a89190613512565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d391906130b0565b611887565b005b3480156107e657600080fd5b5061080160048036038101906107fc9190612e1d565b6119aa565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ce57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108de57506108dd82611aa2565b5b9050919050565b6060600280546108f4906139bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610920906139bf565b801561096d5780601f106109425761010080835404028352916020019161096d565b820191906000526020600020905b81548152906001019060200180831161095057829003601f168201915b5050505050905090565b600d5481565b600061098882611b0c565b6109be576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0482610fec565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8b611b5a565b73ffffffffffffffffffffffffffffffffffffffff1614158015610abd5750610abb81610ab6611b5a565b6117f3565b155b15610af4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aff838383611b62565b505050565b610b0c611b5a565b73ffffffffffffffffffffffffffffffffffffffff16610b2a61115a565b73ffffffffffffffffffffffffffffffffffffffff1614610b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b779061362f565b60405180910390fd5b80600e8190555050565b610b92611b5a565b73ffffffffffffffffffffffffffffffffffffffff16610bb061115a565b73ffffffffffffffffffffffffffffffffffffffff1614610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd9061362f565b60405180910390fd5b600181600b54610c1691906137f4565b1015610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e906135ef565b60405180910390fd5b80600b6000828254610c6991906137f4565b9250508190555050565b6000610c7d611c14565b6001546000540303905090565b610c92611b5a565b73ffffffffffffffffffffffffffffffffffffffff16610cb061115a565b73ffffffffffffffffffffffffffffffffffffffff1614610d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfd9061362f565b60405180910390fd5b80600d8190555050565b60105481565b601160009054906101000a900460ff1681565b610d31611b5a565b73ffffffffffffffffffffffffffffffffffffffff16610d4f61115a565b73ffffffffffffffffffffffffffffffffffffffff1614610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c9061362f565b60405180910390fd5b80600f8190555050565b610dba838383611c1d565b505050565b610dc7611b5a565b73ffffffffffffffffffffffffffffffffffffffff16610de561115a565b73ffffffffffffffffffffffffffffffffffffffff1614610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e329061362f565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b610e60611b5a565b73ffffffffffffffffffffffffffffffffffffffff16610e7e61115a565b73ffffffffffffffffffffffffffffffffffffffff1614610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb9061362f565b60405180910390fd5b60026009541415610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f11906136af565b60405180910390fd5b6002600981905550610f2c33476120d3565b6001600981905550565b610f5183838360405180602001604052806000815250611661565b505050565b610f5e611b5a565b73ffffffffffffffffffffffffffffffffffffffff16610f7c61115a565b73ffffffffffffffffffffffffffffffffffffffff1614610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc99061362f565b60405180910390fd5b80600a9080519060200190610fe8929190612bee565b5050565b6000610ff7826121c7565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110da611b5a565b73ffffffffffffffffffffffffffffffffffffffff166110f861115a565b73ffffffffffffffffffffffffffffffffffffffff161461114e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111459061362f565b60405180910390fd5b6111586000612456565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611193906139bf565b80601f01602080910402602001604051908101604052809291908181526020018280546111bf906139bf565b801561120c5780601f106111e15761010080835404028352916020019161120c565b820191906000526020600020905b8154815290600101906020018083116111ef57829003601f168201915b5050505050905090565b600e5481565b600f5481565b61122a611b5a565b73ffffffffffffffffffffffffffffffffffffffff1661124861115a565b73ffffffffffffffffffffffffffffffffffffffff161461129e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112959061362f565b60405180910390fd5b80600c8190555050565b601160009054906101000a900460ff166112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee906136cf565b60405180910390fd5b6001600b5461130691906137f4565b8161130f610c73565b61131991906137f4565b10611359576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113509061354f565b60405180910390fd5b600e548160105461136a91906137f4565b11156113c5573481600d5461137f919061387b565b11156113c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b79061368f565b60405180910390fd5b6114dc565b600f54816113d233611002565b6113dc91906137f4565b111561147c573481600d546113f1919061387b565b1115611432576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114299061368f565b60405180910390fd5b600c54811115611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e906135cf565b60405180910390fd5b6114db565b600f548111156114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b8906135cf565b60405180910390fd5b80601060008282546114d391906137f4565b925050819055505b5b6114e6338261251c565b50565b6114f1611b5a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611556576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611563611b5a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611610611b5a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116559190613512565b60405180910390a35050565b61166c848484611c1d565b61168b8373ffffffffffffffffffffffffffffffffffffffff1661253a565b80156116a0575061169e8484848461255d565b155b156116d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c5481565b60606116ee82611b0c565b61172d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117249061364f565b60405180910390fd5b600a611738836126bd565b60405160200161174992919061345c565b6040516020818303038152906040529050919050565b600a805461176c906139bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611798906139bf565b80156117e55780601f106117ba576101008083540402835291602001916117e5565b820191906000526020600020905b8154815290600101906020018083116117c857829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61188f611b5a565b73ffffffffffffffffffffffffffffffffffffffff166118ad61115a565b73ffffffffffffffffffffffffffffffffffffffff1614611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa9061362f565b60405180910390fd5b60008111611946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193d9061366f565b60405180910390fd5b600b5481611952610c73565b61195c91906137f4565b111561199d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119949061360f565b60405180910390fd5b6119a7338261251c565b50565b6119b2611b5a565b73ffffffffffffffffffffffffffffffffffffffff166119d061115a565b73ffffffffffffffffffffffffffffffffffffffff1614611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d9061362f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8d9061356f565b60405180910390fd5b611a9f81612456565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611b17611c14565b11158015611b26575060005482105b8015611b53575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611c28826121c7565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c93576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611cb4611b5a565b73ffffffffffffffffffffffffffffffffffffffff161480611ce35750611ce285611cdd611b5a565b6117f3565b5b80611d285750611cf1611b5a565b73ffffffffffffffffffffffffffffffffffffffff16611d108461097d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d61576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dc8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd5858585600161281e565b611de160008487611b62565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561206157600054821461206057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120cc8585856001612824565b5050505050565b80471015612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d906135af565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161213c90613496565b60006040518083038185875af1925050503d8060008114612179576040519150601f19603f3d011682016040523d82523d6000602084013e61217e565b606091505b50509050806121c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b99061358f565b60405180910390fd5b505050565b6121cf612c74565b6000829050806121dd611c14565b111580156121ec575060005481105b1561241f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161241d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612301578092505050612451565b5b60011561241c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612417578092505050612451565b612302565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61253682826040518060200160405280600081525061282a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612583611b5a565b8786866040518563ffffffff1660e01b81526004016125a594939291906134c6565b602060405180830381600087803b1580156125bf57600080fd5b505af19250505080156125f057506040513d601f19601f820116820180604052508101906125ed919061303a565b60015b61266a573d8060008114612620576040519150601f19603f3d011682016040523d82523d6000602084013e612625565b606091505b50600081511415612662576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612705576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612819565b600082905060005b6000821461273757808061272090613a22565b915050600a82612730919061384a565b915061270d565b60008167ffffffffffffffff81111561275357612752613b58565b5b6040519080825280601f01601f1916602001820160405280156127855781602001600182028036833780820191505090505b5090505b600085146128125760018261279e91906138d5565b9150600a856127ad9190613a6b565b60306127b991906137f4565b60f81b8183815181106127cf576127ce613b29565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561280b919061384a565b9450612789565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612897576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156128d2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128df600085838661281e565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612aa08673ffffffffffffffffffffffffffffffffffffffff1661253a565b15612b66575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b15600087848060010195508761255d565b612b4b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612aa6578260005414612b6157600080fd5b612bd2565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612b67575b816000819055505050612be86000858386612824565b50505050565b828054612bfa906139bf565b90600052602060002090601f016020900481019282612c1c5760008555612c63565b82601f10612c3557805160ff1916838001178555612c63565b82800160010185558215612c63579182015b82811115612c62578251825591602001919060010190612c47565b5b509050612c709190612cb7565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612cd0576000816000905550600101612cb8565b5090565b6000612ce7612ce28461372f565b61370a565b905082815260208101848484011115612d0357612d02613b8c565b5b612d0e84828561397d565b509392505050565b6000612d29612d2484613760565b61370a565b905082815260208101848484011115612d4557612d44613b8c565b5b612d5084828561397d565b509392505050565b600081359050612d6781613ed4565b92915050565b600081359050612d7c81613eeb565b92915050565b600081359050612d9181613f02565b92915050565b600081519050612da681613f02565b92915050565b600082601f830112612dc157612dc0613b87565b5b8135612dd1848260208601612cd4565b91505092915050565b600082601f830112612def57612dee613b87565b5b8135612dff848260208601612d16565b91505092915050565b600081359050612e1781613f19565b92915050565b600060208284031215612e3357612e32613b96565b5b6000612e4184828501612d58565b91505092915050565b60008060408385031215612e6157612e60613b96565b5b6000612e6f85828601612d58565b9250506020612e8085828601612d58565b9150509250929050565b600080600060608486031215612ea357612ea2613b96565b5b6000612eb186828701612d58565b9350506020612ec286828701612d58565b9250506040612ed386828701612e08565b9150509250925092565b60008060008060808587031215612ef757612ef6613b96565b5b6000612f0587828801612d58565b9450506020612f1687828801612d58565b9350506040612f2787828801612e08565b925050606085013567ffffffffffffffff811115612f4857612f47613b91565b5b612f5487828801612dac565b91505092959194509250565b60008060408385031215612f7757612f76613b96565b5b6000612f8585828601612d58565b9250506020612f9685828601612d6d565b9150509250929050565b60008060408385031215612fb757612fb6613b96565b5b6000612fc585828601612d58565b9250506020612fd685828601612e08565b9150509250929050565b600060208284031215612ff657612ff5613b96565b5b600061300484828501612d6d565b91505092915050565b60006020828403121561302357613022613b96565b5b600061303184828501612d82565b91505092915050565b6000602082840312156130505761304f613b96565b5b600061305e84828501612d97565b91505092915050565b60006020828403121561307d5761307c613b96565b5b600082013567ffffffffffffffff81111561309b5761309a613b91565b5b6130a784828501612dda565b91505092915050565b6000602082840312156130c6576130c5613b96565b5b60006130d484828501612e08565b91505092915050565b6130e681613909565b82525050565b6130f58161391b565b82525050565b6000613106826137a6565b61311081856137bc565b935061312081856020860161398c565b61312981613b9b565b840191505092915050565b600061313f826137b1565b61314981856137d8565b935061315981856020860161398c565b61316281613b9b565b840191505092915050565b6000613178826137b1565b61318281856137e9565b935061319281856020860161398c565b80840191505092915050565b600081546131ab816139bf565b6131b581866137e9565b945060018216600081146131d057600181146131e157613214565b60ff19831686528186019350613214565b6131ea85613791565b60005b8381101561320c578154818901526001820191506020810190506131ed565b838801955050505b50505092915050565b600061322a6007836137d8565b915061323582613bac565b602082019050919050565b600061324d6026836137d8565b915061325882613bd5565b604082019050919050565b6000613270603a836137d8565b915061327b82613c24565b604082019050919050565b6000613293601d836137d8565b915061329e82613c73565b602082019050919050565b60006132b66022836137d8565b91506132c182613c9c565b604082019050919050565b60006132d96027836137d8565b91506132e482613ceb565b604082019050919050565b60006132fc6017836137d8565b915061330782613d3a565b602082019050919050565b600061331f6005836137e9565b915061332a82613d63565b600582019050919050565b60006133426020836137d8565b915061334d82613d8c565b602082019050919050565b6000613365602f836137d8565b915061337082613db5565b604082019050919050565b60006133886000836137cd565b915061339382613e04565b600082019050919050565b60006133ab6013836137d8565b91506133b682613e07565b602082019050919050565b60006133ce6018836137d8565b91506133d982613e30565b602082019050919050565b60006133f1601f836137d8565b91506133fc82613e59565b602082019050919050565b60006134146017836137d8565b915061341f82613e82565b602082019050919050565b60006134376001836137e9565b915061344282613eab565b600182019050919050565b61345681613973565b82525050565b6000613468828561319e565b91506134738261342a565b915061347f828461316d565b915061348a82613312565b91508190509392505050565b60006134a18261337b565b9150819050919050565b60006020820190506134c060008301846130dd565b92915050565b60006080820190506134db60008301876130dd565b6134e860208301866130dd565b6134f5604083018561344d565b818103606083015261350781846130fb565b905095945050505050565b600060208201905061352760008301846130ec565b92915050565b600060208201905081810360008301526135478184613134565b905092915050565b600060208201905081810360008301526135688161321d565b9050919050565b6000602082019050818103600083015261358881613240565b9050919050565b600060208201905081810360008301526135a881613263565b9050919050565b600060208201905081810360008301526135c881613286565b9050919050565b600060208201905081810360008301526135e8816132a9565b9050919050565b60006020820190508181036000830152613608816132cc565b9050919050565b60006020820190508181036000830152613628816132ef565b9050919050565b6000602082019050818103600083015261364881613335565b9050919050565b6000602082019050818103600083015261366881613358565b9050919050565b600060208201905081810360008301526136888161339e565b9050919050565b600060208201905081810360008301526136a8816133c1565b9050919050565b600060208201905081810360008301526136c8816133e4565b9050919050565b600060208201905081810360008301526136e881613407565b9050919050565b6000602082019050613704600083018461344d565b92915050565b6000613714613725565b905061372082826139f1565b919050565b6000604051905090565b600067ffffffffffffffff82111561374a57613749613b58565b5b61375382613b9b565b9050602081019050919050565b600067ffffffffffffffff82111561377b5761377a613b58565b5b61378482613b9b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137ff82613973565b915061380a83613973565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561383f5761383e613a9c565b5b828201905092915050565b600061385582613973565b915061386083613973565b9250826138705761386f613acb565b5b828204905092915050565b600061388682613973565b915061389183613973565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138ca576138c9613a9c565b5b828202905092915050565b60006138e082613973565b91506138eb83613973565b9250828210156138fe576138fd613a9c565b5b828203905092915050565b600061391482613953565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139aa57808201518184015260208101905061398f565b838111156139b9576000848401525b50505050565b600060028204905060018216806139d757607f821691505b602082108114156139eb576139ea613afa565b5b50919050565b6139fa82613b9b565b810181811067ffffffffffffffff82111715613a1957613a18613b58565b5b80604052505050565b6000613a2d82613973565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a6057613a5f613a9c565b5b600182019050919050565b6000613a7682613973565b9150613a8183613973565b925082613a9157613a90613acb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b613edd81613909565b8114613ee857600080fd5b50565b613ef48161391b565b8114613eff57600080fd5b50565b613f0b81613927565b8114613f1657600080fd5b50565b613f2281613973565b8114613f2d57600080fd5b5056fea2646970667358221220655ffa770d93f8f72086f476526a2e071e39d5e874e9db39416ea5edf9c3c69264736f6c63430008070033697066733a2f2f516d59485436526b47766f4566466b3737414575357163444d3252676f364773436d53724539636d6761764547362f
Deployed Bytecode
0x6080604052600436106102045760003560e01c80636352211e11610118578063a22cb465116100a0578063d547cfb71161006f578063d547cfb71461071e578063d5abeb0114610749578063e985e9c514610774578063efdc7788146107b1578063f2fde38b146107da57610204565b8063a22cb46514610664578063b88d4fde1461068d578063c6a91b42146106b6578063c87b56dd146106e157610204565b806395d89b41116100e757806395d89b411461059e578063982d669e146105c957806398710d1e146105f45780639e9fcffc1461061f578063a0712d681461064857610204565b80636352211e146104e257806370a082311461051f578063715018a61461055c5780638da5cb5b1461057357610204565b80631919fed71161019b57806323b872dd1161016a57806323b872dd1461042757806328cad13d146104505780633ccfd60b1461047957806342842e0e1461049057806355f804b3146104b957610204565b80631919fed71461037f578063193ad7b4146103a85780631e84c413146103d3578063202f298a146103fe57610204565b8063095ea7b3116101d7578063095ea7b3146102d95780630a00ae83146103025780631141df201461032b57806318160ddd1461035457610204565b806301ffc9a71461020957806306fdde031461024657806307e89ec014610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061300d565b610803565b60405161023d9190613512565b60405180910390f35b34801561025257600080fd5b5061025b6108e5565b604051610268919061352d565b60405180910390f35b34801561027d57600080fd5b50610286610977565b60405161029391906136ef565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be91906130b0565b61097d565b6040516102d091906134ab565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190612fa0565b6109f9565b005b34801561030e57600080fd5b50610329600480360381019061032491906130b0565b610b04565b005b34801561033757600080fd5b50610352600480360381019061034d91906130b0565b610b8a565b005b34801561036057600080fd5b50610369610c73565b60405161037691906136ef565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a191906130b0565b610c8a565b005b3480156103b457600080fd5b506103bd610d10565b6040516103ca91906136ef565b60405180910390f35b3480156103df57600080fd5b506103e8610d16565b6040516103f59190613512565b60405180910390f35b34801561040a57600080fd5b50610425600480360381019061042091906130b0565b610d29565b005b34801561043357600080fd5b5061044e60048036038101906104499190612e8a565b610daf565b005b34801561045c57600080fd5b5061047760048036038101906104729190612fe0565b610dbf565b005b34801561048557600080fd5b5061048e610e58565b005b34801561049c57600080fd5b506104b760048036038101906104b29190612e8a565b610f36565b005b3480156104c557600080fd5b506104e060048036038101906104db9190613067565b610f56565b005b3480156104ee57600080fd5b50610509600480360381019061050491906130b0565b610fec565b60405161051691906134ab565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190612e1d565b611002565b60405161055391906136ef565b60405180910390f35b34801561056857600080fd5b506105716110d2565b005b34801561057f57600080fd5b5061058861115a565b60405161059591906134ab565b60405180910390f35b3480156105aa57600080fd5b506105b3611184565b6040516105c0919061352d565b60405180910390f35b3480156105d557600080fd5b506105de611216565b6040516105eb91906136ef565b60405180910390f35b34801561060057600080fd5b5061060961121c565b60405161061691906136ef565b60405180910390f35b34801561062b57600080fd5b50610646600480360381019061064191906130b0565b611222565b005b610662600480360381019061065d91906130b0565b6112a8565b005b34801561067057600080fd5b5061068b60048036038101906106869190612f60565b6114e9565b005b34801561069957600080fd5b506106b460048036038101906106af9190612edd565b611661565b005b3480156106c257600080fd5b506106cb6116dd565b6040516106d891906136ef565b60405180910390f35b3480156106ed57600080fd5b50610708600480360381019061070391906130b0565b6116e3565b604051610715919061352d565b60405180910390f35b34801561072a57600080fd5b5061073361175f565b604051610740919061352d565b60405180910390f35b34801561075557600080fd5b5061075e6117ed565b60405161076b91906136ef565b60405180910390f35b34801561078057600080fd5b5061079b60048036038101906107969190612e4a565b6117f3565b6040516107a89190613512565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d391906130b0565b611887565b005b3480156107e657600080fd5b5061080160048036038101906107fc9190612e1d565b6119aa565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ce57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108de57506108dd82611aa2565b5b9050919050565b6060600280546108f4906139bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610920906139bf565b801561096d5780601f106109425761010080835404028352916020019161096d565b820191906000526020600020905b81548152906001019060200180831161095057829003601f168201915b5050505050905090565b600d5481565b600061098882611b0c565b6109be576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0482610fec565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8b611b5a565b73ffffffffffffffffffffffffffffffffffffffff1614158015610abd5750610abb81610ab6611b5a565b6117f3565b155b15610af4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aff838383611b62565b505050565b610b0c611b5a565b73ffffffffffffffffffffffffffffffffffffffff16610b2a61115a565b73ffffffffffffffffffffffffffffffffffffffff1614610b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b779061362f565b60405180910390fd5b80600e8190555050565b610b92611b5a565b73ffffffffffffffffffffffffffffffffffffffff16610bb061115a565b73ffffffffffffffffffffffffffffffffffffffff1614610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd9061362f565b60405180910390fd5b600181600b54610c1691906137f4565b1015610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e906135ef565b60405180910390fd5b80600b6000828254610c6991906137f4565b9250508190555050565b6000610c7d611c14565b6001546000540303905090565b610c92611b5a565b73ffffffffffffffffffffffffffffffffffffffff16610cb061115a565b73ffffffffffffffffffffffffffffffffffffffff1614610d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfd9061362f565b60405180910390fd5b80600d8190555050565b60105481565b601160009054906101000a900460ff1681565b610d31611b5a565b73ffffffffffffffffffffffffffffffffffffffff16610d4f61115a565b73ffffffffffffffffffffffffffffffffffffffff1614610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c9061362f565b60405180910390fd5b80600f8190555050565b610dba838383611c1d565b505050565b610dc7611b5a565b73ffffffffffffffffffffffffffffffffffffffff16610de561115a565b73ffffffffffffffffffffffffffffffffffffffff1614610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e329061362f565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b610e60611b5a565b73ffffffffffffffffffffffffffffffffffffffff16610e7e61115a565b73ffffffffffffffffffffffffffffffffffffffff1614610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb9061362f565b60405180910390fd5b60026009541415610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f11906136af565b60405180910390fd5b6002600981905550610f2c33476120d3565b6001600981905550565b610f5183838360405180602001604052806000815250611661565b505050565b610f5e611b5a565b73ffffffffffffffffffffffffffffffffffffffff16610f7c61115a565b73ffffffffffffffffffffffffffffffffffffffff1614610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc99061362f565b60405180910390fd5b80600a9080519060200190610fe8929190612bee565b5050565b6000610ff7826121c7565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110da611b5a565b73ffffffffffffffffffffffffffffffffffffffff166110f861115a565b73ffffffffffffffffffffffffffffffffffffffff161461114e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111459061362f565b60405180910390fd5b6111586000612456565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611193906139bf565b80601f01602080910402602001604051908101604052809291908181526020018280546111bf906139bf565b801561120c5780601f106111e15761010080835404028352916020019161120c565b820191906000526020600020905b8154815290600101906020018083116111ef57829003601f168201915b5050505050905090565b600e5481565b600f5481565b61122a611b5a565b73ffffffffffffffffffffffffffffffffffffffff1661124861115a565b73ffffffffffffffffffffffffffffffffffffffff161461129e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112959061362f565b60405180910390fd5b80600c8190555050565b601160009054906101000a900460ff166112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee906136cf565b60405180910390fd5b6001600b5461130691906137f4565b8161130f610c73565b61131991906137f4565b10611359576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113509061354f565b60405180910390fd5b600e548160105461136a91906137f4565b11156113c5573481600d5461137f919061387b565b11156113c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b79061368f565b60405180910390fd5b6114dc565b600f54816113d233611002565b6113dc91906137f4565b111561147c573481600d546113f1919061387b565b1115611432576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114299061368f565b60405180910390fd5b600c54811115611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e906135cf565b60405180910390fd5b6114db565b600f548111156114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b8906135cf565b60405180910390fd5b80601060008282546114d391906137f4565b925050819055505b5b6114e6338261251c565b50565b6114f1611b5a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611556576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611563611b5a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611610611b5a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116559190613512565b60405180910390a35050565b61166c848484611c1d565b61168b8373ffffffffffffffffffffffffffffffffffffffff1661253a565b80156116a0575061169e8484848461255d565b155b156116d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c5481565b60606116ee82611b0c565b61172d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117249061364f565b60405180910390fd5b600a611738836126bd565b60405160200161174992919061345c565b6040516020818303038152906040529050919050565b600a805461176c906139bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611798906139bf565b80156117e55780601f106117ba576101008083540402835291602001916117e5565b820191906000526020600020905b8154815290600101906020018083116117c857829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61188f611b5a565b73ffffffffffffffffffffffffffffffffffffffff166118ad61115a565b73ffffffffffffffffffffffffffffffffffffffff1614611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa9061362f565b60405180910390fd5b60008111611946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193d9061366f565b60405180910390fd5b600b5481611952610c73565b61195c91906137f4565b111561199d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119949061360f565b60405180910390fd5b6119a7338261251c565b50565b6119b2611b5a565b73ffffffffffffffffffffffffffffffffffffffff166119d061115a565b73ffffffffffffffffffffffffffffffffffffffff1614611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d9061362f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8d9061356f565b60405180910390fd5b611a9f81612456565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611b17611c14565b11158015611b26575060005482105b8015611b53575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611c28826121c7565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c93576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611cb4611b5a565b73ffffffffffffffffffffffffffffffffffffffff161480611ce35750611ce285611cdd611b5a565b6117f3565b5b80611d285750611cf1611b5a565b73ffffffffffffffffffffffffffffffffffffffff16611d108461097d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d61576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dc8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd5858585600161281e565b611de160008487611b62565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561206157600054821461206057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120cc8585856001612824565b5050505050565b80471015612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d906135af565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161213c90613496565b60006040518083038185875af1925050503d8060008114612179576040519150601f19603f3d011682016040523d82523d6000602084013e61217e565b606091505b50509050806121c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b99061358f565b60405180910390fd5b505050565b6121cf612c74565b6000829050806121dd611c14565b111580156121ec575060005481105b1561241f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161241d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612301578092505050612451565b5b60011561241c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612417578092505050612451565b612302565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61253682826040518060200160405280600081525061282a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612583611b5a565b8786866040518563ffffffff1660e01b81526004016125a594939291906134c6565b602060405180830381600087803b1580156125bf57600080fd5b505af19250505080156125f057506040513d601f19601f820116820180604052508101906125ed919061303a565b60015b61266a573d8060008114612620576040519150601f19603f3d011682016040523d82523d6000602084013e612625565b606091505b50600081511415612662576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612705576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612819565b600082905060005b6000821461273757808061272090613a22565b915050600a82612730919061384a565b915061270d565b60008167ffffffffffffffff81111561275357612752613b58565b5b6040519080825280601f01601f1916602001820160405280156127855781602001600182028036833780820191505090505b5090505b600085146128125760018261279e91906138d5565b9150600a856127ad9190613a6b565b60306127b991906137f4565b60f81b8183815181106127cf576127ce613b29565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561280b919061384a565b9450612789565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612897576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156128d2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128df600085838661281e565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612aa08673ffffffffffffffffffffffffffffffffffffffff1661253a565b15612b66575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b15600087848060010195508761255d565b612b4b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612aa6578260005414612b6157600080fd5b612bd2565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612b67575b816000819055505050612be86000858386612824565b50505050565b828054612bfa906139bf565b90600052602060002090601f016020900481019282612c1c5760008555612c63565b82601f10612c3557805160ff1916838001178555612c63565b82800160010185558215612c63579182015b82811115612c62578251825591602001919060010190612c47565b5b509050612c709190612cb7565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612cd0576000816000905550600101612cb8565b5090565b6000612ce7612ce28461372f565b61370a565b905082815260208101848484011115612d0357612d02613b8c565b5b612d0e84828561397d565b509392505050565b6000612d29612d2484613760565b61370a565b905082815260208101848484011115612d4557612d44613b8c565b5b612d5084828561397d565b509392505050565b600081359050612d6781613ed4565b92915050565b600081359050612d7c81613eeb565b92915050565b600081359050612d9181613f02565b92915050565b600081519050612da681613f02565b92915050565b600082601f830112612dc157612dc0613b87565b5b8135612dd1848260208601612cd4565b91505092915050565b600082601f830112612def57612dee613b87565b5b8135612dff848260208601612d16565b91505092915050565b600081359050612e1781613f19565b92915050565b600060208284031215612e3357612e32613b96565b5b6000612e4184828501612d58565b91505092915050565b60008060408385031215612e6157612e60613b96565b5b6000612e6f85828601612d58565b9250506020612e8085828601612d58565b9150509250929050565b600080600060608486031215612ea357612ea2613b96565b5b6000612eb186828701612d58565b9350506020612ec286828701612d58565b9250506040612ed386828701612e08565b9150509250925092565b60008060008060808587031215612ef757612ef6613b96565b5b6000612f0587828801612d58565b9450506020612f1687828801612d58565b9350506040612f2787828801612e08565b925050606085013567ffffffffffffffff811115612f4857612f47613b91565b5b612f5487828801612dac565b91505092959194509250565b60008060408385031215612f7757612f76613b96565b5b6000612f8585828601612d58565b9250506020612f9685828601612d6d565b9150509250929050565b60008060408385031215612fb757612fb6613b96565b5b6000612fc585828601612d58565b9250506020612fd685828601612e08565b9150509250929050565b600060208284031215612ff657612ff5613b96565b5b600061300484828501612d6d565b91505092915050565b60006020828403121561302357613022613b96565b5b600061303184828501612d82565b91505092915050565b6000602082840312156130505761304f613b96565b5b600061305e84828501612d97565b91505092915050565b60006020828403121561307d5761307c613b96565b5b600082013567ffffffffffffffff81111561309b5761309a613b91565b5b6130a784828501612dda565b91505092915050565b6000602082840312156130c6576130c5613b96565b5b60006130d484828501612e08565b91505092915050565b6130e681613909565b82525050565b6130f58161391b565b82525050565b6000613106826137a6565b61311081856137bc565b935061312081856020860161398c565b61312981613b9b565b840191505092915050565b600061313f826137b1565b61314981856137d8565b935061315981856020860161398c565b61316281613b9b565b840191505092915050565b6000613178826137b1565b61318281856137e9565b935061319281856020860161398c565b80840191505092915050565b600081546131ab816139bf565b6131b581866137e9565b945060018216600081146131d057600181146131e157613214565b60ff19831686528186019350613214565b6131ea85613791565b60005b8381101561320c578154818901526001820191506020810190506131ed565b838801955050505b50505092915050565b600061322a6007836137d8565b915061323582613bac565b602082019050919050565b600061324d6026836137d8565b915061325882613bd5565b604082019050919050565b6000613270603a836137d8565b915061327b82613c24565b604082019050919050565b6000613293601d836137d8565b915061329e82613c73565b602082019050919050565b60006132b66022836137d8565b91506132c182613c9c565b604082019050919050565b60006132d96027836137d8565b91506132e482613ceb565b604082019050919050565b60006132fc6017836137d8565b915061330782613d3a565b602082019050919050565b600061331f6005836137e9565b915061332a82613d63565b600582019050919050565b60006133426020836137d8565b915061334d82613d8c565b602082019050919050565b6000613365602f836137d8565b915061337082613db5565b604082019050919050565b60006133886000836137cd565b915061339382613e04565b600082019050919050565b60006133ab6013836137d8565b91506133b682613e07565b602082019050919050565b60006133ce6018836137d8565b91506133d982613e30565b602082019050919050565b60006133f1601f836137d8565b91506133fc82613e59565b602082019050919050565b60006134146017836137d8565b915061341f82613e82565b602082019050919050565b60006134376001836137e9565b915061344282613eab565b600182019050919050565b61345681613973565b82525050565b6000613468828561319e565b91506134738261342a565b915061347f828461316d565b915061348a82613312565b91508190509392505050565b60006134a18261337b565b9150819050919050565b60006020820190506134c060008301846130dd565b92915050565b60006080820190506134db60008301876130dd565b6134e860208301866130dd565b6134f5604083018561344d565b818103606083015261350781846130fb565b905095945050505050565b600060208201905061352760008301846130ec565b92915050565b600060208201905081810360008301526135478184613134565b905092915050565b600060208201905081810360008301526135688161321d565b9050919050565b6000602082019050818103600083015261358881613240565b9050919050565b600060208201905081810360008301526135a881613263565b9050919050565b600060208201905081810360008301526135c881613286565b9050919050565b600060208201905081810360008301526135e8816132a9565b9050919050565b60006020820190508181036000830152613608816132cc565b9050919050565b60006020820190508181036000830152613628816132ef565b9050919050565b6000602082019050818103600083015261364881613335565b9050919050565b6000602082019050818103600083015261366881613358565b9050919050565b600060208201905081810360008301526136888161339e565b9050919050565b600060208201905081810360008301526136a8816133c1565b9050919050565b600060208201905081810360008301526136c8816133e4565b9050919050565b600060208201905081810360008301526136e881613407565b9050919050565b6000602082019050613704600083018461344d565b92915050565b6000613714613725565b905061372082826139f1565b919050565b6000604051905090565b600067ffffffffffffffff82111561374a57613749613b58565b5b61375382613b9b565b9050602081019050919050565b600067ffffffffffffffff82111561377b5761377a613b58565b5b61378482613b9b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137ff82613973565b915061380a83613973565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561383f5761383e613a9c565b5b828201905092915050565b600061385582613973565b915061386083613973565b9250826138705761386f613acb565b5b828204905092915050565b600061388682613973565b915061389183613973565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138ca576138c9613a9c565b5b828202905092915050565b60006138e082613973565b91506138eb83613973565b9250828210156138fe576138fd613a9c565b5b828203905092915050565b600061391482613953565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139aa57808201518184015260208101905061398f565b838111156139b9576000848401525b50505050565b600060028204905060018216806139d757607f821691505b602082108114156139eb576139ea613afa565b5b50919050565b6139fa82613b9b565b810181811067ffffffffffffffff82111715613a1957613a18613b58565b5b80604052505050565b6000613a2d82613973565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a6057613a5f613a9c565b5b600182019050919050565b6000613a7682613973565b9150613a8183613973565b925082613a9157613a90613acb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b613edd81613909565b8114613ee857600080fd5b50565b613ef48161391b565b8114613eff57600080fd5b50565b613f0b81613927565b8114613f1657600080fd5b50565b613f2281613973565b8114613f2d57600080fd5b5056fea2646970667358221220655ffa770d93f8f72086f476526a2e071e39d5e874e9db39416ea5edf9c3c69264736f6c63430008070033
Deployed Bytecode Sourcemap
51082:3565:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32199:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35312:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51384:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36815:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36378:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53908:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54162:219;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31448:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54043:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51521:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51565:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54518:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37680:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53754:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53147:142;;;;;;;;;;;;;:::i;:::-;;37921:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52743:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35120:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32568:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9965:103;;;;;;;;;;;;;:::i;:::-;;9314:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35481:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51436:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51477:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54385:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51689:1048;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37091:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38177:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51343:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53295:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51214:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51306:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37449:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52857:284;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10223:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32199:305;32301:4;32353:25;32338:40;;;:11;:40;;;;:105;;;;32410:33;32395:48;;;:11;:48;;;;32338:105;:158;;;;32460:36;32484:11;32460:23;:36::i;:::-;32338:158;32318:178;;32199:305;;;:::o;35312:100::-;35366:13;35399:5;35392:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35312:100;:::o;51384:47::-;;;;:::o;36815:204::-;36883:7;36908:16;36916:7;36908;:16::i;:::-;36903:64;;36933:34;;;;;;;;;;;;;;36903:64;36987:15;:24;37003:7;36987:24;;;;;;;;;;;;;;;;;;;;;36980:31;;36815:204;;;:::o;36378:371::-;36451:13;36467:24;36483:7;36467:15;:24::i;:::-;36451:40;;36512:5;36506:11;;:2;:11;;;36502:48;;;36526:24;;;;;;;;;;;;;;36502:48;36583:5;36567:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;36593:37;36610:5;36617:12;:10;:12::i;:::-;36593:16;:37::i;:::-;36592:38;36567:63;36563:138;;;36654:35;;;;;;;;;;;;;;36563:138;36713:28;36722:2;36726:7;36735:5;36713:8;:28::i;:::-;36440:309;36378:371;;:::o;53908:129::-;9545:12;:10;:12::i;:::-;9534:23;;:7;:5;:7::i;:::-;:23;;;9526:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54018:13:::1;54001:14;:30;;;;53908:129:::0;:::o;54162:219::-;9545:12;:10;:12::i;:::-;9534:23;;:7;:5;:7::i;:::-;:23;;;9526:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54273:1:::1;54262:7;54251:9;;:18;;;;:::i;:::-;:23;;54229:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;54366:7;54353:9;;:20;;;;;;;:::i;:::-;;;;;;;;54162:219:::0;:::o;31448:303::-;31492:7;31717:15;:13;:15::i;:::-;31702:12;;31686:13;;:28;:46;31679:53;;31448:303;:::o;54043:115::-;9545:12;:10;:12::i;:::-;9534:23;;:7;:5;:7::i;:::-;:23;;;9526:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54146:6:::1;54126:17;:26;;;;54043:115:::0;:::o;51521:39::-;;;;:::o;51565:38::-;;;;;;;;;;;;;:::o;54518:126::-;9545:12;:10;:12::i;:::-;9534:23;;:7;:5;:7::i;:::-;:23;;;9526:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54632:6:::1;54610:19;:28;;;;54518:126:::0;:::o;37680:170::-;37814:28;37824:4;37830:2;37834:7;37814:9;:28::i;:::-;37680:170;;;:::o;53754:148::-;9545:12;:10;:12::i;:::-;9534:23;;:7;:5;:7::i;:::-;:23;;;9526:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53877:19:::1;53856:18;;:40;;;;;;;;;;;;;;;;;;53754:148:::0;:::o;53147:142::-;9545:12;:10;:12::i;:::-;9534:23;;:7;:5;:7::i;:::-;:23;;;9526:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4288:1:::1;4886:7;;:19;;4878:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4288:1;5019:7;:18;;;;53222:61:::2;53248:10;53261:21;53222:17;:61::i;:::-;4244:1:::1;5198:7;:22;;;;53147:142::o:0;37921:185::-;38059:39;38076:4;38082:2;38086:7;38059:39;;;;;;;;;;;;:16;:39::i;:::-;37921:185;;;:::o;52743:108::-;9545:12;:10;:12::i;:::-;9534:23;;:7;:5;:7::i;:::-;:23;;;9526:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52838:7:::1;52823:12;:22;;;;;;;;;;;;:::i;:::-;;52743:108:::0;:::o;35120:125::-;35184:7;35211:21;35224:7;35211:12;:21::i;:::-;:26;;;35204:33;;35120:125;;;:::o;32568:206::-;32632:7;32673:1;32656:19;;:5;:19;;;32652:60;;;32684:28;;;;;;;;;;;;;;32652:60;32738:12;:19;32751:5;32738:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;32730:36;;32723:43;;32568:206;;;:::o;9965:103::-;9545:12;:10;:12::i;:::-;9534:23;;:7;:5;:7::i;:::-;:23;;;9526:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10030:30:::1;10057:1;10030:18;:30::i;:::-;9965:103::o:0;9314:87::-;9360:7;9387:6;;;;;;;;;;;9380:13;;9314:87;:::o;35481:104::-;35537:13;35570:7;35563:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35481:104;:::o;51436:36::-;;;;:::o;51477:39::-;;;;:::o;54385:127::-;9545:12;:10;:12::i;:::-;9534:23;;:7;:5;:7::i;:::-;:23;;;9526:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54500:6:::1;54481:16;:25;;;;54385:127:::0;:::o;51689:1048::-;51776:18;;;;;;;;;;;51768:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;51882:1;51870:9;;:13;;;;:::i;:::-;51853:14;51837:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;51829:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;51947:14;;51930;51907:20;;:37;;;;:::i;:::-;:54;51904:784;;;52035:9;52016:14;51996:17;;:34;;;;:::i;:::-;51995:49;;51973:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;51904:784;;;52166:19;;52149:14;52125:21;52135:10;52125:9;:21::i;:::-;:38;;;;:::i;:::-;:60;52121:560;;;52260:9;52241:14;52221:17;;:34;;;;:::i;:::-;52220:49;;52198:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;52372:16;;52354:14;:34;;52332:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;52121:560;;;52527:19;;52509:14;:37;;52483:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;52655:14;52631:20;;:38;;;;;;;:::i;:::-;;;;;;;;52121:560;51904:784;52694:37;52704:10;52716:14;52694:9;:37::i;:::-;51689:1048;:::o;37091:287::-;37202:12;:10;:12::i;:::-;37190:24;;:8;:24;;;37186:54;;;37223:17;;;;;;;;;;;;;;37186:54;37298:8;37253:18;:32;37272:12;:10;:12::i;:::-;37253:32;;;;;;;;;;;;;;;:42;37286:8;37253:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;37351:8;37322:48;;37337:12;:10;:12::i;:::-;37322:48;;;37361:8;37322:48;;;;;;:::i;:::-;;;;;;;;37091:287;;:::o;38177:369::-;38344:28;38354:4;38360:2;38364:7;38344:9;:28::i;:::-;38387:15;:2;:13;;;:15::i;:::-;:76;;;;;38407:56;38438:4;38444:2;38448:7;38457:5;38407:30;:56::i;:::-;38406:57;38387:76;38383:156;;;38487:40;;;;;;;;;;;;;;38383:156;38177:369;;;;:::o;51343:36::-;;;;:::o;53295:312::-;53391:13;53432:17;53440:8;53432:7;:17::i;:::-;53416:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;53552:12;53571:19;:8;:17;:19::i;:::-;53535:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53521:80;;53295:312;;;:::o;51214:87::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51306:32::-;;;;:::o;37449:164::-;37546:4;37570:18;:25;37589:5;37570:25;;;;;;;;;;;;;;;:35;37596:8;37570:35;;;;;;;;;;;;;;;;;;;;;;;;;37563:42;;37449:164;;;;:::o;52857:284::-;9545:12;:10;:12::i;:::-;9534:23;;:7;:5;:7::i;:::-;:23;;;9526:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52958:1:::1;52947:8;:12;52931:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;53047:9;;53035:8;53019:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;53003:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;53104:31;53114:10;53126:8;53104:9;:31::i;:::-;52857:284:::0;:::o;10223:201::-;9545:12;:10;:12::i;:::-;9534:23;;:7;:5;:7::i;:::-;:23;;;9526:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10332:1:::1;10312:22;;:8;:22;;;;10304:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10388:28;10407:8;10388:18;:28::i;:::-;10223:201:::0;:::o;22098:157::-;22183:4;22222:25;22207:40;;;:11;:40;;;;22200:47;;22098:157;;;:::o;38801:174::-;38858:4;38901:7;38882:15;:13;:15::i;:::-;:26;;:53;;;;;38922:13;;38912:7;:23;38882:53;:85;;;;;38940:11;:20;38952:7;38940:20;;;;;;;;;;;:27;;;;;;;;;;;;38939:28;38882:85;38875:92;;38801:174;;;:::o;8038:98::-;8091:7;8118:10;8111:17;;8038:98;:::o;48027:196::-;48169:2;48142:15;:24;48158:7;48142:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;48207:7;48203:2;48187:28;;48196:5;48187:28;;;;;;;;;;;;48027:196;;;:::o;31222:92::-;31278:7;31305:1;31298:8;;31222:92;:::o;42975:2130::-;43090:35;43128:21;43141:7;43128:12;:21::i;:::-;43090:59;;43188:4;43166:26;;:13;:18;;;:26;;;43162:67;;43201:28;;;;;;;;;;;;;;43162:67;43242:22;43284:4;43268:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;43305:36;43322:4;43328:12;:10;:12::i;:::-;43305:16;:36::i;:::-;43268:73;:126;;;;43382:12;:10;:12::i;:::-;43358:36;;:20;43370:7;43358:11;:20::i;:::-;:36;;;43268:126;43242:153;;43413:17;43408:66;;43439:35;;;;;;;;;;;;;;43408:66;43503:1;43489:16;;:2;:16;;;43485:52;;;43514:23;;;;;;;;;;;;;;43485:52;43550:43;43572:4;43578:2;43582:7;43591:1;43550:21;:43::i;:::-;43658:35;43675:1;43679:7;43688:4;43658:8;:35::i;:::-;44019:1;43989:12;:18;44002:4;43989:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44063:1;44035:12;:16;44048:2;44035:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44081:31;44115:11;:20;44127:7;44115:20;;;;;;;;;;;44081:54;;44166:2;44150:8;:13;;;:18;;;;;;;;;;;;;;;;;;44216:15;44183:8;:23;;;:49;;;;;;;;;;;;;;;;;;44484:19;44516:1;44506:7;:11;44484:33;;44532:31;44566:11;:24;44578:11;44566:24;;;;;;;;;;;44532:58;;44634:1;44609:27;;:8;:13;;;;;;;;;;;;:27;;;44605:384;;;44819:13;;44804:11;:28;44800:174;;44873:4;44857:8;:13;;;:20;;;;;;;;;;;;;;;;;;44926:13;:28;;;44900:8;:23;;;:54;;;;;;;;;;;;;;;;;;44800:174;44605:384;43964:1036;;;45036:7;45032:2;45017:27;;45026:4;45017:27;;;;;;;;;;;;45055:42;45076:4;45082:2;45086:7;45095:1;45055:20;:42::i;:::-;43079:2026;;42975:2130;;;:::o;13276:317::-;13391:6;13366:21;:31;;13358:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13445:12;13463:9;:14;;13485:6;13463:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13444:52;;;13515:7;13507:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;13347:246;13276:317;;:::o;33949:1109::-;34011:21;;:::i;:::-;34045:12;34060:7;34045:22;;34128:4;34109:15;:13;:15::i;:::-;:23;;:47;;;;;34143:13;;34136:4;:20;34109:47;34105:886;;;34177:31;34211:11;:17;34223:4;34211:17;;;;;;;;;;;34177:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34252:9;:16;;;34247:729;;34323:1;34297:28;;:9;:14;;;:28;;;34293:101;;34361:9;34354:16;;;;;;34293:101;34696:261;34703:4;34696:261;;;34736:6;;;;;;;;34781:11;:17;34793:4;34781:17;;;;;;;;;;;34769:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34855:1;34829:28;;:9;:14;;;:28;;;34825:109;;34897:9;34890:16;;;;;;34825:109;34696:261;;;34247:729;34158:833;34105:886;35019:31;;;;;;;;;;;;;;33949:1109;;;;:::o;10584:191::-;10658:16;10677:6;;;;;;;;;;;10658:25;;10703:8;10694:6;;:17;;;;;;;;;;;;;;;;;;10758:8;10727:40;;10748:8;10727:40;;;;;;;;;;;;10647:128;10584:191;:::o;39059:104::-;39128:27;39138:2;39142:8;39128:27;;;;;;;;;;;;:9;:27::i;:::-;39059:104;;:::o;12015:326::-;12075:4;12332:1;12310:7;:19;;;:23;12303:30;;12015:326;;;:::o;48715:667::-;48878:4;48915:2;48899:36;;;48936:12;:10;:12::i;:::-;48950:4;48956:7;48965:5;48899:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48895:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49150:1;49133:6;:13;:18;49129:235;;;49179:40;;;;;;;;;;;;;;49129:235;49322:6;49316:13;49307:6;49303:2;49299:15;49292:38;48895:480;49028:45;;;49018:55;;;:6;:55;;;;49011:62;;;48715:667;;;;;;:::o;5600:723::-;5656:13;5886:1;5877:5;:10;5873:53;;;5904:10;;;;;;;;;;;;;;;;;;;;;5873:53;5936:12;5951:5;5936:20;;5967:14;5992:78;6007:1;5999:4;:9;5992:78;;6025:8;;;;;:::i;:::-;;;;6056:2;6048:10;;;;;:::i;:::-;;;5992:78;;;6080:19;6112:6;6102:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6080:39;;6130:154;6146:1;6137:5;:10;6130:154;;6174:1;6164:11;;;;;:::i;:::-;;;6241:2;6233:5;:10;;;;:::i;:::-;6220:2;:24;;;;:::i;:::-;6207:39;;6190:6;6197;6190:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6270:2;6261:11;;;;;:::i;:::-;;;6130:154;;;6308:6;6294:21;;;;;5600:723;;;;:::o;50030:159::-;;;;;:::o;50848:158::-;;;;;:::o;39537:1751::-;39660:20;39683:13;;39660:36;;39725:1;39711:16;;:2;:16;;;39707:48;;;39736:19;;;;;;;;;;;;;;39707:48;39782:1;39770:8;:13;39766:44;;;39792:18;;;;;;;;;;;;;;39766:44;39823:61;39853:1;39857:2;39861:12;39875:8;39823:21;:61::i;:::-;40196:8;40161:12;:16;40174:2;40161:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40260:8;40220:12;:16;40233:2;40220:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40319:2;40286:11;:25;40298:12;40286:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40386:15;40336:11;:25;40348:12;40336:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;40419:20;40442:12;40419:35;;40469:11;40498:8;40483:12;:23;40469:37;;40527:15;:2;:13;;;:15::i;:::-;40523:633;;;40563:314;40619:12;40615:2;40594:38;;40611:1;40594:38;;;;;;;;;;;;40660:69;40699:1;40703:2;40707:14;;;;;;40723:5;40660:30;:69::i;:::-;40655:174;;40765:40;;;;;;;;;;;;;;40655:174;40872:3;40856:12;:19;;40563:314;;40958:12;40941:13;;:29;40937:43;;40972:8;;;40937:43;40523:633;;;41021:120;41077:14;;;;;;41073:2;41052:40;;41069:1;41052:40;;;;;;;;;;;;41136:3;41120:12;:19;;41021:120;;40523:633;41186:12;41170:13;:28;;;;40136:1074;;41220:60;41249:1;41253:2;41257:12;41271:8;41220:20;:60::i;:::-;39649:1639;39537:1751;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:365::-;9862:3;9883:66;9947:1;9942:3;9883:66;:::i;:::-;9876:73;;9958:93;10047:3;9958:93;:::i;:::-;10076:2;10071:3;10067:12;10060:19;;9720:365;;;:::o;10091:366::-;10233:3;10254:67;10318:2;10313:3;10254:67;:::i;:::-;10247:74;;10330:93;10419:3;10330:93;:::i;:::-;10448:2;10443:3;10439:12;10432:19;;10091:366;;;:::o;10463:::-;10605:3;10626:67;10690:2;10685:3;10626:67;:::i;:::-;10619:74;;10702:93;10791:3;10702:93;:::i;:::-;10820:2;10815:3;10811:12;10804:19;;10463:366;;;:::o;10835:::-;10977:3;10998:67;11062:2;11057:3;10998:67;:::i;:::-;10991:74;;11074:93;11163:3;11074:93;:::i;:::-;11192:2;11187:3;11183:12;11176:19;;10835:366;;;:::o;11207:::-;11349:3;11370:67;11434:2;11429:3;11370:67;:::i;:::-;11363:74;;11446:93;11535:3;11446:93;:::i;:::-;11564:2;11559:3;11555:12;11548:19;;11207:366;;;:::o;11579:::-;11721:3;11742:67;11806:2;11801:3;11742:67;:::i;:::-;11735:74;;11818:93;11907:3;11818:93;:::i;:::-;11936:2;11931:3;11927:12;11920:19;;11579:366;;;:::o;11951:::-;12093:3;12114:67;12178:2;12173:3;12114:67;:::i;:::-;12107:74;;12190:93;12279:3;12190:93;:::i;:::-;12308:2;12303:3;12299:12;12292:19;;11951:366;;;:::o;12323:400::-;12483:3;12504:84;12586:1;12581:3;12504:84;:::i;:::-;12497:91;;12597:93;12686:3;12597:93;:::i;:::-;12715:1;12710:3;12706:11;12699:18;;12323:400;;;:::o;12729:366::-;12871:3;12892:67;12956:2;12951:3;12892:67;:::i;:::-;12885:74;;12968:93;13057:3;12968:93;:::i;:::-;13086:2;13081:3;13077:12;13070:19;;12729:366;;;:::o;13101:::-;13243:3;13264:67;13328:2;13323:3;13264:67;:::i;:::-;13257:74;;13340:93;13429:3;13340:93;:::i;:::-;13458:2;13453:3;13449:12;13442:19;;13101:366;;;:::o;13473:398::-;13632:3;13653:83;13734:1;13729:3;13653:83;:::i;:::-;13646:90;;13745:93;13834:3;13745:93;:::i;:::-;13863:1;13858:3;13854:11;13847:18;;13473:398;;;:::o;13877:366::-;14019:3;14040:67;14104:2;14099:3;14040:67;:::i;:::-;14033:74;;14116:93;14205:3;14116:93;:::i;:::-;14234:2;14229:3;14225:12;14218:19;;13877:366;;;:::o;14249:::-;14391:3;14412:67;14476:2;14471:3;14412:67;:::i;:::-;14405:74;;14488:93;14577:3;14488:93;:::i;:::-;14606:2;14601:3;14597:12;14590:19;;14249:366;;;:::o;14621:::-;14763:3;14784:67;14848:2;14843:3;14784:67;:::i;:::-;14777:74;;14860:93;14949:3;14860:93;:::i;:::-;14978:2;14973:3;14969:12;14962:19;;14621:366;;;:::o;14993:::-;15135:3;15156:67;15220:2;15215:3;15156:67;:::i;:::-;15149:74;;15232:93;15321:3;15232:93;:::i;:::-;15350:2;15345:3;15341:12;15334:19;;14993:366;;;:::o;15365:400::-;15525:3;15546:84;15628:1;15623:3;15546:84;:::i;:::-;15539:91;;15639:93;15728:3;15639:93;:::i;:::-;15757:1;15752:3;15748:11;15741:18;;15365:400;;;:::o;15771:118::-;15858:24;15876:5;15858:24;:::i;:::-;15853:3;15846:37;15771:118;;:::o;15895:961::-;16274:3;16296:92;16384:3;16375:6;16296:92;:::i;:::-;16289:99;;16405:148;16549:3;16405:148;:::i;:::-;16398:155;;16570:95;16661:3;16652:6;16570:95;:::i;:::-;16563:102;;16682:148;16826:3;16682:148;:::i;:::-;16675:155;;16847:3;16840:10;;15895:961;;;;;:::o;16862:379::-;17046:3;17068:147;17211:3;17068:147;:::i;:::-;17061:154;;17232:3;17225:10;;16862:379;;;:::o;17247:222::-;17340:4;17378:2;17367:9;17363:18;17355:26;;17391:71;17459:1;17448:9;17444:17;17435:6;17391:71;:::i;:::-;17247:222;;;;:::o;17475:640::-;17670:4;17708:3;17697:9;17693:19;17685:27;;17722:71;17790:1;17779:9;17775:17;17766:6;17722:71;:::i;:::-;17803:72;17871:2;17860:9;17856:18;17847:6;17803:72;:::i;:::-;17885;17953:2;17942:9;17938:18;17929:6;17885:72;:::i;:::-;18004:9;17998:4;17994:20;17989:2;17978:9;17974:18;17967:48;18032:76;18103:4;18094:6;18032:76;:::i;:::-;18024:84;;17475:640;;;;;;;:::o;18121:210::-;18208:4;18246:2;18235:9;18231:18;18223:26;;18259:65;18321:1;18310:9;18306:17;18297:6;18259:65;:::i;:::-;18121:210;;;;:::o;18337:313::-;18450:4;18488:2;18477:9;18473:18;18465:26;;18537:9;18531:4;18527:20;18523:1;18512:9;18508:17;18501:47;18565:78;18638:4;18629:6;18565:78;:::i;:::-;18557:86;;18337:313;;;;:::o;18656:419::-;18822:4;18860:2;18849:9;18845:18;18837:26;;18909:9;18903:4;18899:20;18895:1;18884:9;18880:17;18873:47;18937:131;19063:4;18937:131;:::i;:::-;18929:139;;18656:419;;;:::o;19081:::-;19247:4;19285:2;19274:9;19270:18;19262:26;;19334:9;19328:4;19324:20;19320:1;19309:9;19305:17;19298:47;19362:131;19488:4;19362:131;:::i;:::-;19354:139;;19081:419;;;:::o;19506:::-;19672:4;19710:2;19699:9;19695:18;19687:26;;19759:9;19753:4;19749:20;19745:1;19734:9;19730:17;19723:47;19787:131;19913:4;19787:131;:::i;:::-;19779:139;;19506:419;;;:::o;19931:::-;20097:4;20135:2;20124:9;20120:18;20112:26;;20184:9;20178:4;20174:20;20170:1;20159:9;20155:17;20148:47;20212:131;20338:4;20212:131;:::i;:::-;20204:139;;19931:419;;;:::o;20356:::-;20522:4;20560:2;20549:9;20545:18;20537:26;;20609:9;20603:4;20599:20;20595:1;20584:9;20580:17;20573:47;20637:131;20763:4;20637:131;:::i;:::-;20629:139;;20356:419;;;:::o;20781:::-;20947:4;20985:2;20974:9;20970:18;20962:26;;21034:9;21028:4;21024:20;21020:1;21009:9;21005:17;20998:47;21062:131;21188:4;21062:131;:::i;:::-;21054:139;;20781:419;;;:::o;21206:::-;21372:4;21410:2;21399:9;21395:18;21387:26;;21459:9;21453:4;21449:20;21445:1;21434:9;21430:17;21423:47;21487:131;21613:4;21487:131;:::i;:::-;21479:139;;21206:419;;;:::o;21631:::-;21797:4;21835:2;21824:9;21820:18;21812:26;;21884:9;21878:4;21874:20;21870:1;21859:9;21855:17;21848:47;21912:131;22038:4;21912:131;:::i;:::-;21904:139;;21631:419;;;:::o;22056:::-;22222:4;22260:2;22249:9;22245:18;22237:26;;22309:9;22303:4;22299:20;22295:1;22284:9;22280:17;22273:47;22337:131;22463:4;22337:131;:::i;:::-;22329:139;;22056:419;;;:::o;22481:::-;22647:4;22685:2;22674:9;22670:18;22662:26;;22734:9;22728:4;22724:20;22720:1;22709:9;22705:17;22698:47;22762:131;22888:4;22762:131;:::i;:::-;22754:139;;22481:419;;;:::o;22906:::-;23072:4;23110:2;23099:9;23095:18;23087:26;;23159:9;23153:4;23149:20;23145:1;23134:9;23130:17;23123:47;23187:131;23313:4;23187:131;:::i;:::-;23179:139;;22906:419;;;:::o;23331:::-;23497:4;23535:2;23524:9;23520:18;23512:26;;23584:9;23578:4;23574:20;23570:1;23559:9;23555:17;23548:47;23612:131;23738:4;23612:131;:::i;:::-;23604:139;;23331:419;;;:::o;23756:::-;23922:4;23960:2;23949:9;23945:18;23937:26;;24009:9;24003:4;23999:20;23995:1;23984:9;23980:17;23973:47;24037:131;24163:4;24037:131;:::i;:::-;24029:139;;23756:419;;;:::o;24181:222::-;24274:4;24312:2;24301:9;24297:18;24289:26;;24325:71;24393:1;24382:9;24378:17;24369:6;24325:71;:::i;:::-;24181:222;;;;:::o;24409:129::-;24443:6;24470:20;;:::i;:::-;24460:30;;24499:33;24527:4;24519:6;24499:33;:::i;:::-;24409:129;;;:::o;24544:75::-;24577:6;24610:2;24604:9;24594:19;;24544:75;:::o;24625:307::-;24686:4;24776:18;24768:6;24765:30;24762:56;;;24798:18;;:::i;:::-;24762:56;24836:29;24858:6;24836:29;:::i;:::-;24828:37;;24920:4;24914;24910:15;24902:23;;24625:307;;;:::o;24938:308::-;25000:4;25090:18;25082:6;25079:30;25076:56;;;25112:18;;:::i;:::-;25076:56;25150:29;25172:6;25150:29;:::i;:::-;25142:37;;25234:4;25228;25224:15;25216:23;;24938:308;;;:::o;25252:141::-;25301:4;25324:3;25316:11;;25347:3;25344:1;25337:14;25381:4;25378:1;25368:18;25360:26;;25252:141;;;:::o;25399:98::-;25450:6;25484:5;25478:12;25468:22;;25399:98;;;:::o;25503:99::-;25555:6;25589:5;25583:12;25573:22;;25503:99;;;:::o;25608:168::-;25691:11;25725:6;25720:3;25713:19;25765:4;25760:3;25756:14;25741:29;;25608:168;;;;:::o;25782:147::-;25883:11;25920:3;25905:18;;25782:147;;;;:::o;25935:169::-;26019:11;26053:6;26048:3;26041:19;26093:4;26088:3;26084:14;26069:29;;25935:169;;;;:::o;26110:148::-;26212:11;26249:3;26234:18;;26110:148;;;;:::o;26264:305::-;26304:3;26323:20;26341:1;26323:20;:::i;:::-;26318:25;;26357:20;26375:1;26357:20;:::i;:::-;26352:25;;26511:1;26443:66;26439:74;26436:1;26433:81;26430:107;;;26517:18;;:::i;:::-;26430:107;26561:1;26558;26554:9;26547:16;;26264:305;;;;:::o;26575:185::-;26615:1;26632:20;26650:1;26632:20;:::i;:::-;26627:25;;26666:20;26684:1;26666:20;:::i;:::-;26661:25;;26705:1;26695:35;;26710:18;;:::i;:::-;26695:35;26752:1;26749;26745:9;26740:14;;26575:185;;;;:::o;26766:348::-;26806:7;26829:20;26847:1;26829:20;:::i;:::-;26824:25;;26863:20;26881:1;26863:20;:::i;:::-;26858:25;;27051:1;26983:66;26979:74;26976:1;26973:81;26968:1;26961:9;26954:17;26950:105;26947:131;;;27058:18;;:::i;:::-;26947:131;27106:1;27103;27099:9;27088:20;;26766:348;;;;:::o;27120:191::-;27160:4;27180:20;27198:1;27180:20;:::i;:::-;27175:25;;27214:20;27232:1;27214:20;:::i;:::-;27209:25;;27253:1;27250;27247:8;27244:34;;;27258:18;;:::i;:::-;27244:34;27303:1;27300;27296:9;27288:17;;27120:191;;;;:::o;27317:96::-;27354:7;27383:24;27401:5;27383:24;:::i;:::-;27372:35;;27317:96;;;:::o;27419:90::-;27453:7;27496:5;27489:13;27482:21;27471:32;;27419:90;;;:::o;27515:149::-;27551:7;27591:66;27584:5;27580:78;27569:89;;27515:149;;;:::o;27670:126::-;27707:7;27747:42;27740:5;27736:54;27725:65;;27670:126;;;:::o;27802:77::-;27839:7;27868:5;27857:16;;27802:77;;;:::o;27885:154::-;27969:6;27964:3;27959;27946:30;28031:1;28022:6;28017:3;28013:16;28006:27;27885:154;;;:::o;28045:307::-;28113:1;28123:113;28137:6;28134:1;28131:13;28123:113;;;28222:1;28217:3;28213:11;28207:18;28203:1;28198:3;28194:11;28187:39;28159:2;28156:1;28152:10;28147:15;;28123:113;;;28254:6;28251:1;28248:13;28245:101;;;28334:1;28325:6;28320:3;28316:16;28309:27;28245:101;28094:258;28045:307;;;:::o;28358:320::-;28402:6;28439:1;28433:4;28429:12;28419:22;;28486:1;28480:4;28476:12;28507:18;28497:81;;28563:4;28555:6;28551:17;28541:27;;28497:81;28625:2;28617:6;28614:14;28594:18;28591:38;28588:84;;;28644:18;;:::i;:::-;28588:84;28409:269;28358:320;;;:::o;28684:281::-;28767:27;28789:4;28767:27;:::i;:::-;28759:6;28755:40;28897:6;28885:10;28882:22;28861:18;28849:10;28846:34;28843:62;28840:88;;;28908:18;;:::i;:::-;28840:88;28948:10;28944:2;28937:22;28727:238;28684:281;;:::o;28971:233::-;29010:3;29033:24;29051:5;29033:24;:::i;:::-;29024:33;;29079:66;29072:5;29069:77;29066:103;;;29149:18;;:::i;:::-;29066:103;29196:1;29189:5;29185:13;29178:20;;28971:233;;;:::o;29210:176::-;29242:1;29259:20;29277:1;29259:20;:::i;:::-;29254:25;;29293:20;29311:1;29293:20;:::i;:::-;29288:25;;29332:1;29322:35;;29337:18;;:::i;:::-;29322:35;29378:1;29375;29371:9;29366:14;;29210:176;;;;:::o;29392:180::-;29440:77;29437:1;29430:88;29537:4;29534:1;29527:15;29561:4;29558:1;29551:15;29578:180;29626:77;29623:1;29616:88;29723:4;29720:1;29713:15;29747:4;29744:1;29737:15;29764:180;29812:77;29809:1;29802:88;29909:4;29906:1;29899:15;29933:4;29930:1;29923:15;29950:180;29998:77;29995:1;29988:88;30095:4;30092:1;30085:15;30119:4;30116:1;30109:15;30136:180;30184:77;30181:1;30174:88;30281:4;30278:1;30271:15;30305:4;30302:1;30295:15;30322:117;30431:1;30428;30421:12;30445:117;30554:1;30551;30544:12;30568:117;30677:1;30674;30667:12;30691:117;30800:1;30797;30790:12;30814:102;30855:6;30906:2;30902:7;30897:2;30890:5;30886:14;30882:28;30872:38;;30814:102;;;:::o;30922:157::-;31062:9;31058:1;31050:6;31046:14;31039:33;30922:157;:::o;31085:225::-;31225:34;31221:1;31213:6;31209:14;31202:58;31294:8;31289:2;31281:6;31277:15;31270:33;31085:225;:::o;31316:245::-;31456:34;31452:1;31444:6;31440:14;31433:58;31525:28;31520:2;31512:6;31508:15;31501:53;31316:245;:::o;31567:179::-;31707:31;31703:1;31695:6;31691:14;31684:55;31567:179;:::o;31752:221::-;31892:34;31888:1;31880:6;31876:14;31869:58;31961:4;31956:2;31948:6;31944:15;31937:29;31752:221;:::o;31979:226::-;32119:34;32115:1;32107:6;32103:14;32096:58;32188:9;32183:2;32175:6;32171:15;32164:34;31979:226;:::o;32211:173::-;32351:25;32347:1;32339:6;32335:14;32328:49;32211:173;:::o;32390:155::-;32530:7;32526:1;32518:6;32514:14;32507:31;32390:155;:::o;32551:182::-;32691:34;32687:1;32679:6;32675:14;32668:58;32551:182;:::o;32739:234::-;32879:34;32875:1;32867:6;32863:14;32856:58;32948:17;32943:2;32935:6;32931:15;32924:42;32739:234;:::o;32979:114::-;;:::o;33099:169::-;33239:21;33235:1;33227:6;33223:14;33216:45;33099:169;:::o;33274:174::-;33414:26;33410:1;33402:6;33398:14;33391:50;33274:174;:::o;33454:181::-;33594:33;33590:1;33582:6;33578:14;33571:57;33454:181;:::o;33641:173::-;33781:25;33777:1;33769:6;33765:14;33758:49;33641:173;:::o;33820:151::-;33960:3;33956:1;33948:6;33944:14;33937:27;33820:151;:::o;33977:122::-;34050:24;34068:5;34050:24;:::i;:::-;34043:5;34040:35;34030:63;;34089:1;34086;34079:12;34030:63;33977:122;:::o;34105:116::-;34175:21;34190:5;34175:21;:::i;:::-;34168:5;34165:32;34155:60;;34211:1;34208;34201:12;34155:60;34105:116;:::o;34227:120::-;34299:23;34316:5;34299:23;:::i;:::-;34292:5;34289:34;34279:62;;34337:1;34334;34327:12;34279:62;34227:120;:::o;34353:122::-;34426:24;34444:5;34426:24;:::i;:::-;34419:5;34416:35;34406:63;;34465:1;34462;34455:12;34406:63;34353:122;:::o
Swarm Source
ipfs://655ffa770d93f8f72086f476526a2e071e39d5e874e9db39416ea5edf9c3c692
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.