ERC-721
Overview
Max Total Supply
6,000 MDRT
Holders
3,346
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MDRTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheMudRats
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-03 */ // 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: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // 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/TheMudRats.sol pragma solidity ^0.8.7; ///@dev // Dependencies: // npm i --save-dev erc721a // npm i @openzeppelin/contracts // import "erc721a/contracts/ERC721A.sol"; contract TheMudRats is ERC721A, Ownable, ReentrancyGuard, Pausable{ // public mint variables uint256 public maxSupply = 6000; uint256 public maxMint = 20; uint256 public mintPrice = 0.004 ether; // @dev 10 finney = 0.01 ether //base uri, baseextension and pre-reveal string private baseURI; string public baseExtension = ".json"; string public notRevealedUri; // booleans for reveal toggle and if mint is enabled bool public revealed = false; bool public publicMintEnabled = false; // keep track of # of minted tokens per user mapping(address => uint256) totalPublicMint; mapping(address => uint256) public totalFreeMints; // Constructor // https://filesite/CID/ // initialize cid(Pinata, ipfs etc) for baseUri and contractUri, make sure / is at end and metadata files named as "x.png" "x.json" not "name x.png" etc // https://gateway.pinata.cloud/ipfs/CID/ // initialize pre-reveal cid, baseExtension has to be name.json // https://gateway.pinata.cloud/ipfs/CID/hidden.json constructor ( string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721A("The Mud Rats", "MDRT") { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } // only allows msg.sender to be external tx origin modifier userOnly { require(tx.origin == msg.sender,"Error: Function cannot be called by another contract"); _; } function teamMint(address _address, uint256 _amount) external userOnly onlyOwner nonReentrant { _safeMint(_address, _amount); } // Users can public mint tokens based on modifiers and requirements function publicMint(uint256 _quantity) external payable whenNotPaused userOnly nonReentrant { // user receives 1 free mint during mint if (totalFreeMints[msg.sender] == 0) { require(publicMintEnabled, "Public mint is currently paused"); require(totalSupply() + _quantity <= maxSupply, "Error: max supply reached"); require((totalPublicMint[msg.sender] + _quantity) <= maxMint, "Error: Cannot mint more than 8"); require(msg.value >= ((_quantity * mintPrice) - mintPrice), "Not enough ether sent"); totalFreeMints[msg.sender] += 1; totalPublicMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); // if user has already received free mint, regular price is applied } else { require(publicMintEnabled, "Public mint is currently paused"); require(totalSupply() + _quantity <= maxSupply, "Error: max supply reached"); require((totalPublicMint[msg.sender] + _quantity) <= maxMint, "Error: Cannot mint more than 8"); require(msg.value >= (_quantity * mintPrice), "Not enough ether sent"); totalPublicMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } } // returns the baseuri of collection, private function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // override _startTokenId() from erc721a to start tokenId at 1 function _startTokenId() internal view virtual override returns (uint256) { return 1; } // return tokenUri from tokenId function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token"); if(revealed == false) { return notRevealedUri; } else { string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _toString(tokenId), baseExtension)) : ""; } } // owner updates and functions function togglePublicMint() external onlyOwner { publicMintEnabled = !publicMintEnabled; } // reveal metadata + NFT images function reveal() external onlyOwner { revealed = !revealed; } function setPrice(uint256 _mintPrice) external onlyOwner { mintPrice = _mintPrice; } function setmaxMintAmount(uint256 _maxMint) external onlyOwner { maxMint = _maxMint; } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function setBaseExtension(string memory _newBaseExtension) external onlyOwner { baseExtension = _newBaseExtension; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } // withdraw to owner(), i.e only if msg.sender is owner function withdrawTransfer() external onlyOwner nonReentrant userOnly{ payable(owner()).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setmaxMintAmount","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":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalFreeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052611770600b556014600c55660e35fa931a0000600d556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600f908051906020019062000067929190620003de565b506000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff021916908315150217905550348015620000ab57600080fd5b5060405162003f0338038062003f038339818101604052810190620000d191906200050c565b6040518060400160405280600c81526020017f546865204d7564205261747300000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d44525400000000000000000000000000000000000000000000000000000000815250816002908051906020019062000155929190620003de565b5080600390805190602001906200016e929190620003de565b506200017f620001f460201b60201c565b6000819055505050620001a76200019b620001fd60201b60201c565b6200020560201b60201c565b60016009819055506000600a60006101000a81548160ff021916908315150217905550620001db82620002cb60201b60201c565b620001ec81620002f760201b60201c565b505062000798565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002db6200032360201b60201c565b80600e9080519060200190620002f3929190620003de565b5050565b620003076200032360201b60201c565b80601090805190602001906200031f929190620003de565b5050565b62000333620001fd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000359620003b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003b2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a990620005b8565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003ec9062000680565b90600052602060002090601f0160209004810192826200041057600085556200045c565b82601f106200042b57805160ff19168380011785556200045c565b828001600101855582156200045c579182015b828111156200045b5782518255916020019190600101906200043e565b5b5090506200046b91906200046f565b5090565b5b808211156200048a57600081600090555060010162000470565b5090565b6000620004a56200049f8462000603565b620005da565b905082815260208101848484011115620004c457620004c36200074f565b5b620004d18482856200064a565b509392505050565b600082601f830112620004f157620004f06200074a565b5b8151620005038482602086016200048e565b91505092915050565b6000806040838503121562000526576200052562000759565b5b600083015167ffffffffffffffff81111562000547576200054662000754565b5b6200055585828601620004d9565b925050602083015167ffffffffffffffff81111562000579576200057862000754565b5b6200058785828601620004d9565b9150509250929050565b6000620005a060208362000639565b9150620005ad826200076f565b602082019050919050565b60006020820190508181036000830152620005d38162000591565b9050919050565b6000620005e6620005f9565b9050620005f48282620006b6565b919050565b6000604051905090565b600067ffffffffffffffff8211156200062157620006206200071b565b5b6200062c826200075e565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200066a5780820151818401526020810190506200064d565b838111156200067a576000848401525b50505050565b600060028204905060018216806200069957607f821691505b60208210811415620006b057620006af620006ec565b5b50919050565b620006c1826200075e565b810181811067ffffffffffffffff82111715620006e357620006e26200071b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61375b80620007a86000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063a475b5dd116100ab578063d5abeb011161006f578063d5abeb0114610754578063da3ef23f1461077f578063e985e9c5146107a8578063f2c4ce1e146107e5578063f2fde38b1461080e57610225565b8063a475b5dd14610690578063add5a4fa146106a7578063b88d4fde146106d0578063c6682862146106ec578063c87b56dd1461071757610225565b80638456cb59116100f25780638456cb59146105d15780638da5cb5b146105e857806391b7f5ed1461061357806395d89b411461063c578063a22cb4651461066757610225565b806370a0823114610529578063715018a6146105665780637501f7411461057d5780637f00c7a6146105a857610225565b806337321ec8116101b157806355f804b31161017557806355f804b3146104565780635894945c1461047f5780635c975abb146104965780636352211e146104c15780636817c76c146104fe57610225565b806337321ec8146103a45780633f4ba83a146103e15780634047638d146103f857806342842e0e1461040f578063518302271461042b57610225565b8063095ea7b3116101f8578063095ea7b3146102fa5780630f4161aa1461031657806318160ddd1461034157806323b872dd1461036c5780632db115441461038857610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063081c8c44146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612b16565b610837565b60405161025e9190612f4e565b60405180910390f35b34801561027357600080fd5b5061027c6108c9565b6040516102899190612f69565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612bb9565b61095b565b6040516102c69190612ee7565b60405180910390f35b3480156102db57600080fd5b506102e46109da565b6040516102f19190612f69565b60405180910390f35b610314600480360381019061030f9190612ad6565b610a68565b005b34801561032257600080fd5b5061032b610bac565b6040516103389190612f4e565b60405180910390f35b34801561034d57600080fd5b50610356610bbf565b60405161036391906130eb565b60405180910390f35b610386600480360381019061038191906129c0565b610bd6565b005b6103a2600480360381019061039d9190612bb9565b610efb565b005b3480156103b057600080fd5b506103cb60048036038101906103c69190612953565b611446565b6040516103d891906130eb565b60405180910390f35b3480156103ed57600080fd5b506103f661145e565b005b34801561040457600080fd5b5061040d611470565b005b610429600480360381019061042491906129c0565b6114a4565b005b34801561043757600080fd5b506104406114c4565b60405161044d9190612f4e565b60405180910390f35b34801561046257600080fd5b5061047d60048036038101906104789190612b70565b6114d7565b005b34801561048b57600080fd5b506104946114f9565b005b3480156104a257600080fd5b506104ab611615565b6040516104b89190612f4e565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e39190612bb9565b61162c565b6040516104f59190612ee7565b60405180910390f35b34801561050a57600080fd5b5061051361163e565b60405161052091906130eb565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b9190612953565b611644565b60405161055d91906130eb565b60405180910390f35b34801561057257600080fd5b5061057b6116fd565b005b34801561058957600080fd5b50610592611711565b60405161059f91906130eb565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca9190612bb9565b611717565b005b3480156105dd57600080fd5b506105e6611729565b005b3480156105f457600080fd5b506105fd61173b565b60405161060a9190612ee7565b60405180910390f35b34801561061f57600080fd5b5061063a60048036038101906106359190612bb9565b611765565b005b34801561064857600080fd5b50610651611777565b60405161065e9190612f69565b60405180910390f35b34801561067357600080fd5b5061068e60048036038101906106899190612a96565b611809565b005b34801561069c57600080fd5b506106a5611914565b005b3480156106b357600080fd5b506106ce60048036038101906106c99190612ad6565b611948565b005b6106ea60048036038101906106e59190612a13565b611a22565b005b3480156106f857600080fd5b50610701611a95565b60405161070e9190612f69565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190612bb9565b611b23565b60405161074b9190612f69565b60405180910390f35b34801561076057600080fd5b50610769611c7c565b60405161077691906130eb565b60405180910390f35b34801561078b57600080fd5b506107a660048036038101906107a19190612b70565b611c82565b005b3480156107b457600080fd5b506107cf60048036038101906107ca9190612980565b611ca4565b6040516107dc9190612f4e565b60405180910390f35b3480156107f157600080fd5b5061080c60048036038101906108079190612b70565b611d38565b005b34801561081a57600080fd5b5061083560048036038101906108309190612953565b611d5a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108d89061337f565b80601f01602080910402602001604051908101604052809291908181526020018280546109049061337f565b80156109515780601f1061092657610100808354040283529160200191610951565b820191906000526020600020905b81548152906001019060200180831161093457829003601f168201915b5050505050905090565b600061096682611dde565b61099c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601080546109e79061337f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a139061337f565b8015610a605780601f10610a3557610100808354040283529160200191610a60565b820191906000526020600020905b815481529060010190602001808311610a4357829003601f168201915b505050505081565b6000610a738261162c565b90508073ffffffffffffffffffffffffffffffffffffffff16610a94611e3d565b73ffffffffffffffffffffffffffffffffffffffff1614610af757610ac081610abb611e3d565b611ca4565b610af6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601160019054906101000a900460ff1681565b6000610bc9611e45565b6001546000540303905090565b6000610be182611e4e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c48576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c5484611f1c565b91509150610c6a8187610c65611e3d565b611f43565b610cb657610c7f86610c7a611e3d565b611ca4565b610cb5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d1d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d2a8686866001611f87565b8015610d3557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e0385610ddf888887611f8d565b7c020000000000000000000000000000000000000000000000000000000017611fb5565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e8b576000600185019050600060046000838152602001908152602001600020541415610e89576000548114610e88578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ef38686866001611fe0565b505050505050565b610f03611fe6565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f689061302b565b60405180910390fd5b60026009541415610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae906130ab565b60405180910390fd5b60026009819055506000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141561125557601160019054906101000a900460ff16611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d9061308b565b60405180910390fd5b600b5481611062610bbf565b61106c91906131e5565b11156110ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a49061304b565b60405180910390fd5b600c5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110fb91906131e5565b111561113c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611133906130cb565b60405180910390fd5b600d54600d548261114d919061323b565b6111579190613295565b341015611199576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111909061306b565b60405180910390fd5b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111e991906131e5565b9250508190555080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461123f91906131e5565b925050819055506112503382612030565b61143b565b601160019054906101000a900460ff166112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b9061308b565b60405180910390fd5b600b54816112b0610bbf565b6112ba91906131e5565b11156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f29061304b565b60405180910390fd5b600c5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134991906131e5565b111561138a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611381906130cb565b60405180910390fd5b600d5481611398919061323b565b3410156113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d19061306b565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461142991906131e5565b9250508190555061143a3382612030565b5b600160098190555050565b60136020528060005260406000206000915090505481565b61146661204e565b61146e6120cc565b565b61147861204e565b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b6114bf83838360405180602001604052806000815250611a22565b505050565b601160009054906101000a900460ff1681565b6114df61204e565b80600e90805190602001906114f5929190612767565b5050565b61150161204e565b60026009541415611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e906130ab565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b49061302b565b60405180910390fd5b6115c561173b565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561160a573d6000803e3d6000fd5b506001600981905550565b6000600a60009054906101000a900460ff16905090565b600061163782611e4e565b9050919050565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ac576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61170561204e565b61170f600061212f565b565b600c5481565b61171f61204e565b80600c8190555050565b61173161204e565b6117396121f5565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61176d61204e565b80600d8190555050565b6060600380546117869061337f565b80601f01602080910402602001604051908101604052809291908181526020018280546117b29061337f565b80156117ff5780601f106117d4576101008083540402835291602001916117ff565b820191906000526020600020905b8154815290600101906020018083116117e257829003601f168201915b5050505050905090565b8060076000611816611e3d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118c3611e3d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119089190612f4e565b60405180910390a35050565b61191c61204e565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146119b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ad9061302b565b60405180910390fd5b6119be61204e565b60026009541415611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb906130ab565b60405180910390fd5b6002600981905550611a168282612030565b60016009819055505050565b611a2d848484610bd6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a8f57611a5884848484612258565b611a8e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f8054611aa29061337f565b80601f0160208091040260200160405190810160405280929190818152602001828054611ace9061337f565b8015611b1b5780601f10611af057610100808354040283529160200191611b1b565b820191906000526020600020905b815481529060010190602001808311611afe57829003601f168201915b505050505081565b6060611b2e82611dde565b611b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b649061300b565b60405180910390fd5b60001515601160009054906101000a900460ff1615151415611c1b5760108054611b969061337f565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc29061337f565b8015611c0f5780601f10611be457610100808354040283529160200191611c0f565b820191906000526020600020905b815481529060010190602001808311611bf257829003601f168201915b50505050509050611c77565b6000611c256123b8565b90506000815111611c455760405180602001604052806000815250611c73565b80611c4f8461244a565b600f604051602001611c6393929190612eb6565b6040516020818303038152906040525b9150505b919050565b600b5481565b611c8a61204e565b80600f9080519060200190611ca0929190612767565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d4061204e565b8060109080519060200190611d56929190612767565b5050565b611d6261204e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc990612fab565b60405180910390fd5b611ddb8161212f565b50565b600081611de9611e45565b11158015611df8575060005482105b8015611e36575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611e5d611e45565b11611ee557600054811015611ee45760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ee2575b6000811415611ed8576004600083600190039350838152602001908152602001600020549050611ead565b8092505050611f17565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611fa48686846124a3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611fee611615565b1561202e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202590612fcb565b60405180910390fd5b565b61204a8282604051806020016040528060008152506124ac565b5050565b612056612549565b73ffffffffffffffffffffffffffffffffffffffff1661207461173b565b73ffffffffffffffffffffffffffffffffffffffff16146120ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c190612feb565b60405180910390fd5b565b6120d4612551565b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612118612549565b6040516121259190612ee7565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121fd611fe6565b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612241612549565b60405161224e9190612ee7565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261227e611e3d565b8786866040518563ffffffff1660e01b81526004016122a09493929190612f02565b602060405180830381600087803b1580156122ba57600080fd5b505af19250505080156122eb57506040513d601f19601f820116820180604052508101906122e89190612b43565b60015b612365573d806000811461231b576040519150601f19603f3d011682016040523d82523d6000602084013e612320565b606091505b5060008151141561235d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e80546123c79061337f565b80601f01602080910402602001604051908101604052809291908181526020018280546123f39061337f565b80156124405780601f1061241557610100808354040283529160200191612440565b820191906000526020600020905b81548152906001019060200180831161242357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561248e57600184039350600a81066030018453600a81049050806124895761248e565b612463565b50828103602084039350808452505050919050565b60009392505050565b6124b6838361259a565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461254457600080549050600083820390505b6124f66000868380600101945086612258565b61252c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124e357816000541461254157600080fd5b50505b505050565b600033905090565b612559611615565b612598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258f90612f8b565b60405180910390fd5b565b60008054905060008214156125db576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125e86000848385611f87565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061265f836126506000866000611f8d565b61265985612757565b17611fb5565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461270057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506126c5565b50600082141561273c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127526000848385611fe0565b505050565b60006001821460e11b9050919050565b8280546127739061337f565b90600052602060002090601f01602090048101928261279557600085556127dc565b82601f106127ae57805160ff19168380011785556127dc565b828001600101855582156127dc579182015b828111156127db5782518255916020019190600101906127c0565b5b5090506127e991906127ed565b5090565b5b808211156128065760008160009055506001016127ee565b5090565b600061281d6128188461312b565b613106565b90508281526020810184848401111561283957612838613474565b5b61284484828561333d565b509392505050565b600061285f61285a8461315c565b613106565b90508281526020810184848401111561287b5761287a613474565b5b61288684828561333d565b509392505050565b60008135905061289d816136c9565b92915050565b6000813590506128b2816136e0565b92915050565b6000813590506128c7816136f7565b92915050565b6000815190506128dc816136f7565b92915050565b600082601f8301126128f7576128f661346f565b5b813561290784826020860161280a565b91505092915050565b600082601f8301126129255761292461346f565b5b813561293584826020860161284c565b91505092915050565b60008135905061294d8161370e565b92915050565b6000602082840312156129695761296861347e565b5b60006129778482850161288e565b91505092915050565b600080604083850312156129975761299661347e565b5b60006129a58582860161288e565b92505060206129b68582860161288e565b9150509250929050565b6000806000606084860312156129d9576129d861347e565b5b60006129e78682870161288e565b93505060206129f88682870161288e565b9250506040612a098682870161293e565b9150509250925092565b60008060008060808587031215612a2d57612a2c61347e565b5b6000612a3b8782880161288e565b9450506020612a4c8782880161288e565b9350506040612a5d8782880161293e565b925050606085013567ffffffffffffffff811115612a7e57612a7d613479565b5b612a8a878288016128e2565b91505092959194509250565b60008060408385031215612aad57612aac61347e565b5b6000612abb8582860161288e565b9250506020612acc858286016128a3565b9150509250929050565b60008060408385031215612aed57612aec61347e565b5b6000612afb8582860161288e565b9250506020612b0c8582860161293e565b9150509250929050565b600060208284031215612b2c57612b2b61347e565b5b6000612b3a848285016128b8565b91505092915050565b600060208284031215612b5957612b5861347e565b5b6000612b67848285016128cd565b91505092915050565b600060208284031215612b8657612b8561347e565b5b600082013567ffffffffffffffff811115612ba457612ba3613479565b5b612bb084828501612910565b91505092915050565b600060208284031215612bcf57612bce61347e565b5b6000612bdd8482850161293e565b91505092915050565b612bef816132c9565b82525050565b612bfe816132db565b82525050565b6000612c0f826131a2565b612c1981856131b8565b9350612c2981856020860161334c565b612c3281613483565b840191505092915050565b6000612c48826131ad565b612c5281856131c9565b9350612c6281856020860161334c565b612c6b81613483565b840191505092915050565b6000612c81826131ad565b612c8b81856131da565b9350612c9b81856020860161334c565b80840191505092915050565b60008154612cb48161337f565b612cbe81866131da565b94506001821660008114612cd95760018114612cea57612d1d565b60ff19831686528186019350612d1d565b612cf38561318d565b60005b83811015612d1557815481890152600182019150602081019050612cf6565b838801955050505b50505092915050565b6000612d336014836131c9565b9150612d3e82613494565b602082019050919050565b6000612d566026836131c9565b9150612d61826134bd565b604082019050919050565b6000612d796010836131c9565b9150612d848261350c565b602082019050919050565b6000612d9c6020836131c9565b9150612da782613535565b602082019050919050565b6000612dbf602f836131c9565b9150612dca8261355e565b604082019050919050565b6000612de26034836131c9565b9150612ded826135ad565b604082019050919050565b6000612e056019836131c9565b9150612e10826135fc565b602082019050919050565b6000612e286015836131c9565b9150612e3382613625565b602082019050919050565b6000612e4b601f836131c9565b9150612e568261364e565b602082019050919050565b6000612e6e601f836131c9565b9150612e7982613677565b602082019050919050565b6000612e91601e836131c9565b9150612e9c826136a0565b602082019050919050565b612eb081613333565b82525050565b6000612ec28286612c76565b9150612ece8285612c76565b9150612eda8284612ca7565b9150819050949350505050565b6000602082019050612efc6000830184612be6565b92915050565b6000608082019050612f176000830187612be6565b612f246020830186612be6565b612f316040830185612ea7565b8181036060830152612f438184612c04565b905095945050505050565b6000602082019050612f636000830184612bf5565b92915050565b60006020820190508181036000830152612f838184612c3d565b905092915050565b60006020820190508181036000830152612fa481612d26565b9050919050565b60006020820190508181036000830152612fc481612d49565b9050919050565b60006020820190508181036000830152612fe481612d6c565b9050919050565b6000602082019050818103600083015261300481612d8f565b9050919050565b6000602082019050818103600083015261302481612db2565b9050919050565b6000602082019050818103600083015261304481612dd5565b9050919050565b6000602082019050818103600083015261306481612df8565b9050919050565b6000602082019050818103600083015261308481612e1b565b9050919050565b600060208201905081810360008301526130a481612e3e565b9050919050565b600060208201905081810360008301526130c481612e61565b9050919050565b600060208201905081810360008301526130e481612e84565b9050919050565b60006020820190506131006000830184612ea7565b92915050565b6000613110613121565b905061311c82826133b1565b919050565b6000604051905090565b600067ffffffffffffffff82111561314657613145613440565b5b61314f82613483565b9050602081019050919050565b600067ffffffffffffffff82111561317757613176613440565b5b61318082613483565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131f082613333565b91506131fb83613333565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132305761322f6133e2565b5b828201905092915050565b600061324682613333565b915061325183613333565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561328a576132896133e2565b5b828202905092915050565b60006132a082613333565b91506132ab83613333565b9250828210156132be576132bd6133e2565b5b828203905092915050565b60006132d482613313565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561336a57808201518184015260208101905061334f565b83811115613379576000848401525b50505050565b6000600282049050600182168061339757607f821691505b602082108114156133ab576133aa613411565b5b50919050565b6133ba82613483565b810181811067ffffffffffffffff821117156133d9576133d8613440565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4572726f723a2046756e6374696f6e2063616e6e6f742062652063616c6c656460008201527f20627920616e6f7468657220636f6e7472616374000000000000000000000000602082015250565b7f4572726f723a206d617820737570706c79207265616368656400000000000000600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f5075626c6963206d696e742069732063757272656e746c792070617573656400600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4572726f723a2043616e6e6f74206d696e74206d6f7265207468616e20380000600082015250565b6136d2816132c9565b81146136dd57600080fd5b50565b6136e9816132db565b81146136f457600080fd5b50565b613700816132e7565b811461370b57600080fd5b50565b61371781613333565b811461372257600080fd5b5056fea2646970667358221220f989574aa59b52354a065baabd740ef1c1a12112b74a97a8c7ff23e7c3fdc83664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5050544c70357347514351413836476b3265684e344a4c4367746547356e39644a5773616d57395a34346d532f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d657058395352564453316e4a736263337571534a6475456b66754c54576876777773557472744c577a774d582f68696464656e2e6a736f6e00000000
Deployed Bytecode
0x6080604052600436106102255760003560e01c806370a0823111610123578063a475b5dd116100ab578063d5abeb011161006f578063d5abeb0114610754578063da3ef23f1461077f578063e985e9c5146107a8578063f2c4ce1e146107e5578063f2fde38b1461080e57610225565b8063a475b5dd14610690578063add5a4fa146106a7578063b88d4fde146106d0578063c6682862146106ec578063c87b56dd1461071757610225565b80638456cb59116100f25780638456cb59146105d15780638da5cb5b146105e857806391b7f5ed1461061357806395d89b411461063c578063a22cb4651461066757610225565b806370a0823114610529578063715018a6146105665780637501f7411461057d5780637f00c7a6146105a857610225565b806337321ec8116101b157806355f804b31161017557806355f804b3146104565780635894945c1461047f5780635c975abb146104965780636352211e146104c15780636817c76c146104fe57610225565b806337321ec8146103a45780633f4ba83a146103e15780634047638d146103f857806342842e0e1461040f578063518302271461042b57610225565b8063095ea7b3116101f8578063095ea7b3146102fa5780630f4161aa1461031657806318160ddd1461034157806323b872dd1461036c5780632db115441461038857610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063081c8c44146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612b16565b610837565b60405161025e9190612f4e565b60405180910390f35b34801561027357600080fd5b5061027c6108c9565b6040516102899190612f69565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612bb9565b61095b565b6040516102c69190612ee7565b60405180910390f35b3480156102db57600080fd5b506102e46109da565b6040516102f19190612f69565b60405180910390f35b610314600480360381019061030f9190612ad6565b610a68565b005b34801561032257600080fd5b5061032b610bac565b6040516103389190612f4e565b60405180910390f35b34801561034d57600080fd5b50610356610bbf565b60405161036391906130eb565b60405180910390f35b610386600480360381019061038191906129c0565b610bd6565b005b6103a2600480360381019061039d9190612bb9565b610efb565b005b3480156103b057600080fd5b506103cb60048036038101906103c69190612953565b611446565b6040516103d891906130eb565b60405180910390f35b3480156103ed57600080fd5b506103f661145e565b005b34801561040457600080fd5b5061040d611470565b005b610429600480360381019061042491906129c0565b6114a4565b005b34801561043757600080fd5b506104406114c4565b60405161044d9190612f4e565b60405180910390f35b34801561046257600080fd5b5061047d60048036038101906104789190612b70565b6114d7565b005b34801561048b57600080fd5b506104946114f9565b005b3480156104a257600080fd5b506104ab611615565b6040516104b89190612f4e565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e39190612bb9565b61162c565b6040516104f59190612ee7565b60405180910390f35b34801561050a57600080fd5b5061051361163e565b60405161052091906130eb565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b9190612953565b611644565b60405161055d91906130eb565b60405180910390f35b34801561057257600080fd5b5061057b6116fd565b005b34801561058957600080fd5b50610592611711565b60405161059f91906130eb565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca9190612bb9565b611717565b005b3480156105dd57600080fd5b506105e6611729565b005b3480156105f457600080fd5b506105fd61173b565b60405161060a9190612ee7565b60405180910390f35b34801561061f57600080fd5b5061063a60048036038101906106359190612bb9565b611765565b005b34801561064857600080fd5b50610651611777565b60405161065e9190612f69565b60405180910390f35b34801561067357600080fd5b5061068e60048036038101906106899190612a96565b611809565b005b34801561069c57600080fd5b506106a5611914565b005b3480156106b357600080fd5b506106ce60048036038101906106c99190612ad6565b611948565b005b6106ea60048036038101906106e59190612a13565b611a22565b005b3480156106f857600080fd5b50610701611a95565b60405161070e9190612f69565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190612bb9565b611b23565b60405161074b9190612f69565b60405180910390f35b34801561076057600080fd5b50610769611c7c565b60405161077691906130eb565b60405180910390f35b34801561078b57600080fd5b506107a660048036038101906107a19190612b70565b611c82565b005b3480156107b457600080fd5b506107cf60048036038101906107ca9190612980565b611ca4565b6040516107dc9190612f4e565b60405180910390f35b3480156107f157600080fd5b5061080c60048036038101906108079190612b70565b611d38565b005b34801561081a57600080fd5b5061083560048036038101906108309190612953565b611d5a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108d89061337f565b80601f01602080910402602001604051908101604052809291908181526020018280546109049061337f565b80156109515780601f1061092657610100808354040283529160200191610951565b820191906000526020600020905b81548152906001019060200180831161093457829003601f168201915b5050505050905090565b600061096682611dde565b61099c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601080546109e79061337f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a139061337f565b8015610a605780601f10610a3557610100808354040283529160200191610a60565b820191906000526020600020905b815481529060010190602001808311610a4357829003601f168201915b505050505081565b6000610a738261162c565b90508073ffffffffffffffffffffffffffffffffffffffff16610a94611e3d565b73ffffffffffffffffffffffffffffffffffffffff1614610af757610ac081610abb611e3d565b611ca4565b610af6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601160019054906101000a900460ff1681565b6000610bc9611e45565b6001546000540303905090565b6000610be182611e4e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c48576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c5484611f1c565b91509150610c6a8187610c65611e3d565b611f43565b610cb657610c7f86610c7a611e3d565b611ca4565b610cb5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d1d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d2a8686866001611f87565b8015610d3557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e0385610ddf888887611f8d565b7c020000000000000000000000000000000000000000000000000000000017611fb5565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e8b576000600185019050600060046000838152602001908152602001600020541415610e89576000548114610e88578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ef38686866001611fe0565b505050505050565b610f03611fe6565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f689061302b565b60405180910390fd5b60026009541415610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae906130ab565b60405180910390fd5b60026009819055506000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141561125557601160019054906101000a900460ff16611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d9061308b565b60405180910390fd5b600b5481611062610bbf565b61106c91906131e5565b11156110ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a49061304b565b60405180910390fd5b600c5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110fb91906131e5565b111561113c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611133906130cb565b60405180910390fd5b600d54600d548261114d919061323b565b6111579190613295565b341015611199576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111909061306b565b60405180910390fd5b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111e991906131e5565b9250508190555080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461123f91906131e5565b925050819055506112503382612030565b61143b565b601160019054906101000a900460ff166112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b9061308b565b60405180910390fd5b600b54816112b0610bbf565b6112ba91906131e5565b11156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f29061304b565b60405180910390fd5b600c5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134991906131e5565b111561138a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611381906130cb565b60405180910390fd5b600d5481611398919061323b565b3410156113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d19061306b565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461142991906131e5565b9250508190555061143a3382612030565b5b600160098190555050565b60136020528060005260406000206000915090505481565b61146661204e565b61146e6120cc565b565b61147861204e565b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b6114bf83838360405180602001604052806000815250611a22565b505050565b601160009054906101000a900460ff1681565b6114df61204e565b80600e90805190602001906114f5929190612767565b5050565b61150161204e565b60026009541415611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e906130ab565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b49061302b565b60405180910390fd5b6115c561173b565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561160a573d6000803e3d6000fd5b506001600981905550565b6000600a60009054906101000a900460ff16905090565b600061163782611e4e565b9050919050565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ac576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61170561204e565b61170f600061212f565b565b600c5481565b61171f61204e565b80600c8190555050565b61173161204e565b6117396121f5565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61176d61204e565b80600d8190555050565b6060600380546117869061337f565b80601f01602080910402602001604051908101604052809291908181526020018280546117b29061337f565b80156117ff5780601f106117d4576101008083540402835291602001916117ff565b820191906000526020600020905b8154815290600101906020018083116117e257829003601f168201915b5050505050905090565b8060076000611816611e3d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118c3611e3d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119089190612f4e565b60405180910390a35050565b61191c61204e565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146119b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ad9061302b565b60405180910390fd5b6119be61204e565b60026009541415611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb906130ab565b60405180910390fd5b6002600981905550611a168282612030565b60016009819055505050565b611a2d848484610bd6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a8f57611a5884848484612258565b611a8e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f8054611aa29061337f565b80601f0160208091040260200160405190810160405280929190818152602001828054611ace9061337f565b8015611b1b5780601f10611af057610100808354040283529160200191611b1b565b820191906000526020600020905b815481529060010190602001808311611afe57829003601f168201915b505050505081565b6060611b2e82611dde565b611b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b649061300b565b60405180910390fd5b60001515601160009054906101000a900460ff1615151415611c1b5760108054611b969061337f565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc29061337f565b8015611c0f5780601f10611be457610100808354040283529160200191611c0f565b820191906000526020600020905b815481529060010190602001808311611bf257829003601f168201915b50505050509050611c77565b6000611c256123b8565b90506000815111611c455760405180602001604052806000815250611c73565b80611c4f8461244a565b600f604051602001611c6393929190612eb6565b6040516020818303038152906040525b9150505b919050565b600b5481565b611c8a61204e565b80600f9080519060200190611ca0929190612767565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d4061204e565b8060109080519060200190611d56929190612767565b5050565b611d6261204e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc990612fab565b60405180910390fd5b611ddb8161212f565b50565b600081611de9611e45565b11158015611df8575060005482105b8015611e36575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611e5d611e45565b11611ee557600054811015611ee45760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ee2575b6000811415611ed8576004600083600190039350838152602001908152602001600020549050611ead565b8092505050611f17565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611fa48686846124a3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611fee611615565b1561202e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202590612fcb565b60405180910390fd5b565b61204a8282604051806020016040528060008152506124ac565b5050565b612056612549565b73ffffffffffffffffffffffffffffffffffffffff1661207461173b565b73ffffffffffffffffffffffffffffffffffffffff16146120ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c190612feb565b60405180910390fd5b565b6120d4612551565b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612118612549565b6040516121259190612ee7565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121fd611fe6565b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612241612549565b60405161224e9190612ee7565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261227e611e3d565b8786866040518563ffffffff1660e01b81526004016122a09493929190612f02565b602060405180830381600087803b1580156122ba57600080fd5b505af19250505080156122eb57506040513d601f19601f820116820180604052508101906122e89190612b43565b60015b612365573d806000811461231b576040519150601f19603f3d011682016040523d82523d6000602084013e612320565b606091505b5060008151141561235d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e80546123c79061337f565b80601f01602080910402602001604051908101604052809291908181526020018280546123f39061337f565b80156124405780601f1061241557610100808354040283529160200191612440565b820191906000526020600020905b81548152906001019060200180831161242357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561248e57600184039350600a81066030018453600a81049050806124895761248e565b612463565b50828103602084039350808452505050919050565b60009392505050565b6124b6838361259a565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461254457600080549050600083820390505b6124f66000868380600101945086612258565b61252c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124e357816000541461254157600080fd5b50505b505050565b600033905090565b612559611615565b612598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258f90612f8b565b60405180910390fd5b565b60008054905060008214156125db576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125e86000848385611f87565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061265f836126506000866000611f8d565b61265985612757565b17611fb5565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461270057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506126c5565b50600082141561273c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127526000848385611fe0565b505050565b60006001821460e11b9050919050565b8280546127739061337f565b90600052602060002090601f01602090048101928261279557600085556127dc565b82601f106127ae57805160ff19168380011785556127dc565b828001600101855582156127dc579182015b828111156127db5782518255916020019190600101906127c0565b5b5090506127e991906127ed565b5090565b5b808211156128065760008160009055506001016127ee565b5090565b600061281d6128188461312b565b613106565b90508281526020810184848401111561283957612838613474565b5b61284484828561333d565b509392505050565b600061285f61285a8461315c565b613106565b90508281526020810184848401111561287b5761287a613474565b5b61288684828561333d565b509392505050565b60008135905061289d816136c9565b92915050565b6000813590506128b2816136e0565b92915050565b6000813590506128c7816136f7565b92915050565b6000815190506128dc816136f7565b92915050565b600082601f8301126128f7576128f661346f565b5b813561290784826020860161280a565b91505092915050565b600082601f8301126129255761292461346f565b5b813561293584826020860161284c565b91505092915050565b60008135905061294d8161370e565b92915050565b6000602082840312156129695761296861347e565b5b60006129778482850161288e565b91505092915050565b600080604083850312156129975761299661347e565b5b60006129a58582860161288e565b92505060206129b68582860161288e565b9150509250929050565b6000806000606084860312156129d9576129d861347e565b5b60006129e78682870161288e565b93505060206129f88682870161288e565b9250506040612a098682870161293e565b9150509250925092565b60008060008060808587031215612a2d57612a2c61347e565b5b6000612a3b8782880161288e565b9450506020612a4c8782880161288e565b9350506040612a5d8782880161293e565b925050606085013567ffffffffffffffff811115612a7e57612a7d613479565b5b612a8a878288016128e2565b91505092959194509250565b60008060408385031215612aad57612aac61347e565b5b6000612abb8582860161288e565b9250506020612acc858286016128a3565b9150509250929050565b60008060408385031215612aed57612aec61347e565b5b6000612afb8582860161288e565b9250506020612b0c8582860161293e565b9150509250929050565b600060208284031215612b2c57612b2b61347e565b5b6000612b3a848285016128b8565b91505092915050565b600060208284031215612b5957612b5861347e565b5b6000612b67848285016128cd565b91505092915050565b600060208284031215612b8657612b8561347e565b5b600082013567ffffffffffffffff811115612ba457612ba3613479565b5b612bb084828501612910565b91505092915050565b600060208284031215612bcf57612bce61347e565b5b6000612bdd8482850161293e565b91505092915050565b612bef816132c9565b82525050565b612bfe816132db565b82525050565b6000612c0f826131a2565b612c1981856131b8565b9350612c2981856020860161334c565b612c3281613483565b840191505092915050565b6000612c48826131ad565b612c5281856131c9565b9350612c6281856020860161334c565b612c6b81613483565b840191505092915050565b6000612c81826131ad565b612c8b81856131da565b9350612c9b81856020860161334c565b80840191505092915050565b60008154612cb48161337f565b612cbe81866131da565b94506001821660008114612cd95760018114612cea57612d1d565b60ff19831686528186019350612d1d565b612cf38561318d565b60005b83811015612d1557815481890152600182019150602081019050612cf6565b838801955050505b50505092915050565b6000612d336014836131c9565b9150612d3e82613494565b602082019050919050565b6000612d566026836131c9565b9150612d61826134bd565b604082019050919050565b6000612d796010836131c9565b9150612d848261350c565b602082019050919050565b6000612d9c6020836131c9565b9150612da782613535565b602082019050919050565b6000612dbf602f836131c9565b9150612dca8261355e565b604082019050919050565b6000612de26034836131c9565b9150612ded826135ad565b604082019050919050565b6000612e056019836131c9565b9150612e10826135fc565b602082019050919050565b6000612e286015836131c9565b9150612e3382613625565b602082019050919050565b6000612e4b601f836131c9565b9150612e568261364e565b602082019050919050565b6000612e6e601f836131c9565b9150612e7982613677565b602082019050919050565b6000612e91601e836131c9565b9150612e9c826136a0565b602082019050919050565b612eb081613333565b82525050565b6000612ec28286612c76565b9150612ece8285612c76565b9150612eda8284612ca7565b9150819050949350505050565b6000602082019050612efc6000830184612be6565b92915050565b6000608082019050612f176000830187612be6565b612f246020830186612be6565b612f316040830185612ea7565b8181036060830152612f438184612c04565b905095945050505050565b6000602082019050612f636000830184612bf5565b92915050565b60006020820190508181036000830152612f838184612c3d565b905092915050565b60006020820190508181036000830152612fa481612d26565b9050919050565b60006020820190508181036000830152612fc481612d49565b9050919050565b60006020820190508181036000830152612fe481612d6c565b9050919050565b6000602082019050818103600083015261300481612d8f565b9050919050565b6000602082019050818103600083015261302481612db2565b9050919050565b6000602082019050818103600083015261304481612dd5565b9050919050565b6000602082019050818103600083015261306481612df8565b9050919050565b6000602082019050818103600083015261308481612e1b565b9050919050565b600060208201905081810360008301526130a481612e3e565b9050919050565b600060208201905081810360008301526130c481612e61565b9050919050565b600060208201905081810360008301526130e481612e84565b9050919050565b60006020820190506131006000830184612ea7565b92915050565b6000613110613121565b905061311c82826133b1565b919050565b6000604051905090565b600067ffffffffffffffff82111561314657613145613440565b5b61314f82613483565b9050602081019050919050565b600067ffffffffffffffff82111561317757613176613440565b5b61318082613483565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131f082613333565b91506131fb83613333565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132305761322f6133e2565b5b828201905092915050565b600061324682613333565b915061325183613333565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561328a576132896133e2565b5b828202905092915050565b60006132a082613333565b91506132ab83613333565b9250828210156132be576132bd6133e2565b5b828203905092915050565b60006132d482613313565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561336a57808201518184015260208101905061334f565b83811115613379576000848401525b50505050565b6000600282049050600182168061339757607f821691505b602082108114156133ab576133aa613411565b5b50919050565b6133ba82613483565b810181811067ffffffffffffffff821117156133d9576133d8613440565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4572726f723a2046756e6374696f6e2063616e6e6f742062652063616c6c656460008201527f20627920616e6f7468657220636f6e7472616374000000000000000000000000602082015250565b7f4572726f723a206d617820737570706c79207265616368656400000000000000600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f5075626c6963206d696e742069732063757272656e746c792070617573656400600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4572726f723a2043616e6e6f74206d696e74206d6f7265207468616e20380000600082015250565b6136d2816132c9565b81146136dd57600080fd5b50565b6136e9816132db565b81146136f457600080fd5b50565b613700816132e7565b811461370b57600080fd5b50565b61371781613333565b811461372257600080fd5b5056fea2646970667358221220f989574aa59b52354a065baabd740ef1c1a12112b74a97a8c7ff23e7c3fdc83664736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5050544c70357347514351413836476b3265684e344a4c4367746547356e39644a5773616d57395a34346d532f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d657058395352564453316e4a736263337571534a6475456b66754c54576876777773557472744c577a774d582f68696464656e2e6a736f6e00000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://gateway.pinata.cloud/ipfs/QmPPTLp5sGQCQA86Gk2ehN4JLCgteG5n9dJWsamW9Z44mS/
Arg [1] : _initNotRevealedUri (string): https://gateway.pinata.cloud/ipfs/QmepX9SRVDS1nJsbc3uqSJduEkfuLTWhvwwsUtrtLWzwMX/hidden.json
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [3] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [4] : 732f516d5050544c70357347514351413836476b3265684e344a4c4367746547
Arg [5] : 356e39644a5773616d57395a34346d532f000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000005c
Arg [7] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [8] : 732f516d657058395352564453316e4a736263337571534a6475456b66754c54
Arg [9] : 576876777773557472744c577a774d582f68696464656e2e6a736f6e00000000
Deployed Bytecode Sourcemap
60654:5171:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27411:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28313:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34804:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61028:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34237:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61158:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24064:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38443:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62420:1302;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61304:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65165:65;;;;;;;;;;;;;:::i;:::-;;64660:104;;;;;;;;;;;;;:::i;:::-;;41364:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61123:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65376:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65683:135;;;;;;;;;;;;;:::i;:::-;;8025:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29706:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60831:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25248:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5535:103;;;;;;;;;;;;;:::i;:::-;;60797:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64989:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65095:62;;;;;;;;;;;;;:::i;:::-;;4887:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64887:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28489:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35362:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64807:74;;;;;;;;;;;;;:::i;:::-;;62196:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42155:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60984:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64111:503;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60759:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65238:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35753:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65488:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5793:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27411:639;27496:4;27835:10;27820:25;;:11;:25;;;;:102;;;;27912:10;27897:25;;:11;:25;;;;27820:102;:179;;;;27989:10;27974:25;;:11;:25;;;;27820:179;27800:199;;27411:639;;;:::o;28313:100::-;28367:13;28400:5;28393:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28313:100;:::o;34804:218::-;34880:7;34905:16;34913:7;34905;:16::i;:::-;34900:64;;34930:34;;;;;;;;;;;;;;34900:64;34984:15;:24;35000:7;34984:24;;;;;;;;;;;:30;;;;;;;;;;;;34977:37;;34804:218;;;:::o;61028:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34237:408::-;34326:13;34342:16;34350:7;34342;:16::i;:::-;34326:32;;34398:5;34375:28;;:19;:17;:19::i;:::-;:28;;;34371:175;;34423:44;34440:5;34447:19;:17;:19::i;:::-;34423:16;:44::i;:::-;34418:128;;34495:35;;;;;;;;;;;;;;34418:128;34371:175;34591:2;34558:15;:24;34574:7;34558:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34629:7;34625:2;34609:28;;34618:5;34609:28;;;;;;;;;;;;34315:330;34237:408;;:::o;61158:37::-;;;;;;;;;;;;;:::o;24064:323::-;24125:7;24353:15;:13;:15::i;:::-;24338:12;;24322:13;;:28;:46;24315:53;;24064:323;:::o;38443:2825::-;38585:27;38615;38634:7;38615:18;:27::i;:::-;38585:57;;38700:4;38659:45;;38675:19;38659:45;;;38655:86;;38713:28;;;;;;;;;;;;;;38655:86;38755:27;38784:23;38811:35;38838:7;38811:26;:35::i;:::-;38754:92;;;;38946:68;38971:15;38988:4;38994:19;:17;:19::i;:::-;38946:24;:68::i;:::-;38941:180;;39034:43;39051:4;39057:19;:17;:19::i;:::-;39034:16;:43::i;:::-;39029:92;;39086:35;;;;;;;;;;;;;;39029:92;38941:180;39152:1;39138:16;;:2;:16;;;39134:52;;;39163:23;;;;;;;;;;;;;;39134:52;39199:43;39221:4;39227:2;39231:7;39240:1;39199:21;:43::i;:::-;39335:15;39332:160;;;39475:1;39454:19;39447:30;39332:160;39872:18;:24;39891:4;39872:24;;;;;;;;;;;;;;;;39870:26;;;;;;;;;;;;39941:18;:22;39960:2;39941:22;;;;;;;;;;;;;;;;39939:24;;;;;;;;;;;40263:146;40300:2;40349:45;40364:4;40370:2;40374:19;40349:14;:45::i;:::-;20463:8;40321:73;40263:18;:146::i;:::-;40234:17;:26;40252:7;40234:26;;;;;;;;;;;:175;;;;40580:1;20463:8;40529:19;:47;:52;40525:627;;;40602:19;40634:1;40624:7;:11;40602:33;;40791:1;40757:17;:30;40775:11;40757:30;;;;;;;;;;;;:35;40753:384;;;40895:13;;40880:11;:28;40876:242;;41075:19;41042:17;:30;41060:11;41042:30;;;;;;;;;;;:52;;;;40876:242;40753:384;40583:569;40525:627;41199:7;41195:2;41180:27;;41189:4;41180:27;;;;;;;;;;;;41218:42;41239:4;41245:2;41249:7;41258:1;41218:20;:42::i;:::-;38574:2694;;;38443:2825;;;:::o;62420:1302::-;7630:19;:17;:19::i;:::-;62102:10:::1;62089:23;;:9;:23;;;62081:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1:::2;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;62609:1:::3;62579:14;:26;62594:10;62579:26;;;;;;;;;;;;;;;;:31;62575:1140;;;62635:17;;;;;;;;;;;62627:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;62740:9;;62727;62711:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;62703:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;62847:7;;62833:9;62803:15;:27;62819:10;62803:27;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;62802:52;;62794:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;62952:9;;62939;;62927;:21;;;;:::i;:::-;62926:35;;;;:::i;:::-;62912:9;:50;;62904:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;63035:1;63005:14;:26;63020:10;63005:26;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;63082:9;63051:15;:27;63067:10;63051:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;63106:32;63116:10;63128:9;63106;:32::i;:::-;62575:1140;;;63258:17;;;;;;;;;;;63250:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;63363:9;;63350;63334:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;63326:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;63470:7;;63456:9;63426:15;:27;63442:10;63426:27;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;63425:52;;63417:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;63561:9;;63549;:21;;;;:::i;:::-;63535:9;:36;;63527:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;63645:9;63614:15;:27;63630:10;63614:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;63669:32;63679:10;63691:9;63669;:32::i;:::-;62575:1140;1768:1:::2;2722:7;:22;;;;62420:1302:::0;:::o;61304:49::-;;;;;;;;;;;;;;;;;:::o;65165:65::-;4773:13;:11;:13::i;:::-;65212:10:::1;:8;:10::i;:::-;65165:65::o:0;64660:104::-;4773:13;:11;:13::i;:::-;64739:17:::1;;;;;;;;;;;64738:18;64718:17;;:38;;;;;;;;;;;;;;;;;;64660:104::o:0;41364:193::-;41510:39;41527:4;41533:2;41537:7;41510:39;;;;;;;;;;;;:16;:39::i;:::-;41364:193;;;:::o;61123:28::-;;;;;;;;;;;;;:::o;65376:104::-;4773:13;:11;:13::i;:::-;65461:11:::1;65451:7;:21;;;;;;;;;;;;:::i;:::-;;65376:104:::0;:::o;65683:135::-;4773:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;62102:10:::2;62089:23;;:9;:23;;;62081:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;65770:7:::3;:5;:7::i;:::-;65762:25;;:48;65788:21;65762:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;1768:1:::1;2722:7;:22;;;;65683:135::o:0;8025:86::-;8072:4;8096:7;;;;;;;;;;;8089:14;;8025:86;:::o;29706:152::-;29778:7;29821:27;29840:7;29821:18;:27::i;:::-;29798:52;;29706:152;;;:::o;60831:38::-;;;;:::o;25248:233::-;25320:7;25361:1;25344:19;;:5;:19;;;25340:60;;;25372:28;;;;;;;;;;;;;;25340:60;19407:13;25418:18;:25;25437:5;25418:25;;;;;;;;;;;;;;;;:55;25411:62;;25248:233;;;:::o;5535:103::-;4773:13;:11;:13::i;:::-;5600:30:::1;5627:1;5600:18;:30::i;:::-;5535:103::o:0;60797:27::-;;;;:::o;64989:96::-;4773:13;:11;:13::i;:::-;65069:8:::1;65059:7;:18;;;;64989:96:::0;:::o;65095:62::-;4773:13;:11;:13::i;:::-;65141:8:::1;:6;:8::i;:::-;65095:62::o:0;4887:87::-;4933:7;4960:6;;;;;;;;;;;4953:13;;4887:87;:::o;64887:94::-;4773:13;:11;:13::i;:::-;64963:10:::1;64951:9;:22;;;;64887:94:::0;:::o;28489:104::-;28545:13;28578:7;28571:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28489:104;:::o;35362:234::-;35509:8;35457:18;:39;35476:19;:17;:19::i;:::-;35457:39;;;;;;;;;;;;;;;:49;35497:8;35457:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35569:8;35533:55;;35548:19;:17;:19::i;:::-;35533:55;;;35579:8;35533:55;;;;;;:::i;:::-;;;;;;;;35362:234;;:::o;64807:74::-;4773:13;:11;:13::i;:::-;64865:8:::1;;;;;;;;;;;64864:9;64853:8;;:20;;;;;;;;;;;;;;;;;;64807:74::o:0;62196:141::-;62102:10;62089:23;;:9;:23;;;62081:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;4773:13:::1;:11;:13::i;:::-;1812:1:::2;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;62301:28:::3;62311:8;62321:7;62301:9;:28::i;:::-;1768:1:::2;2722:7;:22;;;;62196:141:::0;;:::o;42155:407::-;42330:31;42343:4;42349:2;42353:7;42330:12;:31::i;:::-;42394:1;42376:2;:14;;;:19;42372:183;;42415:56;42446:4;42452:2;42456:7;42465:5;42415:30;:56::i;:::-;42410:145;;42499:40;;;;;;;;;;;;;;42410:145;42372:183;42155:407;;;;:::o;60984:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64111:503::-;64209:13;64244:16;64252:7;64244;:16::i;:::-;64236:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;64339:5;64327:17;;:8;;;;;;;;;;;:17;;;64324:283;;;64364:14;64357:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64324:283;64403:28;64434:10;:8;:10::i;:::-;64403:41;;64493:1;64468:14;64462:28;:32;:133;;;;;;;;;;;;;;;;;64530:14;64546:18;64556:7;64546:9;:18::i;:::-;64566:13;64513:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64462:133;64455:140;;;64111:503;;;;:::o;60759:31::-;;;;:::o;65238:130::-;4773:13;:11;:13::i;:::-;65343:17:::1;65327:13;:33;;;;;;;;;;;;:::i;:::-;;65238:130:::0;:::o;35753:164::-;35850:4;35874:18;:25;35893:5;35874:25;;;;;;;;;;;;;;;:35;35900:8;35874:35;;;;;;;;;;;;;;;;;;;;;;;;;35867:42;;35753:164;;;;:::o;65488:126::-;4773:13;:11;:13::i;:::-;65591:15:::1;65574:14;:32;;;;;;;;;;;;:::i;:::-;;65488:126:::0;:::o;5793:201::-;4773:13;:11;:13::i;:::-;5902:1:::1;5882:22;;:8;:22;;;;5874:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5958:28;5977:8;5958:18;:28::i;:::-;5793:201:::0;:::o;36175:282::-;36240:4;36296:7;36277:15;:13;:15::i;:::-;:26;;:66;;;;;36330:13;;36320:7;:23;36277:66;:153;;;;;36429:1;20183:8;36381:17;:26;36399:7;36381:26;;;;;;;;;;;;:44;:49;36277:153;36257:173;;36175:282;;;:::o;58483:105::-;58543:7;58570:10;58563:17;;58483:105;:::o;63965:101::-;64030:7;64057:1;64050:8;;63965:101;:::o;30861:1275::-;30928:7;30948:12;30963:7;30948:22;;31031:4;31012:15;:13;:15::i;:::-;:23;31008:1061;;31065:13;;31058:4;:20;31054:1015;;;31103:14;31120:17;:23;31138:4;31120:23;;;;;;;;;;;;31103:40;;31237:1;20183:8;31209:6;:24;:29;31205:845;;;31874:113;31891:1;31881:6;:11;31874:113;;;31934:17;:25;31952:6;;;;;;;31934:25;;;;;;;;;;;;31925:34;;31874:113;;;32020:6;32013:13;;;;;;31205:845;31080:989;31054:1015;31008:1061;32097:31;;;;;;;;;;;;;;30861:1275;;;;:::o;37338:485::-;37440:27;37469:23;37510:38;37551:15;:24;37567:7;37551:24;;;;;;;;;;;37510:65;;37728:18;37705:41;;37785:19;37779:26;37760:45;;37690:126;37338:485;;;:::o;36566:659::-;36715:11;36880:16;36873:5;36869:28;36860:37;;37040:16;37029:9;37025:32;37012:45;;37190:15;37179:9;37176:30;37168:5;37157:9;37154:20;37151:56;37141:66;;36566:659;;;;;:::o;43224:159::-;;;;;:::o;57792:311::-;57927:7;57947:16;20587:3;57973:19;:41;;57947:68;;20587:3;58041:31;58052:4;58058:2;58062:9;58041:10;:31::i;:::-;58033:40;;:62;;58026:69;;;57792:311;;;;;:::o;32684:450::-;32764:14;32932:16;32925:5;32921:28;32912:37;;33109:5;33095:11;33070:23;33066:41;33063:52;33056:5;33053:63;33043:73;;32684:450;;;;:::o;44048:158::-;;;;;:::o;8184:108::-;8255:8;:6;:8::i;:::-;8254:9;8246:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;8184:108::o;52315:112::-;52392:27;52402:2;52406:8;52392:27;;;;;;;;;;;;:9;:27::i;:::-;52315:112;;:::o;5052:132::-;5127:12;:10;:12::i;:::-;5116:23;;:7;:5;:7::i;:::-;:23;;;5108:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5052:132::o;8880:120::-;7889:16;:14;:16::i;:::-;8949:5:::1;8939:7;;:15;;;;;;;;;;;;;;;;;;8970:22;8979:12;:10;:12::i;:::-;8970:22;;;;;;:::i;:::-;;;;;;;;8880:120::o:0;6154:191::-;6228:16;6247:6;;;;;;;;;;;6228:25;;6273:8;6264:6;;:17;;;;;;;;;;;;;;;;;;6328:8;6297:40;;6318:8;6297:40;;;;;;;;;;;;6217:128;6154:191;:::o;8621:118::-;7630:19;:17;:19::i;:::-;8691:4:::1;8681:7;;:14;;;;;;;;;;;;;;;;;;8711:20;8718:12;:10;:12::i;:::-;8711:20;;;;;;:::i;:::-;;;;;;;;8621:118::o:0;44646:716::-;44809:4;44855:2;44830:45;;;44876:19;:17;:19::i;:::-;44897:4;44903:7;44912:5;44830:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44826:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45130:1;45113:6;:13;:18;45109:235;;;45159:40;;;;;;;;;;;;;;45109:235;45302:6;45296:13;45287:6;45283:2;45279:15;45272:38;44826:529;44999:54;;;44989:64;;;:6;:64;;;;44982:71;;;44646:716;;;;;;:::o;63781:108::-;63841:13;63874:7;63867:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63781:108;:::o;58690:1745::-;58755:17;59189:4;59182;59176:11;59172:22;59281:1;59275:4;59268:15;59356:4;59353:1;59349:12;59342:19;;59438:1;59433:3;59426:14;59542:3;59781:5;59763:428;59789:1;59763:428;;;59829:1;59824:3;59820:11;59813:18;;60000:2;59994:4;59990:13;59986:2;59982:22;59977:3;59969:36;60094:2;60088:4;60084:13;60076:21;;60161:4;60151:25;;60169:5;;60151:25;59763:428;;;59767:21;60230:3;60225;60221:13;60345:4;60340:3;60336:14;60329:21;;60410:6;60405:3;60398:19;58794:1634;;;58690:1745;;;:::o;57493:147::-;57630:6;57493:147;;;;;:::o;51542:689::-;51673:19;51679:2;51683:8;51673:5;:19::i;:::-;51752:1;51734:2;:14;;;:19;51730:483;;51774:11;51788:13;;51774:27;;51820:13;51842:8;51836:3;:14;51820:30;;51869:233;51900:62;51939:1;51943:2;51947:7;;;;;;51956:5;51900:30;:62::i;:::-;51895:167;;51998:40;;;;;;;;;;;;;;51895:167;52097:3;52089:5;:11;51869:233;;52184:3;52167:13;;:20;52163:34;;52189:8;;;52163:34;51755:458;;51730:483;51542:689;;;:::o;3438:98::-;3491:7;3518:10;3511:17;;3438:98;:::o;8369:108::-;8436:8;:6;:8::i;:::-;8428:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;8369:108::o;45824:2966::-;45897:20;45920:13;;45897:36;;45960:1;45948:8;:13;45944:44;;;45970:18;;;;;;;;;;;;;;45944:44;46001:61;46031:1;46035:2;46039:12;46053:8;46001:21;:61::i;:::-;46545:1;19545:2;46515:1;:26;;46514:32;46502:8;:45;46476:18;:22;46495:2;46476:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46824:139;46861:2;46915:33;46938:1;46942:2;46946:1;46915:14;:33::i;:::-;46882:30;46903:8;46882:20;:30::i;:::-;:66;46824:18;:139::i;:::-;46790:17;:31;46808:12;46790:31;;;;;;;;;;;:173;;;;46980:16;47011:11;47040:8;47025:12;:23;47011:37;;47561:16;47557:2;47553:25;47541:37;;47933:12;47893:8;47852:1;47790:25;47731:1;47670;47643:335;48304:1;48290:12;48286:20;48244:346;48345:3;48336:7;48333:16;48244:346;;48563:7;48553:8;48550:1;48523:25;48520:1;48517;48512:59;48398:1;48389:7;48385:15;48374:26;;48244:346;;;48248:77;48635:1;48623:8;:13;48619:45;;;48645:19;;;;;;;;;;;;;;48619:45;48697:3;48681:13;:19;;;;46250:2462;;48722:60;48751:1;48755:2;48759:12;48773:8;48722:20;:60::i;:::-;45886:2904;45824:2966;;:::o;33236:324::-;33306:14;33539:1;33529:8;33526:15;33500:24;33496:46;33486:56;;33236: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:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:::-;11021:3;11042:67;11106:2;11101:3;11042:67;:::i;:::-;11035:74;;11118:93;11207:3;11118:93;:::i;:::-;11236:2;11231:3;11227:12;11220:19;;10879:366;;;:::o;11251:::-;11393:3;11414:67;11478:2;11473:3;11414:67;:::i;:::-;11407:74;;11490:93;11579:3;11490:93;:::i;:::-;11608:2;11603:3;11599:12;11592:19;;11251:366;;;:::o;11623:::-;11765:3;11786:67;11850:2;11845:3;11786:67;:::i;:::-;11779:74;;11862:93;11951:3;11862:93;:::i;:::-;11980:2;11975:3;11971:12;11964:19;;11623:366;;;:::o;11995:::-;12137:3;12158:67;12222:2;12217:3;12158:67;:::i;:::-;12151:74;;12234:93;12323:3;12234:93;:::i;:::-;12352:2;12347:3;12343:12;12336:19;;11995:366;;;:::o;12367:::-;12509:3;12530:67;12594:2;12589:3;12530:67;:::i;:::-;12523:74;;12606:93;12695:3;12606:93;:::i;:::-;12724:2;12719:3;12715:12;12708:19;;12367:366;;;:::o;12739:::-;12881:3;12902:67;12966:2;12961:3;12902:67;:::i;:::-;12895:74;;12978:93;13067:3;12978:93;:::i;:::-;13096:2;13091:3;13087:12;13080:19;;12739:366;;;:::o;13111:::-;13253:3;13274:67;13338:2;13333:3;13274:67;:::i;:::-;13267:74;;13350:93;13439:3;13350:93;:::i;:::-;13468:2;13463:3;13459:12;13452:19;;13111:366;;;:::o;13483:118::-;13570:24;13588:5;13570:24;:::i;:::-;13565:3;13558:37;13483:118;;:::o;13607:589::-;13832:3;13854:95;13945:3;13936:6;13854:95;:::i;:::-;13847:102;;13966:95;14057:3;14048:6;13966:95;:::i;:::-;13959:102;;14078:92;14166:3;14157:6;14078:92;:::i;:::-;14071:99;;14187:3;14180:10;;13607:589;;;;;;:::o;14202:222::-;14295:4;14333:2;14322:9;14318:18;14310:26;;14346:71;14414:1;14403:9;14399:17;14390:6;14346:71;:::i;:::-;14202:222;;;;:::o;14430:640::-;14625:4;14663:3;14652:9;14648:19;14640:27;;14677:71;14745:1;14734:9;14730:17;14721:6;14677:71;:::i;:::-;14758:72;14826:2;14815:9;14811:18;14802:6;14758:72;:::i;:::-;14840;14908:2;14897:9;14893:18;14884:6;14840:72;:::i;:::-;14959:9;14953:4;14949:20;14944:2;14933:9;14929:18;14922:48;14987:76;15058:4;15049:6;14987:76;:::i;:::-;14979:84;;14430:640;;;;;;;:::o;15076:210::-;15163:4;15201:2;15190:9;15186:18;15178:26;;15214:65;15276:1;15265:9;15261:17;15252:6;15214:65;:::i;:::-;15076:210;;;;:::o;15292:313::-;15405:4;15443:2;15432:9;15428:18;15420:26;;15492:9;15486:4;15482:20;15478:1;15467:9;15463:17;15456:47;15520:78;15593:4;15584:6;15520:78;:::i;:::-;15512:86;;15292:313;;;;:::o;15611:419::-;15777:4;15815:2;15804:9;15800:18;15792:26;;15864:9;15858:4;15854:20;15850:1;15839:9;15835:17;15828:47;15892:131;16018:4;15892:131;:::i;:::-;15884:139;;15611:419;;;:::o;16036:::-;16202:4;16240:2;16229:9;16225:18;16217:26;;16289:9;16283:4;16279:20;16275:1;16264:9;16260:17;16253:47;16317:131;16443:4;16317:131;:::i;:::-;16309:139;;16036:419;;;:::o;16461:::-;16627:4;16665:2;16654:9;16650:18;16642:26;;16714:9;16708:4;16704:20;16700:1;16689:9;16685:17;16678:47;16742:131;16868:4;16742:131;:::i;:::-;16734:139;;16461:419;;;:::o;16886:::-;17052:4;17090:2;17079:9;17075:18;17067:26;;17139:9;17133:4;17129:20;17125:1;17114:9;17110:17;17103:47;17167:131;17293:4;17167:131;:::i;:::-;17159:139;;16886:419;;;:::o;17311:::-;17477:4;17515:2;17504:9;17500:18;17492:26;;17564:9;17558:4;17554:20;17550:1;17539:9;17535:17;17528:47;17592:131;17718:4;17592:131;:::i;:::-;17584:139;;17311:419;;;:::o;17736:::-;17902:4;17940:2;17929:9;17925:18;17917:26;;17989:9;17983:4;17979:20;17975:1;17964:9;17960:17;17953:47;18017:131;18143:4;18017:131;:::i;:::-;18009:139;;17736:419;;;:::o;18161:::-;18327:4;18365:2;18354:9;18350:18;18342:26;;18414:9;18408:4;18404:20;18400:1;18389:9;18385:17;18378:47;18442:131;18568:4;18442:131;:::i;:::-;18434:139;;18161:419;;;:::o;18586:::-;18752:4;18790:2;18779:9;18775:18;18767:26;;18839:9;18833:4;18829:20;18825:1;18814:9;18810:17;18803:47;18867:131;18993:4;18867:131;:::i;:::-;18859:139;;18586:419;;;:::o;19011:::-;19177:4;19215:2;19204:9;19200:18;19192:26;;19264:9;19258:4;19254:20;19250:1;19239:9;19235:17;19228:47;19292:131;19418:4;19292:131;:::i;:::-;19284:139;;19011:419;;;:::o;19436:::-;19602:4;19640:2;19629:9;19625:18;19617:26;;19689:9;19683:4;19679:20;19675:1;19664:9;19660:17;19653:47;19717:131;19843:4;19717:131;:::i;:::-;19709:139;;19436:419;;;:::o;19861:::-;20027:4;20065:2;20054:9;20050:18;20042:26;;20114:9;20108:4;20104:20;20100:1;20089:9;20085:17;20078:47;20142:131;20268:4;20142:131;:::i;:::-;20134:139;;19861:419;;;:::o;20286:222::-;20379:4;20417:2;20406:9;20402:18;20394:26;;20430:71;20498:1;20487:9;20483:17;20474:6;20430:71;:::i;:::-;20286:222;;;;:::o;20514:129::-;20548:6;20575:20;;:::i;:::-;20565:30;;20604:33;20632:4;20624:6;20604:33;:::i;:::-;20514:129;;;:::o;20649:75::-;20682:6;20715:2;20709:9;20699:19;;20649:75;:::o;20730:307::-;20791:4;20881:18;20873:6;20870:30;20867:56;;;20903:18;;:::i;:::-;20867:56;20941:29;20963:6;20941:29;:::i;:::-;20933:37;;21025:4;21019;21015:15;21007:23;;20730:307;;;:::o;21043:308::-;21105:4;21195:18;21187:6;21184:30;21181:56;;;21217:18;;:::i;:::-;21181:56;21255:29;21277:6;21255:29;:::i;:::-;21247:37;;21339:4;21333;21329:15;21321:23;;21043:308;;;:::o;21357:141::-;21406:4;21429:3;21421:11;;21452:3;21449:1;21442:14;21486:4;21483:1;21473:18;21465:26;;21357:141;;;:::o;21504:98::-;21555:6;21589:5;21583:12;21573:22;;21504:98;;;:::o;21608:99::-;21660:6;21694:5;21688:12;21678:22;;21608:99;;;:::o;21713:168::-;21796:11;21830:6;21825:3;21818:19;21870:4;21865:3;21861:14;21846:29;;21713:168;;;;:::o;21887:169::-;21971:11;22005:6;22000:3;21993:19;22045:4;22040:3;22036:14;22021:29;;21887:169;;;;:::o;22062:148::-;22164:11;22201:3;22186:18;;22062:148;;;;:::o;22216:305::-;22256:3;22275:20;22293:1;22275:20;:::i;:::-;22270:25;;22309:20;22327:1;22309:20;:::i;:::-;22304:25;;22463:1;22395:66;22391:74;22388:1;22385:81;22382:107;;;22469:18;;:::i;:::-;22382:107;22513:1;22510;22506:9;22499:16;;22216:305;;;;:::o;22527:348::-;22567:7;22590:20;22608:1;22590:20;:::i;:::-;22585:25;;22624:20;22642:1;22624:20;:::i;:::-;22619:25;;22812:1;22744:66;22740:74;22737:1;22734:81;22729:1;22722:9;22715:17;22711:105;22708:131;;;22819:18;;:::i;:::-;22708:131;22867:1;22864;22860:9;22849:20;;22527:348;;;;:::o;22881:191::-;22921:4;22941:20;22959:1;22941:20;:::i;:::-;22936:25;;22975:20;22993:1;22975:20;:::i;:::-;22970:25;;23014:1;23011;23008:8;23005:34;;;23019:18;;:::i;:::-;23005:34;23064:1;23061;23057:9;23049:17;;22881:191;;;;:::o;23078:96::-;23115:7;23144:24;23162:5;23144:24;:::i;:::-;23133:35;;23078:96;;;:::o;23180:90::-;23214:7;23257:5;23250:13;23243:21;23232:32;;23180:90;;;:::o;23276:149::-;23312:7;23352:66;23345:5;23341:78;23330:89;;23276:149;;;:::o;23431:126::-;23468:7;23508:42;23501:5;23497:54;23486:65;;23431:126;;;:::o;23563:77::-;23600:7;23629:5;23618:16;;23563:77;;;:::o;23646:154::-;23730:6;23725:3;23720;23707:30;23792:1;23783:6;23778:3;23774:16;23767:27;23646:154;;;:::o;23806:307::-;23874:1;23884:113;23898:6;23895:1;23892:13;23884:113;;;23983:1;23978:3;23974:11;23968:18;23964:1;23959:3;23955:11;23948:39;23920:2;23917:1;23913:10;23908:15;;23884:113;;;24015:6;24012:1;24009:13;24006:101;;;24095:1;24086:6;24081:3;24077:16;24070:27;24006:101;23855:258;23806:307;;;:::o;24119:320::-;24163:6;24200:1;24194:4;24190:12;24180:22;;24247:1;24241:4;24237:12;24268:18;24258:81;;24324:4;24316:6;24312:17;24302:27;;24258:81;24386:2;24378:6;24375:14;24355:18;24352:38;24349:84;;;24405:18;;:::i;:::-;24349:84;24170:269;24119:320;;;:::o;24445:281::-;24528:27;24550:4;24528:27;:::i;:::-;24520:6;24516:40;24658:6;24646:10;24643:22;24622:18;24610:10;24607:34;24604:62;24601:88;;;24669:18;;:::i;:::-;24601:88;24709:10;24705:2;24698:22;24488:238;24445:281;;:::o;24732:180::-;24780:77;24777:1;24770:88;24877:4;24874:1;24867:15;24901:4;24898:1;24891:15;24918:180;24966:77;24963:1;24956:88;25063:4;25060:1;25053:15;25087:4;25084:1;25077:15;25104:180;25152:77;25149:1;25142:88;25249:4;25246:1;25239:15;25273:4;25270:1;25263:15;25290:117;25399:1;25396;25389:12;25413:117;25522:1;25519;25512:12;25536:117;25645:1;25642;25635:12;25659:117;25768:1;25765;25758:12;25782:102;25823:6;25874:2;25870:7;25865:2;25858:5;25854:14;25850:28;25840:38;;25782:102;;;:::o;25890:170::-;26030:22;26026:1;26018:6;26014:14;26007:46;25890:170;:::o;26066:225::-;26206:34;26202:1;26194:6;26190:14;26183:58;26275:8;26270:2;26262:6;26258:15;26251:33;26066:225;:::o;26297:166::-;26437:18;26433:1;26425:6;26421:14;26414:42;26297:166;:::o;26469:182::-;26609:34;26605:1;26597:6;26593:14;26586:58;26469:182;:::o;26657:234::-;26797:34;26793:1;26785:6;26781:14;26774:58;26866:17;26861:2;26853:6;26849:15;26842:42;26657:234;:::o;26897:239::-;27037:34;27033:1;27025:6;27021:14;27014:58;27106:22;27101:2;27093:6;27089:15;27082:47;26897:239;:::o;27142:175::-;27282:27;27278:1;27270:6;27266:14;27259:51;27142:175;:::o;27323:171::-;27463:23;27459:1;27451:6;27447:14;27440:47;27323:171;:::o;27500:181::-;27640:33;27636:1;27628:6;27624:14;27617:57;27500:181;:::o;27687:::-;27827:33;27823:1;27815:6;27811:14;27804:57;27687:181;:::o;27874:180::-;28014:32;28010:1;28002:6;27998:14;27991:56;27874:180;:::o;28060:122::-;28133:24;28151:5;28133:24;:::i;:::-;28126:5;28123:35;28113:63;;28172:1;28169;28162:12;28113:63;28060:122;:::o;28188:116::-;28258:21;28273:5;28258:21;:::i;:::-;28251:5;28248:32;28238:60;;28294:1;28291;28284:12;28238:60;28188:116;:::o;28310:120::-;28382:23;28399:5;28382:23;:::i;:::-;28375:5;28372:34;28362:62;;28420:1;28417;28410:12;28362:62;28310:120;:::o;28436:122::-;28509:24;28527:5;28509:24;:::i;:::-;28502:5;28499:35;28489:63;;28548:1;28545;28538:12;28489:63;28436:122;:::o
Swarm Source
ipfs://f989574aa59b52354a065baabd740ef1c1a12112b74a97a8c7ff23e7c3fdc836
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.