Feature Tip: Add private address tag to any address under My Name Tag !
Four_Immortals token contract has migrated to a new address.
ERC-721
Overview
Max Total Supply
237 four_immortals
Holders
34
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 four_immortalsLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
FILABIO
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-08 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.2 // 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(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * 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; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @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; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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.2 // 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 { // Reference type for token approval. 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 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 { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _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]`. 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 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 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 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. 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`. ) 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 0x80 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // 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/filabio.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.4; contract FILABIO is Ownable, ERC721A { uint256 constant public maxSupply = 10000; string public revealedURI = "ipfs:// ----IFPS---/"; bool public paused = true; bool public publicSale = true; uint256 public freecount = 1; mapping(address => uint256) public mintedWallets; // public sale start time is 2022/09/08 16:00:00(GMT+8) uint32 publicSaleStartTime = 1662624000; // uint32 publicSaleStartTime = 1662364800; // max mint count 25 uint256 MAX_MINT = 25; // whitelist price 0.08 ETH uint256 public whitelistPrice = 0.08 ether; // public price 0.1 ETH uint256 public publicPrice = 0.1 ether; // uint256 public publicPrice = 0; mapping(address => uint256) public freelist; mapping(address => uint256) public whitelist; string private _baseTokenUri; string public notRevealedURI; constructor( string memory _name, string memory _symbol, string memory _revealedURI ) ERC721A(_name, _symbol) { revealedURI = _revealedURI; _safeMint(msg.sender, 200); } function fimint(uint256 quantity) external payable mintCompliance(quantity) { require(maxSupply > totalSupply(), "sold out"); uint256 currMints = mintedWallets[msg.sender]; require(currMints + quantity <= MAX_MINT, "u wanna mint too many"); // freelist if (freelist[msg.sender] > 0) { require(freelist[msg.sender] > 0, "You are not in freelist"); require( block.timestamp >= publicSaleStartTime, "public sale not started. " ); require(quantity <= MAX_MINT, "Exceed max quantity per mint"); require(quantity <= freelist[msg.sender], "Exceed max quantity you can mint"); // free mint uint256 price = 0; require(msg.value >= checkPrice(price, quantity), "Value below price, need to pay more"); mintedWallets[msg.sender] = (currMints + quantity); _safeMint(msg.sender, quantity); refundIfOver(price); freelist[msg.sender] -= quantity; // whitelist } else if (whitelist[msg.sender] > 0) { require(whitelist[msg.sender] > 0, "You are not in whitelist"); require( block.timestamp >= publicSaleStartTime, "Whitelist sale not started. " ); require(quantity <= MAX_MINT, "Exceed max quantity per mint"); // require(quantity <= whitelist[msg.sender], "Exceed max quantity you can mint"); // white list mint uint256 price = uint256(whitelistPrice); require(msg.value >= checkPrice(price, quantity), "Value below price, need to pay more"); refundIfOver(price*quantity); mintedWallets[msg.sender] = (currMints + quantity); _safeMint(msg.sender, quantity); // whitelist[msg.sender] -= quantity; // public } else { // public mint uint256 price = uint256(publicPrice); require( block.timestamp >= publicSaleStartTime, "Public Sale not started. " ); require(msg.value >= checkPrice(price, quantity), "Value below price, need to pay more"); refundIfOver(price*quantity); mintedWallets[msg.sender] = (currMints + quantity); _safeMint(msg.sender, quantity); } } function refundIfOver(uint256 price) private { require(msg.value >= price, "Need to send more ETH."); if (msg.value > price) { payable(msg.sender).transfer(msg.value - price); } } function checkPrice(uint256 _price, uint _count) public pure returns (uint256) { return _price * _count; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } // Reveal Logic bool private _isRevealed = false; function revealCollection() public onlyOwner{ _isRevealed = true; } function _baseURI() internal view override returns (string memory) { return _baseTokenUri; } function setBaseUri(string memory _baseUri) external onlyOwner { _baseTokenUri = _baseUri; } function contractURI() public view returns (string memory) { return revealedURI; } function setPublicPrice(uint256 _publicPrice) public onlyOwner { publicPrice = _publicPrice; } function setBaseURI(string memory _baseUri) public onlyOwner { revealedURI = _baseUri; } function setContractURI(string memory _contractURI) public onlyOwner { revealedURI = _contractURI; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { // require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); if (_isRevealed == true){ return string(abi.encodePacked(revealedURI, Strings.toString(_tokenId), ".json")); } else { return string(abi.encodePacked(notRevealedURI, Strings.toString(1), ".json")); } } function setPaused(bool _state) public onlyOwner { paused = _state; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedURI = _notRevealedURI; } function mintToUser(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) { _safeMint(receiver, quantity); } // Withdraw function withdrawMoney() external onlyOwner { require(address(this).balance > 0, "No ether left to withdraw"); (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } // Address Functions function setWhitelist(address[] memory addresses, uint256[] memory numSlots) external onlyOwner { require( addresses.length == numSlots.length, "addresses does not match numSlots length"); for (uint256 i = 0; i < addresses.length; i++) { whitelist[addresses[i]] = numSlots[i]; } } function setFreelist(address[] memory addresses, uint256[] memory numSlots) external onlyOwner { require(addresses.length == numSlots.length, "addresses does not match numSlots length"); for (uint256 i = 0; i < addresses.length; i++) { freelist[addresses[i]] = numSlots[i]; } } function changePublicSaleTime(uint32 _newDate) public onlyOwner { publicSaleStartTime = _newDate; } modifier mintCompliance(uint256 quantity) { require(!paused, "Contract is paused"); require(totalSupply() + quantity <= maxSupply, "you cant become ugly anymore"); require(tx.origin == msg.sender, "No contract minting"); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_revealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_newDate","type":"uint32"}],"name":"changePublicSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"checkPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"fimint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freecount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedWallets","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"setFreelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280601481526020017f697066733a2f2f202d2d2d2d494650532d2d2d2f00000000000000000000000081525060099080519060200190620000519291906200074b565b506001600a60006101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff0219169083151502179055506001600b55636319a100600d60006101000a81548163ffffffff021916908363ffffffff1602179055506019600e5567011c37937e080000600f5567016345785d8a00006010556000601560006101000a81548160ff021916908315150217905550348015620000f757600080fd5b50604051620054c8380380620054c883398181016040528101906200011d9190620008c2565b82826200013f62000133620001be60201b60201c565b620001c660201b60201c565b8160039080519060200190620001579291906200074b565b508060049080519060200190620001709291906200074b565b50620001816200028a60201b60201c565b60018190555050508060099080519060200190620001a19291906200074b565b50620001b53360c86200028f60201b60201c565b50505062000c56565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b620002b1828260405180602001604052806000815250620002b560201b60201c565b5050565b620002c783836200036760201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14620003625760006001549050600083820390505b6200031160008683806001019450866200055160201b60201c565b62000348576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620002f65781600154146200035f57600080fd5b50505b505050565b600060015490506000821415620003aa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003bf6000848385620006c360201b60201c565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200044e83620004306000866000620006c960201b60201c565b6200044185620006f960201b60201c565b176200070960201b60201c565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114620004f157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050620004b4565b5060008214156200052e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506200054c60008483856200073460201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200057f6200073a60201b60201c565b8786866040518563ffffffff1660e01b8152600401620005a39493929190620009de565b602060405180830381600087803b158015620005be57600080fd5b505af1925050508015620005f257506040513d601f19601f82011682018060405250810190620005ef919062000890565b60015b62000670573d806000811462000625576040519150601f19603f3d011682016040523d82523d6000602084013e6200062a565b606091505b5060008151141562000668576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e8620006e88686846200074260201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b828054620007599062000b4d565b90600052602060002090601f0160209004810192826200077d5760008555620007c9565b82601f106200079857805160ff1916838001178555620007c9565b82800160010185558215620007c9579182015b82811115620007c8578251825591602001919060010190620007ab565b5b509050620007d89190620007dc565b5090565b5b80821115620007f7576000816000905550600101620007dd565b5090565b6000620008126200080c8462000a5b565b62000a32565b90508281526020810184848401111562000831576200083062000c1c565b5b6200083e84828562000b17565b509392505050565b600081519050620008578162000c3c565b92915050565b600082601f83011262000875576200087462000c17565b5b815162000887848260208601620007fb565b91505092915050565b600060208284031215620008a957620008a862000c26565b5b6000620008b98482850162000846565b91505092915050565b600080600060608486031215620008de57620008dd62000c26565b5b600084015167ffffffffffffffff811115620008ff57620008fe62000c21565b5b6200090d868287016200085d565b935050602084015167ffffffffffffffff81111562000931576200093062000c21565b5b6200093f868287016200085d565b925050604084015167ffffffffffffffff81111562000963576200096262000c21565b5b62000971868287016200085d565b9150509250925092565b620009868162000aad565b82525050565b6000620009998262000a91565b620009a5818562000a9c565b9350620009b781856020860162000b17565b620009c28162000c2b565b840191505092915050565b620009d88162000b0d565b82525050565b6000608082019050620009f560008301876200097b565b62000a0460208301866200097b565b62000a136040830185620009cd565b818103606083015262000a2781846200098c565b905095945050505050565b600062000a3e62000a51565b905062000a4c828262000b83565b919050565b6000604051905090565b600067ffffffffffffffff82111562000a795762000a7862000be8565b5b62000a848262000c2b565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000aba8262000aed565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b3757808201518184015260208101905062000b1a565b8381111562000b47576000848401525b50505050565b6000600282049050600182168062000b6657607f821691505b6020821081141562000b7d5762000b7c62000bb9565b5b50919050565b62000b8e8262000c2b565b810181811067ffffffffffffffff8211171562000bb05762000baf62000be8565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000c478162000ac1565b811462000c5357600080fd5b50565b6148628062000c666000396000f3fe6080604052600436106102675760003560e01c806390134eb711610144578063c6275255116100b6578063e985e9c51161007a578063e985e9c51461091d578063f013e0e11461095a578063f2c4ce1e14610983578063f2fde38b146109ac578063f7e8d6ea146109d5578063fc1a1c3614610a0057610267565b8063c627525514610845578063c87b56dd1461086e578063d5abeb01146108ab578063e3a1a5ad146108d6578063e8a3d485146108f257610267565b8063a0bcfc7f11610108578063a0bcfc7f1461074b578063a22cb46514610774578063a945bf801461079d578063ac446002146107c8578063ada7c4ed146107df578063b88d4fde1461081c57610267565b806390134eb714610666578063938e3d7b1461069157806395d89b41146106ba578063961613f0146106e55780639b19251a1461070e57610267565b8063438b6300116101dd57806370a08231116101a157806370a0823114610556578063715018a61461059357806372250380146105aa5780637227548b146105d55780638da5cb5b146106125780639007bd721461063d57610267565b8063438b63001461045f57806355f804b31461049c5780635c975abb146104c55780636352211e146104f05780636bb1d1861461052d57610267565b806318160ddd1161022f57806318160ddd1461036357806323b872dd1461038e57806332536eb4146103b757806333bc1c5c146103f457806340d0b4a91461041f57806342842e0e1461043657610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b31461031157806316c38b3c1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613513565b610a2b565b6040516102a09190613c10565b60405180910390f35b3480156102b557600080fd5b506102be610abd565b6040516102cb9190613c2b565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f691906135b6565b610b4f565b6040516103089190613b87565b60405180910390f35b34801561031d57600080fd5b506103386004803603810190610333919061342e565b610bce565b005b34801561034657600080fd5b50610361600480360381019061035c91906134e6565b610d12565b005b34801561036f57600080fd5b50610378610d37565b6040516103859190613ead565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190613318565b610d4e565b005b3480156103c357600080fd5b506103de60048036038101906103d99190613623565b611073565b6040516103eb9190613ead565b60405180910390f35b34801561040057600080fd5b50610409611089565b6040516104169190613c10565b60405180910390f35b34801561042b57600080fd5b5061043461109c565b005b34801561044257600080fd5b5061045d60048036038101906104589190613318565b6110c1565b005b34801561046b57600080fd5b50610486600480360381019061048191906132ab565b6110e1565b6040516104939190613bee565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be919061356d565b6111ec565b005b3480156104d157600080fd5b506104da61120e565b6040516104e79190613c10565b60405180910390f35b3480156104fc57600080fd5b50610517600480360381019061051291906135b6565b611221565b6040516105249190613b87565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190613663565b611233565b005b34801561056257600080fd5b5061057d600480360381019061057891906132ab565b61125f565b60405161058a9190613ead565b60405180910390f35b34801561059f57600080fd5b506105a8611318565b005b3480156105b657600080fd5b506105bf61132c565b6040516105cc9190613c2b565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f791906132ab565b6113ba565b6040516106099190613ead565b60405180910390f35b34801561061e57600080fd5b506106276113d2565b6040516106349190613b87565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f91906135e3565b6113fb565b005b34801561067257600080fd5b5061067b611528565b6040516106889190613ead565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b3919061356d565b61152e565b005b3480156106c657600080fd5b506106cf611550565b6040516106dc9190613c2b565b60405180910390f35b3480156106f157600080fd5b5061070c6004803603810190610707919061346e565b6115e2565b005b34801561071a57600080fd5b50610735600480360381019061073091906132ab565b6116ca565b6040516107429190613ead565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d919061356d565b6116e2565b005b34801561078057600080fd5b5061079b600480360381019061079691906133ee565b611704565b005b3480156107a957600080fd5b506107b261187c565b6040516107bf9190613ead565b60405180910390f35b3480156107d457600080fd5b506107dd611882565b005b3480156107eb57600080fd5b50610806600480360381019061080191906132ab565b61197c565b6040516108139190613ead565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e919061336b565b611994565b005b34801561085157600080fd5b5061086c600480360381019061086791906135b6565b611a07565b005b34801561087a57600080fd5b50610895600480360381019061089091906135b6565b611a19565b6040516108a29190613c2b565b60405180910390f35b3480156108b757600080fd5b506108c0611a9d565b6040516108cd9190613ead565b60405180910390f35b6108f060048036038101906108eb91906135b6565b611aa3565b005b3480156108fe57600080fd5b506109076122e3565b6040516109149190613c2b565b60405180910390f35b34801561092957600080fd5b50610944600480360381019061093f91906132d8565b612375565b6040516109519190613c10565b60405180910390f35b34801561096657600080fd5b50610981600480360381019061097c919061346e565b612409565b005b34801561098f57600080fd5b506109aa60048036038101906109a5919061356d565b6124f1565b005b3480156109b857600080fd5b506109d360048036038101906109ce91906132ab565b612513565b005b3480156109e157600080fd5b506109ea612597565b6040516109f79190613c2b565b60405180910390f35b348015610a0c57600080fd5b50610a15612625565b604051610a229190613ead565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610acc9061421e565b80601f0160208091040260200160405190810160405280929190818152602001828054610af89061421e565b8015610b455780601f10610b1a57610100808354040283529160200191610b45565b820191906000526020600020905b815481529060010190602001808311610b2857829003601f168201915b5050505050905090565b6000610b5a8261262b565b610b90576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bd982611221565b90508073ffffffffffffffffffffffffffffffffffffffff16610bfa61268a565b73ffffffffffffffffffffffffffffffffffffffff1614610c5d57610c2681610c2161268a565b612375565b610c5c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610d1a612692565b80600a60006101000a81548160ff02191690831515021790555050565b6000610d41612710565b6002546001540303905090565b6000610d5982612715565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dc0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610dcc846127e3565b91509150610de28187610ddd61268a565b61280a565b610e2e57610df786610df261268a565b612375565b610e2d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e95576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ea2868686600161284e565b8015610ead57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f7b85610f57888887612854565b7c02000000000000000000000000000000000000000000000000000000001761287c565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611003576000600185019050600060056000838152602001908152602001600020541415611001576001548114611000578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461106b86868660016128a7565b505050505050565b6000818361108191906140ca565b905092915050565b600a60019054906101000a900460ff1681565b6110a4612692565b6001601560006101000a81548160ff021916908315150217905550565b6110dc83838360405180602001604052806000815250611994565b505050565b606060006110ee8361125f565b905060008167ffffffffffffffff81111561110c5761110b6143b7565b5b60405190808252806020026020018201604052801561113a5781602001602082028036833780820191505090505b50905060006001905060005b838110801561115757506127108211155b156111e057600061116783611221565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111cc57828483815181106111b1576111b0614388565b5b60200260200101818152505081806111c890614281565b9250505b82806111d790614281565b93505050611146565b82945050505050919050565b6111f4612692565b806009908051906020019061120a929190612f6e565b5050565b600a60009054906101000a900460ff1681565b600061122c82612715565b9050919050565b61123b612692565b80600d60006101000a81548163ffffffff021916908363ffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112c7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611320612692565b61132a60006128ad565b565b601480546113399061421e565b80601f01602080910402602001604051908101604052809291908181526020018280546113659061421e565b80156113b25780601f10611387576101008083540402835291602001916113b2565b820191906000526020600020905b81548152906001019060200180831161139557829003601f168201915b505050505081565b60116020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611403612692565b81600a60009054906101000a900460ff1615611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b90613e6d565b60405180910390fd5b61271081611460610d37565b61146a9190614043565b11156114ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a290613c4d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090613ccd565b60405180910390fd5b6115238284612971565b505050565b600b5481565b611536612692565b806009908051906020019061154c929190612f6e565b5050565b60606004805461155f9061421e565b80601f016020809104026020016040519081016040528092919081815260200182805461158b9061421e565b80156115d85780601f106115ad576101008083540402835291602001916115d8565b820191906000526020600020905b8154815290600101906020018083116115bb57829003601f168201915b5050505050905090565b6115ea612692565b805182511461162e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162590613e8d565b60405180910390fd5b60005b82518110156116c55781818151811061164d5761164c614388565b5b60200260200101516011600085848151811061166c5761166b614388565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806116bd90614281565b915050611631565b505050565b60126020528060005260406000206000915090505481565b6116ea612692565b8060139080519060200190611700929190612f6e565b5050565b61170c61268a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611771576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061177e61268a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661182b61268a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118709190613c10565b60405180910390a35050565b60105481565b61188a612692565b600047116118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c490613dcd565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516118f390613b72565b60006040518083038185875af1925050503d8060008114611930576040519150601f19603f3d011682016040523d82523d6000602084013e611935565b606091505b5050905080611979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197090613e2d565b60405180910390fd5b50565b600c6020528060005260406000206000915090505481565b61199f848484610d4e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a01576119ca8484848461298f565b611a00576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a0f612692565b8060108190555050565b606060011515601560009054906101000a900460ff1615151415611a69576009611a4283612aef565b604051602001611a53929190613b43565b6040516020818303038152906040529050611a98565b6014611a756001612aef565b604051602001611a86929190613b43565b60405160208183030381529060405290505b919050565b61271081565b80600a60009054906101000a900460ff1615611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb90613e6d565b60405180910390fd5b61271081611b00610d37565b611b0a9190614043565b1115611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4290613c4d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb090613ccd565b60405180910390fd5b611bc1610d37565b61271011611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb90613d2d565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e548382611c579190614043565b1115611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f90613d4d565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611f90576000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5990613d6d565b60405180910390fd5b600d60009054906101000a900463ffffffff1663ffffffff16421015611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db490613dad565b60405180910390fd5b600e54831115611e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df990613e0d565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054831115611e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7b90613ced565b60405180910390fd5b6000611e908185611073565b341015611ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec990613cad565b60405180910390fd5b8382611ede9190614043565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f2b3385612971565b611f3481612c50565b83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f839190614124565b92505081905550506122de565b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156121c0576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161205a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205190613d0d565b60405180910390fd5b600d60009054906101000a900463ffffffff1663ffffffff164210156120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ac90613c6d565b60405180910390fd5b600e548311156120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f190613e0d565b60405180910390fd5b6000600f54905061210b8185611073565b34101561214d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214490613cad565b60405180910390fd5b612161848261215c91906140ca565b612c50565b838261216d9190614043565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506121ba3385612971565b506122dd565b60006010549050600d60009054906101000a900463ffffffff1663ffffffff16421015612222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221990613d8d565b60405180910390fd5b61222c8185611073565b34101561226e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226590613cad565b60405180910390fd5b612282848261227d91906140ca565b612c50565b838261228e9190614043565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506122db3385612971565b505b5b505050565b6060600980546122f29061421e565b80601f016020809104026020016040519081016040528092919081815260200182805461231e9061421e565b801561236b5780601f106123405761010080835404028352916020019161236b565b820191906000526020600020905b81548152906001019060200180831161234e57829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612411612692565b8051825114612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c90613e8d565b60405180910390fd5b60005b82518110156124ec5781818151811061247457612473614388565b5b60200260200101516012600085848151811061249357612492614388565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806124e490614281565b915050612458565b505050565b6124f9612692565b806014908051906020019061250f929190612f6e565b5050565b61251b612692565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561258b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258290613c8d565b60405180910390fd5b612594816128ad565b50565b600980546125a49061421e565b80601f01602080910402602001604051908101604052809291908181526020018280546125d09061421e565b801561261d5780601f106125f25761010080835404028352916020019161261d565b820191906000526020600020905b81548152906001019060200180831161260057829003601f168201915b505050505081565b600f5481565b600081612636612710565b11158015612645575060015482105b8015612683575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b61269a612cf1565b73ffffffffffffffffffffffffffffffffffffffff166126b86113d2565b73ffffffffffffffffffffffffffffffffffffffff161461270e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270590613ded565b60405180910390fd5b565b600090565b60008082905080612724612710565b116127ac576001548110156127ab5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156127a9575b600081141561279f576005600083600190039350838152602001908152602001600020549050612774565b80925050506127de565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861286b868684612cf9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61298b828260405180602001604052806000815250612d02565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129b561268a565b8786866040518563ffffffff1660e01b81526004016129d79493929190613ba2565b602060405180830381600087803b1580156129f157600080fd5b505af1925050508015612a2257506040513d601f19601f82011682018060405250810190612a1f9190613540565b60015b612a9c573d8060008114612a52576040519150601f19603f3d011682016040523d82523d6000602084013e612a57565b606091505b50600081511415612a94576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612b37576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c4b565b600082905060005b60008214612b69578080612b5290614281565b915050600a82612b629190614099565b9150612b3f565b60008167ffffffffffffffff811115612b8557612b846143b7565b5b6040519080825280601f01601f191660200182016040528015612bb75781602001600182028036833780820191505090505b5090505b60008514612c4457600182612bd09190614124565b9150600a85612bdf91906142ca565b6030612beb9190614043565b60f81b818381518110612c0157612c00614388565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c3d9190614099565b9450612bbb565b8093505050505b919050565b80341015612c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8a90613e4d565b60405180910390fd5b80341115612cee573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612cc19190614124565b9081150290604051600060405180830381858888f19350505050158015612cec573d6000803e3d6000fd5b505b50565b600033905090565b60009392505050565b612d0c8383612da0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612d9b5760006001549050600083820390505b612d4d600086838060010194508661298f565b612d83576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612d3a578160015414612d9857600080fd5b50505b505050565b600060015490506000821415612de2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612def600084838561284e565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612e6683612e576000866000612854565b612e6085612f5e565b1761287c565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612f0757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612ecc565b506000821415612f43576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050612f5960008483856128a7565b505050565b60006001821460e11b9050919050565b828054612f7a9061421e565b90600052602060002090601f016020900481019282612f9c5760008555612fe3565b82601f10612fb557805160ff1916838001178555612fe3565b82800160010185558215612fe3579182015b82811115612fe2578251825591602001919060010190612fc7565b5b509050612ff09190612ff4565b5090565b5b8082111561300d576000816000905550600101612ff5565b5090565b600061302461301f84613eed565b613ec8565b90508083825260208201905082856020860282011115613047576130466143eb565b5b60005b85811015613077578161305d8882613175565b84526020840193506020830192505060018101905061304a565b5050509392505050565b600061309461308f84613f19565b613ec8565b905080838252602082019050828560208602820111156130b7576130b66143eb565b5b60005b858110156130e757816130cd8882613281565b8452602084019350602083019250506001810190506130ba565b5050509392505050565b60006131046130ff84613f45565b613ec8565b9050828152602081018484840111156131205761311f6143f0565b5b61312b8482856141dc565b509392505050565b600061314661314184613f76565b613ec8565b905082815260208101848484011115613162576131616143f0565b5b61316d8482856141dc565b509392505050565b600081359050613184816147b9565b92915050565b600082601f83011261319f5761319e6143e6565b5b81356131af848260208601613011565b91505092915050565b600082601f8301126131cd576131cc6143e6565b5b81356131dd848260208601613081565b91505092915050565b6000813590506131f5816147d0565b92915050565b60008135905061320a816147e7565b92915050565b60008151905061321f816147e7565b92915050565b600082601f83011261323a576132396143e6565b5b813561324a8482602086016130f1565b91505092915050565b600082601f830112613268576132676143e6565b5b8135613278848260208601613133565b91505092915050565b600081359050613290816147fe565b92915050565b6000813590506132a581614815565b92915050565b6000602082840312156132c1576132c06143fa565b5b60006132cf84828501613175565b91505092915050565b600080604083850312156132ef576132ee6143fa565b5b60006132fd85828601613175565b925050602061330e85828601613175565b9150509250929050565b600080600060608486031215613331576133306143fa565b5b600061333f86828701613175565b935050602061335086828701613175565b925050604061336186828701613281565b9150509250925092565b60008060008060808587031215613385576133846143fa565b5b600061339387828801613175565b94505060206133a487828801613175565b93505060406133b587828801613281565b925050606085013567ffffffffffffffff8111156133d6576133d56143f5565b5b6133e287828801613225565b91505092959194509250565b60008060408385031215613405576134046143fa565b5b600061341385828601613175565b9250506020613424858286016131e6565b9150509250929050565b60008060408385031215613445576134446143fa565b5b600061345385828601613175565b925050602061346485828601613281565b9150509250929050565b60008060408385031215613485576134846143fa565b5b600083013567ffffffffffffffff8111156134a3576134a26143f5565b5b6134af8582860161318a565b925050602083013567ffffffffffffffff8111156134d0576134cf6143f5565b5b6134dc858286016131b8565b9150509250929050565b6000602082840312156134fc576134fb6143fa565b5b600061350a848285016131e6565b91505092915050565b600060208284031215613529576135286143fa565b5b6000613537848285016131fb565b91505092915050565b600060208284031215613556576135556143fa565b5b600061356484828501613210565b91505092915050565b600060208284031215613583576135826143fa565b5b600082013567ffffffffffffffff8111156135a1576135a06143f5565b5b6135ad84828501613253565b91505092915050565b6000602082840312156135cc576135cb6143fa565b5b60006135da84828501613281565b91505092915050565b600080604083850312156135fa576135f96143fa565b5b600061360885828601613281565b925050602061361985828601613175565b9150509250929050565b6000806040838503121561363a576136396143fa565b5b600061364885828601613281565b925050602061365985828601613281565b9150509250929050565b600060208284031215613679576136786143fa565b5b600061368784828501613296565b91505092915050565b600061369c8383613b25565b60208301905092915050565b6136b181614158565b82525050565b60006136c282613fcc565b6136cc8185613ffa565b93506136d783613fa7565b8060005b838110156137085781516136ef8882613690565b97506136fa83613fed565b9250506001810190506136db565b5085935050505092915050565b61371e8161416a565b82525050565b600061372f82613fd7565b613739818561400b565b93506137498185602086016141eb565b613752816143ff565b840191505092915050565b600061376882613fe2565b6137728185614027565b93506137828185602086016141eb565b61378b816143ff565b840191505092915050565b60006137a182613fe2565b6137ab8185614038565b93506137bb8185602086016141eb565b80840191505092915050565b600081546137d48161421e565b6137de8186614038565b945060018216600081146137f9576001811461380a5761383d565b60ff1983168652818601935061383d565b61381385613fb7565b60005b8381101561383557815481890152600182019150602081019050613816565b838801955050505b50505092915050565b6000613853601c83614027565b915061385e82614410565b602082019050919050565b6000613876601c83614027565b915061388182614439565b602082019050919050565b6000613899602683614027565b91506138a482614462565b604082019050919050565b60006138bc602383614027565b91506138c7826144b1565b604082019050919050565b60006138df601383614027565b91506138ea82614500565b602082019050919050565b6000613902602083614027565b915061390d82614529565b602082019050919050565b6000613925601883614027565b915061393082614552565b602082019050919050565b6000613948600883614027565b91506139538261457b565b602082019050919050565b600061396b601583614027565b9150613976826145a4565b602082019050919050565b600061398e601783614027565b9150613999826145cd565b602082019050919050565b60006139b1601983614027565b91506139bc826145f6565b602082019050919050565b60006139d4601983614027565b91506139df8261461f565b602082019050919050565b60006139f7601983614027565b9150613a0282614648565b602082019050919050565b6000613a1a600583614038565b9150613a2582614671565b600582019050919050565b6000613a3d602083614027565b9150613a488261469a565b602082019050919050565b6000613a60601c83614027565b9150613a6b826146c3565b602082019050919050565b6000613a8360008361401c565b9150613a8e826146ec565b600082019050919050565b6000613aa6601083614027565b9150613ab1826146ef565b602082019050919050565b6000613ac9601683614027565b9150613ad482614718565b602082019050919050565b6000613aec601283614027565b9150613af782614741565b602082019050919050565b6000613b0f602883614027565b9150613b1a8261476a565b604082019050919050565b613b2e816141c2565b82525050565b613b3d816141c2565b82525050565b6000613b4f82856137c7565b9150613b5b8284613796565b9150613b6682613a0d565b91508190509392505050565b6000613b7d82613a76565b9150819050919050565b6000602082019050613b9c60008301846136a8565b92915050565b6000608082019050613bb760008301876136a8565b613bc460208301866136a8565b613bd16040830185613b34565b8181036060830152613be38184613724565b905095945050505050565b60006020820190508181036000830152613c0881846136b7565b905092915050565b6000602082019050613c256000830184613715565b92915050565b60006020820190508181036000830152613c45818461375d565b905092915050565b60006020820190508181036000830152613c6681613846565b9050919050565b60006020820190508181036000830152613c8681613869565b9050919050565b60006020820190508181036000830152613ca68161388c565b9050919050565b60006020820190508181036000830152613cc6816138af565b9050919050565b60006020820190508181036000830152613ce6816138d2565b9050919050565b60006020820190508181036000830152613d06816138f5565b9050919050565b60006020820190508181036000830152613d2681613918565b9050919050565b60006020820190508181036000830152613d468161393b565b9050919050565b60006020820190508181036000830152613d668161395e565b9050919050565b60006020820190508181036000830152613d8681613981565b9050919050565b60006020820190508181036000830152613da6816139a4565b9050919050565b60006020820190508181036000830152613dc6816139c7565b9050919050565b60006020820190508181036000830152613de6816139ea565b9050919050565b60006020820190508181036000830152613e0681613a30565b9050919050565b60006020820190508181036000830152613e2681613a53565b9050919050565b60006020820190508181036000830152613e4681613a99565b9050919050565b60006020820190508181036000830152613e6681613abc565b9050919050565b60006020820190508181036000830152613e8681613adf565b9050919050565b60006020820190508181036000830152613ea681613b02565b9050919050565b6000602082019050613ec26000830184613b34565b92915050565b6000613ed2613ee3565b9050613ede8282614250565b919050565b6000604051905090565b600067ffffffffffffffff821115613f0857613f076143b7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f3457613f336143b7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f6057613f5f6143b7565b5b613f69826143ff565b9050602081019050919050565b600067ffffffffffffffff821115613f9157613f906143b7565b5b613f9a826143ff565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061404e826141c2565b9150614059836141c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561408e5761408d6142fb565b5b828201905092915050565b60006140a4826141c2565b91506140af836141c2565b9250826140bf576140be61432a565b5b828204905092915050565b60006140d5826141c2565b91506140e0836141c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614119576141186142fb565b5b828202905092915050565b600061412f826141c2565b915061413a836141c2565b92508282101561414d5761414c6142fb565b5b828203905092915050565b6000614163826141a2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156142095780820151818401526020810190506141ee565b83811115614218576000848401525b50505050565b6000600282049050600182168061423657607f821691505b6020821081141561424a57614249614359565b5b50919050565b614259826143ff565b810181811067ffffffffffffffff82111715614278576142776143b7565b5b80604052505050565b600061428c826141c2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142bf576142be6142fb565b5b600182019050919050565b60006142d5826141c2565b91506142e0836141c2565b9250826142f0576142ef61432a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f796f752063616e74206265636f6d652075676c7920616e796d6f726500000000600082015250565b7f57686974656c6973742073616c65206e6f7420737461727465642e2000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f56616c75652062656c6f772070726963652c206e65656420746f20706179206d60008201527f6f72650000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f457863656564206d6178207175616e7469747920796f752063616e206d696e74600082015250565b7f596f7520617265206e6f7420696e2077686974656c6973740000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f752077616e6e61206d696e7420746f6f206d616e790000000000000000000000600082015250565b7f596f7520617265206e6f7420696e20667265656c697374000000000000000000600082015250565b7f5075626c69632053616c65206e6f7420737461727465642e2000000000000000600082015250565b7f7075626c69632073616c65206e6f7420737461727465642e2000000000000000600082015250565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f457863656564206d6178207175616e7469747920706572206d696e7400000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f7460008201527f73206c656e677468000000000000000000000000000000000000000000000000602082015250565b6147c281614158565b81146147cd57600080fd5b50565b6147d98161416a565b81146147e457600080fd5b50565b6147f081614176565b81146147fb57600080fd5b50565b614807816141c2565b811461481257600080fd5b50565b61481e816141cc565b811461482957600080fd5b5056fea2646970667358221220aadd000a069606c8abaad54ad3fe10477f78b3d35dee64081e66dcd3204609fe64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e666f75725f696d6d6f7274616c73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e666f75725f696d6d6f7274616c73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c68747470733a2f2f64396a7164716b6c6d396c78362e636c6f756466726f6e742e6e65742f66696d6574612f0000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102675760003560e01c806390134eb711610144578063c6275255116100b6578063e985e9c51161007a578063e985e9c51461091d578063f013e0e11461095a578063f2c4ce1e14610983578063f2fde38b146109ac578063f7e8d6ea146109d5578063fc1a1c3614610a0057610267565b8063c627525514610845578063c87b56dd1461086e578063d5abeb01146108ab578063e3a1a5ad146108d6578063e8a3d485146108f257610267565b8063a0bcfc7f11610108578063a0bcfc7f1461074b578063a22cb46514610774578063a945bf801461079d578063ac446002146107c8578063ada7c4ed146107df578063b88d4fde1461081c57610267565b806390134eb714610666578063938e3d7b1461069157806395d89b41146106ba578063961613f0146106e55780639b19251a1461070e57610267565b8063438b6300116101dd57806370a08231116101a157806370a0823114610556578063715018a61461059357806372250380146105aa5780637227548b146105d55780638da5cb5b146106125780639007bd721461063d57610267565b8063438b63001461045f57806355f804b31461049c5780635c975abb146104c55780636352211e146104f05780636bb1d1861461052d57610267565b806318160ddd1161022f57806318160ddd1461036357806323b872dd1461038e57806332536eb4146103b757806333bc1c5c146103f457806340d0b4a91461041f57806342842e0e1461043657610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b31461031157806316c38b3c1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613513565b610a2b565b6040516102a09190613c10565b60405180910390f35b3480156102b557600080fd5b506102be610abd565b6040516102cb9190613c2b565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f691906135b6565b610b4f565b6040516103089190613b87565b60405180910390f35b34801561031d57600080fd5b506103386004803603810190610333919061342e565b610bce565b005b34801561034657600080fd5b50610361600480360381019061035c91906134e6565b610d12565b005b34801561036f57600080fd5b50610378610d37565b6040516103859190613ead565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190613318565b610d4e565b005b3480156103c357600080fd5b506103de60048036038101906103d99190613623565b611073565b6040516103eb9190613ead565b60405180910390f35b34801561040057600080fd5b50610409611089565b6040516104169190613c10565b60405180910390f35b34801561042b57600080fd5b5061043461109c565b005b34801561044257600080fd5b5061045d60048036038101906104589190613318565b6110c1565b005b34801561046b57600080fd5b50610486600480360381019061048191906132ab565b6110e1565b6040516104939190613bee565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be919061356d565b6111ec565b005b3480156104d157600080fd5b506104da61120e565b6040516104e79190613c10565b60405180910390f35b3480156104fc57600080fd5b50610517600480360381019061051291906135b6565b611221565b6040516105249190613b87565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190613663565b611233565b005b34801561056257600080fd5b5061057d600480360381019061057891906132ab565b61125f565b60405161058a9190613ead565b60405180910390f35b34801561059f57600080fd5b506105a8611318565b005b3480156105b657600080fd5b506105bf61132c565b6040516105cc9190613c2b565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f791906132ab565b6113ba565b6040516106099190613ead565b60405180910390f35b34801561061e57600080fd5b506106276113d2565b6040516106349190613b87565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f91906135e3565b6113fb565b005b34801561067257600080fd5b5061067b611528565b6040516106889190613ead565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b3919061356d565b61152e565b005b3480156106c657600080fd5b506106cf611550565b6040516106dc9190613c2b565b60405180910390f35b3480156106f157600080fd5b5061070c6004803603810190610707919061346e565b6115e2565b005b34801561071a57600080fd5b50610735600480360381019061073091906132ab565b6116ca565b6040516107429190613ead565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d919061356d565b6116e2565b005b34801561078057600080fd5b5061079b600480360381019061079691906133ee565b611704565b005b3480156107a957600080fd5b506107b261187c565b6040516107bf9190613ead565b60405180910390f35b3480156107d457600080fd5b506107dd611882565b005b3480156107eb57600080fd5b50610806600480360381019061080191906132ab565b61197c565b6040516108139190613ead565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e919061336b565b611994565b005b34801561085157600080fd5b5061086c600480360381019061086791906135b6565b611a07565b005b34801561087a57600080fd5b50610895600480360381019061089091906135b6565b611a19565b6040516108a29190613c2b565b60405180910390f35b3480156108b757600080fd5b506108c0611a9d565b6040516108cd9190613ead565b60405180910390f35b6108f060048036038101906108eb91906135b6565b611aa3565b005b3480156108fe57600080fd5b506109076122e3565b6040516109149190613c2b565b60405180910390f35b34801561092957600080fd5b50610944600480360381019061093f91906132d8565b612375565b6040516109519190613c10565b60405180910390f35b34801561096657600080fd5b50610981600480360381019061097c919061346e565b612409565b005b34801561098f57600080fd5b506109aa60048036038101906109a5919061356d565b6124f1565b005b3480156109b857600080fd5b506109d360048036038101906109ce91906132ab565b612513565b005b3480156109e157600080fd5b506109ea612597565b6040516109f79190613c2b565b60405180910390f35b348015610a0c57600080fd5b50610a15612625565b604051610a229190613ead565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610acc9061421e565b80601f0160208091040260200160405190810160405280929190818152602001828054610af89061421e565b8015610b455780601f10610b1a57610100808354040283529160200191610b45565b820191906000526020600020905b815481529060010190602001808311610b2857829003601f168201915b5050505050905090565b6000610b5a8261262b565b610b90576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bd982611221565b90508073ffffffffffffffffffffffffffffffffffffffff16610bfa61268a565b73ffffffffffffffffffffffffffffffffffffffff1614610c5d57610c2681610c2161268a565b612375565b610c5c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610d1a612692565b80600a60006101000a81548160ff02191690831515021790555050565b6000610d41612710565b6002546001540303905090565b6000610d5982612715565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dc0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610dcc846127e3565b91509150610de28187610ddd61268a565b61280a565b610e2e57610df786610df261268a565b612375565b610e2d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e95576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ea2868686600161284e565b8015610ead57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f7b85610f57888887612854565b7c02000000000000000000000000000000000000000000000000000000001761287c565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611003576000600185019050600060056000838152602001908152602001600020541415611001576001548114611000578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461106b86868660016128a7565b505050505050565b6000818361108191906140ca565b905092915050565b600a60019054906101000a900460ff1681565b6110a4612692565b6001601560006101000a81548160ff021916908315150217905550565b6110dc83838360405180602001604052806000815250611994565b505050565b606060006110ee8361125f565b905060008167ffffffffffffffff81111561110c5761110b6143b7565b5b60405190808252806020026020018201604052801561113a5781602001602082028036833780820191505090505b50905060006001905060005b838110801561115757506127108211155b156111e057600061116783611221565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111cc57828483815181106111b1576111b0614388565b5b60200260200101818152505081806111c890614281565b9250505b82806111d790614281565b93505050611146565b82945050505050919050565b6111f4612692565b806009908051906020019061120a929190612f6e565b5050565b600a60009054906101000a900460ff1681565b600061122c82612715565b9050919050565b61123b612692565b80600d60006101000a81548163ffffffff021916908363ffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112c7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611320612692565b61132a60006128ad565b565b601480546113399061421e565b80601f01602080910402602001604051908101604052809291908181526020018280546113659061421e565b80156113b25780601f10611387576101008083540402835291602001916113b2565b820191906000526020600020905b81548152906001019060200180831161139557829003601f168201915b505050505081565b60116020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611403612692565b81600a60009054906101000a900460ff1615611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b90613e6d565b60405180910390fd5b61271081611460610d37565b61146a9190614043565b11156114ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a290613c4d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090613ccd565b60405180910390fd5b6115238284612971565b505050565b600b5481565b611536612692565b806009908051906020019061154c929190612f6e565b5050565b60606004805461155f9061421e565b80601f016020809104026020016040519081016040528092919081815260200182805461158b9061421e565b80156115d85780601f106115ad576101008083540402835291602001916115d8565b820191906000526020600020905b8154815290600101906020018083116115bb57829003601f168201915b5050505050905090565b6115ea612692565b805182511461162e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162590613e8d565b60405180910390fd5b60005b82518110156116c55781818151811061164d5761164c614388565b5b60200260200101516011600085848151811061166c5761166b614388565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806116bd90614281565b915050611631565b505050565b60126020528060005260406000206000915090505481565b6116ea612692565b8060139080519060200190611700929190612f6e565b5050565b61170c61268a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611771576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061177e61268a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661182b61268a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118709190613c10565b60405180910390a35050565b60105481565b61188a612692565b600047116118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c490613dcd565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516118f390613b72565b60006040518083038185875af1925050503d8060008114611930576040519150601f19603f3d011682016040523d82523d6000602084013e611935565b606091505b5050905080611979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197090613e2d565b60405180910390fd5b50565b600c6020528060005260406000206000915090505481565b61199f848484610d4e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a01576119ca8484848461298f565b611a00576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a0f612692565b8060108190555050565b606060011515601560009054906101000a900460ff1615151415611a69576009611a4283612aef565b604051602001611a53929190613b43565b6040516020818303038152906040529050611a98565b6014611a756001612aef565b604051602001611a86929190613b43565b60405160208183030381529060405290505b919050565b61271081565b80600a60009054906101000a900460ff1615611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb90613e6d565b60405180910390fd5b61271081611b00610d37565b611b0a9190614043565b1115611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4290613c4d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb090613ccd565b60405180910390fd5b611bc1610d37565b61271011611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb90613d2d565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e548382611c579190614043565b1115611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f90613d4d565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611f90576000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5990613d6d565b60405180910390fd5b600d60009054906101000a900463ffffffff1663ffffffff16421015611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db490613dad565b60405180910390fd5b600e54831115611e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df990613e0d565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054831115611e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7b90613ced565b60405180910390fd5b6000611e908185611073565b341015611ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec990613cad565b60405180910390fd5b8382611ede9190614043565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f2b3385612971565b611f3481612c50565b83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f839190614124565b92505081905550506122de565b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156121c0576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161205a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205190613d0d565b60405180910390fd5b600d60009054906101000a900463ffffffff1663ffffffff164210156120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ac90613c6d565b60405180910390fd5b600e548311156120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f190613e0d565b60405180910390fd5b6000600f54905061210b8185611073565b34101561214d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214490613cad565b60405180910390fd5b612161848261215c91906140ca565b612c50565b838261216d9190614043565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506121ba3385612971565b506122dd565b60006010549050600d60009054906101000a900463ffffffff1663ffffffff16421015612222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221990613d8d565b60405180910390fd5b61222c8185611073565b34101561226e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226590613cad565b60405180910390fd5b612282848261227d91906140ca565b612c50565b838261228e9190614043565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506122db3385612971565b505b5b505050565b6060600980546122f29061421e565b80601f016020809104026020016040519081016040528092919081815260200182805461231e9061421e565b801561236b5780601f106123405761010080835404028352916020019161236b565b820191906000526020600020905b81548152906001019060200180831161234e57829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612411612692565b8051825114612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c90613e8d565b60405180910390fd5b60005b82518110156124ec5781818151811061247457612473614388565b5b60200260200101516012600085848151811061249357612492614388565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806124e490614281565b915050612458565b505050565b6124f9612692565b806014908051906020019061250f929190612f6e565b5050565b61251b612692565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561258b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258290613c8d565b60405180910390fd5b612594816128ad565b50565b600980546125a49061421e565b80601f01602080910402602001604051908101604052809291908181526020018280546125d09061421e565b801561261d5780601f106125f25761010080835404028352916020019161261d565b820191906000526020600020905b81548152906001019060200180831161260057829003601f168201915b505050505081565b600f5481565b600081612636612710565b11158015612645575060015482105b8015612683575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b61269a612cf1565b73ffffffffffffffffffffffffffffffffffffffff166126b86113d2565b73ffffffffffffffffffffffffffffffffffffffff161461270e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270590613ded565b60405180910390fd5b565b600090565b60008082905080612724612710565b116127ac576001548110156127ab5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156127a9575b600081141561279f576005600083600190039350838152602001908152602001600020549050612774565b80925050506127de565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861286b868684612cf9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61298b828260405180602001604052806000815250612d02565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129b561268a565b8786866040518563ffffffff1660e01b81526004016129d79493929190613ba2565b602060405180830381600087803b1580156129f157600080fd5b505af1925050508015612a2257506040513d601f19601f82011682018060405250810190612a1f9190613540565b60015b612a9c573d8060008114612a52576040519150601f19603f3d011682016040523d82523d6000602084013e612a57565b606091505b50600081511415612a94576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612b37576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c4b565b600082905060005b60008214612b69578080612b5290614281565b915050600a82612b629190614099565b9150612b3f565b60008167ffffffffffffffff811115612b8557612b846143b7565b5b6040519080825280601f01601f191660200182016040528015612bb75781602001600182028036833780820191505090505b5090505b60008514612c4457600182612bd09190614124565b9150600a85612bdf91906142ca565b6030612beb9190614043565b60f81b818381518110612c0157612c00614388565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c3d9190614099565b9450612bbb565b8093505050505b919050565b80341015612c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8a90613e4d565b60405180910390fd5b80341115612cee573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612cc19190614124565b9081150290604051600060405180830381858888f19350505050158015612cec573d6000803e3d6000fd5b505b50565b600033905090565b60009392505050565b612d0c8383612da0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612d9b5760006001549050600083820390505b612d4d600086838060010194508661298f565b612d83576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612d3a578160015414612d9857600080fd5b50505b505050565b600060015490506000821415612de2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612def600084838561284e565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612e6683612e576000866000612854565b612e6085612f5e565b1761287c565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612f0757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612ecc565b506000821415612f43576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050612f5960008483856128a7565b505050565b60006001821460e11b9050919050565b828054612f7a9061421e565b90600052602060002090601f016020900481019282612f9c5760008555612fe3565b82601f10612fb557805160ff1916838001178555612fe3565b82800160010185558215612fe3579182015b82811115612fe2578251825591602001919060010190612fc7565b5b509050612ff09190612ff4565b5090565b5b8082111561300d576000816000905550600101612ff5565b5090565b600061302461301f84613eed565b613ec8565b90508083825260208201905082856020860282011115613047576130466143eb565b5b60005b85811015613077578161305d8882613175565b84526020840193506020830192505060018101905061304a565b5050509392505050565b600061309461308f84613f19565b613ec8565b905080838252602082019050828560208602820111156130b7576130b66143eb565b5b60005b858110156130e757816130cd8882613281565b8452602084019350602083019250506001810190506130ba565b5050509392505050565b60006131046130ff84613f45565b613ec8565b9050828152602081018484840111156131205761311f6143f0565b5b61312b8482856141dc565b509392505050565b600061314661314184613f76565b613ec8565b905082815260208101848484011115613162576131616143f0565b5b61316d8482856141dc565b509392505050565b600081359050613184816147b9565b92915050565b600082601f83011261319f5761319e6143e6565b5b81356131af848260208601613011565b91505092915050565b600082601f8301126131cd576131cc6143e6565b5b81356131dd848260208601613081565b91505092915050565b6000813590506131f5816147d0565b92915050565b60008135905061320a816147e7565b92915050565b60008151905061321f816147e7565b92915050565b600082601f83011261323a576132396143e6565b5b813561324a8482602086016130f1565b91505092915050565b600082601f830112613268576132676143e6565b5b8135613278848260208601613133565b91505092915050565b600081359050613290816147fe565b92915050565b6000813590506132a581614815565b92915050565b6000602082840312156132c1576132c06143fa565b5b60006132cf84828501613175565b91505092915050565b600080604083850312156132ef576132ee6143fa565b5b60006132fd85828601613175565b925050602061330e85828601613175565b9150509250929050565b600080600060608486031215613331576133306143fa565b5b600061333f86828701613175565b935050602061335086828701613175565b925050604061336186828701613281565b9150509250925092565b60008060008060808587031215613385576133846143fa565b5b600061339387828801613175565b94505060206133a487828801613175565b93505060406133b587828801613281565b925050606085013567ffffffffffffffff8111156133d6576133d56143f5565b5b6133e287828801613225565b91505092959194509250565b60008060408385031215613405576134046143fa565b5b600061341385828601613175565b9250506020613424858286016131e6565b9150509250929050565b60008060408385031215613445576134446143fa565b5b600061345385828601613175565b925050602061346485828601613281565b9150509250929050565b60008060408385031215613485576134846143fa565b5b600083013567ffffffffffffffff8111156134a3576134a26143f5565b5b6134af8582860161318a565b925050602083013567ffffffffffffffff8111156134d0576134cf6143f5565b5b6134dc858286016131b8565b9150509250929050565b6000602082840312156134fc576134fb6143fa565b5b600061350a848285016131e6565b91505092915050565b600060208284031215613529576135286143fa565b5b6000613537848285016131fb565b91505092915050565b600060208284031215613556576135556143fa565b5b600061356484828501613210565b91505092915050565b600060208284031215613583576135826143fa565b5b600082013567ffffffffffffffff8111156135a1576135a06143f5565b5b6135ad84828501613253565b91505092915050565b6000602082840312156135cc576135cb6143fa565b5b60006135da84828501613281565b91505092915050565b600080604083850312156135fa576135f96143fa565b5b600061360885828601613281565b925050602061361985828601613175565b9150509250929050565b6000806040838503121561363a576136396143fa565b5b600061364885828601613281565b925050602061365985828601613281565b9150509250929050565b600060208284031215613679576136786143fa565b5b600061368784828501613296565b91505092915050565b600061369c8383613b25565b60208301905092915050565b6136b181614158565b82525050565b60006136c282613fcc565b6136cc8185613ffa565b93506136d783613fa7565b8060005b838110156137085781516136ef8882613690565b97506136fa83613fed565b9250506001810190506136db565b5085935050505092915050565b61371e8161416a565b82525050565b600061372f82613fd7565b613739818561400b565b93506137498185602086016141eb565b613752816143ff565b840191505092915050565b600061376882613fe2565b6137728185614027565b93506137828185602086016141eb565b61378b816143ff565b840191505092915050565b60006137a182613fe2565b6137ab8185614038565b93506137bb8185602086016141eb565b80840191505092915050565b600081546137d48161421e565b6137de8186614038565b945060018216600081146137f9576001811461380a5761383d565b60ff1983168652818601935061383d565b61381385613fb7565b60005b8381101561383557815481890152600182019150602081019050613816565b838801955050505b50505092915050565b6000613853601c83614027565b915061385e82614410565b602082019050919050565b6000613876601c83614027565b915061388182614439565b602082019050919050565b6000613899602683614027565b91506138a482614462565b604082019050919050565b60006138bc602383614027565b91506138c7826144b1565b604082019050919050565b60006138df601383614027565b91506138ea82614500565b602082019050919050565b6000613902602083614027565b915061390d82614529565b602082019050919050565b6000613925601883614027565b915061393082614552565b602082019050919050565b6000613948600883614027565b91506139538261457b565b602082019050919050565b600061396b601583614027565b9150613976826145a4565b602082019050919050565b600061398e601783614027565b9150613999826145cd565b602082019050919050565b60006139b1601983614027565b91506139bc826145f6565b602082019050919050565b60006139d4601983614027565b91506139df8261461f565b602082019050919050565b60006139f7601983614027565b9150613a0282614648565b602082019050919050565b6000613a1a600583614038565b9150613a2582614671565b600582019050919050565b6000613a3d602083614027565b9150613a488261469a565b602082019050919050565b6000613a60601c83614027565b9150613a6b826146c3565b602082019050919050565b6000613a8360008361401c565b9150613a8e826146ec565b600082019050919050565b6000613aa6601083614027565b9150613ab1826146ef565b602082019050919050565b6000613ac9601683614027565b9150613ad482614718565b602082019050919050565b6000613aec601283614027565b9150613af782614741565b602082019050919050565b6000613b0f602883614027565b9150613b1a8261476a565b604082019050919050565b613b2e816141c2565b82525050565b613b3d816141c2565b82525050565b6000613b4f82856137c7565b9150613b5b8284613796565b9150613b6682613a0d565b91508190509392505050565b6000613b7d82613a76565b9150819050919050565b6000602082019050613b9c60008301846136a8565b92915050565b6000608082019050613bb760008301876136a8565b613bc460208301866136a8565b613bd16040830185613b34565b8181036060830152613be38184613724565b905095945050505050565b60006020820190508181036000830152613c0881846136b7565b905092915050565b6000602082019050613c256000830184613715565b92915050565b60006020820190508181036000830152613c45818461375d565b905092915050565b60006020820190508181036000830152613c6681613846565b9050919050565b60006020820190508181036000830152613c8681613869565b9050919050565b60006020820190508181036000830152613ca68161388c565b9050919050565b60006020820190508181036000830152613cc6816138af565b9050919050565b60006020820190508181036000830152613ce6816138d2565b9050919050565b60006020820190508181036000830152613d06816138f5565b9050919050565b60006020820190508181036000830152613d2681613918565b9050919050565b60006020820190508181036000830152613d468161393b565b9050919050565b60006020820190508181036000830152613d668161395e565b9050919050565b60006020820190508181036000830152613d8681613981565b9050919050565b60006020820190508181036000830152613da6816139a4565b9050919050565b60006020820190508181036000830152613dc6816139c7565b9050919050565b60006020820190508181036000830152613de6816139ea565b9050919050565b60006020820190508181036000830152613e0681613a30565b9050919050565b60006020820190508181036000830152613e2681613a53565b9050919050565b60006020820190508181036000830152613e4681613a99565b9050919050565b60006020820190508181036000830152613e6681613abc565b9050919050565b60006020820190508181036000830152613e8681613adf565b9050919050565b60006020820190508181036000830152613ea681613b02565b9050919050565b6000602082019050613ec26000830184613b34565b92915050565b6000613ed2613ee3565b9050613ede8282614250565b919050565b6000604051905090565b600067ffffffffffffffff821115613f0857613f076143b7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f3457613f336143b7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f6057613f5f6143b7565b5b613f69826143ff565b9050602081019050919050565b600067ffffffffffffffff821115613f9157613f906143b7565b5b613f9a826143ff565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061404e826141c2565b9150614059836141c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561408e5761408d6142fb565b5b828201905092915050565b60006140a4826141c2565b91506140af836141c2565b9250826140bf576140be61432a565b5b828204905092915050565b60006140d5826141c2565b91506140e0836141c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614119576141186142fb565b5b828202905092915050565b600061412f826141c2565b915061413a836141c2565b92508282101561414d5761414c6142fb565b5b828203905092915050565b6000614163826141a2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156142095780820151818401526020810190506141ee565b83811115614218576000848401525b50505050565b6000600282049050600182168061423657607f821691505b6020821081141561424a57614249614359565b5b50919050565b614259826143ff565b810181811067ffffffffffffffff82111715614278576142776143b7565b5b80604052505050565b600061428c826141c2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142bf576142be6142fb565b5b600182019050919050565b60006142d5826141c2565b91506142e0836141c2565b9250826142f0576142ef61432a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f796f752063616e74206265636f6d652075676c7920616e796d6f726500000000600082015250565b7f57686974656c6973742073616c65206e6f7420737461727465642e2000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f56616c75652062656c6f772070726963652c206e65656420746f20706179206d60008201527f6f72650000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f457863656564206d6178207175616e7469747920796f752063616e206d696e74600082015250565b7f596f7520617265206e6f7420696e2077686974656c6973740000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f752077616e6e61206d696e7420746f6f206d616e790000000000000000000000600082015250565b7f596f7520617265206e6f7420696e20667265656c697374000000000000000000600082015250565b7f5075626c69632053616c65206e6f7420737461727465642e2000000000000000600082015250565b7f7075626c69632073616c65206e6f7420737461727465642e2000000000000000600082015250565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f457863656564206d6178207175616e7469747920706572206d696e7400000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f7460008201527f73206c656e677468000000000000000000000000000000000000000000000000602082015250565b6147c281614158565b81146147cd57600080fd5b50565b6147d98161416a565b81146147e457600080fd5b50565b6147f081614176565b81146147fb57600080fd5b50565b614807816141c2565b811461481257600080fd5b50565b61481e816141cc565b811461482957600080fd5b5056fea2646970667358221220aadd000a069606c8abaad54ad3fe10477f78b3d35dee64081e66dcd3204609fe64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e666f75725f696d6d6f7274616c73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e666f75725f696d6d6f7274616c73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c68747470733a2f2f64396a7164716b6c6d396c78362e636c6f756466726f6e742e6e65742f66696d6574612f0000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): four_immortals
Arg [1] : _symbol (string): four_immortals
Arg [2] : _revealedURI (string): https://d9jqdqklm9lx6.cloudfront.net/fimeta/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 666f75725f696d6d6f7274616c73000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [6] : 666f75725f696d6d6f7274616c73000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000002c
Arg [8] : 68747470733a2f2f64396a7164716b6c6d396c78362e636c6f756466726f6e74
Arg [9] : 2e6e65742f66696d6574612f0000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
57015:7705:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24525:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25427:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31910:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31351:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62965:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21178:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35617:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60878:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57196:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61758:79;;;;;;;;;;;;;:::i;:::-;;38530:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61006:684;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62293:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57164:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26820:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64330:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22362:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;;;;;;;;;;;:::i;:::-;;57872:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57734:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4625:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63198:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57232:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62403:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25603:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63995:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57784:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61959:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32468:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57647:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63369:253;;;;;;;;;;;;;:::i;:::-;;57267:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39313:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62177:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62525:432;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57059:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58141:2497;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62073:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32933:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63657:330;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63060:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57107:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57569:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24525:639;24610:4;24949:10;24934:25;;:11;:25;;;;:102;;;;25026:10;25011:25;;:11;:25;;;;24934:102;:179;;;;25103:10;25088:25;;:11;:25;;;;24934:179;24914:199;;24525:639;;;:::o;25427:100::-;25481:13;25514:5;25507:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25427:100;:::o;31910:218::-;31986:7;32011:16;32019:7;32011;:16::i;:::-;32006:64;;32036:34;;;;;;;;;;;;;;32006:64;32090:15;:24;32106:7;32090:24;;;;;;;;;;;:30;;;;;;;;;;;;32083:37;;31910:218;;;:::o;31351:400::-;31432:13;31448:16;31456:7;31448;:16::i;:::-;31432:32;;31504:5;31481:28;;:19;:17;:19::i;:::-;:28;;;31477:175;;31529:44;31546:5;31553:19;:17;:19::i;:::-;31529:16;:44::i;:::-;31524:128;;31601:35;;;;;;;;;;;;;;31524:128;31477:175;31697:2;31664:15;:24;31680:7;31664:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31735:7;31731:2;31715:28;;31724:5;31715:28;;;;;;;;;;;;31421:330;31351:400;;:::o;62965:83::-;4511:13;:11;:13::i;:::-;63034:6:::1;63025;;:15;;;;;;;;;;;;;;;;;;62965:83:::0;:::o;21178:323::-;21239:7;21467:15;:13;:15::i;:::-;21452:12;;21436:13;;:28;:46;21429:53;;21178:323;:::o;35617:2817::-;35751:27;35781;35800:7;35781:18;:27::i;:::-;35751:57;;35866:4;35825:45;;35841:19;35825:45;;;35821:86;;35879:28;;;;;;;;;;;;;;35821:86;35921:27;35950:23;35977:35;36004:7;35977:26;:35::i;:::-;35920:92;;;;36112:68;36137:15;36154:4;36160:19;:17;:19::i;:::-;36112:24;:68::i;:::-;36107:180;;36200:43;36217:4;36223:19;:17;:19::i;:::-;36200:16;:43::i;:::-;36195:92;;36252:35;;;;;;;;;;;;;;36195:92;36107:180;36318:1;36304:16;;:2;:16;;;36300:52;;;36329:23;;;;;;;;;;;;;;36300:52;36365:43;36387:4;36393:2;36397:7;36406:1;36365:21;:43::i;:::-;36501:15;36498:160;;;36641:1;36620:19;36613:30;36498:160;37038:18;:24;37057:4;37038:24;;;;;;;;;;;;;;;;37036:26;;;;;;;;;;;;37107:18;:22;37126:2;37107:22;;;;;;;;;;;;;;;;37105:24;;;;;;;;;;;37429:146;37466:2;37515:45;37530:4;37536:2;37540:19;37515:14;:45::i;:::-;17577:8;37487:73;37429:18;:146::i;:::-;37400:17;:26;37418:7;37400:26;;;;;;;;;;;:175;;;;37746:1;17577:8;37695:19;:47;:52;37691:627;;;37768:19;37800:1;37790:7;:11;37768:33;;37957:1;37923:17;:30;37941:11;37923:30;;;;;;;;;;;;:35;37919:384;;;38061:13;;38046:11;:28;38042:242;;38241:19;38208:17;:30;38226:11;38208:30;;;;;;;;;;;:52;;;;38042:242;37919:384;37749:569;37691:627;38365:7;38361:2;38346:27;;38355:4;38346:27;;;;;;;;;;;;38384:42;38405:4;38411:2;38415:7;38424:1;38384:20;:42::i;:::-;35740:2694;;;35617:2817;;;:::o;60878:120::-;60948:7;60984:6;60975;:15;;;;:::i;:::-;60968:22;;60878:120;;;;:::o;57196:29::-;;;;;;;;;;;;;:::o;61758:79::-;4511:13;:11;:13::i;:::-;61825:4:::1;61811:11;;:18;;;;;;;;;;;;;;;;;;61758:79::o:0;38530:185::-;38668:39;38685:4;38691:2;38695:7;38668:39;;;;;;;;;;;;:16;:39::i;:::-;38530:185;;;:::o;61006:684::-;61066:16;61100:23;61126:17;61136:6;61126:9;:17::i;:::-;61100:43;;61154:30;61201:15;61187:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61154:63;;61228:22;61253:1;61228:26;;61265:23;61305:345;61330:15;61312;:33;:64;;;;;57095:5;61349:14;:27;;61312:64;61305:345;;;61393:25;61421:23;61429:14;61421:7;:23::i;:::-;61393:51;;61484:6;61463:27;;:17;:27;;;61459:151;;;61544:14;61511:13;61525:15;61511:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;61577:17;;;;;:::i;:::-;;;;61459:151;61622:16;;;;;:::i;:::-;;;;61378:272;61305:345;;;61669:13;61662:20;;;;;;61006:684;;;:::o;62293:102::-;4511:13;:11;:13::i;:::-;62379:8:::1;62365:11;:22;;;;;;;;;;;;:::i;:::-;;62293:102:::0;:::o;57164:25::-;;;;;;;;;;;;;:::o;26820:152::-;26892:7;26935:27;26954:7;26935:18;:27::i;:::-;26912:52;;26820:152;;;:::o;64330:113::-;4511:13;:11;:13::i;:::-;64427:8:::1;64405:19;;:30;;;;;;;;;;;;;;;;;;64330:113:::0;:::o;22362:233::-;22434:7;22475:1;22458:19;;:5;:19;;;22454:60;;;22486:28;;;;;;;;;;;;;;22454:60;16521:13;22532:18;:25;22551:5;22532:25;;;;;;;;;;;;;;;;:55;22525:62;;22362:233;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;57872:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57734:43::-;;;;;;;;;;;;;;;;;:::o;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;63198:146::-;4511:13;:11;:13::i;:::-;63286:8:::1;64513:6;;;;;;;;;;;64512:7;64504:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;57095:5;64577:8;64561:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;64553:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;64663:10;64650:23;;:9;:23;;;64642:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;63307:29:::2;63317:8;63327;63307:9;:29::i;:::-;4535:1:::1;63198:146:::0;;:::o;57232:28::-;;;;:::o;62403:114::-;4511:13;:11;:13::i;:::-;62497:12:::1;62483:11;:26;;;;;;;;;;;;:::i;:::-;;62403:114:::0;:::o;25603:104::-;25659:13;25692:7;25685:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25603:104;:::o;63995:327::-;4511:13;:11;:13::i;:::-;64134:8:::1;:15;64114:9;:16;:35;64106:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;64210:9;64205:110;64229:9;:16;64225:1;:20;64205:110;;;64292:8;64301:1;64292:11;;;;;;;;:::i;:::-;;;;;;;;64267:8;:22;64276:9;64286:1;64276:12;;;;;;;;:::i;:::-;;;;;;;;64267:22;;;;;;;;;;;;;;;:36;;;;64247:3;;;;;:::i;:::-;;;;64205:110;;;;63995:327:::0;;:::o;57784:44::-;;;;;;;;;;;;;;;;;:::o;61959:106::-;4511:13;:11;:13::i;:::-;62049:8:::1;62033:13;:24;;;;;;;;;;;;:::i;:::-;;61959:106:::0;:::o;32468:308::-;32579:19;:17;:19::i;:::-;32567:31;;:8;:31;;;32563:61;;;32607:17;;;;;;;;;;;;;;32563:61;32689:8;32637:18;:39;32656:19;:17;:19::i;:::-;32637:39;;;;;;;;;;;;;;;:49;32677:8;32637:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32749:8;32713:55;;32728:19;:17;:19::i;:::-;32713:55;;;32759:8;32713:55;;;;;;:::i;:::-;;;;;;;;32468:308;;:::o;57647:38::-;;;;:::o;63369:253::-;4511:13;:11;:13::i;:::-;63457:1:::1;63433:21;:25;63425:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;63500:12;63518:10;:15;;63541:21;63518:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63499:68;;;63586:7;63578:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;63414:208;63369:253::o:0;57267:48::-;;;;;;;;;;;;;;;;;:::o;39313:399::-;39480:31;39493:4;39499:2;39503:7;39480:12;:31::i;:::-;39544:1;39526:2;:14;;;:19;39522:183;;39565:56;39596:4;39602:2;39606:7;39615:5;39565:30;:56::i;:::-;39560:145;;39649:40;;;;;;;;;;;;;;39560:145;39522:183;39313:399;;;;:::o;62177:108::-;4511:13;:11;:13::i;:::-;62265:12:::1;62251:11;:26;;;;62177:108:::0;:::o;62525:432::-;62591:13;62727:4;62712:19;;:11;;;;;;;;;;;:19;;;62708:242;;;62778:11;62791:26;62808:8;62791:16;:26::i;:::-;62761:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62747:81;;;;62708:242;62892:14;62908:19;62925:1;62908:16;:19::i;:::-;62875:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62861:77;;62525:432;;;;:::o;57059:41::-;57095:5;57059:41;:::o;58141:2497::-;58207:8;64513:6;;;;;;;;;;;64512:7;64504:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;57095:5;64577:8;64561:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;64553:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;64663:10;64650:23;;:9;:23;;;64642:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;58248:13:::1;:11;:13::i;:::-;57095:5;58236:25;58228:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;58285:17;58305:13;:25;58319:10;58305:25;;;;;;;;;;;;;;;;58285:45;;58373:8;;58361;58349:9;:20;;;;:::i;:::-;:32;;58341:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;58476:1;58453:8;:20;58462:10;58453:20;;;;;;;;;;;;;;;;:24;58449:2182;;;58525:1;58502:8;:20;58511:10;58502:20;;;;;;;;;;;;;;;;:24;58494:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;58614:19;;;;;;;;;;;58595:38;;:15;:38;;58569:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;58729:8;;58717;:20;;58709:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;58805:8;:20;58814:10;58805:20;;;;;;;;;;;;;;;;58793:8;:32;;58785:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;58917:13;58970:27;58981:5;58988:8;58970:10;:27::i;:::-;58957:9;:40;;58949:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;59095:8;59083:9;:20;;;;:::i;:::-;59054:13;:25;59068:10;59054:25;;;;;;;;;;;;;;;:50;;;;59119:31;59129:10;59141:8;59119:9;:31::i;:::-;59165:19;59178:5;59165:12;:19::i;:::-;59223:8;59199;:20;59208:10;59199:20;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;58479:786;58449:2182;;;59299:1;59275:9;:21;59285:10;59275:21;;;;;;;;;;;;;;;;:25;59271:1360;;;59349:1;59325:9;:21;59335:10;59325:21;;;;;;;;;;;;;;;;:25;59317:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;59439:19;;;;;;;;;;;59420:38;;:15;:38;;59394:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;59557:8;;59545;:20;;59537:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59741:13;59765:14;;59741:39;;59816:27;59827:5;59834:8;59816:10;:27::i;:::-;59803:9;:40;;59795:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;59898:28;59917:8;59911:5;:14;;;;:::i;:::-;59898:12;:28::i;:::-;59984:8;59972:9;:20;;;;:::i;:::-;59943:13;:25;59957:10;59943:25;;;;;;;;;;;;;;;:50;;;;60008:31;60018:10;60030:8;60008:9;:31::i;:::-;59302:833;59271:1360;;;60184:13;60208:11;;60184:36;;60280:19;;;;;;;;;;;60261:38;;:15;:38;;60235:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;60396:27;60407:5;60414:8;60396:10;:27::i;:::-;60383:9;:40;;60375:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;60478:28;60497:8;60491:5;:14;;;;:::i;:::-;60478:12;:28::i;:::-;60564:8;60552:9;:20;;;;:::i;:::-;60523:13;:25;60537:10;60523:25;;;;;;;;;;;;;;;:50;;;;60588:31;60598:10;60610:8;60588:9;:31::i;:::-;60141:490;59271:1360;58449:2182;58217:2421;58141:2497:::0;;:::o;62073:96::-;62117:13;62150:11;62143:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62073:96;:::o;32933:164::-;33030:4;33054:18;:25;33073:5;33054:25;;;;;;;;;;;;;;;:35;33080:8;33054:35;;;;;;;;;;;;;;;;;;;;;;;;;33047:42;;32933:164;;;;:::o;63657:330::-;4511:13;:11;:13::i;:::-;63798:8:::1;:15;63778:9;:16;:35;63769:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;63874:9;63869:111;63893:9;:16;63889:1;:20;63869:111;;;63957:8;63966:1;63957:11;;;;;;;;:::i;:::-;;;;;;;;63931:9;:23;63941:9;63951:1;63941:12;;;;;;;;:::i;:::-;;;;;;;;63931:23;;;;;;;;;;;;;;;:37;;;;63911:3;;;;;:::i;:::-;;;;63869:111;;;;63657:330:::0;;:::o;63060:126::-;4511:13;:11;:13::i;:::-;63163:15:::1;63146:14;:32;;;;;;;;;;;;:::i;:::-;;63060:126:::0;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;;;5612:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;57107:50::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57569:42::-;;;;:::o;33355:282::-;33420:4;33476:7;33457:15;:13;:15::i;:::-;:26;;:66;;;;;33510:13;;33500:7;:23;33457:66;:153;;;;;33609:1;17297:8;33561:17;:26;33579:7;33561:26;;;;;;;;;;;;:44;:49;33457:153;33437:173;;33355:282;;;:::o;55121:105::-;55181:7;55208:10;55201:17;;55121:105;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;20694:92::-;20750:7;20694:92;:::o;27975:1275::-;28042:7;28062:12;28077:7;28062:22;;28145:4;28126:15;:13;:15::i;:::-;:23;28122:1061;;28179:13;;28172:4;:20;28168:1015;;;28217:14;28234:17;:23;28252:4;28234:23;;;;;;;;;;;;28217:40;;28351:1;17297:8;28323:6;:24;:29;28319:845;;;28988:113;29005:1;28995:6;:11;28988:113;;;29048:17;:25;29066:6;;;;;;;29048:25;;;;;;;;;;;;29039:34;;28988:113;;;29134:6;29127:13;;;;;;28319:845;28194:989;28168:1015;28122:1061;29211:31;;;;;;;;;;;;;;27975:1275;;;;:::o;34518:479::-;34620:27;34649:23;34690:38;34731:15;:24;34747:7;34731:24;;;;;;;;;;;34690:65;;34902:18;34879:41;;34959:19;34953:26;34934:45;;34864:126;34518:479;;;:::o;33746:659::-;33895:11;34060:16;34053:5;34049:28;34040:37;;34220:16;34209:9;34205:32;34192:45;;34370:15;34359:9;34356:30;34348:5;34337:9;34334:20;34331:56;34321:66;;33746:659;;;;;:::o;40374:159::-;;;;;:::o;54430:311::-;54565:7;54585:16;17701:3;54611:19;:41;;54585:68;;17701:3;54679:31;54690:4;54696:2;54700:9;54679:10;:31::i;:::-;54671:40;;:62;;54664:69;;;54430:311;;;;;:::o;29798:450::-;29878:14;30046:16;30039:5;30035:28;30026:37;;30223:5;30209:11;30184:23;30180:41;30177:52;30170:5;30167:63;30157:73;;29798:450;;;;:::o;41198:158::-;;;;;:::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;48953:112::-;49030:27;49040:2;49044:8;49030:27;;;;;;;;;;;;:9;:27::i;:::-;48953:112;;:::o;41796:716::-;41959:4;42005:2;41980:45;;;42026:19;:17;:19::i;:::-;42047:4;42053:7;42062:5;41980:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41976:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42280:1;42263:6;:13;:18;42259:235;;;42309:40;;;;;;;;;;;;;;42259:235;42452:6;42446:13;42437:6;42433:2;42429:15;42422:38;41976:529;42149:54;;;42139:64;;;:6;:64;;;;42132:71;;;41796:716;;;;;;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;60646:224::-;60723:5;60710:9;:18;;60702:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;60782:5;60770:9;:17;60766:97;;;60812:10;60804:28;;:47;60845:5;60833:9;:17;;;;:::i;:::-;60804:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60766:97;60646:224;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;54131:147::-;54268:6;54131:147;;;;;:::o;48180:689::-;48311:19;48317:2;48321:8;48311:5;:19::i;:::-;48390:1;48372:2;:14;;;:19;48368:483;;48412:11;48426:13;;48412:27;;48458:13;48480:8;48474:3;:14;48458:30;;48507:233;48538:62;48577:1;48581:2;48585:7;;;;;;48594:5;48538:30;:62::i;:::-;48533:167;;48636:40;;;;;;;;;;;;;;48533:167;48735:3;48727:5;:11;48507:233;;48822:3;48805:13;;:20;48801:34;;48827:8;;;48801:34;48393:458;;48368:483;48180:689;;;:::o;42974:2454::-;43047:20;43070:13;;43047:36;;43110:1;43098:8;:13;43094:44;;;43120:18;;;;;;;;;;;;;;43094:44;43151:61;43181:1;43185:2;43189:12;43203:8;43151:21;:61::i;:::-;43695:1;16659:2;43665:1;:26;;43664:32;43652:8;:45;43626:18;:22;43645:2;43626:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43974:139;44011:2;44065:33;44088:1;44092:2;44096:1;44065:14;:33::i;:::-;44032:30;44053:8;44032:20;:30::i;:::-;:66;43974:18;:139::i;:::-;43940:17;:31;43958:12;43940:31;;;;;;;;;;;:173;;;;44130:16;44161:11;44190:8;44175:12;:23;44161:37;;44445:16;44441:2;44437:25;44425:37;;44817:12;44777:8;44736:1;44674:25;44615:1;44554;44527:335;44942:1;44928:12;44924:20;44882:346;44983:3;44974:7;44971:16;44882:346;;45201:7;45191:8;45188:1;45161:25;45158:1;45155;45150:59;45036:1;45027:7;45023:15;45012:26;;44882:346;;;44886:77;45273:1;45261:8;:13;45257:45;;;45283:19;;;;;;;;;;;;;;45257:45;45335:3;45319:13;:19;;;;43400:1950;;45360:60;45389:1;45393:2;45397:12;45411:8;45360:20;:60::i;:::-;43036:2392;42974:2454;;:::o;30350:324::-;30420:14;30653:1;30643:8;30640:15;30614:24;30610:46;30600:56;;30350:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:412::-;1991:5;2016:66;2032:49;2074:6;2032:49;:::i;:::-;2016:66;:::i;:::-;2007:75;;2105:6;2098:5;2091:21;2143:4;2136:5;2132:16;2181:3;2172:6;2167:3;2163:16;2160:25;2157:112;;;2188:79;;:::i;:::-;2157:112;2278:41;2312:6;2307:3;2302;2278:41;:::i;:::-;1997:328;1913:412;;;;;:::o;2331:139::-;2377:5;2415:6;2402:20;2393:29;;2431:33;2458:5;2431:33;:::i;:::-;2331:139;;;;:::o;2493:370::-;2564:5;2613:3;2606:4;2598:6;2594:17;2590:27;2580:122;;2621:79;;:::i;:::-;2580:122;2738:6;2725:20;2763:94;2853:3;2845:6;2838:4;2830:6;2826:17;2763:94;:::i;:::-;2754:103;;2570:293;2493:370;;;;:::o;2886:::-;2957:5;3006:3;2999:4;2991:6;2987:17;2983:27;2973:122;;3014:79;;:::i;:::-;2973:122;3131:6;3118:20;3156:94;3246:3;3238:6;3231:4;3223:6;3219:17;3156:94;:::i;:::-;3147:103;;2963:293;2886:370;;;;:::o;3262:133::-;3305:5;3343:6;3330:20;3321:29;;3359:30;3383:5;3359:30;:::i;:::-;3262:133;;;;:::o;3401:137::-;3446:5;3484:6;3471:20;3462:29;;3500:32;3526:5;3500:32;:::i;:::-;3401:137;;;;:::o;3544:141::-;3600:5;3631:6;3625:13;3616:22;;3647:32;3673:5;3647:32;:::i;:::-;3544:141;;;;:::o;3704:338::-;3759:5;3808:3;3801:4;3793:6;3789:17;3785:27;3775:122;;3816:79;;:::i;:::-;3775:122;3933:6;3920:20;3958:78;4032:3;4024:6;4017:4;4009:6;4005:17;3958:78;:::i;:::-;3949:87;;3765:277;3704:338;;;;:::o;4062:340::-;4118:5;4167:3;4160:4;4152:6;4148:17;4144:27;4134:122;;4175:79;;:::i;:::-;4134:122;4292:6;4279:20;4317:79;4392:3;4384:6;4377:4;4369:6;4365:17;4317:79;:::i;:::-;4308:88;;4124:278;4062:340;;;;:::o;4408:139::-;4454:5;4492:6;4479:20;4470:29;;4508:33;4535:5;4508:33;:::i;:::-;4408:139;;;;:::o;4553:137::-;4598:5;4636:6;4623:20;4614:29;;4652:32;4678:5;4652:32;:::i;:::-;4553:137;;;;:::o;4696:329::-;4755:6;4804:2;4792:9;4783:7;4779:23;4775:32;4772:119;;;4810:79;;:::i;:::-;4772:119;4930:1;4955:53;5000:7;4991:6;4980:9;4976:22;4955:53;:::i;:::-;4945:63;;4901:117;4696:329;;;;:::o;5031:474::-;5099:6;5107;5156:2;5144:9;5135:7;5131:23;5127:32;5124:119;;;5162:79;;:::i;:::-;5124:119;5282:1;5307:53;5352:7;5343:6;5332:9;5328:22;5307:53;:::i;:::-;5297:63;;5253:117;5409:2;5435:53;5480:7;5471:6;5460:9;5456:22;5435:53;:::i;:::-;5425:63;;5380:118;5031:474;;;;;:::o;5511:619::-;5588:6;5596;5604;5653:2;5641:9;5632:7;5628:23;5624:32;5621:119;;;5659:79;;:::i;:::-;5621:119;5779:1;5804:53;5849:7;5840:6;5829:9;5825:22;5804:53;:::i;:::-;5794:63;;5750:117;5906:2;5932:53;5977:7;5968:6;5957:9;5953:22;5932:53;:::i;:::-;5922:63;;5877:118;6034:2;6060:53;6105:7;6096:6;6085:9;6081:22;6060:53;:::i;:::-;6050:63;;6005:118;5511:619;;;;;:::o;6136:943::-;6231:6;6239;6247;6255;6304:3;6292:9;6283:7;6279:23;6275:33;6272:120;;;6311:79;;:::i;:::-;6272:120;6431:1;6456:53;6501:7;6492:6;6481:9;6477:22;6456:53;:::i;:::-;6446:63;;6402:117;6558:2;6584:53;6629:7;6620:6;6609:9;6605:22;6584:53;:::i;:::-;6574:63;;6529:118;6686:2;6712:53;6757:7;6748:6;6737:9;6733:22;6712:53;:::i;:::-;6702:63;;6657:118;6842:2;6831:9;6827:18;6814:32;6873:18;6865:6;6862:30;6859:117;;;6895:79;;:::i;:::-;6859:117;7000:62;7054:7;7045:6;7034:9;7030:22;7000:62;:::i;:::-;6990:72;;6785:287;6136:943;;;;;;;:::o;7085:468::-;7150:6;7158;7207:2;7195:9;7186:7;7182:23;7178:32;7175:119;;;7213:79;;:::i;:::-;7175:119;7333:1;7358:53;7403:7;7394:6;7383:9;7379:22;7358:53;:::i;:::-;7348:63;;7304:117;7460:2;7486:50;7528:7;7519:6;7508:9;7504:22;7486:50;:::i;:::-;7476:60;;7431:115;7085:468;;;;;:::o;7559:474::-;7627:6;7635;7684:2;7672:9;7663:7;7659:23;7655:32;7652:119;;;7690:79;;:::i;:::-;7652:119;7810:1;7835:53;7880:7;7871:6;7860:9;7856:22;7835:53;:::i;:::-;7825:63;;7781:117;7937:2;7963:53;8008:7;7999:6;7988:9;7984:22;7963:53;:::i;:::-;7953:63;;7908:118;7559:474;;;;;:::o;8039:894::-;8157:6;8165;8214:2;8202:9;8193:7;8189:23;8185:32;8182:119;;;8220:79;;:::i;:::-;8182:119;8368:1;8357:9;8353:17;8340:31;8398:18;8390:6;8387:30;8384:117;;;8420:79;;:::i;:::-;8384:117;8525:78;8595:7;8586:6;8575:9;8571:22;8525:78;:::i;:::-;8515:88;;8311:302;8680:2;8669:9;8665:18;8652:32;8711:18;8703:6;8700:30;8697:117;;;8733:79;;:::i;:::-;8697:117;8838:78;8908:7;8899:6;8888:9;8884:22;8838:78;:::i;:::-;8828:88;;8623:303;8039:894;;;;;:::o;8939:323::-;8995:6;9044:2;9032:9;9023:7;9019:23;9015:32;9012:119;;;9050:79;;:::i;:::-;9012:119;9170:1;9195:50;9237:7;9228:6;9217:9;9213:22;9195:50;:::i;:::-;9185:60;;9141:114;8939:323;;;;:::o;9268:327::-;9326:6;9375:2;9363:9;9354:7;9350:23;9346:32;9343:119;;;9381:79;;:::i;:::-;9343:119;9501:1;9526:52;9570:7;9561:6;9550:9;9546:22;9526:52;:::i;:::-;9516:62;;9472:116;9268:327;;;;:::o;9601:349::-;9670:6;9719:2;9707:9;9698:7;9694:23;9690:32;9687:119;;;9725:79;;:::i;:::-;9687:119;9845:1;9870:63;9925:7;9916:6;9905:9;9901:22;9870:63;:::i;:::-;9860:73;;9816:127;9601:349;;;;:::o;9956:509::-;10025:6;10074:2;10062:9;10053:7;10049:23;10045:32;10042:119;;;10080:79;;:::i;:::-;10042:119;10228:1;10217:9;10213:17;10200:31;10258:18;10250:6;10247:30;10244:117;;;10280:79;;:::i;:::-;10244:117;10385:63;10440:7;10431:6;10420:9;10416:22;10385:63;:::i;:::-;10375:73;;10171:287;9956:509;;;;:::o;10471:329::-;10530:6;10579:2;10567:9;10558:7;10554:23;10550:32;10547:119;;;10585:79;;:::i;:::-;10547:119;10705:1;10730:53;10775:7;10766:6;10755:9;10751:22;10730:53;:::i;:::-;10720:63;;10676:117;10471:329;;;;:::o;10806:474::-;10874:6;10882;10931:2;10919:9;10910:7;10906:23;10902:32;10899:119;;;10937:79;;:::i;:::-;10899:119;11057:1;11082:53;11127:7;11118:6;11107:9;11103:22;11082:53;:::i;:::-;11072:63;;11028:117;11184:2;11210:53;11255:7;11246:6;11235:9;11231:22;11210:53;:::i;:::-;11200:63;;11155:118;10806:474;;;;;:::o;11286:::-;11354:6;11362;11411:2;11399:9;11390:7;11386:23;11382:32;11379:119;;;11417:79;;:::i;:::-;11379:119;11537:1;11562:53;11607:7;11598:6;11587:9;11583:22;11562:53;:::i;:::-;11552:63;;11508:117;11664:2;11690:53;11735:7;11726:6;11715:9;11711:22;11690:53;:::i;:::-;11680:63;;11635:118;11286:474;;;;;:::o;11766:327::-;11824:6;11873:2;11861:9;11852:7;11848:23;11844:32;11841:119;;;11879:79;;:::i;:::-;11841:119;11999:1;12024:52;12068:7;12059:6;12048:9;12044:22;12024:52;:::i;:::-;12014:62;;11970:116;11766:327;;;;:::o;12099:179::-;12168:10;12189:46;12231:3;12223:6;12189:46;:::i;:::-;12267:4;12262:3;12258:14;12244:28;;12099:179;;;;:::o;12284:118::-;12371:24;12389:5;12371:24;:::i;:::-;12366:3;12359:37;12284:118;;:::o;12438:732::-;12557:3;12586:54;12634:5;12586:54;:::i;:::-;12656:86;12735:6;12730:3;12656:86;:::i;:::-;12649:93;;12766:56;12816:5;12766:56;:::i;:::-;12845:7;12876:1;12861:284;12886:6;12883:1;12880:13;12861:284;;;12962:6;12956:13;12989:63;13048:3;13033:13;12989:63;:::i;:::-;12982:70;;13075:60;13128:6;13075:60;:::i;:::-;13065:70;;12921:224;12908:1;12905;12901:9;12896:14;;12861:284;;;12865:14;13161:3;13154:10;;12562:608;;;12438:732;;;;:::o;13176:109::-;13257:21;13272:5;13257:21;:::i;:::-;13252:3;13245:34;13176:109;;:::o;13291:360::-;13377:3;13405:38;13437:5;13405:38;:::i;:::-;13459:70;13522:6;13517:3;13459:70;:::i;:::-;13452:77;;13538:52;13583:6;13578:3;13571:4;13564:5;13560:16;13538:52;:::i;:::-;13615:29;13637:6;13615:29;:::i;:::-;13610:3;13606:39;13599:46;;13381:270;13291:360;;;;:::o;13657:364::-;13745:3;13773:39;13806:5;13773:39;:::i;:::-;13828:71;13892:6;13887:3;13828:71;:::i;:::-;13821:78;;13908:52;13953:6;13948:3;13941:4;13934:5;13930:16;13908:52;:::i;:::-;13985:29;14007:6;13985:29;:::i;:::-;13980:3;13976:39;13969:46;;13749:272;13657:364;;;;:::o;14027:377::-;14133:3;14161:39;14194:5;14161:39;:::i;:::-;14216:89;14298:6;14293:3;14216:89;:::i;:::-;14209:96;;14314:52;14359:6;14354:3;14347:4;14340:5;14336:16;14314:52;:::i;:::-;14391:6;14386:3;14382:16;14375:23;;14137:267;14027:377;;;;:::o;14434:845::-;14537:3;14574:5;14568:12;14603:36;14629:9;14603:36;:::i;:::-;14655:89;14737:6;14732:3;14655:89;:::i;:::-;14648:96;;14775:1;14764:9;14760:17;14791:1;14786:137;;;;14937:1;14932:341;;;;14753:520;;14786:137;14870:4;14866:9;14855;14851:25;14846:3;14839:38;14906:6;14901:3;14897:16;14890:23;;14786:137;;14932:341;14999:38;15031:5;14999:38;:::i;:::-;15059:1;15073:154;15087:6;15084:1;15081:13;15073:154;;;15161:7;15155:14;15151:1;15146:3;15142:11;15135:35;15211:1;15202:7;15198:15;15187:26;;15109:4;15106:1;15102:12;15097:17;;15073:154;;;15256:6;15251:3;15247:16;15240:23;;14939:334;;14753:520;;14541:738;;14434:845;;;;:::o;15285:366::-;15427:3;15448:67;15512:2;15507:3;15448:67;:::i;:::-;15441:74;;15524:93;15613:3;15524:93;:::i;:::-;15642:2;15637:3;15633:12;15626:19;;15285:366;;;:::o;15657:::-;15799:3;15820:67;15884:2;15879:3;15820:67;:::i;:::-;15813:74;;15896:93;15985:3;15896:93;:::i;:::-;16014:2;16009:3;16005:12;15998:19;;15657:366;;;:::o;16029:::-;16171:3;16192:67;16256:2;16251:3;16192:67;:::i;:::-;16185:74;;16268:93;16357:3;16268:93;:::i;:::-;16386:2;16381:3;16377:12;16370:19;;16029:366;;;:::o;16401:::-;16543:3;16564:67;16628:2;16623:3;16564:67;:::i;:::-;16557:74;;16640:93;16729:3;16640:93;:::i;:::-;16758:2;16753:3;16749:12;16742:19;;16401:366;;;:::o;16773:::-;16915:3;16936:67;17000:2;16995:3;16936:67;:::i;:::-;16929:74;;17012:93;17101:3;17012:93;:::i;:::-;17130:2;17125:3;17121:12;17114:19;;16773:366;;;:::o;17145:::-;17287:3;17308:67;17372:2;17367:3;17308:67;:::i;:::-;17301:74;;17384:93;17473:3;17384:93;:::i;:::-;17502:2;17497:3;17493:12;17486:19;;17145:366;;;:::o;17517:::-;17659:3;17680:67;17744:2;17739:3;17680:67;:::i;:::-;17673:74;;17756:93;17845:3;17756:93;:::i;:::-;17874:2;17869:3;17865:12;17858:19;;17517:366;;;:::o;17889:365::-;18031:3;18052:66;18116:1;18111:3;18052:66;:::i;:::-;18045:73;;18127:93;18216:3;18127:93;:::i;:::-;18245:2;18240:3;18236:12;18229:19;;17889:365;;;:::o;18260:366::-;18402:3;18423:67;18487:2;18482:3;18423:67;:::i;:::-;18416:74;;18499:93;18588:3;18499:93;:::i;:::-;18617:2;18612:3;18608:12;18601:19;;18260:366;;;:::o;18632:::-;18774:3;18795:67;18859:2;18854:3;18795:67;:::i;:::-;18788:74;;18871:93;18960:3;18871:93;:::i;:::-;18989:2;18984:3;18980:12;18973:19;;18632:366;;;:::o;19004:::-;19146:3;19167:67;19231:2;19226:3;19167:67;:::i;:::-;19160:74;;19243:93;19332:3;19243:93;:::i;:::-;19361:2;19356:3;19352:12;19345:19;;19004:366;;;:::o;19376:::-;19518:3;19539:67;19603:2;19598:3;19539:67;:::i;:::-;19532:74;;19615:93;19704:3;19615:93;:::i;:::-;19733:2;19728:3;19724:12;19717:19;;19376:366;;;:::o;19748:::-;19890:3;19911:67;19975:2;19970:3;19911:67;:::i;:::-;19904:74;;19987:93;20076:3;19987:93;:::i;:::-;20105:2;20100:3;20096:12;20089:19;;19748:366;;;:::o;20120:400::-;20280:3;20301:84;20383:1;20378:3;20301:84;:::i;:::-;20294:91;;20394:93;20483:3;20394:93;:::i;:::-;20512:1;20507:3;20503:11;20496:18;;20120:400;;;:::o;20526:366::-;20668:3;20689:67;20753:2;20748:3;20689:67;:::i;:::-;20682:74;;20765:93;20854:3;20765:93;:::i;:::-;20883:2;20878:3;20874:12;20867:19;;20526:366;;;:::o;20898:::-;21040:3;21061:67;21125:2;21120:3;21061:67;:::i;:::-;21054:74;;21137:93;21226:3;21137:93;:::i;:::-;21255:2;21250:3;21246:12;21239:19;;20898:366;;;:::o;21270:398::-;21429:3;21450:83;21531:1;21526:3;21450:83;:::i;:::-;21443:90;;21542:93;21631:3;21542:93;:::i;:::-;21660:1;21655:3;21651:11;21644:18;;21270:398;;;:::o;21674:366::-;21816:3;21837:67;21901:2;21896:3;21837:67;:::i;:::-;21830:74;;21913:93;22002:3;21913:93;:::i;:::-;22031:2;22026:3;22022:12;22015:19;;21674:366;;;:::o;22046:::-;22188:3;22209:67;22273:2;22268:3;22209:67;:::i;:::-;22202:74;;22285:93;22374:3;22285:93;:::i;:::-;22403:2;22398:3;22394:12;22387:19;;22046:366;;;:::o;22418:::-;22560:3;22581:67;22645:2;22640:3;22581:67;:::i;:::-;22574:74;;22657:93;22746:3;22657:93;:::i;:::-;22775:2;22770:3;22766:12;22759:19;;22418:366;;;:::o;22790:::-;22932:3;22953:67;23017:2;23012:3;22953:67;:::i;:::-;22946:74;;23029:93;23118:3;23029:93;:::i;:::-;23147:2;23142:3;23138:12;23131:19;;22790:366;;;:::o;23162:108::-;23239:24;23257:5;23239:24;:::i;:::-;23234:3;23227:37;23162:108;;:::o;23276:118::-;23363:24;23381:5;23363:24;:::i;:::-;23358:3;23351:37;23276:118;;:::o;23400:695::-;23678:3;23700:92;23788:3;23779:6;23700:92;:::i;:::-;23693:99;;23809:95;23900:3;23891:6;23809:95;:::i;:::-;23802:102;;23921:148;24065:3;23921:148;:::i;:::-;23914:155;;24086:3;24079:10;;23400:695;;;;;:::o;24101:379::-;24285:3;24307:147;24450:3;24307:147;:::i;:::-;24300:154;;24471:3;24464:10;;24101:379;;;:::o;24486:222::-;24579:4;24617:2;24606:9;24602:18;24594:26;;24630:71;24698:1;24687:9;24683:17;24674:6;24630:71;:::i;:::-;24486:222;;;;:::o;24714:640::-;24909:4;24947:3;24936:9;24932:19;24924:27;;24961:71;25029:1;25018:9;25014:17;25005:6;24961:71;:::i;:::-;25042:72;25110:2;25099:9;25095:18;25086:6;25042:72;:::i;:::-;25124;25192:2;25181:9;25177:18;25168:6;25124:72;:::i;:::-;25243:9;25237:4;25233:20;25228:2;25217:9;25213:18;25206:48;25271:76;25342:4;25333:6;25271:76;:::i;:::-;25263:84;;24714:640;;;;;;;:::o;25360:373::-;25503:4;25541:2;25530:9;25526:18;25518:26;;25590:9;25584:4;25580:20;25576:1;25565:9;25561:17;25554:47;25618:108;25721:4;25712:6;25618:108;:::i;:::-;25610:116;;25360:373;;;;:::o;25739:210::-;25826:4;25864:2;25853:9;25849:18;25841:26;;25877:65;25939:1;25928:9;25924:17;25915:6;25877:65;:::i;:::-;25739:210;;;;:::o;25955:313::-;26068:4;26106:2;26095:9;26091:18;26083:26;;26155:9;26149:4;26145:20;26141:1;26130:9;26126:17;26119:47;26183:78;26256:4;26247:6;26183:78;:::i;:::-;26175:86;;25955:313;;;;:::o;26274:419::-;26440:4;26478:2;26467:9;26463:18;26455:26;;26527:9;26521:4;26517:20;26513:1;26502:9;26498:17;26491:47;26555:131;26681:4;26555:131;:::i;:::-;26547:139;;26274:419;;;:::o;26699:::-;26865:4;26903:2;26892:9;26888:18;26880:26;;26952:9;26946:4;26942:20;26938:1;26927:9;26923:17;26916:47;26980:131;27106:4;26980:131;:::i;:::-;26972:139;;26699:419;;;:::o;27124:::-;27290:4;27328:2;27317:9;27313:18;27305:26;;27377:9;27371:4;27367:20;27363:1;27352:9;27348:17;27341:47;27405:131;27531:4;27405:131;:::i;:::-;27397:139;;27124:419;;;:::o;27549:::-;27715:4;27753:2;27742:9;27738:18;27730:26;;27802:9;27796:4;27792:20;27788:1;27777:9;27773:17;27766:47;27830:131;27956:4;27830:131;:::i;:::-;27822:139;;27549:419;;;:::o;27974:::-;28140:4;28178:2;28167:9;28163:18;28155:26;;28227:9;28221:4;28217:20;28213:1;28202:9;28198:17;28191:47;28255:131;28381:4;28255:131;:::i;:::-;28247:139;;27974:419;;;:::o;28399:::-;28565:4;28603:2;28592:9;28588:18;28580:26;;28652:9;28646:4;28642:20;28638:1;28627:9;28623:17;28616:47;28680:131;28806:4;28680:131;:::i;:::-;28672:139;;28399:419;;;:::o;28824:::-;28990:4;29028:2;29017:9;29013:18;29005:26;;29077:9;29071:4;29067:20;29063:1;29052:9;29048:17;29041:47;29105:131;29231:4;29105:131;:::i;:::-;29097:139;;28824:419;;;:::o;29249:::-;29415:4;29453:2;29442:9;29438:18;29430:26;;29502:9;29496:4;29492:20;29488:1;29477:9;29473:17;29466:47;29530:131;29656:4;29530:131;:::i;:::-;29522:139;;29249:419;;;:::o;29674:::-;29840:4;29878:2;29867:9;29863:18;29855:26;;29927:9;29921:4;29917:20;29913:1;29902:9;29898:17;29891:47;29955:131;30081:4;29955:131;:::i;:::-;29947:139;;29674:419;;;:::o;30099:::-;30265:4;30303:2;30292:9;30288:18;30280:26;;30352:9;30346:4;30342:20;30338:1;30327:9;30323:17;30316:47;30380:131;30506:4;30380:131;:::i;:::-;30372:139;;30099:419;;;:::o;30524:::-;30690:4;30728:2;30717:9;30713:18;30705:26;;30777:9;30771:4;30767:20;30763:1;30752:9;30748:17;30741:47;30805:131;30931:4;30805:131;:::i;:::-;30797:139;;30524:419;;;:::o;30949:::-;31115:4;31153:2;31142:9;31138:18;31130:26;;31202:9;31196:4;31192:20;31188:1;31177:9;31173:17;31166:47;31230:131;31356:4;31230:131;:::i;:::-;31222:139;;30949:419;;;:::o;31374:::-;31540:4;31578:2;31567:9;31563:18;31555:26;;31627:9;31621:4;31617:20;31613:1;31602:9;31598:17;31591:47;31655:131;31781:4;31655:131;:::i;:::-;31647:139;;31374:419;;;:::o;31799:::-;31965:4;32003:2;31992:9;31988:18;31980:26;;32052:9;32046:4;32042:20;32038:1;32027:9;32023:17;32016:47;32080:131;32206:4;32080:131;:::i;:::-;32072:139;;31799:419;;;:::o;32224:::-;32390:4;32428:2;32417:9;32413:18;32405:26;;32477:9;32471:4;32467:20;32463:1;32452:9;32448:17;32441:47;32505:131;32631:4;32505:131;:::i;:::-;32497:139;;32224:419;;;:::o;32649:::-;32815:4;32853:2;32842:9;32838:18;32830:26;;32902:9;32896:4;32892:20;32888:1;32877:9;32873:17;32866:47;32930:131;33056:4;32930:131;:::i;:::-;32922:139;;32649:419;;;:::o;33074:::-;33240:4;33278:2;33267:9;33263:18;33255:26;;33327:9;33321:4;33317:20;33313:1;33302:9;33298:17;33291:47;33355:131;33481:4;33355:131;:::i;:::-;33347:139;;33074:419;;;:::o;33499:::-;33665:4;33703:2;33692:9;33688:18;33680:26;;33752:9;33746:4;33742:20;33738:1;33727:9;33723:17;33716:47;33780:131;33906:4;33780:131;:::i;:::-;33772:139;;33499:419;;;:::o;33924:::-;34090:4;34128:2;34117:9;34113:18;34105:26;;34177:9;34171:4;34167:20;34163:1;34152:9;34148:17;34141:47;34205:131;34331:4;34205:131;:::i;:::-;34197:139;;33924:419;;;:::o;34349:222::-;34442:4;34480:2;34469:9;34465:18;34457:26;;34493:71;34561:1;34550:9;34546:17;34537:6;34493:71;:::i;:::-;34349:222;;;;:::o;34577:129::-;34611:6;34638:20;;:::i;:::-;34628:30;;34667:33;34695:4;34687:6;34667:33;:::i;:::-;34577:129;;;:::o;34712:75::-;34745:6;34778:2;34772:9;34762:19;;34712:75;:::o;34793:311::-;34870:4;34960:18;34952:6;34949:30;34946:56;;;34982:18;;:::i;:::-;34946:56;35032:4;35024:6;35020:17;35012:25;;35092:4;35086;35082:15;35074:23;;34793:311;;;:::o;35110:::-;35187:4;35277:18;35269:6;35266:30;35263:56;;;35299:18;;:::i;:::-;35263:56;35349:4;35341:6;35337:17;35329:25;;35409:4;35403;35399:15;35391:23;;35110:311;;;:::o;35427:307::-;35488:4;35578:18;35570:6;35567:30;35564:56;;;35600:18;;:::i;:::-;35564:56;35638:29;35660:6;35638:29;:::i;:::-;35630:37;;35722:4;35716;35712:15;35704:23;;35427:307;;;:::o;35740:308::-;35802:4;35892:18;35884:6;35881:30;35878:56;;;35914:18;;:::i;:::-;35878:56;35952:29;35974:6;35952:29;:::i;:::-;35944:37;;36036:4;36030;36026:15;36018:23;;35740:308;;;:::o;36054:132::-;36121:4;36144:3;36136:11;;36174:4;36169:3;36165:14;36157:22;;36054:132;;;:::o;36192:141::-;36241:4;36264:3;36256:11;;36287:3;36284:1;36277:14;36321:4;36318:1;36308:18;36300:26;;36192:141;;;:::o;36339:114::-;36406:6;36440:5;36434:12;36424:22;;36339:114;;;:::o;36459:98::-;36510:6;36544:5;36538:12;36528:22;;36459:98;;;:::o;36563:99::-;36615:6;36649:5;36643:12;36633:22;;36563:99;;;:::o;36668:113::-;36738:4;36770;36765:3;36761:14;36753:22;;36668:113;;;:::o;36787:184::-;36886:11;36920:6;36915:3;36908:19;36960:4;36955:3;36951:14;36936:29;;36787:184;;;;:::o;36977:168::-;37060:11;37094:6;37089:3;37082:19;37134:4;37129:3;37125:14;37110:29;;36977:168;;;;:::o;37151:147::-;37252:11;37289:3;37274:18;;37151:147;;;;:::o;37304:169::-;37388:11;37422:6;37417:3;37410:19;37462:4;37457:3;37453:14;37438:29;;37304:169;;;;:::o;37479:148::-;37581:11;37618:3;37603:18;;37479:148;;;;:::o;37633:305::-;37673:3;37692:20;37710:1;37692:20;:::i;:::-;37687:25;;37726:20;37744:1;37726:20;:::i;:::-;37721:25;;37880:1;37812:66;37808:74;37805:1;37802:81;37799:107;;;37886:18;;:::i;:::-;37799:107;37930:1;37927;37923:9;37916:16;;37633:305;;;;:::o;37944:185::-;37984:1;38001:20;38019:1;38001:20;:::i;:::-;37996:25;;38035:20;38053:1;38035:20;:::i;:::-;38030:25;;38074:1;38064:35;;38079:18;;:::i;:::-;38064:35;38121:1;38118;38114:9;38109:14;;37944:185;;;;:::o;38135:348::-;38175:7;38198:20;38216:1;38198:20;:::i;:::-;38193:25;;38232:20;38250:1;38232:20;:::i;:::-;38227:25;;38420:1;38352:66;38348:74;38345:1;38342:81;38337:1;38330:9;38323:17;38319:105;38316:131;;;38427:18;;:::i;:::-;38316:131;38475:1;38472;38468:9;38457:20;;38135:348;;;;:::o;38489:191::-;38529:4;38549:20;38567:1;38549:20;:::i;:::-;38544:25;;38583:20;38601:1;38583:20;:::i;:::-;38578:25;;38622:1;38619;38616:8;38613:34;;;38627:18;;:::i;:::-;38613:34;38672:1;38669;38665:9;38657:17;;38489:191;;;;:::o;38686:96::-;38723:7;38752:24;38770:5;38752:24;:::i;:::-;38741:35;;38686:96;;;:::o;38788:90::-;38822:7;38865:5;38858:13;38851:21;38840:32;;38788:90;;;:::o;38884:149::-;38920:7;38960:66;38953:5;38949:78;38938:89;;38884:149;;;:::o;39039:126::-;39076:7;39116:42;39109:5;39105:54;39094:65;;39039:126;;;:::o;39171:77::-;39208:7;39237:5;39226:16;;39171:77;;;:::o;39254:93::-;39290:7;39330:10;39323:5;39319:22;39308:33;;39254:93;;;:::o;39353:154::-;39437:6;39432:3;39427;39414:30;39499:1;39490:6;39485:3;39481:16;39474:27;39353:154;;;:::o;39513:307::-;39581:1;39591:113;39605:6;39602:1;39599:13;39591:113;;;39690:1;39685:3;39681:11;39675:18;39671:1;39666:3;39662:11;39655:39;39627:2;39624:1;39620:10;39615:15;;39591:113;;;39722:6;39719:1;39716:13;39713:101;;;39802:1;39793:6;39788:3;39784:16;39777:27;39713:101;39562:258;39513:307;;;:::o;39826:320::-;39870:6;39907:1;39901:4;39897:12;39887:22;;39954:1;39948:4;39944:12;39975:18;39965:81;;40031:4;40023:6;40019:17;40009:27;;39965:81;40093:2;40085:6;40082:14;40062:18;40059:38;40056:84;;;40112:18;;:::i;:::-;40056:84;39877:269;39826:320;;;:::o;40152:281::-;40235:27;40257:4;40235:27;:::i;:::-;40227:6;40223:40;40365:6;40353:10;40350:22;40329:18;40317:10;40314:34;40311:62;40308:88;;;40376:18;;:::i;:::-;40308:88;40416:10;40412:2;40405:22;40195:238;40152:281;;:::o;40439:233::-;40478:3;40501:24;40519:5;40501:24;:::i;:::-;40492:33;;40547:66;40540:5;40537:77;40534:103;;;40617:18;;:::i;:::-;40534:103;40664:1;40657:5;40653:13;40646:20;;40439:233;;;:::o;40678:176::-;40710:1;40727:20;40745:1;40727:20;:::i;:::-;40722:25;;40761:20;40779:1;40761:20;:::i;:::-;40756:25;;40800:1;40790:35;;40805:18;;:::i;:::-;40790:35;40846:1;40843;40839:9;40834:14;;40678:176;;;;:::o;40860:180::-;40908:77;40905:1;40898:88;41005:4;41002:1;40995:15;41029:4;41026:1;41019:15;41046:180;41094:77;41091:1;41084:88;41191:4;41188:1;41181:15;41215:4;41212:1;41205:15;41232:180;41280:77;41277:1;41270:88;41377:4;41374:1;41367:15;41401:4;41398:1;41391:15;41418:180;41466:77;41463:1;41456:88;41563:4;41560:1;41553:15;41587:4;41584:1;41577:15;41604:180;41652:77;41649:1;41642:88;41749:4;41746:1;41739:15;41773:4;41770:1;41763:15;41790:117;41899:1;41896;41889:12;41913:117;42022:1;42019;42012:12;42036:117;42145:1;42142;42135:12;42159:117;42268:1;42265;42258:12;42282:117;42391:1;42388;42381:12;42405:102;42446:6;42497:2;42493:7;42488:2;42481:5;42477:14;42473:28;42463:38;;42405:102;;;:::o;42513:178::-;42653:30;42649:1;42641:6;42637:14;42630:54;42513:178;:::o;42697:::-;42837:30;42833:1;42825:6;42821:14;42814:54;42697:178;:::o;42881:225::-;43021:34;43017:1;43009:6;43005:14;42998:58;43090:8;43085:2;43077:6;43073:15;43066:33;42881:225;:::o;43112:222::-;43252:34;43248:1;43240:6;43236:14;43229:58;43321:5;43316:2;43308:6;43304:15;43297:30;43112:222;:::o;43340:169::-;43480:21;43476:1;43468:6;43464:14;43457:45;43340:169;:::o;43515:182::-;43655:34;43651:1;43643:6;43639:14;43632:58;43515:182;:::o;43703:174::-;43843:26;43839:1;43831:6;43827:14;43820:50;43703:174;:::o;43883:158::-;44023:10;44019:1;44011:6;44007:14;44000:34;43883:158;:::o;44047:171::-;44187:23;44183:1;44175:6;44171:14;44164:47;44047:171;:::o;44224:173::-;44364:25;44360:1;44352:6;44348:14;44341:49;44224:173;:::o;44403:175::-;44543:27;44539:1;44531:6;44527:14;44520:51;44403:175;:::o;44584:::-;44724:27;44720:1;44712:6;44708:14;44701:51;44584:175;:::o;44765:::-;44905:27;44901:1;44893:6;44889:14;44882:51;44765:175;:::o;44946:155::-;45086:7;45082:1;45074:6;45070:14;45063:31;44946:155;:::o;45107:182::-;45247:34;45243:1;45235:6;45231:14;45224:58;45107:182;:::o;45295:178::-;45435:30;45431:1;45423:6;45419:14;45412:54;45295:178;:::o;45479:114::-;;:::o;45599:166::-;45739:18;45735:1;45727:6;45723:14;45716:42;45599:166;:::o;45771:172::-;45911:24;45907:1;45899:6;45895:14;45888:48;45771:172;:::o;45949:168::-;46089:20;46085:1;46077:6;46073:14;46066:44;45949:168;:::o;46123:227::-;46263:34;46259:1;46251:6;46247:14;46240:58;46332:10;46327:2;46319:6;46315:15;46308:35;46123:227;:::o;46356:122::-;46429:24;46447:5;46429:24;:::i;:::-;46422:5;46419:35;46409:63;;46468:1;46465;46458:12;46409:63;46356:122;:::o;46484:116::-;46554:21;46569:5;46554:21;:::i;:::-;46547:5;46544:32;46534:60;;46590:1;46587;46580:12;46534:60;46484:116;:::o;46606:120::-;46678:23;46695:5;46678:23;:::i;:::-;46671:5;46668:34;46658:62;;46716:1;46713;46706:12;46658:62;46606:120;:::o;46732:122::-;46805:24;46823:5;46805:24;:::i;:::-;46798:5;46795:35;46785:63;;46844:1;46841;46834:12;46785:63;46732:122;:::o;46860:120::-;46932:23;46949:5;46932:23;:::i;:::-;46925:5;46922:34;46912:62;;46970:1;46967;46960:12;46912:62;46860:120;:::o
Swarm Source
ipfs://aadd000a069606c8abaad54ad3fe10477f78b3d35dee64081e66dcd3204609fe
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.