ERC-721
Overview
Max Total Supply
518 SKEL
Holders
102
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SKELLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SKEL
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-25 */ // File: contracts/skel.sol /** *Submitted for verification at Etherscan.io on 2022-03-21 */ // File: contracts/SKEL.sol /** *Submitted for verification at Etherscan.io on 2022-03-19 */ // File: contracts/SKEL.sol /** *Submitted for verification at Etherscan.io on 2022-03-19 */ // File: contracts/SKEL.sol /** *Submitted for verification at Etherscan.io on 2022-02-25 */ // File: contracts/SKEL.sol /** *Submitted for verification at Etherscan.io on 2022-02-23 */ /** *Submitted for verification at Etherscan.io on 2022-02-14 */ // File: contracts/SKEL.sol /** *Submitted for verification at Etherscan.io on 2022-01-18 */ // File: contracts/SKEL.sol /** *Submitted for verification at Etherscan.io on 2022-01-18 */ /** *Submitted for verification at Etherscan.io on 2022-01-18 */ // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // 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/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/interfaces/IERC20.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; // 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 v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @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/interfaces/IERC165.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // 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/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/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 pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // 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) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); // require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } 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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, 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; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/SKEL.sol //SPDX-License-Identifier: MIT //Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) pragma solidity ^0.8.0; contract SKEL is ERC721A, IERC2981, Ownable, ReentrancyGuard { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private tokenCounter; string private baseURI = "ipfs://Qmc5VkdZeSodYTRNUnabydgWiARJ7at61myTsfeaGskT6n"; uint256 public constant MAX_MINTS_PER_TX = 10; uint256 public maxSupply = 555; uint256 public constant PUBLIC_SALE_PRICE = 0.03 ether; bool public isPublicSaleActive = false; // ============ ACCESS CONTROL/SANITY MODIFIERS ============ modifier publicSaleActive() { require(isPublicSaleActive, "Public sale is not open"); _; } modifier maxMintsPerTX(uint256 numberOfTokens) { require( numberOfTokens <= MAX_MINTS_PER_TX, "Max mints per transaction exceeded" ); _; } modifier canMintNFTs(uint256 numberOfTokens) { require( totalSupply() + numberOfTokens <= maxSupply, "Not enough mints remaining to mint" ); _; } constructor( ) ERC721A("Skeleton Revenge", "SKEL", 100, maxSupply) { } modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) { require( (price * numberOfTokens) == msg.value, "Incorrect ETH value sent" ); _; } // ============ PUBLIC FUNCTIONS FOR MINTING ============ function mint(uint256 numberOfTokens) external payable nonReentrant publicSaleActive isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens) canMintNFTs(numberOfTokens) maxMintsPerTX(numberOfTokens) { _safeMint(msg.sender, numberOfTokens); } // ============ PUBLIC READ-ONLY FUNCTIONS ============ function getBaseURI() external view returns (string memory) { return baseURI; } // ============ OWNER-ONLY ADMIN FUNCTIONS ============ function setBaseURI(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function withdrawTokens(IERC20 token) public onlyOwner { uint256 balance = token.balanceOf(address(this)); token.transfer(msg.sender, balance); } // ============ SUPPORTING FUNCTIONS ============ function nextTokenId() private returns (uint256) { tokenCounter.increment(); return tokenCounter.current(); } // ============ FUNCTION OVERRIDES ============ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, IERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Nonexistent token"); return baseURI; } /** * @dev See {IERC165-royaltyInfo}. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view override returns (address receiver, uint256 royaltyAmount) { require(_exists(tokenId), "Nonexistent token"); return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100)); } } // These contract definitions are used to create a reference to the OpenSea // ProxyRegistry contract by using the registry's address (see isApprovedForAll). contract OwnableDelegateProxy { } contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TX","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c0604052600080556000600755604051806060016040528060358152602001620049e460359139600b90805190602001906200003e929190620002ad565b5061022b600c556000600d60006101000a81548160ff0219169083151502179055503480156200006d57600080fd5b506040518060400160405280601081526020017f536b656c65746f6e20526576656e6765000000000000000000000000000000008152506040518060400160405280600481526020017f534b454c000000000000000000000000000000000000000000000000000000008152506064600c546000811162000125576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200011c90620003cd565b60405180910390fd5b600082116200016b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016290620003ab565b60405180910390fd5b836001908051906020019062000183929190620002ad565b5082600290805190602001906200019c929190620002ad565b508160a08181525050806080818152505050505050620001d1620001c5620001df60201b60201c565b620001e760201b60201c565b600160098190555062000503565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002bb9062000400565b90600052602060002090601f016020900481019282620002df57600085556200032b565b82601f10620002fa57805160ff19168380011785556200032b565b828001600101855582156200032b579182015b828111156200032a5782518255916020019190600101906200030d565b5b5090506200033a91906200033e565b5090565b5b80821115620003595760008160009055506001016200033f565b5090565b60006200036c602783620003ef565b9150620003798262000465565b604082019050919050565b600062000393602e83620003ef565b9150620003a082620004b4565b604082019050919050565b60006020820190508181036000830152620003c6816200035d565b9050919050565b60006020820190508181036000830152620003e88162000384565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200041957607f821691505b6020821081141562000430576200042f62000436565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516144b76200052d600039600081816121dd01526122060152600050506144b76000f3fe6080604052600436106101d85760003560e01c806355f804b311610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106b0578063d7224ba0146106db578063e985e9c514610706578063f2fde38b14610743576101d8565b8063a22cb465146105f6578063b88d4fde1461061f578063c6a91b4214610648578063c87b56dd14610673576101d8565b8063715018a6116100d1578063715018a61461056d5780638da5cb5b1461058457806395d89b41146105af578063a0712d68146105da576101d8565b806355f804b31461049f5780636352211e146104c857806370a0823114610505578063714c539814610542576101d8565b806323b872dd1161017a5780633ccfd60b116101495780633ccfd60b146103f957806342842e0e1461041057806349df728c146104395780634f6ccce714610462576101d8565b806323b872dd1461032c57806328cad13d146103555780632a55205a1461037e5780632f745c59146103bc576101d8565b8063081812fc116101b6578063081812fc14610270578063095ea7b3146102ad57806318160ddd146102d65780631e84c41314610301576101d8565b806301ffc9a7146101dd57806306fdde031461021a57806307e89ec014610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612f8e565b61076c565b604051610211919061356f565b60405180910390f35b34801561022657600080fd5b5061022f6107e6565b60405161023c919061358a565b60405180910390f35b34801561025157600080fd5b5061025a610878565b60405161026791906138ac565b60405180910390f35b34801561027c57600080fd5b506102976004803603810190610292919061305e565b610883565b6040516102a491906134df565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190612ef4565b610908565b005b3480156102e257600080fd5b506102eb610a21565b6040516102f891906138ac565b60405180910390f35b34801561030d57600080fd5b50610316610a2a565b604051610323919061356f565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190612dde565b610a3d565b005b34801561036157600080fd5b5061037c60048036038101906103779190612f34565b610a4d565b005b34801561038a57600080fd5b506103a560048036038101906103a091906130b8565b610ae6565b6040516103b3929190613546565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de9190612ef4565b610b52565b6040516103f091906138ac565b60405180910390f35b34801561040557600080fd5b5061040e610d50565b005b34801561041c57600080fd5b5061043760048036038101906104329190612dde565b610e1b565b005b34801561044557600080fd5b50610460600480360381019061045b9190612fe8565b610e3b565b005b34801561046e57600080fd5b506104896004803603810190610484919061305e565b610fd6565b60405161049691906138ac565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190613015565b611029565b005b3480156104d457600080fd5b506104ef60048036038101906104ea919061305e565b6110bf565b6040516104fc91906134df565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190612d71565b6110d5565b60405161053991906138ac565b60405180910390f35b34801561054e57600080fd5b506105576111be565b604051610564919061358a565b60405180910390f35b34801561057957600080fd5b50610582611250565b005b34801561059057600080fd5b506105996112d8565b6040516105a691906134df565b60405180910390f35b3480156105bb57600080fd5b506105c4611302565b6040516105d1919061358a565b60405180910390f35b6105f460048036038101906105ef919061305e565b611394565b005b34801561060257600080fd5b5061061d60048036038101906106189190612eb4565b61153d565b005b34801561062b57600080fd5b5061064660048036038101906106419190612e31565b6116be565b005b34801561065457600080fd5b5061065d61171a565b60405161066a91906138ac565b60405180910390f35b34801561067f57600080fd5b5061069a6004803603810190610695919061305e565b61171f565b6040516106a7919061358a565b60405180910390f35b3480156106bc57600080fd5b506106c56117fb565b6040516106d291906138ac565b60405180910390f35b3480156106e757600080fd5b506106f0611801565b6040516106fd91906138ac565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190612d9e565b611807565b60405161073a919061356f565b60405180910390f35b34801561074f57600080fd5b5061076a60048036038101906107659190612d71565b61189b565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107df57506107de82611993565b5b9050919050565b6060600180546107f590613c23565b80601f016020809104026020016040519081016040528092919081815260200182805461082190613c23565b801561086e5780601f106108435761010080835404028352916020019161086e565b820191906000526020600020905b81548152906001019060200180831161085157829003601f168201915b5050505050905090565b666a94d74f43000081565b600061088e82611add565b6108cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c49061388c565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610913826110bf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b9061376c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a3611aea565b73ffffffffffffffffffffffffffffffffffffffff1614806109d257506109d1816109cc611aea565b611807565b5b610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a08906136ac565b60405180910390fd5b610a1c838383611af2565b505050565b60008054905090565b600d60009054906101000a900460ff1681565b610a48838383611ba4565b505050565b610a55611aea565b73ffffffffffffffffffffffffffffffffffffffff16610a736112d8565b73ffffffffffffffffffffffffffffffffffffffff1614610ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac09061370c565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600080610af284611add565b610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b289061368c565b60405180910390fd5b30610b47610b4085600561215d565b6064612173565b915091509250929050565b6000610b5d836110d5565b8210610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b95906135ac565b60405180910390fd5b6000610ba8610a21565b905060008060005b83811015610d0e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ca257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cfa5786841415610ceb578195505050505050610d4a565b8380610cf690613c86565b9450505b508080610d0690613c86565b915050610bb0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d419061380c565b60405180910390fd5b92915050565b610d58611aea565b73ffffffffffffffffffffffffffffffffffffffff16610d766112d8565b73ffffffffffffffffffffffffffffffffffffffff1614610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc39061370c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e17573d6000803e3d6000fd5b5050565b610e36838383604051806020016040528060008152506116be565b505050565b610e43611aea565b73ffffffffffffffffffffffffffffffffffffffff16610e616112d8565b73ffffffffffffffffffffffffffffffffffffffff1614610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae9061370c565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ef291906134df565b60206040518083038186803b158015610f0a57600080fd5b505afa158015610f1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f42919061308b565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610f7f929190613546565b602060405180830381600087803b158015610f9957600080fd5b505af1158015610fad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd19190612f61565b505050565b6000610fe0610a21565b8210611021576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110189061360c565b60405180910390fd5b819050919050565b611031611aea565b73ffffffffffffffffffffffffffffffffffffffff1661104f6112d8565b73ffffffffffffffffffffffffffffffffffffffff16146110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c9061370c565b60405180910390fd5b80600b90805190602001906110bb929190612b0c565b5050565b60006110ca82612189565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d906136cc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b80546111cd90613c23565b80601f01602080910402602001604051908101604052809291908181526020018280546111f990613c23565b80156112465780601f1061121b57610100808354040283529160200191611246565b820191906000526020600020905b81548152906001019060200180831161122957829003601f168201915b5050505050905090565b611258611aea565b73ffffffffffffffffffffffffffffffffffffffff166112766112d8565b73ffffffffffffffffffffffffffffffffffffffff16146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c39061370c565b60405180910390fd5b6112d6600061238c565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461131190613c23565b80601f016020809104026020016040519081016040528092919081815260200182805461133d90613c23565b801561138a5780601f1061135f5761010080835404028352916020019161138a565b820191906000526020600020905b81548152906001019060200180831161136d57829003601f168201915b5050505050905090565b600260095414156113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d19061382c565b60405180910390fd5b6002600981905550600d60009054906101000a900460ff16611431576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114289061386c565b60405180910390fd5b666a94d74f430000813481836114479190613a53565b14611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e906137ec565b60405180910390fd5b82600c5481611494610a21565b61149e91906139cc565b11156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d69061362c565b60405180910390fd5b83600a811115611524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151b9061366c565b60405180910390fd5b61152e3386612452565b50505050600160098190555050565b611545611aea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa9061372c565b60405180910390fd5b80600660006115c0611aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661166d611aea565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b2919061356f565b60405180910390a35050565b6116c9848484611ba4565b6116d584848484612470565b611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b9061378c565b60405180910390fd5b50505050565b600a81565b606061172a82611add565b611769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117609061368c565b60405180910390fd5b600b805461177690613c23565b80601f01602080910402602001604051908101604052809291908181526020018280546117a290613c23565b80156117ef5780601f106117c4576101008083540402835291602001916117ef565b820191906000526020600020905b8154815290600101906020018083116117d257829003601f168201915b50505050509050919050565b600c5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118a3611aea565b73ffffffffffffffffffffffffffffffffffffffff166118c16112d8565b73ffffffffffffffffffffffffffffffffffffffff1614611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e9061370c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e906135cc565b60405180910390fd5b6119908161238c565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a5e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ac657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ad65750611ad582612607565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611baf82612189565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611bd6611aea565b73ffffffffffffffffffffffffffffffffffffffff161480611c325750611bfb611aea565b73ffffffffffffffffffffffffffffffffffffffff16611c1a84610883565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c4e5750611c4d8260000151611c48611aea565b611807565b5b905080611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c879061374c565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf9906136ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d699061364c565b60405180910390fd5b611d7f8585856001612671565b611d8f6000848460000151611af2565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611dfd9190613aad565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ea19190613986565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611fa791906139cc565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156120ed5761201d81611add565b156120ec576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121558686866001612677565b505050505050565b6000818361216b9190613a53565b905092915050565b600081836121819190613a22565b905092915050565b612191612b92565b61219a82611add565b6121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d0906135ec565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000831061223d5760017f0000000000000000000000000000000000000000000000000000000000000000846122309190613ae1565b61223a91906139cc565b90505b60008390505b81811061234b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461233757809350505050612387565b50808061234390613bf9565b915050612243565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237e9061384c565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61246c82826040518060200160405280600081525061267d565b5050565b60006124918473ffffffffffffffffffffffffffffffffffffffff16612af9565b156125fa578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124ba611aea565b8786866040518563ffffffff1660e01b81526004016124dc94939291906134fa565b602060405180830381600087803b1580156124f657600080fd5b505af192505050801561252757506040513d601f19601f820116820180604052508101906125249190612fbb565b60015b6125aa573d8060008114612557576040519150601f19603f3d011682016040523d82523d6000602084013e61255c565b606091505b506000815114156125a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125999061378c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125ff565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ea906137cc565b60405180910390fd5b6126fc81611add565b1561273c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612733906137ac565b60405180910390fd5b6127496000858386612671565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516128469190613986565b6fffffffffffffffffffffffffffffffff16815260200185836020015161286d9190613986565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612adc57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a7c6000888488612470565b612abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab29061378c565b60405180910390fd5b8180612ac690613c86565b9250508080612ad490613c86565b915050612a0b565b5080600081905550612af16000878588612677565b505050505050565b600080823b905060008111915050919050565b828054612b1890613c23565b90600052602060002090601f016020900481019282612b3a5760008555612b81565b82601f10612b5357805160ff1916838001178555612b81565b82800160010185558215612b81579182015b82811115612b80578251825591602001919060010190612b65565b5b509050612b8e9190612bcc565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612be5576000816000905550600101612bcd565b5090565b6000612bfc612bf7846138ec565b6138c7565b905082815260208101848484011115612c1857612c17613d90565b5b612c23848285613bb7565b509392505050565b6000612c3e612c398461391d565b6138c7565b905082815260208101848484011115612c5a57612c59613d90565b5b612c65848285613bb7565b509392505050565b600081359050612c7c8161440e565b92915050565b600081359050612c9181614425565b92915050565b600081519050612ca681614425565b92915050565b600081359050612cbb8161443c565b92915050565b600081519050612cd08161443c565b92915050565b600082601f830112612ceb57612cea613d8b565b5b8135612cfb848260208601612be9565b91505092915050565b600081359050612d1381614453565b92915050565b600082601f830112612d2e57612d2d613d8b565b5b8135612d3e848260208601612c2b565b91505092915050565b600081359050612d568161446a565b92915050565b600081519050612d6b8161446a565b92915050565b600060208284031215612d8757612d86613d9a565b5b6000612d9584828501612c6d565b91505092915050565b60008060408385031215612db557612db4613d9a565b5b6000612dc385828601612c6d565b9250506020612dd485828601612c6d565b9150509250929050565b600080600060608486031215612df757612df6613d9a565b5b6000612e0586828701612c6d565b9350506020612e1686828701612c6d565b9250506040612e2786828701612d47565b9150509250925092565b60008060008060808587031215612e4b57612e4a613d9a565b5b6000612e5987828801612c6d565b9450506020612e6a87828801612c6d565b9350506040612e7b87828801612d47565b925050606085013567ffffffffffffffff811115612e9c57612e9b613d95565b5b612ea887828801612cd6565b91505092959194509250565b60008060408385031215612ecb57612eca613d9a565b5b6000612ed985828601612c6d565b9250506020612eea85828601612c82565b9150509250929050565b60008060408385031215612f0b57612f0a613d9a565b5b6000612f1985828601612c6d565b9250506020612f2a85828601612d47565b9150509250929050565b600060208284031215612f4a57612f49613d9a565b5b6000612f5884828501612c82565b91505092915050565b600060208284031215612f7757612f76613d9a565b5b6000612f8584828501612c97565b91505092915050565b600060208284031215612fa457612fa3613d9a565b5b6000612fb284828501612cac565b91505092915050565b600060208284031215612fd157612fd0613d9a565b5b6000612fdf84828501612cc1565b91505092915050565b600060208284031215612ffe57612ffd613d9a565b5b600061300c84828501612d04565b91505092915050565b60006020828403121561302b5761302a613d9a565b5b600082013567ffffffffffffffff81111561304957613048613d95565b5b61305584828501612d19565b91505092915050565b60006020828403121561307457613073613d9a565b5b600061308284828501612d47565b91505092915050565b6000602082840312156130a1576130a0613d9a565b5b60006130af84828501612d5c565b91505092915050565b600080604083850312156130cf576130ce613d9a565b5b60006130dd85828601612d47565b92505060206130ee85828601612d47565b9150509250929050565b61310181613b15565b82525050565b61311081613b27565b82525050565b60006131218261394e565b61312b8185613964565b935061313b818560208601613bc6565b61314481613d9f565b840191505092915050565b600061315a82613959565b6131648185613975565b9350613174818560208601613bc6565b61317d81613d9f565b840191505092915050565b6000613195602283613975565b91506131a082613db0565b604082019050919050565b60006131b8602683613975565b91506131c382613dff565b604082019050919050565b60006131db602a83613975565b91506131e682613e4e565b604082019050919050565b60006131fe602383613975565b915061320982613e9d565b604082019050919050565b6000613221602283613975565b915061322c82613eec565b604082019050919050565b6000613244602583613975565b915061324f82613f3b565b604082019050919050565b6000613267602283613975565b915061327282613f8a565b604082019050919050565b600061328a601183613975565b915061329582613fd9565b602082019050919050565b60006132ad603983613975565b91506132b882614002565b604082019050919050565b60006132d0602b83613975565b91506132db82614051565b604082019050919050565b60006132f3602683613975565b91506132fe826140a0565b604082019050919050565b6000613316602083613975565b9150613321826140ef565b602082019050919050565b6000613339601a83613975565b915061334482614118565b602082019050919050565b600061335c603283613975565b915061336782614141565b604082019050919050565b600061337f602283613975565b915061338a82614190565b604082019050919050565b60006133a2603383613975565b91506133ad826141df565b604082019050919050565b60006133c5601d83613975565b91506133d08261422e565b602082019050919050565b60006133e8602183613975565b91506133f382614257565b604082019050919050565b600061340b601883613975565b9150613416826142a6565b602082019050919050565b600061342e602e83613975565b9150613439826142cf565b604082019050919050565b6000613451601f83613975565b915061345c8261431e565b602082019050919050565b6000613474602f83613975565b915061347f82614347565b604082019050919050565b6000613497601783613975565b91506134a282614396565b602082019050919050565b60006134ba602d83613975565b91506134c5826143bf565b604082019050919050565b6134d981613bad565b82525050565b60006020820190506134f460008301846130f8565b92915050565b600060808201905061350f60008301876130f8565b61351c60208301866130f8565b61352960408301856134d0565b818103606083015261353b8184613116565b905095945050505050565b600060408201905061355b60008301856130f8565b61356860208301846134d0565b9392505050565b60006020820190506135846000830184613107565b92915050565b600060208201905081810360008301526135a4818461314f565b905092915050565b600060208201905081810360008301526135c581613188565b9050919050565b600060208201905081810360008301526135e5816131ab565b9050919050565b60006020820190508181036000830152613605816131ce565b9050919050565b60006020820190508181036000830152613625816131f1565b9050919050565b6000602082019050818103600083015261364581613214565b9050919050565b6000602082019050818103600083015261366581613237565b9050919050565b600060208201905081810360008301526136858161325a565b9050919050565b600060208201905081810360008301526136a58161327d565b9050919050565b600060208201905081810360008301526136c5816132a0565b9050919050565b600060208201905081810360008301526136e5816132c3565b9050919050565b60006020820190508181036000830152613705816132e6565b9050919050565b6000602082019050818103600083015261372581613309565b9050919050565b600060208201905081810360008301526137458161332c565b9050919050565b600060208201905081810360008301526137658161334f565b9050919050565b6000602082019050818103600083015261378581613372565b9050919050565b600060208201905081810360008301526137a581613395565b9050919050565b600060208201905081810360008301526137c5816133b8565b9050919050565b600060208201905081810360008301526137e5816133db565b9050919050565b60006020820190508181036000830152613805816133fe565b9050919050565b6000602082019050818103600083015261382581613421565b9050919050565b6000602082019050818103600083015261384581613444565b9050919050565b6000602082019050818103600083015261386581613467565b9050919050565b600060208201905081810360008301526138858161348a565b9050919050565b600060208201905081810360008301526138a5816134ad565b9050919050565b60006020820190506138c160008301846134d0565b92915050565b60006138d16138e2565b90506138dd8282613c55565b919050565b6000604051905090565b600067ffffffffffffffff82111561390757613906613d5c565b5b61391082613d9f565b9050602081019050919050565b600067ffffffffffffffff82111561393857613937613d5c565b5b61394182613d9f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600061399182613b71565b915061399c83613b71565b9250826fffffffffffffffffffffffffffffffff038211156139c1576139c0613ccf565b5b828201905092915050565b60006139d782613bad565b91506139e283613bad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a1757613a16613ccf565b5b828201905092915050565b6000613a2d82613bad565b9150613a3883613bad565b925082613a4857613a47613cfe565b5b828204905092915050565b6000613a5e82613bad565b9150613a6983613bad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613aa257613aa1613ccf565b5b828202905092915050565b6000613ab882613b71565b9150613ac383613b71565b925082821015613ad657613ad5613ccf565b5b828203905092915050565b6000613aec82613bad565b9150613af783613bad565b925082821015613b0a57613b09613ccf565b5b828203905092915050565b6000613b2082613b8d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613b6a82613b15565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613be4578082015181840152602081019050613bc9565b83811115613bf3576000848401525b50505050565b6000613c0482613bad565b91506000821415613c1857613c17613ccf565b5b600182039050919050565b60006002820490506001821680613c3b57607f821691505b60208210811415613c4f57613c4e613d2d565b5b50919050565b613c5e82613d9f565b810181811067ffffffffffffffff82111715613c7d57613c7c613d5c565b5b80604052505050565b6000613c9182613bad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cc457613cc3613ccf565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61441781613b15565b811461442257600080fd5b50565b61442e81613b27565b811461443957600080fd5b50565b61444581613b33565b811461445057600080fd5b50565b61445c81613b5f565b811461446757600080fd5b50565b61447381613bad565b811461447e57600080fd5b5056fea2646970667358221220e3d08370adeb96a5668944e4bba2d88739be77b441008836762137fceb83ec4764736f6c63430008070033697066733a2f2f516d6335566b645a65536f645954524e556e6162796467576941524a37617436316d79547366656147736b54366e
Deployed Bytecode
0x6080604052600436106101d85760003560e01c806355f804b311610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106b0578063d7224ba0146106db578063e985e9c514610706578063f2fde38b14610743576101d8565b8063a22cb465146105f6578063b88d4fde1461061f578063c6a91b4214610648578063c87b56dd14610673576101d8565b8063715018a6116100d1578063715018a61461056d5780638da5cb5b1461058457806395d89b41146105af578063a0712d68146105da576101d8565b806355f804b31461049f5780636352211e146104c857806370a0823114610505578063714c539814610542576101d8565b806323b872dd1161017a5780633ccfd60b116101495780633ccfd60b146103f957806342842e0e1461041057806349df728c146104395780634f6ccce714610462576101d8565b806323b872dd1461032c57806328cad13d146103555780632a55205a1461037e5780632f745c59146103bc576101d8565b8063081812fc116101b6578063081812fc14610270578063095ea7b3146102ad57806318160ddd146102d65780631e84c41314610301576101d8565b806301ffc9a7146101dd57806306fdde031461021a57806307e89ec014610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612f8e565b61076c565b604051610211919061356f565b60405180910390f35b34801561022657600080fd5b5061022f6107e6565b60405161023c919061358a565b60405180910390f35b34801561025157600080fd5b5061025a610878565b60405161026791906138ac565b60405180910390f35b34801561027c57600080fd5b506102976004803603810190610292919061305e565b610883565b6040516102a491906134df565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190612ef4565b610908565b005b3480156102e257600080fd5b506102eb610a21565b6040516102f891906138ac565b60405180910390f35b34801561030d57600080fd5b50610316610a2a565b604051610323919061356f565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190612dde565b610a3d565b005b34801561036157600080fd5b5061037c60048036038101906103779190612f34565b610a4d565b005b34801561038a57600080fd5b506103a560048036038101906103a091906130b8565b610ae6565b6040516103b3929190613546565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de9190612ef4565b610b52565b6040516103f091906138ac565b60405180910390f35b34801561040557600080fd5b5061040e610d50565b005b34801561041c57600080fd5b5061043760048036038101906104329190612dde565b610e1b565b005b34801561044557600080fd5b50610460600480360381019061045b9190612fe8565b610e3b565b005b34801561046e57600080fd5b506104896004803603810190610484919061305e565b610fd6565b60405161049691906138ac565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190613015565b611029565b005b3480156104d457600080fd5b506104ef60048036038101906104ea919061305e565b6110bf565b6040516104fc91906134df565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190612d71565b6110d5565b60405161053991906138ac565b60405180910390f35b34801561054e57600080fd5b506105576111be565b604051610564919061358a565b60405180910390f35b34801561057957600080fd5b50610582611250565b005b34801561059057600080fd5b506105996112d8565b6040516105a691906134df565b60405180910390f35b3480156105bb57600080fd5b506105c4611302565b6040516105d1919061358a565b60405180910390f35b6105f460048036038101906105ef919061305e565b611394565b005b34801561060257600080fd5b5061061d60048036038101906106189190612eb4565b61153d565b005b34801561062b57600080fd5b5061064660048036038101906106419190612e31565b6116be565b005b34801561065457600080fd5b5061065d61171a565b60405161066a91906138ac565b60405180910390f35b34801561067f57600080fd5b5061069a6004803603810190610695919061305e565b61171f565b6040516106a7919061358a565b60405180910390f35b3480156106bc57600080fd5b506106c56117fb565b6040516106d291906138ac565b60405180910390f35b3480156106e757600080fd5b506106f0611801565b6040516106fd91906138ac565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190612d9e565b611807565b60405161073a919061356f565b60405180910390f35b34801561074f57600080fd5b5061076a60048036038101906107659190612d71565b61189b565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107df57506107de82611993565b5b9050919050565b6060600180546107f590613c23565b80601f016020809104026020016040519081016040528092919081815260200182805461082190613c23565b801561086e5780601f106108435761010080835404028352916020019161086e565b820191906000526020600020905b81548152906001019060200180831161085157829003601f168201915b5050505050905090565b666a94d74f43000081565b600061088e82611add565b6108cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c49061388c565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610913826110bf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b9061376c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a3611aea565b73ffffffffffffffffffffffffffffffffffffffff1614806109d257506109d1816109cc611aea565b611807565b5b610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a08906136ac565b60405180910390fd5b610a1c838383611af2565b505050565b60008054905090565b600d60009054906101000a900460ff1681565b610a48838383611ba4565b505050565b610a55611aea565b73ffffffffffffffffffffffffffffffffffffffff16610a736112d8565b73ffffffffffffffffffffffffffffffffffffffff1614610ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac09061370c565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600080610af284611add565b610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b289061368c565b60405180910390fd5b30610b47610b4085600561215d565b6064612173565b915091509250929050565b6000610b5d836110d5565b8210610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b95906135ac565b60405180910390fd5b6000610ba8610a21565b905060008060005b83811015610d0e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ca257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cfa5786841415610ceb578195505050505050610d4a565b8380610cf690613c86565b9450505b508080610d0690613c86565b915050610bb0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d419061380c565b60405180910390fd5b92915050565b610d58611aea565b73ffffffffffffffffffffffffffffffffffffffff16610d766112d8565b73ffffffffffffffffffffffffffffffffffffffff1614610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc39061370c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e17573d6000803e3d6000fd5b5050565b610e36838383604051806020016040528060008152506116be565b505050565b610e43611aea565b73ffffffffffffffffffffffffffffffffffffffff16610e616112d8565b73ffffffffffffffffffffffffffffffffffffffff1614610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae9061370c565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ef291906134df565b60206040518083038186803b158015610f0a57600080fd5b505afa158015610f1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f42919061308b565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610f7f929190613546565b602060405180830381600087803b158015610f9957600080fd5b505af1158015610fad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd19190612f61565b505050565b6000610fe0610a21565b8210611021576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110189061360c565b60405180910390fd5b819050919050565b611031611aea565b73ffffffffffffffffffffffffffffffffffffffff1661104f6112d8565b73ffffffffffffffffffffffffffffffffffffffff16146110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c9061370c565b60405180910390fd5b80600b90805190602001906110bb929190612b0c565b5050565b60006110ca82612189565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d906136cc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b80546111cd90613c23565b80601f01602080910402602001604051908101604052809291908181526020018280546111f990613c23565b80156112465780601f1061121b57610100808354040283529160200191611246565b820191906000526020600020905b81548152906001019060200180831161122957829003601f168201915b5050505050905090565b611258611aea565b73ffffffffffffffffffffffffffffffffffffffff166112766112d8565b73ffffffffffffffffffffffffffffffffffffffff16146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c39061370c565b60405180910390fd5b6112d6600061238c565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461131190613c23565b80601f016020809104026020016040519081016040528092919081815260200182805461133d90613c23565b801561138a5780601f1061135f5761010080835404028352916020019161138a565b820191906000526020600020905b81548152906001019060200180831161136d57829003601f168201915b5050505050905090565b600260095414156113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d19061382c565b60405180910390fd5b6002600981905550600d60009054906101000a900460ff16611431576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114289061386c565b60405180910390fd5b666a94d74f430000813481836114479190613a53565b14611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e906137ec565b60405180910390fd5b82600c5481611494610a21565b61149e91906139cc565b11156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d69061362c565b60405180910390fd5b83600a811115611524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151b9061366c565b60405180910390fd5b61152e3386612452565b50505050600160098190555050565b611545611aea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa9061372c565b60405180910390fd5b80600660006115c0611aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661166d611aea565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b2919061356f565b60405180910390a35050565b6116c9848484611ba4565b6116d584848484612470565b611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b9061378c565b60405180910390fd5b50505050565b600a81565b606061172a82611add565b611769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117609061368c565b60405180910390fd5b600b805461177690613c23565b80601f01602080910402602001604051908101604052809291908181526020018280546117a290613c23565b80156117ef5780601f106117c4576101008083540402835291602001916117ef565b820191906000526020600020905b8154815290600101906020018083116117d257829003601f168201915b50505050509050919050565b600c5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118a3611aea565b73ffffffffffffffffffffffffffffffffffffffff166118c16112d8565b73ffffffffffffffffffffffffffffffffffffffff1614611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e9061370c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e906135cc565b60405180910390fd5b6119908161238c565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a5e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ac657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ad65750611ad582612607565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611baf82612189565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611bd6611aea565b73ffffffffffffffffffffffffffffffffffffffff161480611c325750611bfb611aea565b73ffffffffffffffffffffffffffffffffffffffff16611c1a84610883565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c4e5750611c4d8260000151611c48611aea565b611807565b5b905080611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c879061374c565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf9906136ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d699061364c565b60405180910390fd5b611d7f8585856001612671565b611d8f6000848460000151611af2565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611dfd9190613aad565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ea19190613986565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611fa791906139cc565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156120ed5761201d81611add565b156120ec576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121558686866001612677565b505050505050565b6000818361216b9190613a53565b905092915050565b600081836121819190613a22565b905092915050565b612191612b92565b61219a82611add565b6121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d0906135ec565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000064831061223d5760017f0000000000000000000000000000000000000000000000000000000000000064846122309190613ae1565b61223a91906139cc565b90505b60008390505b81811061234b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461233757809350505050612387565b50808061234390613bf9565b915050612243565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237e9061384c565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61246c82826040518060200160405280600081525061267d565b5050565b60006124918473ffffffffffffffffffffffffffffffffffffffff16612af9565b156125fa578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124ba611aea565b8786866040518563ffffffff1660e01b81526004016124dc94939291906134fa565b602060405180830381600087803b1580156124f657600080fd5b505af192505050801561252757506040513d601f19601f820116820180604052508101906125249190612fbb565b60015b6125aa573d8060008114612557576040519150601f19603f3d011682016040523d82523d6000602084013e61255c565b606091505b506000815114156125a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125999061378c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125ff565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ea906137cc565b60405180910390fd5b6126fc81611add565b1561273c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612733906137ac565b60405180910390fd5b6127496000858386612671565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516128469190613986565b6fffffffffffffffffffffffffffffffff16815260200185836020015161286d9190613986565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612adc57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a7c6000888488612470565b612abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab29061378c565b60405180910390fd5b8180612ac690613c86565b9250508080612ad490613c86565b915050612a0b565b5080600081905550612af16000878588612677565b505050505050565b600080823b905060008111915050919050565b828054612b1890613c23565b90600052602060002090601f016020900481019282612b3a5760008555612b81565b82601f10612b5357805160ff1916838001178555612b81565b82800160010185558215612b81579182015b82811115612b80578251825591602001919060010190612b65565b5b509050612b8e9190612bcc565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612be5576000816000905550600101612bcd565b5090565b6000612bfc612bf7846138ec565b6138c7565b905082815260208101848484011115612c1857612c17613d90565b5b612c23848285613bb7565b509392505050565b6000612c3e612c398461391d565b6138c7565b905082815260208101848484011115612c5a57612c59613d90565b5b612c65848285613bb7565b509392505050565b600081359050612c7c8161440e565b92915050565b600081359050612c9181614425565b92915050565b600081519050612ca681614425565b92915050565b600081359050612cbb8161443c565b92915050565b600081519050612cd08161443c565b92915050565b600082601f830112612ceb57612cea613d8b565b5b8135612cfb848260208601612be9565b91505092915050565b600081359050612d1381614453565b92915050565b600082601f830112612d2e57612d2d613d8b565b5b8135612d3e848260208601612c2b565b91505092915050565b600081359050612d568161446a565b92915050565b600081519050612d6b8161446a565b92915050565b600060208284031215612d8757612d86613d9a565b5b6000612d9584828501612c6d565b91505092915050565b60008060408385031215612db557612db4613d9a565b5b6000612dc385828601612c6d565b9250506020612dd485828601612c6d565b9150509250929050565b600080600060608486031215612df757612df6613d9a565b5b6000612e0586828701612c6d565b9350506020612e1686828701612c6d565b9250506040612e2786828701612d47565b9150509250925092565b60008060008060808587031215612e4b57612e4a613d9a565b5b6000612e5987828801612c6d565b9450506020612e6a87828801612c6d565b9350506040612e7b87828801612d47565b925050606085013567ffffffffffffffff811115612e9c57612e9b613d95565b5b612ea887828801612cd6565b91505092959194509250565b60008060408385031215612ecb57612eca613d9a565b5b6000612ed985828601612c6d565b9250506020612eea85828601612c82565b9150509250929050565b60008060408385031215612f0b57612f0a613d9a565b5b6000612f1985828601612c6d565b9250506020612f2a85828601612d47565b9150509250929050565b600060208284031215612f4a57612f49613d9a565b5b6000612f5884828501612c82565b91505092915050565b600060208284031215612f7757612f76613d9a565b5b6000612f8584828501612c97565b91505092915050565b600060208284031215612fa457612fa3613d9a565b5b6000612fb284828501612cac565b91505092915050565b600060208284031215612fd157612fd0613d9a565b5b6000612fdf84828501612cc1565b91505092915050565b600060208284031215612ffe57612ffd613d9a565b5b600061300c84828501612d04565b91505092915050565b60006020828403121561302b5761302a613d9a565b5b600082013567ffffffffffffffff81111561304957613048613d95565b5b61305584828501612d19565b91505092915050565b60006020828403121561307457613073613d9a565b5b600061308284828501612d47565b91505092915050565b6000602082840312156130a1576130a0613d9a565b5b60006130af84828501612d5c565b91505092915050565b600080604083850312156130cf576130ce613d9a565b5b60006130dd85828601612d47565b92505060206130ee85828601612d47565b9150509250929050565b61310181613b15565b82525050565b61311081613b27565b82525050565b60006131218261394e565b61312b8185613964565b935061313b818560208601613bc6565b61314481613d9f565b840191505092915050565b600061315a82613959565b6131648185613975565b9350613174818560208601613bc6565b61317d81613d9f565b840191505092915050565b6000613195602283613975565b91506131a082613db0565b604082019050919050565b60006131b8602683613975565b91506131c382613dff565b604082019050919050565b60006131db602a83613975565b91506131e682613e4e565b604082019050919050565b60006131fe602383613975565b915061320982613e9d565b604082019050919050565b6000613221602283613975565b915061322c82613eec565b604082019050919050565b6000613244602583613975565b915061324f82613f3b565b604082019050919050565b6000613267602283613975565b915061327282613f8a565b604082019050919050565b600061328a601183613975565b915061329582613fd9565b602082019050919050565b60006132ad603983613975565b91506132b882614002565b604082019050919050565b60006132d0602b83613975565b91506132db82614051565b604082019050919050565b60006132f3602683613975565b91506132fe826140a0565b604082019050919050565b6000613316602083613975565b9150613321826140ef565b602082019050919050565b6000613339601a83613975565b915061334482614118565b602082019050919050565b600061335c603283613975565b915061336782614141565b604082019050919050565b600061337f602283613975565b915061338a82614190565b604082019050919050565b60006133a2603383613975565b91506133ad826141df565b604082019050919050565b60006133c5601d83613975565b91506133d08261422e565b602082019050919050565b60006133e8602183613975565b91506133f382614257565b604082019050919050565b600061340b601883613975565b9150613416826142a6565b602082019050919050565b600061342e602e83613975565b9150613439826142cf565b604082019050919050565b6000613451601f83613975565b915061345c8261431e565b602082019050919050565b6000613474602f83613975565b915061347f82614347565b604082019050919050565b6000613497601783613975565b91506134a282614396565b602082019050919050565b60006134ba602d83613975565b91506134c5826143bf565b604082019050919050565b6134d981613bad565b82525050565b60006020820190506134f460008301846130f8565b92915050565b600060808201905061350f60008301876130f8565b61351c60208301866130f8565b61352960408301856134d0565b818103606083015261353b8184613116565b905095945050505050565b600060408201905061355b60008301856130f8565b61356860208301846134d0565b9392505050565b60006020820190506135846000830184613107565b92915050565b600060208201905081810360008301526135a4818461314f565b905092915050565b600060208201905081810360008301526135c581613188565b9050919050565b600060208201905081810360008301526135e5816131ab565b9050919050565b60006020820190508181036000830152613605816131ce565b9050919050565b60006020820190508181036000830152613625816131f1565b9050919050565b6000602082019050818103600083015261364581613214565b9050919050565b6000602082019050818103600083015261366581613237565b9050919050565b600060208201905081810360008301526136858161325a565b9050919050565b600060208201905081810360008301526136a58161327d565b9050919050565b600060208201905081810360008301526136c5816132a0565b9050919050565b600060208201905081810360008301526136e5816132c3565b9050919050565b60006020820190508181036000830152613705816132e6565b9050919050565b6000602082019050818103600083015261372581613309565b9050919050565b600060208201905081810360008301526137458161332c565b9050919050565b600060208201905081810360008301526137658161334f565b9050919050565b6000602082019050818103600083015261378581613372565b9050919050565b600060208201905081810360008301526137a581613395565b9050919050565b600060208201905081810360008301526137c5816133b8565b9050919050565b600060208201905081810360008301526137e5816133db565b9050919050565b60006020820190508181036000830152613805816133fe565b9050919050565b6000602082019050818103600083015261382581613421565b9050919050565b6000602082019050818103600083015261384581613444565b9050919050565b6000602082019050818103600083015261386581613467565b9050919050565b600060208201905081810360008301526138858161348a565b9050919050565b600060208201905081810360008301526138a5816134ad565b9050919050565b60006020820190506138c160008301846134d0565b92915050565b60006138d16138e2565b90506138dd8282613c55565b919050565b6000604051905090565b600067ffffffffffffffff82111561390757613906613d5c565b5b61391082613d9f565b9050602081019050919050565b600067ffffffffffffffff82111561393857613937613d5c565b5b61394182613d9f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600061399182613b71565b915061399c83613b71565b9250826fffffffffffffffffffffffffffffffff038211156139c1576139c0613ccf565b5b828201905092915050565b60006139d782613bad565b91506139e283613bad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a1757613a16613ccf565b5b828201905092915050565b6000613a2d82613bad565b9150613a3883613bad565b925082613a4857613a47613cfe565b5b828204905092915050565b6000613a5e82613bad565b9150613a6983613bad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613aa257613aa1613ccf565b5b828202905092915050565b6000613ab882613b71565b9150613ac383613b71565b925082821015613ad657613ad5613ccf565b5b828203905092915050565b6000613aec82613bad565b9150613af783613bad565b925082821015613b0a57613b09613ccf565b5b828203905092915050565b6000613b2082613b8d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613b6a82613b15565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613be4578082015181840152602081019050613bc9565b83811115613bf3576000848401525b50505050565b6000613c0482613bad565b91506000821415613c1857613c17613ccf565b5b600182039050919050565b60006002820490506001821680613c3b57607f821691505b60208210811415613c4f57613c4e613d2d565b5b50919050565b613c5e82613d9f565b810181811067ffffffffffffffff82111715613c7d57613c7c613d5c565b5b80604052505050565b6000613c9182613bad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cc457613cc3613ccf565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61441781613b15565b811461442257600080fd5b50565b61442e81613b27565b811461443957600080fd5b50565b61444581613b33565b811461445057600080fd5b50565b61445c81613b5f565b811461446757600080fd5b50565b61447381613bad565b811461447e57600080fd5b5056fea2646970667358221220e3d08370adeb96a5668944e4bba2d88739be77b441008836762137fceb83ec4764736f6c63430008070033
Deployed Bytecode Sourcemap
55837:3891:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58735:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45024:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56207:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46549:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46112:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41859:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56268:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47399:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57982:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59407:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;42490:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58152:143;;;;;;;;;;;;;:::i;:::-;;47604:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58303:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42022:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57872:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44847:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43724:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57708:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19882:103;;;;;;;;;;;;;:::i;:::-;;19231:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45179:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57310:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46817:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47824:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56116:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59098:243;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56168:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52242:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47154:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20140:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58735:292;58883:4;58940:26;58925:41;;;:11;:41;;;;:94;;;;58983:36;59007:11;58983:23;:36::i;:::-;58925:94;58905:114;;58735:292;;;:::o;45024:94::-;45078:13;45107:5;45100:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45024:94;:::o;56207:54::-;56251:10;56207:54;:::o;46549:204::-;46617:7;46641:16;46649:7;46641;:16::i;:::-;46633:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46723:15;:24;46739:7;46723:24;;;;;;;;;;;;;;;;;;;;;46716:31;;46549:204;;;:::o;46112:379::-;46181:13;46197:24;46213:7;46197:15;:24::i;:::-;46181:40;;46242:5;46236:11;;:2;:11;;;;46228:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46327:5;46311:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;46336:37;46353:5;46360:12;:10;:12::i;:::-;46336:16;:37::i;:::-;46311:62;46295:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;46457:28;46466:2;46470:7;46479:5;46457:8;:28::i;:::-;46174:317;46112:379;;:::o;41859:94::-;41912:7;41935:12;;41928:19;;41859:94;:::o;56268:38::-;;;;;;;;;;;;;:::o;47399:142::-;47507:28;47517:4;47523:2;47527:7;47507:9;:28::i;:::-;47399:142;;;:::o;57982:158::-;19462:12;:10;:12::i;:::-;19451:23;;:7;:5;:7::i;:::-;:23;;;19443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58113:19:::1;58092:18;;:40;;;;;;;;;;;;;;;;;;57982:158:::0;:::o;59407:318::-;59532:16;59550:21;59597:16;59605:7;59597;:16::i;:::-;59589:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;59664:4;59671:45;59684:26;59697:9;59708:1;59684:12;:26::i;:::-;59712:3;59671:12;:45::i;:::-;59648:69;;;;59407:318;;;;;:::o;42490:744::-;42599:7;42634:16;42644:5;42634:9;:16::i;:::-;42626:5;:24;42618:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;42696:22;42721:13;:11;:13::i;:::-;42696:38;;42741:19;42771:25;42821:9;42816:350;42840:14;42836:1;:18;42816:350;;;42870:31;42904:11;:14;42916:1;42904:14;;;;;;;;;;;42870:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42957:1;42931:28;;:9;:14;;;:28;;;42927:89;;42992:9;:14;;;42972:34;;42927:89;43049:5;43028:26;;:17;:26;;;43024:135;;;43086:5;43071:11;:20;43067:59;;;43113:1;43106:8;;;;;;;;;43067:59;43136:13;;;;;:::i;:::-;;;;43024:135;42861:305;42856:3;;;;;:::i;:::-;;;;42816:350;;;;43172:56;;;;;;;;;;:::i;:::-;;;;;;;;42490:744;;;;;:::o;58152:143::-;19462:12;:10;:12::i;:::-;19451:23;;:7;:5;:7::i;:::-;:23;;;19443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58200:15:::1;58218:21;58200:39;;58258:10;58250:28;;:37;58279:7;58250:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58189:106;58152:143::o:0;47604:157::-;47716:39;47733:4;47739:2;47743:7;47716:39;;;;;;;;;;;;:16;:39::i;:::-;47604:157;;;:::o;58303:168::-;19462:12;:10;:12::i;:::-;19451:23;;:7;:5;:7::i;:::-;:23;;;19443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58369:15:::1;58387:5;:15;;;58411:4;58387:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58369:48;;58428:5;:14;;;58443:10;58455:7;58428:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58358:113;58303:168:::0;:::o;42022:177::-;42089:7;42121:13;:11;:13::i;:::-;42113:5;:21;42105:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;42188:5;42181:12;;42022:177;;;:::o;57872:100::-;19462:12;:10;:12::i;:::-;19451:23;;:7;:5;:7::i;:::-;:23;;;19443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57956:8:::1;57946:7;:18;;;;;;;;;;;;:::i;:::-;;57872:100:::0;:::o;44847:118::-;44911:7;44934:20;44946:7;44934:11;:20::i;:::-;:25;;;44927:32;;44847:118;;;:::o;43724:211::-;43788:7;43829:1;43812:19;;:5;:19;;;;43804:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43901:12;:19;43914:5;43901:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;43893:36;;43886:43;;43724:211;;;:::o;57708:93::-;57753:13;57786:7;57779:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57708:93;:::o;19882:103::-;19462:12;:10;:12::i;:::-;19451:23;;:7;:5;:7::i;:::-;:23;;;19443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19947:30:::1;19974:1;19947:18;:30::i;:::-;19882:103::o:0;19231:87::-;19277:7;19304:6;;;;;;;;;;;19297:13;;19231:87;:::o;45179:98::-;45235:13;45264:7;45257:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45179:98;:::o;57310:321::-;11160:1;11758:7;;:19;;11750:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;11160:1;11891:7;:18;;;;56436::::1;;;;;;;;;;;56428:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;56251:10:::2;57476:14;57156:9;57137:14;57129:5;:22;;;;:::i;:::-;57128:37;57106:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57513:14:::3;56847:9;;56812:14;56796:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56774:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;57552:14:::4;56159:2;56594:14;:34;;56572:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;57586:37:::5;57596:10;57608:14;57586:9;:37::i;:::-;56929:1:::4;57228::::3;56493::::2;;11116::::0;12070:7;:22;;;;57310:321;:::o;46817:274::-;46920:12;:10;:12::i;:::-;46908:24;;:8;:24;;;;46900:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47017:8;46972:18;:32;46991:12;:10;:12::i;:::-;46972:32;;;;;;;;;;;;;;;:42;47005:8;46972:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;47066:8;47037:48;;47052:12;:10;:12::i;:::-;47037:48;;;47076:8;47037:48;;;;;;:::i;:::-;;;;;;;;46817:274;;:::o;47824:311::-;47961:28;47971:4;47977:2;47981:7;47961:9;:28::i;:::-;48012:48;48035:4;48041:2;48045:7;48054:5;48012:22;:48::i;:::-;47996:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;47824:311;;;;:::o;56116:45::-;56159:2;56116:45;:::o;59098:243::-;59216:13;59255:16;59263:7;59255;:16::i;:::-;59247:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;59326:7;59306:27;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59098:243;;;:::o;56168:30::-;;;;:::o;52242:43::-;;;;:::o;47154:186::-;47276:4;47299:18;:25;47318:5;47299:25;;;;;;;;;;;;;;;:35;47325:8;47299:35;;;;;;;;;;;;;;;;;;;;;;;;;47292:42;;47154:186;;;;:::o;20140:201::-;19462:12;:10;:12::i;:::-;19451:23;;:7;:5;:7::i;:::-;:23;;;19443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20249:1:::1;20229:22;;:8;:22;;;;20221:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20305:28;20324:8;20305:18;:28::i;:::-;20140:201:::0;:::o;43298:370::-;43425:4;43470:25;43455:40;;;:11;:40;;;;:99;;;;43521:33;43506:48;;;:11;:48;;;;43455:99;:160;;;;43580:35;43565:50;;;:11;:50;;;;43455:160;:207;;;;43626:36;43650:11;43626:23;:36::i;:::-;43455:207;43441:221;;43298:370;;;:::o;48374:105::-;48431:4;48461:12;;48451:7;:22;48444:29;;48374:105;;;:::o;17955:98::-;18008:7;18035:10;18028:17;;17955:98;:::o;52064:172::-;52188:2;52161:15;:24;52177:7;52161:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52222:7;52218:2;52202:28;;52211:5;52202:28;;;;;;;;;;;;52064:172;;;:::o;50429:1529::-;50526:35;50564:20;50576:7;50564:11;:20::i;:::-;50526:58;;50593:22;50635:13;:18;;;50619:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;50688:12;:10;:12::i;:::-;50664:36;;:20;50676:7;50664:11;:20::i;:::-;:36;;;50619:81;:142;;;;50711:50;50728:13;:18;;;50748:12;:10;:12::i;:::-;50711:16;:50::i;:::-;50619:142;50593:169;;50787:17;50771:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;50919:4;50897:26;;:13;:18;;;:26;;;50881:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;51008:1;50994:16;;:2;:16;;;;50986:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;51061:43;51083:4;51089:2;51093:7;51102:1;51061:21;:43::i;:::-;51161:49;51178:1;51182:7;51191:13;:18;;;51161:8;:49::i;:::-;51249:1;51219:12;:18;51232:4;51219:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51285:1;51257:12;:16;51270:2;51257:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51316:43;;;;;;;;51331:2;51316:43;;;;;;51342:15;51316:43;;;;;51293:11;:20;51305:7;51293:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51587:19;51619:1;51609:7;:11;;;;:::i;:::-;51587:33;;51672:1;51631:43;;:11;:24;51643:11;51631:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;51627:236;;;51689:20;51697:11;51689:7;:20::i;:::-;51685:171;;;51749:97;;;;;;;;51776:13;:18;;;51749:97;;;;;;51807:13;:28;;;51749:97;;;;;51722:11;:24;51734:11;51722:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51685:171;51627:236;51895:7;51891:2;51876:27;;51885:4;51876:27;;;;;;;;;;;;51910:42;51931:4;51937:2;51941:7;51950:1;51910:20;:42::i;:::-;50519:1439;;;50429:1529;;;:::o;4456:98::-;4514:7;4545:1;4541;:5;;;;:::i;:::-;4534:12;;4456:98;;;;:::o;4855:::-;4913:7;4944:1;4940;:5;;;;:::i;:::-;4933:12;;4855:98;;;;:::o;44187:606::-;44263:21;;:::i;:::-;44304:16;44312:7;44304;:16::i;:::-;44296:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;44376:26;44424:12;44413:7;:23;44409:93;;44493:1;44478:12;44468:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;44447:47;;44409:93;44515:12;44530:7;44515:22;;44510:212;44547:18;44539:4;:26;44510:212;;44584:31;44618:11;:17;44630:4;44618:17;;;;;;;;;;;44584:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44674:1;44648:28;;:9;:14;;;:28;;;44644:71;;44696:9;44689:16;;;;;;;44644:71;44575:147;44567:6;;;;;:::i;:::-;;;;44510:212;;;;44730:57;;;;;;;;;;:::i;:::-;;;;;;;;44187:606;;;;:::o;20501:191::-;20575:16;20594:6;;;;;;;;;;;20575:25;;20620:8;20611:6;;:17;;;;;;;;;;;;;;;;;;20675:8;20644:40;;20665:8;20644:40;;;;;;;;;;;;20564:128;20501:191;:::o;48485:98::-;48550:27;48560:2;48564:8;48550:27;;;;;;;;;;;;:9;:27::i;:::-;48485:98;;:::o;53779:690::-;53916:4;53933:15;:2;:13;;;:15::i;:::-;53929:535;;;53988:2;53972:36;;;54009:12;:10;:12::i;:::-;54023:4;54029:7;54038:5;53972:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53959:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54220:1;54203:6;:13;:18;54199:215;;;54236:61;;;;;;;;;;:::i;:::-;;;;;;;;54199:215;54382:6;54376:13;54367:6;54363:2;54359:15;54352:38;53959:464;54104:45;;;54094:55;;;:6;:55;;;;54087:62;;;;;53929:535;54452:4;54445:11;;53779:690;;;;;;;:::o;32631:157::-;32716:4;32755:25;32740:40;;;:11;:40;;;;32733:47;;32631:157;;;:::o;54931:141::-;;;;;:::o;55458:140::-;;;;;:::o;48922:1275::-;49027:20;49050:12;;49027:35;;49091:1;49077:16;;:2;:16;;;;49069:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;49268:21;49276:12;49268:7;:21::i;:::-;49267:22;49259:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49413:61;49443:1;49447:2;49451:12;49465:8;49413:21;:61::i;:::-;49483:30;49516:12;:16;49529:2;49516:16;;;;;;;;;;;;;;;49483:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49558:119;;;;;;;;49608:8;49578:11;:19;;;:39;;;;:::i;:::-;49558:119;;;;;;49661:8;49626:11;:24;;;:44;;;;:::i;:::-;49558:119;;;;;49539:12;:16;49552:2;49539:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49712:43;;;;;;;;49727:2;49712:43;;;;;;49738:15;49712:43;;;;;49684:11;:25;49696:12;49684:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49764:20;49787:12;49764:35;;49813:9;49808:281;49832:8;49828:1;:12;49808:281;;;49886:12;49882:2;49861:38;;49878:1;49861:38;;;;;;;;;;;;49926:59;49957:1;49961:2;49965:12;49979:5;49926:22;:59::i;:::-;49908:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;50067:14;;;;;:::i;:::-;;;;49842:3;;;;;:::i;:::-;;;;49808:281;;;;50112:12;50097;:27;;;;50131:60;50160:1;50164:2;50168:12;50182:8;50131:20;:60::i;:::-;49020:1177;;;48922:1275;;;:::o;21519:387::-;21579:4;21787:12;21854:7;21842:20;21834:28;;21897:1;21890:4;:8;21883:15;;;21519:387;;;:::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::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1915:167::-;1975:5;2013:6;2000:20;1991:29;;2029:47;2070:5;2029:47;:::i;:::-;1915:167;;;;:::o;2102:340::-;2158:5;2207:3;2200:4;2192:6;2188:17;2184:27;2174:122;;2215:79;;:::i;:::-;2174:122;2332:6;2319:20;2357:79;2432:3;2424:6;2417:4;2409:6;2405:17;2357:79;:::i;:::-;2348:88;;2164:278;2102:340;;;;:::o;2448:139::-;2494:5;2532:6;2519:20;2510:29;;2548:33;2575:5;2548:33;:::i;:::-;2448:139;;;;:::o;2593:143::-;2650:5;2681:6;2675:13;2666:22;;2697:33;2724:5;2697:33;:::i;:::-;2593:143;;;;:::o;2742:329::-;2801:6;2850:2;2838:9;2829:7;2825:23;2821:32;2818:119;;;2856:79;;:::i;:::-;2818:119;2976:1;3001:53;3046:7;3037:6;3026:9;3022:22;3001:53;:::i;:::-;2991:63;;2947:117;2742:329;;;;:::o;3077:474::-;3145:6;3153;3202:2;3190:9;3181:7;3177:23;3173:32;3170:119;;;3208:79;;:::i;:::-;3170:119;3328:1;3353:53;3398:7;3389:6;3378:9;3374:22;3353:53;:::i;:::-;3343:63;;3299:117;3455:2;3481:53;3526:7;3517:6;3506:9;3502:22;3481:53;:::i;:::-;3471:63;;3426:118;3077:474;;;;;:::o;3557:619::-;3634:6;3642;3650;3699:2;3687:9;3678:7;3674:23;3670:32;3667:119;;;3705:79;;:::i;:::-;3667:119;3825:1;3850:53;3895:7;3886:6;3875:9;3871:22;3850:53;:::i;:::-;3840:63;;3796:117;3952:2;3978:53;4023:7;4014:6;4003:9;3999:22;3978:53;:::i;:::-;3968:63;;3923:118;4080:2;4106:53;4151:7;4142:6;4131:9;4127:22;4106:53;:::i;:::-;4096:63;;4051:118;3557:619;;;;;:::o;4182:943::-;4277:6;4285;4293;4301;4350:3;4338:9;4329:7;4325:23;4321:33;4318:120;;;4357:79;;:::i;:::-;4318:120;4477:1;4502:53;4547:7;4538:6;4527:9;4523:22;4502:53;:::i;:::-;4492:63;;4448:117;4604:2;4630:53;4675:7;4666:6;4655:9;4651:22;4630:53;:::i;:::-;4620:63;;4575:118;4732:2;4758:53;4803:7;4794:6;4783:9;4779:22;4758:53;:::i;:::-;4748:63;;4703:118;4888:2;4877:9;4873:18;4860:32;4919:18;4911:6;4908:30;4905:117;;;4941:79;;:::i;:::-;4905:117;5046:62;5100:7;5091:6;5080:9;5076:22;5046:62;:::i;:::-;5036:72;;4831:287;4182:943;;;;;;;:::o;5131:468::-;5196:6;5204;5253:2;5241:9;5232:7;5228:23;5224:32;5221:119;;;5259:79;;:::i;:::-;5221:119;5379:1;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5350:117;5506:2;5532:50;5574:7;5565:6;5554:9;5550:22;5532:50;:::i;:::-;5522:60;;5477:115;5131:468;;;;;:::o;5605:474::-;5673:6;5681;5730:2;5718:9;5709:7;5705:23;5701:32;5698:119;;;5736:79;;:::i;:::-;5698:119;5856:1;5881:53;5926:7;5917:6;5906:9;5902:22;5881:53;:::i;:::-;5871:63;;5827:117;5983:2;6009:53;6054:7;6045:6;6034:9;6030:22;6009:53;:::i;:::-;5999:63;;5954:118;5605:474;;;;;:::o;6085:323::-;6141:6;6190:2;6178:9;6169:7;6165:23;6161:32;6158:119;;;6196:79;;:::i;:::-;6158:119;6316:1;6341:50;6383:7;6374:6;6363:9;6359:22;6341:50;:::i;:::-;6331:60;;6287:114;6085:323;;;;:::o;6414:345::-;6481:6;6530:2;6518:9;6509:7;6505:23;6501:32;6498:119;;;6536:79;;:::i;:::-;6498:119;6656:1;6681:61;6734:7;6725:6;6714:9;6710:22;6681:61;:::i;:::-;6671:71;;6627:125;6414:345;;;;:::o;6765:327::-;6823:6;6872:2;6860:9;6851:7;6847:23;6843:32;6840:119;;;6878:79;;:::i;:::-;6840:119;6998:1;7023:52;7067:7;7058:6;7047:9;7043:22;7023:52;:::i;:::-;7013:62;;6969:116;6765:327;;;;:::o;7098:349::-;7167:6;7216:2;7204:9;7195:7;7191:23;7187:32;7184:119;;;7222:79;;:::i;:::-;7184:119;7342:1;7367:63;7422:7;7413:6;7402:9;7398:22;7367:63;:::i;:::-;7357:73;;7313:127;7098:349;;;;:::o;7453:357::-;7526:6;7575:2;7563:9;7554:7;7550:23;7546:32;7543:119;;;7581:79;;:::i;:::-;7543:119;7701:1;7726:67;7785:7;7776:6;7765:9;7761:22;7726:67;:::i;:::-;7716:77;;7672:131;7453:357;;;;:::o;7816:509::-;7885:6;7934:2;7922:9;7913:7;7909:23;7905:32;7902:119;;;7940:79;;:::i;:::-;7902:119;8088:1;8077:9;8073:17;8060:31;8118:18;8110:6;8107:30;8104:117;;;8140:79;;:::i;:::-;8104:117;8245:63;8300:7;8291:6;8280:9;8276:22;8245:63;:::i;:::-;8235:73;;8031:287;7816:509;;;;:::o;8331:329::-;8390:6;8439:2;8427:9;8418:7;8414:23;8410:32;8407:119;;;8445:79;;:::i;:::-;8407:119;8565:1;8590:53;8635:7;8626:6;8615:9;8611:22;8590:53;:::i;:::-;8580:63;;8536:117;8331:329;;;;:::o;8666:351::-;8736:6;8785:2;8773:9;8764:7;8760:23;8756:32;8753:119;;;8791:79;;:::i;:::-;8753:119;8911:1;8936:64;8992:7;8983:6;8972:9;8968:22;8936:64;:::i;:::-;8926:74;;8882:128;8666:351;;;;:::o;9023:474::-;9091:6;9099;9148:2;9136:9;9127:7;9123:23;9119:32;9116:119;;;9154:79;;:::i;:::-;9116:119;9274:1;9299:53;9344:7;9335:6;9324:9;9320:22;9299:53;:::i;:::-;9289:63;;9245:117;9401:2;9427:53;9472:7;9463:6;9452:9;9448:22;9427:53;:::i;:::-;9417:63;;9372:118;9023:474;;;;;:::o;9503:118::-;9590:24;9608:5;9590:24;:::i;:::-;9585:3;9578:37;9503:118;;:::o;9627:109::-;9708:21;9723:5;9708:21;:::i;:::-;9703:3;9696:34;9627:109;;:::o;9742:360::-;9828:3;9856:38;9888:5;9856:38;:::i;:::-;9910:70;9973:6;9968:3;9910:70;:::i;:::-;9903:77;;9989:52;10034:6;10029:3;10022:4;10015:5;10011:16;9989:52;:::i;:::-;10066:29;10088:6;10066:29;:::i;:::-;10061:3;10057:39;10050:46;;9832:270;9742:360;;;;:::o;10108:364::-;10196:3;10224:39;10257:5;10224:39;:::i;:::-;10279:71;10343:6;10338:3;10279:71;:::i;:::-;10272:78;;10359:52;10404:6;10399:3;10392:4;10385:5;10381:16;10359:52;:::i;:::-;10436:29;10458:6;10436:29;:::i;:::-;10431:3;10427:39;10420:46;;10200:272;10108:364;;;;:::o;10478:366::-;10620:3;10641:67;10705:2;10700:3;10641:67;:::i;:::-;10634:74;;10717:93;10806:3;10717:93;:::i;:::-;10835:2;10830:3;10826:12;10819:19;;10478:366;;;:::o;10850:::-;10992:3;11013:67;11077:2;11072:3;11013:67;:::i;:::-;11006:74;;11089:93;11178:3;11089:93;:::i;:::-;11207:2;11202:3;11198:12;11191:19;;10850:366;;;:::o;11222:::-;11364:3;11385:67;11449:2;11444:3;11385:67;:::i;:::-;11378:74;;11461:93;11550:3;11461:93;:::i;:::-;11579:2;11574:3;11570:12;11563:19;;11222:366;;;:::o;11594:::-;11736:3;11757:67;11821:2;11816:3;11757:67;:::i;:::-;11750:74;;11833:93;11922:3;11833:93;:::i;:::-;11951:2;11946:3;11942:12;11935:19;;11594:366;;;:::o;11966:::-;12108:3;12129:67;12193:2;12188:3;12129:67;:::i;:::-;12122:74;;12205:93;12294:3;12205:93;:::i;:::-;12323:2;12318:3;12314:12;12307:19;;11966:366;;;:::o;12338:::-;12480:3;12501:67;12565:2;12560:3;12501:67;:::i;:::-;12494:74;;12577:93;12666:3;12577:93;:::i;:::-;12695:2;12690:3;12686:12;12679:19;;12338:366;;;:::o;12710:::-;12852:3;12873:67;12937:2;12932:3;12873:67;:::i;:::-;12866:74;;12949:93;13038:3;12949:93;:::i;:::-;13067:2;13062:3;13058:12;13051:19;;12710:366;;;:::o;13082:::-;13224:3;13245:67;13309:2;13304:3;13245:67;:::i;:::-;13238:74;;13321:93;13410:3;13321:93;:::i;:::-;13439:2;13434:3;13430:12;13423:19;;13082:366;;;:::o;13454:::-;13596:3;13617:67;13681:2;13676:3;13617:67;:::i;:::-;13610:74;;13693:93;13782:3;13693:93;:::i;:::-;13811:2;13806:3;13802:12;13795:19;;13454:366;;;:::o;13826:::-;13968:3;13989:67;14053:2;14048:3;13989:67;:::i;:::-;13982:74;;14065:93;14154:3;14065:93;:::i;:::-;14183:2;14178:3;14174:12;14167:19;;13826:366;;;:::o;14198:::-;14340:3;14361:67;14425:2;14420:3;14361:67;:::i;:::-;14354:74;;14437:93;14526:3;14437:93;:::i;:::-;14555:2;14550:3;14546:12;14539:19;;14198:366;;;:::o;14570:::-;14712:3;14733:67;14797:2;14792:3;14733:67;:::i;:::-;14726:74;;14809:93;14898:3;14809:93;:::i;:::-;14927:2;14922:3;14918:12;14911:19;;14570:366;;;:::o;14942:::-;15084:3;15105:67;15169:2;15164:3;15105:67;:::i;:::-;15098:74;;15181:93;15270:3;15181:93;:::i;:::-;15299:2;15294:3;15290:12;15283:19;;14942:366;;;:::o;15314:::-;15456:3;15477:67;15541:2;15536:3;15477:67;:::i;:::-;15470:74;;15553:93;15642:3;15553:93;:::i;:::-;15671:2;15666:3;15662:12;15655:19;;15314:366;;;:::o;15686:::-;15828:3;15849:67;15913:2;15908:3;15849:67;:::i;:::-;15842:74;;15925:93;16014:3;15925:93;:::i;:::-;16043:2;16038:3;16034:12;16027:19;;15686:366;;;:::o;16058:::-;16200:3;16221:67;16285:2;16280:3;16221:67;:::i;:::-;16214:74;;16297:93;16386:3;16297:93;:::i;:::-;16415:2;16410:3;16406:12;16399:19;;16058:366;;;:::o;16430:::-;16572:3;16593:67;16657:2;16652:3;16593:67;:::i;:::-;16586:74;;16669:93;16758:3;16669:93;:::i;:::-;16787:2;16782:3;16778:12;16771:19;;16430:366;;;:::o;16802:::-;16944:3;16965:67;17029:2;17024:3;16965:67;:::i;:::-;16958:74;;17041:93;17130:3;17041:93;:::i;:::-;17159:2;17154:3;17150:12;17143:19;;16802:366;;;:::o;17174:::-;17316:3;17337:67;17401:2;17396:3;17337:67;:::i;:::-;17330:74;;17413:93;17502:3;17413:93;:::i;:::-;17531:2;17526:3;17522:12;17515:19;;17174:366;;;:::o;17546:::-;17688:3;17709:67;17773:2;17768:3;17709:67;:::i;:::-;17702:74;;17785:93;17874:3;17785:93;:::i;:::-;17903:2;17898:3;17894:12;17887:19;;17546:366;;;:::o;17918:::-;18060:3;18081:67;18145:2;18140:3;18081:67;:::i;:::-;18074:74;;18157:93;18246:3;18157:93;:::i;:::-;18275:2;18270:3;18266:12;18259:19;;17918:366;;;:::o;18290:::-;18432:3;18453:67;18517:2;18512:3;18453:67;:::i;:::-;18446:74;;18529:93;18618:3;18529:93;:::i;:::-;18647:2;18642:3;18638:12;18631:19;;18290:366;;;:::o;18662:::-;18804:3;18825:67;18889:2;18884:3;18825:67;:::i;:::-;18818:74;;18901:93;18990:3;18901:93;:::i;:::-;19019:2;19014:3;19010:12;19003:19;;18662:366;;;:::o;19034:::-;19176:3;19197:67;19261:2;19256:3;19197:67;:::i;:::-;19190:74;;19273:93;19362:3;19273:93;:::i;:::-;19391:2;19386:3;19382:12;19375:19;;19034:366;;;:::o;19406:118::-;19493:24;19511:5;19493:24;:::i;:::-;19488:3;19481:37;19406:118;;:::o;19530:222::-;19623:4;19661:2;19650:9;19646:18;19638:26;;19674:71;19742:1;19731:9;19727:17;19718:6;19674:71;:::i;:::-;19530:222;;;;:::o;19758:640::-;19953:4;19991:3;19980:9;19976:19;19968:27;;20005:71;20073:1;20062:9;20058:17;20049:6;20005:71;:::i;:::-;20086:72;20154:2;20143:9;20139:18;20130:6;20086:72;:::i;:::-;20168;20236:2;20225:9;20221:18;20212:6;20168:72;:::i;:::-;20287:9;20281:4;20277:20;20272:2;20261:9;20257:18;20250:48;20315:76;20386:4;20377:6;20315:76;:::i;:::-;20307:84;;19758:640;;;;;;;:::o;20404:332::-;20525:4;20563:2;20552:9;20548:18;20540:26;;20576:71;20644:1;20633:9;20629:17;20620:6;20576:71;:::i;:::-;20657:72;20725:2;20714:9;20710:18;20701:6;20657:72;:::i;:::-;20404:332;;;;;:::o;20742:210::-;20829:4;20867:2;20856:9;20852:18;20844:26;;20880:65;20942:1;20931:9;20927:17;20918:6;20880:65;:::i;:::-;20742:210;;;;:::o;20958:313::-;21071:4;21109:2;21098:9;21094:18;21086:26;;21158:9;21152:4;21148:20;21144:1;21133:9;21129:17;21122:47;21186:78;21259:4;21250:6;21186:78;:::i;:::-;21178:86;;20958:313;;;;:::o;21277:419::-;21443:4;21481:2;21470:9;21466:18;21458:26;;21530:9;21524:4;21520:20;21516:1;21505:9;21501:17;21494:47;21558:131;21684:4;21558:131;:::i;:::-;21550:139;;21277:419;;;:::o;21702:::-;21868:4;21906:2;21895:9;21891:18;21883:26;;21955:9;21949:4;21945:20;21941:1;21930:9;21926:17;21919:47;21983:131;22109:4;21983:131;:::i;:::-;21975:139;;21702:419;;;:::o;22127:::-;22293:4;22331:2;22320:9;22316:18;22308:26;;22380:9;22374:4;22370:20;22366:1;22355:9;22351:17;22344:47;22408:131;22534:4;22408:131;:::i;:::-;22400:139;;22127:419;;;:::o;22552:::-;22718:4;22756:2;22745:9;22741:18;22733:26;;22805:9;22799:4;22795:20;22791:1;22780:9;22776:17;22769:47;22833:131;22959:4;22833:131;:::i;:::-;22825:139;;22552:419;;;:::o;22977:::-;23143:4;23181:2;23170:9;23166:18;23158:26;;23230:9;23224:4;23220:20;23216:1;23205:9;23201:17;23194:47;23258:131;23384:4;23258:131;:::i;:::-;23250:139;;22977:419;;;:::o;23402:::-;23568:4;23606:2;23595:9;23591:18;23583:26;;23655:9;23649:4;23645:20;23641:1;23630:9;23626:17;23619:47;23683:131;23809:4;23683:131;:::i;:::-;23675:139;;23402:419;;;:::o;23827:::-;23993:4;24031:2;24020:9;24016:18;24008:26;;24080:9;24074:4;24070:20;24066:1;24055:9;24051:17;24044:47;24108:131;24234:4;24108:131;:::i;:::-;24100:139;;23827:419;;;:::o;24252:::-;24418:4;24456:2;24445:9;24441:18;24433:26;;24505:9;24499:4;24495:20;24491:1;24480:9;24476:17;24469:47;24533:131;24659:4;24533:131;:::i;:::-;24525:139;;24252:419;;;:::o;24677:::-;24843:4;24881:2;24870:9;24866:18;24858:26;;24930:9;24924:4;24920:20;24916:1;24905:9;24901:17;24894:47;24958:131;25084:4;24958:131;:::i;:::-;24950:139;;24677:419;;;:::o;25102:::-;25268:4;25306:2;25295:9;25291:18;25283:26;;25355:9;25349:4;25345:20;25341:1;25330:9;25326:17;25319:47;25383:131;25509:4;25383:131;:::i;:::-;25375:139;;25102:419;;;:::o;25527:::-;25693:4;25731:2;25720:9;25716:18;25708:26;;25780:9;25774:4;25770:20;25766:1;25755:9;25751:17;25744:47;25808:131;25934:4;25808:131;:::i;:::-;25800:139;;25527:419;;;:::o;25952:::-;26118:4;26156:2;26145:9;26141:18;26133:26;;26205:9;26199:4;26195:20;26191:1;26180:9;26176:17;26169:47;26233:131;26359:4;26233:131;:::i;:::-;26225:139;;25952:419;;;:::o;26377:::-;26543:4;26581:2;26570:9;26566:18;26558:26;;26630:9;26624:4;26620:20;26616:1;26605:9;26601:17;26594:47;26658:131;26784:4;26658:131;:::i;:::-;26650:139;;26377:419;;;:::o;26802:::-;26968:4;27006:2;26995:9;26991:18;26983:26;;27055:9;27049:4;27045:20;27041:1;27030:9;27026:17;27019:47;27083:131;27209:4;27083:131;:::i;:::-;27075:139;;26802:419;;;:::o;27227:::-;27393:4;27431:2;27420:9;27416:18;27408:26;;27480:9;27474:4;27470:20;27466:1;27455:9;27451:17;27444:47;27508:131;27634:4;27508:131;:::i;:::-;27500:139;;27227:419;;;:::o;27652:::-;27818:4;27856:2;27845:9;27841:18;27833:26;;27905:9;27899:4;27895:20;27891:1;27880:9;27876:17;27869:47;27933:131;28059:4;27933:131;:::i;:::-;27925:139;;27652:419;;;:::o;28077:::-;28243:4;28281:2;28270:9;28266:18;28258:26;;28330:9;28324:4;28320:20;28316:1;28305:9;28301:17;28294:47;28358:131;28484:4;28358:131;:::i;:::-;28350:139;;28077:419;;;:::o;28502:::-;28668:4;28706:2;28695:9;28691:18;28683:26;;28755:9;28749:4;28745:20;28741:1;28730:9;28726:17;28719:47;28783:131;28909:4;28783:131;:::i;:::-;28775:139;;28502:419;;;:::o;28927:::-;29093:4;29131:2;29120:9;29116:18;29108:26;;29180:9;29174:4;29170:20;29166:1;29155:9;29151:17;29144:47;29208:131;29334:4;29208:131;:::i;:::-;29200:139;;28927:419;;;:::o;29352:::-;29518:4;29556:2;29545:9;29541:18;29533:26;;29605:9;29599:4;29595:20;29591:1;29580:9;29576:17;29569:47;29633:131;29759:4;29633:131;:::i;:::-;29625:139;;29352:419;;;:::o;29777:::-;29943:4;29981:2;29970:9;29966:18;29958:26;;30030:9;30024:4;30020:20;30016:1;30005:9;30001:17;29994:47;30058:131;30184:4;30058:131;:::i;:::-;30050:139;;29777:419;;;:::o;30202:::-;30368:4;30406:2;30395:9;30391:18;30383:26;;30455:9;30449:4;30445:20;30441:1;30430:9;30426:17;30419:47;30483:131;30609:4;30483:131;:::i;:::-;30475:139;;30202:419;;;:::o;30627:::-;30793:4;30831:2;30820:9;30816:18;30808:26;;30880:9;30874:4;30870:20;30866:1;30855:9;30851:17;30844:47;30908:131;31034:4;30908:131;:::i;:::-;30900:139;;30627:419;;;:::o;31052:::-;31218:4;31256:2;31245:9;31241:18;31233:26;;31305:9;31299:4;31295:20;31291:1;31280:9;31276:17;31269:47;31333:131;31459:4;31333:131;:::i;:::-;31325:139;;31052:419;;;:::o;31477:222::-;31570:4;31608:2;31597:9;31593:18;31585:26;;31621:71;31689:1;31678:9;31674:17;31665:6;31621:71;:::i;:::-;31477:222;;;;:::o;31705:129::-;31739:6;31766:20;;:::i;:::-;31756:30;;31795:33;31823:4;31815:6;31795:33;:::i;:::-;31705:129;;;:::o;31840:75::-;31873:6;31906:2;31900:9;31890:19;;31840:75;:::o;31921:307::-;31982:4;32072:18;32064:6;32061:30;32058:56;;;32094:18;;:::i;:::-;32058:56;32132:29;32154:6;32132:29;:::i;:::-;32124:37;;32216:4;32210;32206:15;32198:23;;31921:307;;;:::o;32234:308::-;32296:4;32386:18;32378:6;32375:30;32372:56;;;32408:18;;:::i;:::-;32372:56;32446:29;32468:6;32446:29;:::i;:::-;32438:37;;32530:4;32524;32520:15;32512:23;;32234:308;;;:::o;32548:98::-;32599:6;32633:5;32627:12;32617:22;;32548:98;;;:::o;32652:99::-;32704:6;32738:5;32732:12;32722:22;;32652:99;;;:::o;32757:168::-;32840:11;32874:6;32869:3;32862:19;32914:4;32909:3;32905:14;32890:29;;32757:168;;;;:::o;32931:169::-;33015:11;33049:6;33044:3;33037:19;33089:4;33084:3;33080:14;33065:29;;32931:169;;;;:::o;33106:273::-;33146:3;33165:20;33183:1;33165:20;:::i;:::-;33160:25;;33199:20;33217:1;33199:20;:::i;:::-;33194:25;;33321:1;33285:34;33281:42;33278:1;33275:49;33272:75;;;33327:18;;:::i;:::-;33272:75;33371:1;33368;33364:9;33357:16;;33106:273;;;;:::o;33385:305::-;33425:3;33444:20;33462:1;33444:20;:::i;:::-;33439:25;;33478:20;33496:1;33478:20;:::i;:::-;33473:25;;33632:1;33564:66;33560:74;33557:1;33554:81;33551:107;;;33638:18;;:::i;:::-;33551:107;33682:1;33679;33675:9;33668:16;;33385:305;;;;:::o;33696:185::-;33736:1;33753:20;33771:1;33753:20;:::i;:::-;33748:25;;33787:20;33805:1;33787:20;:::i;:::-;33782:25;;33826:1;33816:35;;33831:18;;:::i;:::-;33816:35;33873:1;33870;33866:9;33861:14;;33696:185;;;;:::o;33887:348::-;33927:7;33950:20;33968:1;33950:20;:::i;:::-;33945:25;;33984:20;34002:1;33984:20;:::i;:::-;33979:25;;34172:1;34104:66;34100:74;34097:1;34094:81;34089:1;34082:9;34075:17;34071:105;34068:131;;;34179:18;;:::i;:::-;34068:131;34227:1;34224;34220:9;34209:20;;33887:348;;;;:::o;34241:191::-;34281:4;34301:20;34319:1;34301:20;:::i;:::-;34296:25;;34335:20;34353:1;34335:20;:::i;:::-;34330:25;;34374:1;34371;34368:8;34365:34;;;34379:18;;:::i;:::-;34365:34;34424:1;34421;34417:9;34409:17;;34241:191;;;;:::o;34438:::-;34478:4;34498:20;34516:1;34498:20;:::i;:::-;34493:25;;34532:20;34550:1;34532:20;:::i;:::-;34527:25;;34571:1;34568;34565:8;34562:34;;;34576:18;;:::i;:::-;34562:34;34621:1;34618;34614:9;34606:17;;34438:191;;;;:::o;34635:96::-;34672:7;34701:24;34719:5;34701:24;:::i;:::-;34690:35;;34635:96;;;:::o;34737:90::-;34771:7;34814:5;34807:13;34800:21;34789:32;;34737:90;;;:::o;34833:149::-;34869:7;34909:66;34902:5;34898:78;34887:89;;34833:149;;;:::o;34988:110::-;35039:7;35068:24;35086:5;35068:24;:::i;:::-;35057:35;;34988:110;;;:::o;35104:118::-;35141:7;35181:34;35174:5;35170:46;35159:57;;35104:118;;;:::o;35228:126::-;35265:7;35305:42;35298:5;35294:54;35283:65;;35228:126;;;:::o;35360:77::-;35397:7;35426:5;35415:16;;35360:77;;;:::o;35443:154::-;35527:6;35522:3;35517;35504:30;35589:1;35580:6;35575:3;35571:16;35564:27;35443:154;;;:::o;35603:307::-;35671:1;35681:113;35695:6;35692:1;35689:13;35681:113;;;35780:1;35775:3;35771:11;35765:18;35761:1;35756:3;35752:11;35745:39;35717:2;35714:1;35710:10;35705:15;;35681:113;;;35812:6;35809:1;35806:13;35803:101;;;35892:1;35883:6;35878:3;35874:16;35867:27;35803:101;35652:258;35603:307;;;:::o;35916:171::-;35955:3;35978:24;35996:5;35978:24;:::i;:::-;35969:33;;36024:4;36017:5;36014:15;36011:41;;;36032:18;;:::i;:::-;36011:41;36079:1;36072:5;36068:13;36061:20;;35916:171;;;:::o;36093:320::-;36137:6;36174:1;36168:4;36164:12;36154:22;;36221:1;36215:4;36211:12;36242:18;36232:81;;36298:4;36290:6;36286:17;36276:27;;36232:81;36360:2;36352:6;36349:14;36329:18;36326:38;36323:84;;;36379:18;;:::i;:::-;36323:84;36144:269;36093:320;;;:::o;36419:281::-;36502:27;36524:4;36502:27;:::i;:::-;36494:6;36490:40;36632:6;36620:10;36617:22;36596:18;36584:10;36581:34;36578:62;36575:88;;;36643:18;;:::i;:::-;36575:88;36683:10;36679:2;36672:22;36462:238;36419:281;;:::o;36706:233::-;36745:3;36768:24;36786:5;36768:24;:::i;:::-;36759:33;;36814:66;36807:5;36804:77;36801:103;;;36884:18;;:::i;:::-;36801:103;36931:1;36924:5;36920:13;36913:20;;36706:233;;;:::o;36945:180::-;36993:77;36990:1;36983:88;37090:4;37087:1;37080:15;37114:4;37111:1;37104:15;37131:180;37179:77;37176:1;37169:88;37276:4;37273:1;37266:15;37300:4;37297:1;37290:15;37317:180;37365:77;37362:1;37355:88;37462:4;37459:1;37452:15;37486:4;37483:1;37476:15;37503:180;37551:77;37548:1;37541:88;37648:4;37645:1;37638:15;37672:4;37669:1;37662:15;37689:117;37798:1;37795;37788:12;37812:117;37921:1;37918;37911:12;37935:117;38044:1;38041;38034:12;38058:117;38167:1;38164;38157:12;38181:102;38222:6;38273:2;38269:7;38264:2;38257:5;38253:14;38249:28;38239:38;;38181:102;;;:::o;38289:221::-;38429:34;38425:1;38417:6;38413:14;38406:58;38498:4;38493:2;38485:6;38481:15;38474:29;38289:221;:::o;38516:225::-;38656:34;38652:1;38644:6;38640:14;38633:58;38725:8;38720:2;38712:6;38708:15;38701:33;38516:225;:::o;38747:229::-;38887:34;38883:1;38875:6;38871:14;38864:58;38956:12;38951:2;38943:6;38939:15;38932:37;38747:229;:::o;38982:222::-;39122:34;39118:1;39110:6;39106:14;39099:58;39191:5;39186:2;39178:6;39174:15;39167:30;38982:222;:::o;39210:221::-;39350:34;39346:1;39338:6;39334:14;39327:58;39419:4;39414:2;39406:6;39402:15;39395:29;39210:221;:::o;39437:224::-;39577:34;39573:1;39565:6;39561:14;39554:58;39646:7;39641:2;39633:6;39629:15;39622:32;39437:224;:::o;39667:221::-;39807:34;39803:1;39795:6;39791:14;39784:58;39876:4;39871:2;39863:6;39859:15;39852:29;39667:221;:::o;39894:167::-;40034:19;40030:1;40022:6;40018:14;40011:43;39894:167;:::o;40067:244::-;40207:34;40203:1;40195:6;40191:14;40184:58;40276:27;40271:2;40263:6;40259:15;40252:52;40067:244;:::o;40317:230::-;40457:34;40453:1;40445:6;40441:14;40434:58;40526:13;40521:2;40513:6;40509:15;40502:38;40317:230;:::o;40553:225::-;40693:34;40689:1;40681:6;40677:14;40670:58;40762:8;40757:2;40749:6;40745:15;40738:33;40553:225;:::o;40784:182::-;40924:34;40920:1;40912:6;40908:14;40901:58;40784:182;:::o;40972:176::-;41112:28;41108:1;41100:6;41096:14;41089:52;40972:176;:::o;41154:237::-;41294:34;41290:1;41282:6;41278:14;41271:58;41363:20;41358:2;41350:6;41346:15;41339:45;41154:237;:::o;41397:221::-;41537:34;41533:1;41525:6;41521:14;41514:58;41606:4;41601:2;41593:6;41589:15;41582:29;41397:221;:::o;41624:238::-;41764:34;41760:1;41752:6;41748:14;41741:58;41833:21;41828:2;41820:6;41816:15;41809:46;41624:238;:::o;41868:179::-;42008:31;42004:1;41996:6;41992:14;41985:55;41868:179;:::o;42053:220::-;42193:34;42189:1;42181:6;42177:14;42170:58;42262:3;42257:2;42249:6;42245:15;42238:28;42053:220;:::o;42279:174::-;42419:26;42415:1;42407:6;42403:14;42396:50;42279:174;:::o;42459:233::-;42599:34;42595:1;42587:6;42583:14;42576:58;42668:16;42663:2;42655:6;42651:15;42644:41;42459:233;:::o;42698:181::-;42838:33;42834:1;42826:6;42822:14;42815:57;42698:181;:::o;42885:234::-;43025:34;43021:1;43013:6;43009:14;43002:58;43094:17;43089:2;43081:6;43077:15;43070:42;42885:234;:::o;43125:173::-;43265:25;43261:1;43253:6;43249:14;43242:49;43125:173;:::o;43304:232::-;43444:34;43440:1;43432:6;43428:14;43421:58;43513:15;43508:2;43500:6;43496:15;43489:40;43304:232;:::o;43542:122::-;43615:24;43633:5;43615:24;:::i;:::-;43608:5;43605:35;43595:63;;43654:1;43651;43644:12;43595:63;43542:122;:::o;43670:116::-;43740:21;43755:5;43740:21;:::i;:::-;43733:5;43730:32;43720:60;;43776:1;43773;43766:12;43720:60;43670:116;:::o;43792:120::-;43864:23;43881:5;43864:23;:::i;:::-;43857:5;43854:34;43844:62;;43902:1;43899;43892:12;43844:62;43792:120;:::o;43918:150::-;44005:38;44037:5;44005:38;:::i;:::-;43998:5;43995:49;43985:77;;44058:1;44055;44048:12;43985:77;43918:150;:::o;44074:122::-;44147:24;44165:5;44147:24;:::i;:::-;44140:5;44137:35;44127:63;;44186:1;44183;44176:12;44127:63;44074:122;:::o
Swarm Source
ipfs://e3d08370adeb96a5668944e4bba2d88739be77b441008836762137fceb83ec47
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.