Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
5,555 MS
Holders
2,520
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MachineSoldier
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-15 */ // SPDX-License-Identifier: MIT // 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/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 (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @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, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/MachineSoldier.sol pragma solidity ^0.8.4; contract MachineSoldier is ERC721A, Ownable, ReentrancyGuard { string public uriPrefix = ''; uint256 public cost = 0.003 ether; uint256 public maxSupply = 5555; uint256 public maxMintAmountPerTx = 5; uint8 public maxFreePerWallet = 1; mapping(address => uint256) public _mintedFreeAmount; bool public paused = true; constructor( string memory _tokenName, string memory _tokenSymbol ) ERC721A(_tokenName, _tokenSymbol) { _safeMint(msg.sender, 40); } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!'); require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!'); _; } modifier mintPriceCompliance(uint256 _mintAmount) { require(msg.value >= cost * _mintAmount, 'Insufficient funds!'); _; } modifier freeMintCountCompliance(uint256 _mintAmount) { require(_mintAmount == 1, 'Free mint amount must be equal to 1'); require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!'); require(_mintedFreeAmount[msg.sender] < maxFreePerWallet, 'Max free supply exceeded!'); _; } function freeMint(uint256 _mintAmount) public payable freeMintCountCompliance(_mintAmount) { require(!paused, 'The contract is paused!'); _mintedFreeAmount[msg.sender] = maxFreePerWallet; _safeMint(msg.sender, _mintAmount); } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) { require(!paused, 'The contract is paused!'); _safeMint(msg.sender, _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_receiver, _mintAmount); } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _toString(_tokenId))) : ''; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner nonReentrant { (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmount","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600a90805190602001906200002b929190620006c8565b50660aa87bee538000600b556115b3600c556005600d556001600e60006101000a81548160ff021916908360ff1602179055506001601060006101000a81548160ff0219169083151502179055503480156200008657600080fd5b5060405162003ba538038062003ba58339818101604052810190620000ac91906200083f565b81818160029080519060200190620000c6929190620006c8565b508060039080519060200190620000df929190620006c8565b50620000f06200013b60201b60201c565b6000819055505050620001186200010c6200014060201b60201c565b6200014860201b60201c565b6001600981905550620001333360286200020e60201b60201c565b505062000b9f565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002308282604051806020016040528060008152506200023460201b60201c565b5050565b620002468383620002e560201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14620002e057600080549050600083820390505b6200028f6000868380600101945086620004ce60201b60201c565b620002c6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811062000274578160005414620002dd57600080fd5b50505b505050565b600080549050600082141562000327576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200033c60008483856200064060201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620003cb83620003ad60008660006200064660201b60201c565b620003be856200067660201b60201c565b176200068660201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200046e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000431565b506000821415620004ab576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620004c96000848385620006b160201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620004fc620006b760201b60201c565b8786866040518563ffffffff1660e01b815260040162000520949392919062000927565b602060405180830381600087803b1580156200053b57600080fd5b505af19250505080156200056f57506040513d601f19601f820116820180604052508101906200056c91906200080d565b60015b620005ed573d8060008114620005a2576040519150601f19603f3d011682016040523d82523d6000602084013e620005a7565b606091505b50600081511415620005e5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e862000665868684620006bf60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b828054620006d69062000a96565b90600052602060002090601f016020900481019282620006fa576000855562000746565b82601f106200071557805160ff191683800117855562000746565b8280016001018555821562000746579182015b828111156200074557825182559160200191906001019062000728565b5b50905062000755919062000759565b5090565b5b80821115620007745760008160009055506001016200075a565b5090565b60006200078f6200078984620009a4565b6200097b565b905082815260208101848484011115620007ae57620007ad62000b65565b5b620007bb84828562000a60565b509392505050565b600081519050620007d48162000b85565b92915050565b600082601f830112620007f257620007f162000b60565b5b81516200080484826020860162000778565b91505092915050565b60006020828403121562000826576200082562000b6f565b5b60006200083684828501620007c3565b91505092915050565b6000806040838503121562000859576200085862000b6f565b5b600083015167ffffffffffffffff8111156200087a576200087962000b6a565b5b6200088885828601620007da565b925050602083015167ffffffffffffffff811115620008ac57620008ab62000b6a565b5b620008ba85828601620007da565b9150509250929050565b620008cf81620009f6565b82525050565b6000620008e282620009da565b620008ee8185620009e5565b93506200090081856020860162000a60565b6200090b8162000b74565b840191505092915050565b620009218162000a56565b82525050565b60006080820190506200093e6000830187620008c4565b6200094d6020830186620008c4565b6200095c604083018562000916565b8181036060830152620009708184620008d5565b905095945050505050565b6000620009876200099a565b905062000995828262000acc565b919050565b6000604051905090565b600067ffffffffffffffff821115620009c257620009c162000b31565b5b620009cd8262000b74565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000a038262000a36565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000a8057808201518184015260208101905062000a63565b8381111562000a90576000848401525b50505050565b6000600282049050600182168062000aaf57607f821691505b6020821081141562000ac65762000ac562000b02565b5b50919050565b62000ad78262000b74565b810181811067ffffffffffffffff8211171562000af95762000af862000b31565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000b908162000a0a565b811462000b9c57600080fd5b50565b612ff68062000baf6000396000f3fe6080604052600436106101d85760003560e01c8063715018a611610102578063a702735711610095578063e985e9c511610064578063e985e9c514610636578063efbd73f414610673578063f2fde38b1461069c578063f4db2acb146106c5576101d8565b8063a702735714610587578063b88d4fde146105b2578063c87b56dd146105ce578063d5abeb011461060b576101d8565b806394354fd0116100d157806394354fd0146104ec57806395d89b4114610517578063a0712d6814610542578063a22cb4651461055e576101d8565b8063715018a6146104655780637c928fe91461047c5780637ec4a659146104985780638da5cb5b146104c1576101d8565b806323b872dd1161017a5780635c975abb116101495780635c975abb1461039557806362b99ad4146103c05780636352211e146103eb57806370a0823114610428576101d8565b806323b872dd1461031d5780633ccfd60b1461033957806342842e0e1461035057806344a0d68a1461036c576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806313faede61461029e57806316c38b3c146102c957806318160ddd146102f2576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612435565b610702565b6040516102119190612845565b60405180910390f35b34801561022657600080fd5b5061022f610794565b60405161023c9190612860565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906124d8565b610826565b60405161027991906127de565b60405180910390f35b61029c600480360381019061029791906123c8565b6108a5565b005b3480156102aa57600080fd5b506102b36109e9565b6040516102c091906129c2565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190612408565b6109ef565b005b3480156102fe57600080fd5b50610307610a14565b60405161031491906129c2565b60405180910390f35b610337600480360381019061033291906122b2565b610a2b565b005b34801561034557600080fd5b5061034e610d50565b005b61036a600480360381019061036591906122b2565b610e2e565b005b34801561037857600080fd5b50610393600480360381019061038e91906124d8565b610e4e565b005b3480156103a157600080fd5b506103aa610e60565b6040516103b79190612845565b60405180910390f35b3480156103cc57600080fd5b506103d5610e73565b6040516103e29190612860565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d91906124d8565b610f01565b60405161041f91906127de565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190612245565b610f13565b60405161045c91906129c2565b60405180910390f35b34801561047157600080fd5b5061047a610fcc565b005b610496600480360381019061049191906124d8565b610fe0565b005b3480156104a457600080fd5b506104bf60048036038101906104ba919061248f565b6111c2565b005b3480156104cd57600080fd5b506104d66111e4565b6040516104e391906127de565b60405180910390f35b3480156104f857600080fd5b5061050161120e565b60405161050e91906129c2565b60405180910390f35b34801561052357600080fd5b5061052c611214565b6040516105399190612860565b60405180910390f35b61055c600480360381019061055791906124d8565b6112a6565b005b34801561056a57600080fd5b5061058560048036038101906105809190612388565b6113ff565b005b34801561059357600080fd5b5061059c61150a565b6040516105a991906129dd565b60405180910390f35b6105cc60048036038101906105c79190612305565b61151d565b005b3480156105da57600080fd5b506105f560048036038101906105f091906124d8565b611590565b6040516106029190612860565b60405180910390f35b34801561061757600080fd5b50610620611637565b60405161062d91906129c2565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190612272565b61163d565b60405161066a9190612845565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190612505565b6116d1565b005b3480156106a857600080fd5b506106c360048036038101906106be9190612245565b611791565b005b3480156106d157600080fd5b506106ec60048036038101906106e79190612245565b611815565b6040516106f991906129c2565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061078d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107a390612c40565b80601f01602080910402602001604051908101604052809291908181526020018280546107cf90612c40565b801561081c5780601f106107f15761010080835404028352916020019161081c565b820191906000526020600020905b8154815290600101906020018083116107ff57829003601f168201915b5050505050905090565b60006108318261182d565b610867576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108b082610f01565b90508073ffffffffffffffffffffffffffffffffffffffff166108d161188c565b73ffffffffffffffffffffffffffffffffffffffff1614610934576108fd816108f861188c565b61163d565b610933576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b6109f7611894565b80601060006101000a81548160ff02191690831515021790555050565b6000610a1e611912565b6001546000540303905090565b6000610a3682611917565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a9d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610aa9846119e5565b91509150610abf8187610aba61188c565b611a0c565b610b0b57610ad486610acf61188c565b61163d565b610b0a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b72576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b7f8686866001611a50565b8015610b8a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c5885610c34888887611a56565b7c020000000000000000000000000000000000000000000000000000000017611a7e565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ce0576000600185019050600060046000838152602001908152602001600020541415610cde576000548114610cdd578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d488686866001611aa9565b505050505050565b610d58611894565b60026009541415610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9590612982565b60405180910390fd5b60026009819055506000610db06111e4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dd3906127c9565b60006040518083038185875af1925050503d8060008114610e10576040519150601f19603f3d011682016040523d82523d6000602084013e610e15565b606091505b5050905080610e2357600080fd5b506001600981905550565b610e498383836040518060200160405280600081525061151d565b505050565b610e56611894565b80600b8190555050565b601060009054906101000a900460ff1681565b600a8054610e8090612c40565b80601f0160208091040260200160405190810160405280929190818152602001828054610eac90612c40565b8015610ef95780601f10610ece57610100808354040283529160200191610ef9565b820191906000526020600020905b815481529060010190602001808311610edc57829003601f168201915b505050505081565b6000610f0c82611917565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fd4611894565b610fde6000611aaf565b565b8060018114611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b906128c2565b60405180910390fd5b600c5481611030610a14565b61103a9190612acd565b111561107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107290612962565b60405180910390fd5b600e60009054906101000a900460ff1660ff16600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061110e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110590612942565b60405180910390fd5b601060009054906101000a900460ff161561115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115590612902565b60405180910390fd5b600e60009054906101000a900460ff1660ff16600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111be3383611b75565b5050565b6111ca611894565b80600a90805190602001906111e0929190612059565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606003805461122390612c40565b80601f016020809104026020016040519081016040528092919081815260200182805461124f90612c40565b801561129c5780601f106112715761010080835404028352916020019161129c565b820191906000526020600020905b81548152906001019060200180831161127f57829003601f168201915b5050505050905090565b806000811180156112b95750600d548111155b6112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef906128a2565b60405180910390fd5b600c5481611304610a14565b61130e9190612acd565b111561134f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134690612962565b60405180910390fd5b8180600b5461135e9190612b23565b3410156113a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611397906129a2565b60405180910390fd5b601060009054906101000a900460ff16156113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790612902565b60405180910390fd5b6113fa3384611b75565b505050565b806007600061140c61188c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b961188c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114fe9190612845565b60405180910390a35050565b600e60009054906101000a900460ff1681565b611528848484610a2b565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461158a5761155384848484611b93565b611589576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061159b8261182d565b6115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d190612922565b60405180910390fd5b60006115e4611cf3565b90506000815111611604576040518060200160405280600081525061162f565b8061160e84611d85565b60405160200161161f9291906127a5565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156116e45750600d548111155b611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a906128a2565b60405180910390fd5b600c548161172f610a14565b6117399190612acd565b111561177a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177190612962565b60405180910390fd5b611782611894565b61178c8284611b75565b505050565b611799611894565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180090612882565b60405180910390fd5b61181281611aaf565b50565b600f6020528060005260406000206000915090505481565b600081611838611912565b11158015611847575060005482105b8015611885575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b61189c611dde565b73ffffffffffffffffffffffffffffffffffffffff166118ba6111e4565b73ffffffffffffffffffffffffffffffffffffffff1614611910576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611907906128e2565b60405180910390fd5b565b600090565b60008082905080611926611912565b116119ae576000548110156119ad5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156119ab575b60008114156119a1576004600083600190039350838152602001908152602001600020549050611976565b80925050506119e0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a6d868684611de6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b8f828260405180602001604052806000815250611def565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bb961188c565b8786866040518563ffffffff1660e01b8152600401611bdb94939291906127f9565b602060405180830381600087803b158015611bf557600080fd5b505af1925050508015611c2657506040513d601f19601f82011682018060405250810190611c239190612462565b60015b611ca0573d8060008114611c56576040519150601f19603f3d011682016040523d82523d6000602084013e611c5b565b606091505b50600081511415611c98576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d0290612c40565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2e90612c40565b8015611d7b5780601f10611d5057610100808354040283529160200191611d7b565b820191906000526020600020905b815481529060010190602001808311611d5e57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611dc957600184039350600a81066030018453600a8104905080611dc457611dc9565b611d9e565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b611df98383611e8c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e8757600080549050600083820390505b611e396000868380600101945086611b93565b611e6f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e26578160005414611e8457600080fd5b50505b505050565b6000805490506000821415611ecd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eda6000848385611a50565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f5183611f426000866000611a56565b611f4b85612049565b17611a7e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611ff257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611fb7565b50600082141561202e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120446000848385611aa9565b505050565b60006001821460e11b9050919050565b82805461206590612c40565b90600052602060002090601f01602090048101928261208757600085556120ce565b82601f106120a057805160ff19168380011785556120ce565b828001600101855582156120ce579182015b828111156120cd5782518255916020019190600101906120b2565b5b5090506120db91906120df565b5090565b5b808211156120f85760008160009055506001016120e0565b5090565b600061210f61210a84612a1d565b6129f8565b90508281526020810184848401111561212b5761212a612d35565b5b612136848285612bfe565b509392505050565b600061215161214c84612a4e565b6129f8565b90508281526020810184848401111561216d5761216c612d35565b5b612178848285612bfe565b509392505050565b60008135905061218f81612f64565b92915050565b6000813590506121a481612f7b565b92915050565b6000813590506121b981612f92565b92915050565b6000815190506121ce81612f92565b92915050565b600082601f8301126121e9576121e8612d30565b5b81356121f98482602086016120fc565b91505092915050565b600082601f83011261221757612216612d30565b5b813561222784826020860161213e565b91505092915050565b60008135905061223f81612fa9565b92915050565b60006020828403121561225b5761225a612d3f565b5b600061226984828501612180565b91505092915050565b6000806040838503121561228957612288612d3f565b5b600061229785828601612180565b92505060206122a885828601612180565b9150509250929050565b6000806000606084860312156122cb576122ca612d3f565b5b60006122d986828701612180565b93505060206122ea86828701612180565b92505060406122fb86828701612230565b9150509250925092565b6000806000806080858703121561231f5761231e612d3f565b5b600061232d87828801612180565b945050602061233e87828801612180565b935050604061234f87828801612230565b925050606085013567ffffffffffffffff8111156123705761236f612d3a565b5b61237c878288016121d4565b91505092959194509250565b6000806040838503121561239f5761239e612d3f565b5b60006123ad85828601612180565b92505060206123be85828601612195565b9150509250929050565b600080604083850312156123df576123de612d3f565b5b60006123ed85828601612180565b92505060206123fe85828601612230565b9150509250929050565b60006020828403121561241e5761241d612d3f565b5b600061242c84828501612195565b91505092915050565b60006020828403121561244b5761244a612d3f565b5b6000612459848285016121aa565b91505092915050565b60006020828403121561247857612477612d3f565b5b6000612486848285016121bf565b91505092915050565b6000602082840312156124a5576124a4612d3f565b5b600082013567ffffffffffffffff8111156124c3576124c2612d3a565b5b6124cf84828501612202565b91505092915050565b6000602082840312156124ee576124ed612d3f565b5b60006124fc84828501612230565b91505092915050565b6000806040838503121561251c5761251b612d3f565b5b600061252a85828601612230565b925050602061253b85828601612180565b9150509250929050565b61254e81612b7d565b82525050565b61255d81612b8f565b82525050565b600061256e82612a7f565b6125788185612a95565b9350612588818560208601612c0d565b61259181612d44565b840191505092915050565b60006125a782612a8a565b6125b18185612ab1565b93506125c1818560208601612c0d565b6125ca81612d44565b840191505092915050565b60006125e082612a8a565b6125ea8185612ac2565b93506125fa818560208601612c0d565b80840191505092915050565b6000612613602683612ab1565b915061261e82612d55565b604082019050919050565b6000612636601483612ab1565b915061264182612da4565b602082019050919050565b6000612659602383612ab1565b915061266482612dcd565b604082019050919050565b600061267c602083612ab1565b915061268782612e1c565b602082019050919050565b600061269f601783612ab1565b91506126aa82612e45565b602082019050919050565b60006126c2602f83612ab1565b91506126cd82612e6e565b604082019050919050565b60006126e5601983612ab1565b91506126f082612ebd565b602082019050919050565b6000612708600083612aa6565b915061271382612ee6565b600082019050919050565b600061272b601483612ab1565b915061273682612ee9565b602082019050919050565b600061274e601f83612ab1565b915061275982612f12565b602082019050919050565b6000612771601383612ab1565b915061277c82612f3b565b602082019050919050565b61279081612be7565b82525050565b61279f81612bf1565b82525050565b60006127b182856125d5565b91506127bd82846125d5565b91508190509392505050565b60006127d4826126fb565b9150819050919050565b60006020820190506127f36000830184612545565b92915050565b600060808201905061280e6000830187612545565b61281b6020830186612545565b6128286040830185612787565b818103606083015261283a8184612563565b905095945050505050565b600060208201905061285a6000830184612554565b92915050565b6000602082019050818103600083015261287a818461259c565b905092915050565b6000602082019050818103600083015261289b81612606565b9050919050565b600060208201905081810360008301526128bb81612629565b9050919050565b600060208201905081810360008301526128db8161264c565b9050919050565b600060208201905081810360008301526128fb8161266f565b9050919050565b6000602082019050818103600083015261291b81612692565b9050919050565b6000602082019050818103600083015261293b816126b5565b9050919050565b6000602082019050818103600083015261295b816126d8565b9050919050565b6000602082019050818103600083015261297b8161271e565b9050919050565b6000602082019050818103600083015261299b81612741565b9050919050565b600060208201905081810360008301526129bb81612764565b9050919050565b60006020820190506129d76000830184612787565b92915050565b60006020820190506129f26000830184612796565b92915050565b6000612a02612a13565b9050612a0e8282612c72565b919050565b6000604051905090565b600067ffffffffffffffff821115612a3857612a37612d01565b5b612a4182612d44565b9050602081019050919050565b600067ffffffffffffffff821115612a6957612a68612d01565b5b612a7282612d44565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ad882612be7565b9150612ae383612be7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b1857612b17612ca3565b5b828201905092915050565b6000612b2e82612be7565b9150612b3983612be7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b7257612b71612ca3565b5b828202905092915050565b6000612b8882612bc7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612c2b578082015181840152602081019050612c10565b83811115612c3a576000848401525b50505050565b60006002820490506001821680612c5857607f821691505b60208210811415612c6c57612c6b612cd2565b5b50919050565b612c7b82612d44565b810181811067ffffffffffffffff82111715612c9a57612c99612d01565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f46726565206d696e7420616d6f756e74206d75737420626520657175616c207460008201527f6f20310000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178206672656520737570706c792065786365656465642100000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b612f6d81612b7d565b8114612f7857600080fd5b50565b612f8481612b8f565b8114612f8f57600080fd5b50565b612f9b81612b9b565b8114612fa657600080fd5b50565b612fb281612be7565b8114612fbd57600080fd5b5056fea26469706673582212203f79bb5c559342bc9d42e5bfb0260c2dcbb1b73882b541d48fb97b311b1eebdb64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f4d616368696e6520536f6c64696572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024d53000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101d85760003560e01c8063715018a611610102578063a702735711610095578063e985e9c511610064578063e985e9c514610636578063efbd73f414610673578063f2fde38b1461069c578063f4db2acb146106c5576101d8565b8063a702735714610587578063b88d4fde146105b2578063c87b56dd146105ce578063d5abeb011461060b576101d8565b806394354fd0116100d157806394354fd0146104ec57806395d89b4114610517578063a0712d6814610542578063a22cb4651461055e576101d8565b8063715018a6146104655780637c928fe91461047c5780637ec4a659146104985780638da5cb5b146104c1576101d8565b806323b872dd1161017a5780635c975abb116101495780635c975abb1461039557806362b99ad4146103c05780636352211e146103eb57806370a0823114610428576101d8565b806323b872dd1461031d5780633ccfd60b1461033957806342842e0e1461035057806344a0d68a1461036c576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806313faede61461029e57806316c38b3c146102c957806318160ddd146102f2576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612435565b610702565b6040516102119190612845565b60405180910390f35b34801561022657600080fd5b5061022f610794565b60405161023c9190612860565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906124d8565b610826565b60405161027991906127de565b60405180910390f35b61029c600480360381019061029791906123c8565b6108a5565b005b3480156102aa57600080fd5b506102b36109e9565b6040516102c091906129c2565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190612408565b6109ef565b005b3480156102fe57600080fd5b50610307610a14565b60405161031491906129c2565b60405180910390f35b610337600480360381019061033291906122b2565b610a2b565b005b34801561034557600080fd5b5061034e610d50565b005b61036a600480360381019061036591906122b2565b610e2e565b005b34801561037857600080fd5b50610393600480360381019061038e91906124d8565b610e4e565b005b3480156103a157600080fd5b506103aa610e60565b6040516103b79190612845565b60405180910390f35b3480156103cc57600080fd5b506103d5610e73565b6040516103e29190612860565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d91906124d8565b610f01565b60405161041f91906127de565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190612245565b610f13565b60405161045c91906129c2565b60405180910390f35b34801561047157600080fd5b5061047a610fcc565b005b610496600480360381019061049191906124d8565b610fe0565b005b3480156104a457600080fd5b506104bf60048036038101906104ba919061248f565b6111c2565b005b3480156104cd57600080fd5b506104d66111e4565b6040516104e391906127de565b60405180910390f35b3480156104f857600080fd5b5061050161120e565b60405161050e91906129c2565b60405180910390f35b34801561052357600080fd5b5061052c611214565b6040516105399190612860565b60405180910390f35b61055c600480360381019061055791906124d8565b6112a6565b005b34801561056a57600080fd5b5061058560048036038101906105809190612388565b6113ff565b005b34801561059357600080fd5b5061059c61150a565b6040516105a991906129dd565b60405180910390f35b6105cc60048036038101906105c79190612305565b61151d565b005b3480156105da57600080fd5b506105f560048036038101906105f091906124d8565b611590565b6040516106029190612860565b60405180910390f35b34801561061757600080fd5b50610620611637565b60405161062d91906129c2565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190612272565b61163d565b60405161066a9190612845565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190612505565b6116d1565b005b3480156106a857600080fd5b506106c360048036038101906106be9190612245565b611791565b005b3480156106d157600080fd5b506106ec60048036038101906106e79190612245565b611815565b6040516106f991906129c2565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061078d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107a390612c40565b80601f01602080910402602001604051908101604052809291908181526020018280546107cf90612c40565b801561081c5780601f106107f15761010080835404028352916020019161081c565b820191906000526020600020905b8154815290600101906020018083116107ff57829003601f168201915b5050505050905090565b60006108318261182d565b610867576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108b082610f01565b90508073ffffffffffffffffffffffffffffffffffffffff166108d161188c565b73ffffffffffffffffffffffffffffffffffffffff1614610934576108fd816108f861188c565b61163d565b610933576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b6109f7611894565b80601060006101000a81548160ff02191690831515021790555050565b6000610a1e611912565b6001546000540303905090565b6000610a3682611917565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a9d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610aa9846119e5565b91509150610abf8187610aba61188c565b611a0c565b610b0b57610ad486610acf61188c565b61163d565b610b0a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b72576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b7f8686866001611a50565b8015610b8a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c5885610c34888887611a56565b7c020000000000000000000000000000000000000000000000000000000017611a7e565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ce0576000600185019050600060046000838152602001908152602001600020541415610cde576000548114610cdd578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d488686866001611aa9565b505050505050565b610d58611894565b60026009541415610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9590612982565b60405180910390fd5b60026009819055506000610db06111e4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dd3906127c9565b60006040518083038185875af1925050503d8060008114610e10576040519150601f19603f3d011682016040523d82523d6000602084013e610e15565b606091505b5050905080610e2357600080fd5b506001600981905550565b610e498383836040518060200160405280600081525061151d565b505050565b610e56611894565b80600b8190555050565b601060009054906101000a900460ff1681565b600a8054610e8090612c40565b80601f0160208091040260200160405190810160405280929190818152602001828054610eac90612c40565b8015610ef95780601f10610ece57610100808354040283529160200191610ef9565b820191906000526020600020905b815481529060010190602001808311610edc57829003601f168201915b505050505081565b6000610f0c82611917565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fd4611894565b610fde6000611aaf565b565b8060018114611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b906128c2565b60405180910390fd5b600c5481611030610a14565b61103a9190612acd565b111561107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107290612962565b60405180910390fd5b600e60009054906101000a900460ff1660ff16600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061110e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110590612942565b60405180910390fd5b601060009054906101000a900460ff161561115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115590612902565b60405180910390fd5b600e60009054906101000a900460ff1660ff16600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111be3383611b75565b5050565b6111ca611894565b80600a90805190602001906111e0929190612059565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606003805461122390612c40565b80601f016020809104026020016040519081016040528092919081815260200182805461124f90612c40565b801561129c5780601f106112715761010080835404028352916020019161129c565b820191906000526020600020905b81548152906001019060200180831161127f57829003601f168201915b5050505050905090565b806000811180156112b95750600d548111155b6112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef906128a2565b60405180910390fd5b600c5481611304610a14565b61130e9190612acd565b111561134f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134690612962565b60405180910390fd5b8180600b5461135e9190612b23565b3410156113a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611397906129a2565b60405180910390fd5b601060009054906101000a900460ff16156113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790612902565b60405180910390fd5b6113fa3384611b75565b505050565b806007600061140c61188c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b961188c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114fe9190612845565b60405180910390a35050565b600e60009054906101000a900460ff1681565b611528848484610a2b565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461158a5761155384848484611b93565b611589576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061159b8261182d565b6115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d190612922565b60405180910390fd5b60006115e4611cf3565b90506000815111611604576040518060200160405280600081525061162f565b8061160e84611d85565b60405160200161161f9291906127a5565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156116e45750600d548111155b611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a906128a2565b60405180910390fd5b600c548161172f610a14565b6117399190612acd565b111561177a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177190612962565b60405180910390fd5b611782611894565b61178c8284611b75565b505050565b611799611894565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180090612882565b60405180910390fd5b61181281611aaf565b50565b600f6020528060005260406000206000915090505481565b600081611838611912565b11158015611847575060005482105b8015611885575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b61189c611dde565b73ffffffffffffffffffffffffffffffffffffffff166118ba6111e4565b73ffffffffffffffffffffffffffffffffffffffff1614611910576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611907906128e2565b60405180910390fd5b565b600090565b60008082905080611926611912565b116119ae576000548110156119ad5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156119ab575b60008114156119a1576004600083600190039350838152602001908152602001600020549050611976565b80925050506119e0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a6d868684611de6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b8f828260405180602001604052806000815250611def565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bb961188c565b8786866040518563ffffffff1660e01b8152600401611bdb94939291906127f9565b602060405180830381600087803b158015611bf557600080fd5b505af1925050508015611c2657506040513d601f19601f82011682018060405250810190611c239190612462565b60015b611ca0573d8060008114611c56576040519150601f19603f3d011682016040523d82523d6000602084013e611c5b565b606091505b50600081511415611c98576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d0290612c40565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2e90612c40565b8015611d7b5780601f10611d5057610100808354040283529160200191611d7b565b820191906000526020600020905b815481529060010190602001808311611d5e57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611dc957600184039350600a81066030018453600a8104905080611dc457611dc9565b611d9e565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b611df98383611e8c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e8757600080549050600083820390505b611e396000868380600101945086611b93565b611e6f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e26578160005414611e8457600080fd5b50505b505050565b6000805490506000821415611ecd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eda6000848385611a50565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f5183611f426000866000611a56565b611f4b85612049565b17611a7e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611ff257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611fb7565b50600082141561202e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120446000848385611aa9565b505050565b60006001821460e11b9050919050565b82805461206590612c40565b90600052602060002090601f01602090048101928261208757600085556120ce565b82601f106120a057805160ff19168380011785556120ce565b828001600101855582156120ce579182015b828111156120cd5782518255916020019190600101906120b2565b5b5090506120db91906120df565b5090565b5b808211156120f85760008160009055506001016120e0565b5090565b600061210f61210a84612a1d565b6129f8565b90508281526020810184848401111561212b5761212a612d35565b5b612136848285612bfe565b509392505050565b600061215161214c84612a4e565b6129f8565b90508281526020810184848401111561216d5761216c612d35565b5b612178848285612bfe565b509392505050565b60008135905061218f81612f64565b92915050565b6000813590506121a481612f7b565b92915050565b6000813590506121b981612f92565b92915050565b6000815190506121ce81612f92565b92915050565b600082601f8301126121e9576121e8612d30565b5b81356121f98482602086016120fc565b91505092915050565b600082601f83011261221757612216612d30565b5b813561222784826020860161213e565b91505092915050565b60008135905061223f81612fa9565b92915050565b60006020828403121561225b5761225a612d3f565b5b600061226984828501612180565b91505092915050565b6000806040838503121561228957612288612d3f565b5b600061229785828601612180565b92505060206122a885828601612180565b9150509250929050565b6000806000606084860312156122cb576122ca612d3f565b5b60006122d986828701612180565b93505060206122ea86828701612180565b92505060406122fb86828701612230565b9150509250925092565b6000806000806080858703121561231f5761231e612d3f565b5b600061232d87828801612180565b945050602061233e87828801612180565b935050604061234f87828801612230565b925050606085013567ffffffffffffffff8111156123705761236f612d3a565b5b61237c878288016121d4565b91505092959194509250565b6000806040838503121561239f5761239e612d3f565b5b60006123ad85828601612180565b92505060206123be85828601612195565b9150509250929050565b600080604083850312156123df576123de612d3f565b5b60006123ed85828601612180565b92505060206123fe85828601612230565b9150509250929050565b60006020828403121561241e5761241d612d3f565b5b600061242c84828501612195565b91505092915050565b60006020828403121561244b5761244a612d3f565b5b6000612459848285016121aa565b91505092915050565b60006020828403121561247857612477612d3f565b5b6000612486848285016121bf565b91505092915050565b6000602082840312156124a5576124a4612d3f565b5b600082013567ffffffffffffffff8111156124c3576124c2612d3a565b5b6124cf84828501612202565b91505092915050565b6000602082840312156124ee576124ed612d3f565b5b60006124fc84828501612230565b91505092915050565b6000806040838503121561251c5761251b612d3f565b5b600061252a85828601612230565b925050602061253b85828601612180565b9150509250929050565b61254e81612b7d565b82525050565b61255d81612b8f565b82525050565b600061256e82612a7f565b6125788185612a95565b9350612588818560208601612c0d565b61259181612d44565b840191505092915050565b60006125a782612a8a565b6125b18185612ab1565b93506125c1818560208601612c0d565b6125ca81612d44565b840191505092915050565b60006125e082612a8a565b6125ea8185612ac2565b93506125fa818560208601612c0d565b80840191505092915050565b6000612613602683612ab1565b915061261e82612d55565b604082019050919050565b6000612636601483612ab1565b915061264182612da4565b602082019050919050565b6000612659602383612ab1565b915061266482612dcd565b604082019050919050565b600061267c602083612ab1565b915061268782612e1c565b602082019050919050565b600061269f601783612ab1565b91506126aa82612e45565b602082019050919050565b60006126c2602f83612ab1565b91506126cd82612e6e565b604082019050919050565b60006126e5601983612ab1565b91506126f082612ebd565b602082019050919050565b6000612708600083612aa6565b915061271382612ee6565b600082019050919050565b600061272b601483612ab1565b915061273682612ee9565b602082019050919050565b600061274e601f83612ab1565b915061275982612f12565b602082019050919050565b6000612771601383612ab1565b915061277c82612f3b565b602082019050919050565b61279081612be7565b82525050565b61279f81612bf1565b82525050565b60006127b182856125d5565b91506127bd82846125d5565b91508190509392505050565b60006127d4826126fb565b9150819050919050565b60006020820190506127f36000830184612545565b92915050565b600060808201905061280e6000830187612545565b61281b6020830186612545565b6128286040830185612787565b818103606083015261283a8184612563565b905095945050505050565b600060208201905061285a6000830184612554565b92915050565b6000602082019050818103600083015261287a818461259c565b905092915050565b6000602082019050818103600083015261289b81612606565b9050919050565b600060208201905081810360008301526128bb81612629565b9050919050565b600060208201905081810360008301526128db8161264c565b9050919050565b600060208201905081810360008301526128fb8161266f565b9050919050565b6000602082019050818103600083015261291b81612692565b9050919050565b6000602082019050818103600083015261293b816126b5565b9050919050565b6000602082019050818103600083015261295b816126d8565b9050919050565b6000602082019050818103600083015261297b8161271e565b9050919050565b6000602082019050818103600083015261299b81612741565b9050919050565b600060208201905081810360008301526129bb81612764565b9050919050565b60006020820190506129d76000830184612787565b92915050565b60006020820190506129f26000830184612796565b92915050565b6000612a02612a13565b9050612a0e8282612c72565b919050565b6000604051905090565b600067ffffffffffffffff821115612a3857612a37612d01565b5b612a4182612d44565b9050602081019050919050565b600067ffffffffffffffff821115612a6957612a68612d01565b5b612a7282612d44565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ad882612be7565b9150612ae383612be7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b1857612b17612ca3565b5b828201905092915050565b6000612b2e82612be7565b9150612b3983612be7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b7257612b71612ca3565b5b828202905092915050565b6000612b8882612bc7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612c2b578082015181840152602081019050612c10565b83811115612c3a576000848401525b50505050565b60006002820490506001821680612c5857607f821691505b60208210811415612c6c57612c6b612cd2565b5b50919050565b612c7b82612d44565b810181811067ffffffffffffffff82111715612c9a57612c99612d01565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f46726565206d696e7420616d6f756e74206d75737420626520657175616c207460008201527f6f20310000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178206672656520737570706c792065786365656465642100000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b612f6d81612b7d565b8114612f7857600080fd5b50565b612f8481612b8f565b8114612f8f57600080fd5b50565b612f9b81612b9b565b8114612fa657600080fd5b50565b612fb281612be7565b8114612fbd57600080fd5b5056fea26469706673582212203f79bb5c559342bc9d42e5bfb0260c2dcbb1b73882b541d48fb97b311b1eebdb64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f4d616368696e6520536f6c64696572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024d53000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): Machine Soldier
Arg [1] : _tokenSymbol (string): MS
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [3] : 4d616368696e6520536f6c646965720000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 4d53000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
57896:2730:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24789:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25691:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32182:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31615:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57997:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60280:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21442:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35821:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60363:150;;;;;;;;;;;;;:::i;:::-;;38742:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60094:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58212:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57962:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27084:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22626:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5568:103;;;;;;;;;;;;;:::i;:::-;;59098:243;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60174:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4920:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58071:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25867:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59347:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32740:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58113:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39533:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59726:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58035:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33131:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59565:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5826:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58153:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24789:639;24874:4;25213:10;25198:25;;:11;:25;;;;:102;;;;25290:10;25275:25;;:11;:25;;;;25198:102;:179;;;;25367:10;25352:25;;:11;:25;;;;25198:179;25178:199;;24789:639;;;:::o;25691:100::-;25745:13;25778:5;25771:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25691:100;:::o;32182:218::-;32258:7;32283:16;32291:7;32283;:16::i;:::-;32278:64;;32308:34;;;;;;;;;;;;;;32278:64;32362:15;:24;32378:7;32362:24;;;;;;;;;;;:30;;;;;;;;;;;;32355:37;;32182:218;;;:::o;31615:408::-;31704:13;31720:16;31728:7;31720;:16::i;:::-;31704:32;;31776:5;31753:28;;:19;:17;:19::i;:::-;:28;;;31749:175;;31801:44;31818:5;31825:19;:17;:19::i;:::-;31801:16;:44::i;:::-;31796:128;;31873:35;;;;;;;;;;;;;;31796:128;31749:175;31969:2;31936:15;:24;31952:7;31936:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32007:7;32003:2;31987:28;;31996:5;31987:28;;;;;;;;;;;;31693:330;31615:408;;:::o;57997:33::-;;;;:::o;60280:77::-;4806:13;:11;:13::i;:::-;60345:6:::1;60336;;:15;;;;;;;;;;;;;;;;;;60280:77:::0;:::o;21442:323::-;21503:7;21731:15;:13;:15::i;:::-;21716:12;;21700:13;;:28;:46;21693:53;;21442:323;:::o;35821:2825::-;35963:27;35993;36012:7;35993:18;:27::i;:::-;35963:57;;36078:4;36037:45;;36053:19;36037:45;;;36033:86;;36091:28;;;;;;;;;;;;;;36033:86;36133:27;36162:23;36189:35;36216:7;36189:26;:35::i;:::-;36132:92;;;;36324:68;36349:15;36366:4;36372:19;:17;:19::i;:::-;36324:24;:68::i;:::-;36319:180;;36412:43;36429:4;36435:19;:17;:19::i;:::-;36412:16;:43::i;:::-;36407:92;;36464:35;;;;;;;;;;;;;;36407:92;36319:180;36530:1;36516:16;;:2;:16;;;36512:52;;;36541:23;;;;;;;;;;;;;;36512:52;36577:43;36599:4;36605:2;36609:7;36618:1;36577:21;:43::i;:::-;36713:15;36710:160;;;36853:1;36832:19;36825:30;36710:160;37250:18;:24;37269:4;37250:24;;;;;;;;;;;;;;;;37248:26;;;;;;;;;;;;37319:18;:22;37338:2;37319:22;;;;;;;;;;;;;;;;37317:24;;;;;;;;;;;37641:146;37678:2;37727:45;37742:4;37748:2;37752:19;37727:14;:45::i;:::-;17841:8;37699:73;37641:18;:146::i;:::-;37612:17;:26;37630:7;37612:26;;;;;;;;;;;:175;;;;37958:1;17841:8;37907:19;:47;:52;37903:627;;;37980:19;38012:1;38002:7;:11;37980:33;;38169:1;38135:17;:30;38153:11;38135:30;;;;;;;;;;;;:35;38131:384;;;38273:13;;38258:11;:28;38254:242;;38453:19;38420:17;:30;38438:11;38420:30;;;;;;;;;;;:52;;;;38254:242;38131:384;37961:569;37903:627;38577:7;38573:2;38558:27;;38567:4;38558:27;;;;;;;;;;;;38596:42;38617:4;38623:2;38627:7;38636:1;38596:20;:42::i;:::-;35952:2694;;;35821:2825;;;:::o;60363:150::-;4806:13;:11;:13::i;:::-;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;60421:7:::2;60442;:5;:7::i;:::-;60434:21;;60463;60434:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60420:69;;;60504:2;60496:11;;;::::0;::::2;;60413:100;1801:1:::1;2755:7;:22;;;;60363:150::o:0;38742:193::-;38888:39;38905:4;38911:2;38915:7;38888:39;;;;;;;;;;;;:16;:39::i;:::-;38742:193;;;:::o;60094:74::-;4806:13;:11;:13::i;:::-;60157:5:::1;60150:4;:12;;;;60094:74:::0;:::o;58212:25::-;;;;;;;;;;;;;:::o;57962:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27084:152::-;27156:7;27199:27;27218:7;27199:18;:27::i;:::-;27176:52;;27084:152;;;:::o;22626:233::-;22698:7;22739:1;22722:19;;:5;:19;;;22718:60;;;22750:28;;;;;;;;;;;;;;22718:60;16785:13;22796:18;:25;22815:5;22796:25;;;;;;;;;;;;;;;;:55;22789:62;;22626:233;;;:::o;5568:103::-;4806:13;:11;:13::i;:::-;5633:30:::1;5660:1;5633:18;:30::i;:::-;5568:103::o:0;59098:243::-;59176:11;58864:1;58849:11;:16;58841:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;58951:9;;58936:11;58920:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58912:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;59032:16;;;;;;;;;;;59000:48;;:17;:29;59018:10;59000:29;;;;;;;;;;;;;;;;:48;58992:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;59205:6:::1;;;;;;;;;;;59204:7;59196:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;59278:16;;;;;;;;;;;59246:48;;:17;:29;59264:10;59246:29;;;;;;;;;;;;;;;:48;;;;59301:34;59311:10;59323:11;59301:9;:34::i;:::-;59098:243:::0;;:::o;60174:100::-;4806:13;:11;:13::i;:::-;60258:10:::1;60246:9;:22;;;;;;;;;;;;:::i;:::-;;60174:100:::0;:::o;4920:87::-;4966:7;4993:6;;;;;;;;;;;4986:13;;4920:87;:::o;58071:37::-;;;;:::o;25867:104::-;25923:13;25956:7;25949:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25867:104;:::o;59347:210::-;59412:11;58477:1;58463:11;:15;:52;;;;;58497:18;;58482:11;:33;;58463:52;58455:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58586:9;;58571:11;58555:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58547:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;59445:11:::1;58725;58718:4;;:18;;;;:::i;:::-;58705:9;:31;;58697:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;59474:6:::2;;;;;;;;;;;59473:7;59465:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;59517:34;59527:10;59539:11;59517:9;:34::i;:::-;58627:1:::1;59347:210:::0;;:::o;32740:234::-;32887:8;32835:18;:39;32854:19;:17;:19::i;:::-;32835:39;;;;;;;;;;;;;;;:49;32875:8;32835:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32947:8;32911:55;;32926:19;:17;:19::i;:::-;32911:55;;;32957:8;32911:55;;;;;;:::i;:::-;;;;;;;;32740:234;;:::o;58113:35::-;;;;;;;;;;;;;:::o;39533:407::-;39708:31;39721:4;39727:2;39731:7;39708:12;:31::i;:::-;39772:1;39754:2;:14;;;:19;39750:183;;39793:56;39824:4;39830:2;39834:7;39843:5;39793:30;:56::i;:::-;39788:145;;39877:40;;;;;;;;;;;;;;39788:145;39750:183;39533:407;;;;:::o;59726:362::-;59800:13;59830:17;59838:8;59830:7;:17::i;:::-;59822:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;59908:28;59939:10;:8;:10::i;:::-;59908:41;;59994:1;59969:14;59963:28;:32;:119;;;;;;;;;;;;;;;;;60031:14;60047:19;60057:8;60047:9;:19::i;:::-;60014:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59963:119;59956:126;;;59726:362;;;:::o;58035:31::-;;;;:::o;33131:164::-;33228:4;33252:18;:25;33271:5;33252:25;;;;;;;;;;;;;;;:35;33278:8;33252:35;;;;;;;;;;;;;;;;;;;;;;;;;33245:42;;33131:164;;;;:::o;59565:155::-;59651:11;58477:1;58463:11;:15;:52;;;;;58497:18;;58482:11;:33;;58463:52;58455:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58586:9;;58571:11;58555:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58547:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4806:13:::1;:11;:13::i;:::-;59681:33:::2;59691:9;59702:11;59681:9;:33::i;:::-;59565:155:::0;;;:::o;5826:201::-;4806:13;:11;:13::i;:::-;5935:1:::1;5915:22;;:8;:22;;;;5907:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5991:28;6010:8;5991:18;:28::i;:::-;5826:201:::0;:::o;58153:52::-;;;;;;;;;;;;;;;;;:::o;33553:282::-;33618:4;33674:7;33655:15;:13;:15::i;:::-;:26;;:66;;;;;33708:13;;33698:7;:23;33655:66;:153;;;;;33807:1;17561:8;33759:17;:26;33777:7;33759:26;;;;;;;;;;;;:44;:49;33655:153;33635:173;;33553:282;;;:::o;55861:105::-;55921:7;55948:10;55941:17;;55861:105;:::o;5085:132::-;5160:12;:10;:12::i;:::-;5149:23;;:7;:5;:7::i;:::-;:23;;;5141:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5085:132::o;20958:92::-;21014:7;20958:92;:::o;28239:1275::-;28306:7;28326:12;28341:7;28326:22;;28409:4;28390:15;:13;:15::i;:::-;:23;28386:1061;;28443:13;;28436:4;:20;28432:1015;;;28481:14;28498:17;:23;28516:4;28498:23;;;;;;;;;;;;28481:40;;28615:1;17561:8;28587:6;:24;:29;28583:845;;;29252:113;29269:1;29259:6;:11;29252:113;;;29312:17;:25;29330:6;;;;;;;29312:25;;;;;;;;;;;;29303:34;;29252:113;;;29398:6;29391:13;;;;;;28583:845;28458:989;28432:1015;28386:1061;29475:31;;;;;;;;;;;;;;28239:1275;;;;:::o;34716:485::-;34818:27;34847:23;34888:38;34929:15;:24;34945:7;34929:24;;;;;;;;;;;34888:65;;35106:18;35083:41;;35163:19;35157:26;35138:45;;35068:126;34716:485;;;:::o;33944:659::-;34093:11;34258:16;34251:5;34247:28;34238:37;;34418:16;34407:9;34403:32;34390:45;;34568:15;34557:9;34554:30;34546:5;34535:9;34532:20;34529:56;34519:66;;33944:659;;;;;:::o;40602:159::-;;;;;:::o;55170:311::-;55305:7;55325:16;17965:3;55351:19;:41;;55325:68;;17965:3;55419:31;55430:4;55436:2;55440:9;55419:10;:31::i;:::-;55411:40;;:62;;55404:69;;;55170:311;;;;;:::o;30062:450::-;30142:14;30310:16;30303:5;30299:28;30290:37;;30487:5;30473:11;30448:23;30444:41;30441:52;30434:5;30431:63;30421:73;;30062:450;;;;:::o;41426:158::-;;;;;:::o;6187:191::-;6261:16;6280:6;;;;;;;;;;;6261:25;;6306:8;6297:6;;:17;;;;;;;;;;;;;;;;;;6361:8;6330:40;;6351:8;6330:40;;;;;;;;;;;;6250:128;6187:191;:::o;49693:112::-;49770:27;49780:2;49784:8;49770:27;;;;;;;;;;;;:9;:27::i;:::-;49693:112;;:::o;42024:716::-;42187:4;42233:2;42208:45;;;42254:19;:17;:19::i;:::-;42275:4;42281:7;42290:5;42208:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42204:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42508:1;42491:6;:13;:18;42487:235;;;42537:40;;;;;;;;;;;;;;42487:235;42680:6;42674:13;42665:6;42661:2;42657:15;42650:38;42204:529;42377:54;;;42367:64;;;:6;:64;;;;42360:71;;;42024:716;;;;;;:::o;60519:104::-;60579:13;60608:9;60601:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60519:104;:::o;56068:1745::-;56133:17;56567:4;56560;56554:11;56550:22;56659:1;56653:4;56646:15;56734:4;56731:1;56727:12;56720:19;;56816:1;56811:3;56804:14;56920:3;57159:5;57141:428;57167:1;57141:428;;;57207:1;57202:3;57198:11;57191:18;;57378:2;57372:4;57368:13;57364:2;57360:22;57355:3;57347:36;57472:2;57466:4;57462:13;57454:21;;57539:4;57529:25;;57547:5;;57529:25;57141:428;;;57145:21;57608:3;57603;57599:13;57723:4;57718:3;57714:14;57707:21;;57788:6;57783:3;57776:19;56172:1634;;;56068:1745;;;:::o;3471:98::-;3524:7;3551:10;3544:17;;3471:98;:::o;54871:147::-;55008:6;54871:147;;;;;:::o;48920:689::-;49051:19;49057:2;49061:8;49051:5;:19::i;:::-;49130:1;49112:2;:14;;;:19;49108:483;;49152:11;49166:13;;49152:27;;49198:13;49220:8;49214:3;:14;49198:30;;49247:233;49278:62;49317:1;49321:2;49325:7;;;;;;49334:5;49278:30;:62::i;:::-;49273:167;;49376:40;;;;;;;;;;;;;;49273:167;49475:3;49467:5;:11;49247:233;;49562:3;49545:13;;:20;49541:34;;49567:8;;;49541:34;49133:458;;49108:483;48920:689;;;:::o;43202:2966::-;43275:20;43298:13;;43275:36;;43338:1;43326:8;:13;43322:44;;;43348:18;;;;;;;;;;;;;;43322:44;43379:61;43409:1;43413:2;43417:12;43431:8;43379:21;:61::i;:::-;43923:1;16923:2;43893:1;:26;;43892:32;43880:8;:45;43854:18;:22;43873:2;43854:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44202:139;44239:2;44293:33;44316:1;44320:2;44324:1;44293:14;:33::i;:::-;44260:30;44281:8;44260:20;:30::i;:::-;:66;44202:18;:139::i;:::-;44168:17;:31;44186:12;44168:31;;;;;;;;;;;:173;;;;44358:16;44389:11;44418:8;44403:12;:23;44389:37;;44939:16;44935:2;44931:25;44919:37;;45311:12;45271:8;45230:1;45168:25;45109:1;45048;45021:335;45682:1;45668:12;45664:20;45622:346;45723:3;45714:7;45711:16;45622:346;;45941:7;45931:8;45928:1;45901:25;45898:1;45895;45890:59;45776:1;45767:7;45763:15;45752:26;;45622:346;;;45626:77;46013:1;46001:8;:13;45997:45;;;46023:19;;;;;;;;;;;;;;45997:45;46075:3;46059:13;:19;;;;43628:2462;;46100:60;46129:1;46133:2;46137:12;46151:8;46100:20;:60::i;:::-;43264:2904;43202:2966;;:::o;30614:324::-;30684:14;30917:1;30907:8;30904:15;30878:24;30874:46;30864:56;;30614:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9325:366::-;9467:3;9488:67;9552:2;9547:3;9488:67;:::i;:::-;9481:74;;9564:93;9653:3;9564:93;:::i;:::-;9682:2;9677:3;9673:12;9666:19;;9325:366;;;:::o;9697:::-;9839:3;9860:67;9924:2;9919:3;9860:67;:::i;:::-;9853:74;;9936:93;10025:3;9936:93;:::i;:::-;10054:2;10049:3;10045:12;10038:19;;9697:366;;;:::o;10069:::-;10211:3;10232:67;10296:2;10291:3;10232:67;:::i;:::-;10225:74;;10308:93;10397:3;10308:93;:::i;:::-;10426:2;10421:3;10417:12;10410:19;;10069:366;;;:::o;10441:::-;10583:3;10604:67;10668:2;10663:3;10604:67;:::i;:::-;10597:74;;10680:93;10769:3;10680:93;:::i;:::-;10798:2;10793:3;10789:12;10782:19;;10441:366;;;:::o;10813:::-;10955:3;10976:67;11040:2;11035:3;10976:67;:::i;:::-;10969:74;;11052:93;11141:3;11052:93;:::i;:::-;11170:2;11165:3;11161:12;11154:19;;10813:366;;;:::o;11185:::-;11327:3;11348:67;11412:2;11407:3;11348:67;:::i;:::-;11341:74;;11424:93;11513:3;11424:93;:::i;:::-;11542:2;11537:3;11533:12;11526:19;;11185:366;;;:::o;11557:::-;11699:3;11720:67;11784:2;11779:3;11720:67;:::i;:::-;11713:74;;11796:93;11885:3;11796:93;:::i;:::-;11914:2;11909:3;11905:12;11898:19;;11557:366;;;:::o;11929:398::-;12088:3;12109:83;12190:1;12185:3;12109:83;:::i;:::-;12102:90;;12201:93;12290:3;12201:93;:::i;:::-;12319:1;12314:3;12310:11;12303:18;;11929:398;;;:::o;12333:366::-;12475:3;12496:67;12560:2;12555:3;12496:67;:::i;:::-;12489:74;;12572:93;12661:3;12572:93;:::i;:::-;12690:2;12685:3;12681:12;12674:19;;12333:366;;;:::o;12705:::-;12847:3;12868:67;12932:2;12927:3;12868:67;:::i;:::-;12861:74;;12944:93;13033:3;12944:93;:::i;:::-;13062:2;13057:3;13053:12;13046:19;;12705:366;;;:::o;13077:::-;13219:3;13240:67;13304:2;13299:3;13240:67;:::i;:::-;13233:74;;13316:93;13405:3;13316:93;:::i;:::-;13434:2;13429:3;13425:12;13418:19;;13077:366;;;:::o;13449:118::-;13536:24;13554:5;13536:24;:::i;:::-;13531:3;13524:37;13449:118;;:::o;13573:112::-;13656:22;13672:5;13656:22;:::i;:::-;13651:3;13644:35;13573:112;;:::o;13691:435::-;13871:3;13893:95;13984:3;13975:6;13893:95;:::i;:::-;13886:102;;14005:95;14096:3;14087:6;14005:95;:::i;:::-;13998:102;;14117:3;14110:10;;13691:435;;;;;:::o;14132:379::-;14316:3;14338:147;14481:3;14338:147;:::i;:::-;14331:154;;14502:3;14495:10;;14132:379;;;:::o;14517:222::-;14610:4;14648:2;14637:9;14633:18;14625:26;;14661:71;14729:1;14718:9;14714:17;14705:6;14661:71;:::i;:::-;14517:222;;;;:::o;14745:640::-;14940:4;14978:3;14967:9;14963:19;14955:27;;14992:71;15060:1;15049:9;15045:17;15036:6;14992:71;:::i;:::-;15073:72;15141:2;15130:9;15126:18;15117:6;15073:72;:::i;:::-;15155;15223:2;15212:9;15208:18;15199:6;15155:72;:::i;:::-;15274:9;15268:4;15264:20;15259:2;15248:9;15244:18;15237:48;15302:76;15373:4;15364:6;15302:76;:::i;:::-;15294:84;;14745:640;;;;;;;:::o;15391:210::-;15478:4;15516:2;15505:9;15501:18;15493:26;;15529:65;15591:1;15580:9;15576:17;15567:6;15529:65;:::i;:::-;15391:210;;;;:::o;15607:313::-;15720:4;15758:2;15747:9;15743:18;15735:26;;15807:9;15801:4;15797:20;15793:1;15782:9;15778:17;15771:47;15835:78;15908:4;15899:6;15835:78;:::i;:::-;15827:86;;15607:313;;;;:::o;15926:419::-;16092:4;16130:2;16119:9;16115:18;16107:26;;16179:9;16173:4;16169:20;16165:1;16154:9;16150:17;16143:47;16207:131;16333:4;16207:131;:::i;:::-;16199:139;;15926:419;;;:::o;16351:::-;16517:4;16555:2;16544:9;16540:18;16532:26;;16604:9;16598:4;16594:20;16590:1;16579:9;16575:17;16568:47;16632:131;16758:4;16632:131;:::i;:::-;16624:139;;16351:419;;;:::o;16776:::-;16942:4;16980:2;16969:9;16965:18;16957:26;;17029:9;17023:4;17019:20;17015:1;17004:9;17000:17;16993:47;17057:131;17183:4;17057:131;:::i;:::-;17049:139;;16776:419;;;:::o;17201:::-;17367:4;17405:2;17394:9;17390:18;17382:26;;17454:9;17448:4;17444:20;17440:1;17429:9;17425:17;17418:47;17482:131;17608:4;17482:131;:::i;:::-;17474:139;;17201:419;;;:::o;17626:::-;17792:4;17830:2;17819:9;17815:18;17807:26;;17879:9;17873:4;17869:20;17865:1;17854:9;17850:17;17843:47;17907:131;18033:4;17907:131;:::i;:::-;17899:139;;17626:419;;;:::o;18051:::-;18217:4;18255:2;18244:9;18240:18;18232:26;;18304:9;18298:4;18294:20;18290:1;18279:9;18275:17;18268:47;18332:131;18458:4;18332:131;:::i;:::-;18324:139;;18051:419;;;:::o;18476:::-;18642:4;18680:2;18669:9;18665:18;18657:26;;18729:9;18723:4;18719:20;18715:1;18704:9;18700:17;18693:47;18757:131;18883:4;18757:131;:::i;:::-;18749:139;;18476:419;;;:::o;18901:::-;19067:4;19105:2;19094:9;19090:18;19082:26;;19154:9;19148:4;19144:20;19140:1;19129:9;19125:17;19118:47;19182:131;19308:4;19182:131;:::i;:::-;19174:139;;18901:419;;;:::o;19326:::-;19492:4;19530:2;19519:9;19515:18;19507:26;;19579:9;19573:4;19569:20;19565:1;19554:9;19550:17;19543:47;19607:131;19733:4;19607:131;:::i;:::-;19599:139;;19326:419;;;:::o;19751:::-;19917:4;19955:2;19944:9;19940:18;19932:26;;20004:9;19998:4;19994:20;19990:1;19979:9;19975:17;19968:47;20032:131;20158:4;20032:131;:::i;:::-;20024:139;;19751:419;;;:::o;20176:222::-;20269:4;20307:2;20296:9;20292:18;20284:26;;20320:71;20388:1;20377:9;20373:17;20364:6;20320:71;:::i;:::-;20176:222;;;;:::o;20404:214::-;20493:4;20531:2;20520:9;20516:18;20508:26;;20544:67;20608:1;20597:9;20593:17;20584:6;20544:67;:::i;:::-;20404:214;;;;:::o;20624:129::-;20658:6;20685:20;;:::i;:::-;20675:30;;20714:33;20742:4;20734:6;20714:33;:::i;:::-;20624:129;;;:::o;20759:75::-;20792:6;20825:2;20819:9;20809:19;;20759:75;:::o;20840:307::-;20901:4;20991:18;20983:6;20980:30;20977:56;;;21013:18;;:::i;:::-;20977:56;21051:29;21073:6;21051:29;:::i;:::-;21043:37;;21135:4;21129;21125:15;21117:23;;20840:307;;;:::o;21153:308::-;21215:4;21305:18;21297:6;21294:30;21291:56;;;21327:18;;:::i;:::-;21291:56;21365:29;21387:6;21365:29;:::i;:::-;21357:37;;21449:4;21443;21439:15;21431:23;;21153:308;;;:::o;21467:98::-;21518:6;21552:5;21546:12;21536:22;;21467:98;;;:::o;21571:99::-;21623:6;21657:5;21651:12;21641:22;;21571:99;;;:::o;21676:168::-;21759:11;21793:6;21788:3;21781:19;21833:4;21828:3;21824:14;21809:29;;21676:168;;;;:::o;21850:147::-;21951:11;21988:3;21973:18;;21850:147;;;;:::o;22003:169::-;22087:11;22121:6;22116:3;22109:19;22161:4;22156:3;22152:14;22137:29;;22003:169;;;;:::o;22178:148::-;22280:11;22317:3;22302:18;;22178:148;;;;:::o;22332:305::-;22372:3;22391:20;22409:1;22391:20;:::i;:::-;22386:25;;22425:20;22443:1;22425:20;:::i;:::-;22420:25;;22579:1;22511:66;22507:74;22504:1;22501:81;22498:107;;;22585:18;;:::i;:::-;22498:107;22629:1;22626;22622:9;22615:16;;22332:305;;;;:::o;22643:348::-;22683:7;22706:20;22724:1;22706:20;:::i;:::-;22701:25;;22740:20;22758:1;22740:20;:::i;:::-;22735:25;;22928:1;22860:66;22856:74;22853:1;22850:81;22845:1;22838:9;22831:17;22827:105;22824:131;;;22935:18;;:::i;:::-;22824:131;22983:1;22980;22976:9;22965:20;;22643:348;;;;:::o;22997:96::-;23034:7;23063:24;23081:5;23063:24;:::i;:::-;23052:35;;22997:96;;;:::o;23099:90::-;23133:7;23176:5;23169:13;23162:21;23151:32;;23099:90;;;:::o;23195:149::-;23231:7;23271:66;23264:5;23260:78;23249:89;;23195:149;;;:::o;23350:126::-;23387:7;23427:42;23420:5;23416:54;23405:65;;23350:126;;;:::o;23482:77::-;23519:7;23548:5;23537:16;;23482:77;;;:::o;23565:86::-;23600:7;23640:4;23633:5;23629:16;23618:27;;23565:86;;;:::o;23657:154::-;23741:6;23736:3;23731;23718:30;23803:1;23794:6;23789:3;23785:16;23778:27;23657:154;;;:::o;23817:307::-;23885:1;23895:113;23909:6;23906:1;23903:13;23895:113;;;23994:1;23989:3;23985:11;23979:18;23975:1;23970:3;23966:11;23959:39;23931:2;23928:1;23924:10;23919:15;;23895:113;;;24026:6;24023:1;24020:13;24017:101;;;24106:1;24097:6;24092:3;24088:16;24081:27;24017:101;23866:258;23817:307;;;:::o;24130:320::-;24174:6;24211:1;24205:4;24201:12;24191:22;;24258:1;24252:4;24248:12;24279:18;24269:81;;24335:4;24327:6;24323:17;24313:27;;24269:81;24397:2;24389:6;24386:14;24366:18;24363:38;24360:84;;;24416:18;;:::i;:::-;24360:84;24181:269;24130:320;;;:::o;24456:281::-;24539:27;24561:4;24539:27;:::i;:::-;24531:6;24527:40;24669:6;24657:10;24654:22;24633:18;24621:10;24618:34;24615:62;24612:88;;;24680:18;;:::i;:::-;24612:88;24720:10;24716:2;24709:22;24499:238;24456:281;;:::o;24743:180::-;24791:77;24788:1;24781:88;24888:4;24885:1;24878:15;24912:4;24909:1;24902:15;24929:180;24977:77;24974:1;24967:88;25074:4;25071:1;25064:15;25098:4;25095:1;25088:15;25115:180;25163:77;25160:1;25153:88;25260:4;25257:1;25250:15;25284:4;25281:1;25274:15;25301:117;25410:1;25407;25400:12;25424:117;25533:1;25530;25523:12;25547:117;25656:1;25653;25646:12;25670:117;25779:1;25776;25769:12;25793:102;25834:6;25885:2;25881:7;25876:2;25869:5;25865:14;25861:28;25851:38;;25793:102;;;:::o;25901:225::-;26041:34;26037:1;26029:6;26025:14;26018:58;26110:8;26105:2;26097:6;26093:15;26086:33;25901:225;:::o;26132:170::-;26272:22;26268:1;26260:6;26256:14;26249:46;26132:170;:::o;26308:222::-;26448:34;26444:1;26436:6;26432:14;26425:58;26517:5;26512:2;26504:6;26500:15;26493:30;26308:222;:::o;26536:182::-;26676:34;26672:1;26664:6;26660:14;26653:58;26536:182;:::o;26724:173::-;26864:25;26860:1;26852:6;26848:14;26841:49;26724:173;:::o;26903:234::-;27043:34;27039:1;27031:6;27027:14;27020:58;27112:17;27107:2;27099:6;27095:15;27088:42;26903:234;:::o;27143:175::-;27283:27;27279:1;27271:6;27267:14;27260:51;27143:175;:::o;27324:114::-;;:::o;27444:170::-;27584:22;27580:1;27572:6;27568:14;27561:46;27444:170;:::o;27620:181::-;27760:33;27756:1;27748:6;27744:14;27737:57;27620:181;:::o;27807:169::-;27947:21;27943:1;27935:6;27931:14;27924:45;27807:169;:::o;27982:122::-;28055:24;28073:5;28055:24;:::i;:::-;28048:5;28045:35;28035:63;;28094:1;28091;28084:12;28035:63;27982:122;:::o;28110:116::-;28180:21;28195:5;28180:21;:::i;:::-;28173:5;28170:32;28160:60;;28216:1;28213;28206:12;28160:60;28110:116;:::o;28232:120::-;28304:23;28321:5;28304:23;:::i;:::-;28297:5;28294:34;28284:62;;28342:1;28339;28332:12;28284:62;28232:120;:::o;28358:122::-;28431:24;28449:5;28431:24;:::i;:::-;28424:5;28421:35;28411:63;;28470:1;28467;28460:12;28411:63;28358:122;:::o
Swarm Source
ipfs://3f79bb5c559342bc9d42e5bfb0260c2dcbb1b73882b541d48fb97b311b1eebdb
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.