ERC-721
Overview
Max Total Supply
2,000 DF
Holders
815
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 DFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
degenfingers
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-06 */ // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ 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(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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 tokenId of the next token 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` 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view 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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // 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 `_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)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // 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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try 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)) } } } } /** * @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 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 returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 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: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contract.sol pragma solidity ^0.8.0; contract degenfingers is ERC721A, Ownable { using Strings for uint256; uint256 FREE_MINT_LIMIT_PER_WALLET = 50; uint256 MAX_MINTS = 10; uint256 MAX_SUPPLY = 2000; bool private paused = true; uint256 MAX_FREE = 1800; uint256 public mintRate = 0.005 ether; string public baseURI = "https://degenfingers.xyz/api/"; mapping(address => uint256) private freeMintCountMap; constructor() ERC721A("DEGEN FINGERS", "DF") {} modifier callerIsuser(){ require(tx.origin ==msg.sender, "Can't be called from contract"); _; } function updateFreeMintCount(address minter, uint256 count) private { freeMintCountMap[minter] += count; } function getFMC( address minter) public view returns(uint256){ return freeMintCountMap[minter]; } function mint(uint256 quantity) external payable callerIsuser { require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the limit"); require(!paused); require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left"); uint256 price = mintRate * quantity; if(totalSupply()+ quantity <= MAX_FREE){ uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET - freeMintCountMap[msg.sender]; if(remainingFreeMint > 0){ if(quantity >= remainingFreeMint){ price -= remainingFreeMint * mintRate; updateFreeMintCount(msg.sender,remainingFreeMint); } else{ price-= quantity * mintRate; updateFreeMintCount(msg.sender,quantity); } } } require(msg.value >= price,"Not enough ether sent."); _safeMint(msg.sender, quantity); } function withdraw() external payable onlyOwner { payable(owner()).transfer(address(this).balance); } function changeFMC(uint256 NEWFMC) public onlyOwner { FREE_MINT_LIMIT_PER_WALLET = NEWFMC; } function _baseURI() internal view override returns (string memory) { return baseURI; } function setMintRate(uint256 _mintRate) public onlyOwner { mintRate = _mintRate; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId),"ERC721Metadata: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); uint256 trueid = tokenId + 1; return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, trueid.toString() , ".json")) : ""; } function unpause(bool _state) public onlyOwner { paused = _state; } function setMaxPerWallet(uint256 newmaxperwallet) public onlyOwner { MAX_MINTS = newmaxperwallet; } function changesupply(uint256 newsupply_) public onlyOwner{ MAX_SUPPLY = newsupply_; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"NEWFMC","type":"uint256"}],"name":"changeFMC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newsupply_","type":"uint256"}],"name":"changesupply","outputs":[],"stateMutability":"nonpayable","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":"minter","type":"address"}],"name":"getFMC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newmaxperwallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","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":"bool","name":"_state","type":"bool"}],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526032600955600a80556107d0600b556001600c60006101000a81548160ff021916908315150217905550610708600d556611c37937e08000600e556040518060400160405280601d81526020017f68747470733a2f2f646567656e66696e676572732e78797a2f6170692f000000815250600f90805190602001906200008c9291906200024a565b503480156200009a57600080fd5b506040518060400160405280600d81526020017f444547454e2046494e47455253000000000000000000000000000000000000008152506040518060400160405280600281526020017f444600000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200011f9291906200024a565b508060039080519060200190620001389291906200024a565b50620001496200017760201b60201c565b600081905550505062000171620001656200017c60201b60201c565b6200018460201b60201c565b6200035f565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025890620002fa565b90600052602060002090601f0160209004810192826200027c5760008555620002c8565b82601f106200029757805160ff1916838001178555620002c8565b82800160010185558215620002c8579182015b82811115620002c7578251825591602001919060010190620002aa565b5b509050620002d79190620002db565b5090565b5b80821115620002f6576000816000905550600101620002dc565b5090565b600060028204905060018216806200031357607f821691505b602082108114156200032a576200032962000330565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61336b806200036f6000396000f3fe6080604052600436106101b75760003560e01c80638d740cf2116100ec578063c87b56dd1161008a578063e268e4d311610064578063e268e4d3146105da578063e985e9c514610603578063f2fde38b14610640578063fa80723914610669576101b7565b8063c87b56dd14610549578063ca0dcf1614610586578063dbe2193f146105b1576101b7565b8063a0712d68116100c6578063a0712d68146104b2578063a22cb465146104ce578063b88d4fde146104f7578063c3ba61ef14610520576101b7565b80638d740cf21461041f5780638da5cb5b1461045c57806395d89b4114610487576101b7565b80633f409f39116101595780636352211e116101335780636352211e146103635780636c0360eb146103a057806370a08231146103cb578063715018a614610408576101b7565b80633f409f39146102e857806342842e0e1461031157806355f804b31461033a576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780633ccfd60b146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061283d565b610692565b6040516101f09190612b8b565b60405180910390f35b34801561020557600080fd5b5061020e610724565b60405161021b9190612ba6565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906128e0565b6107b6565b6040516102589190612b24565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906127d0565b610832565b005b34801561029657600080fd5b5061029f6109d9565b6040516102ac9190612ca8565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d791906126ba565b6109f0565b005b6102e6610a00565b005b3480156102f457600080fd5b5061030f600480360381019061030a91906128e0565b610acc565b005b34801561031d57600080fd5b50610338600480360381019061033391906126ba565b610b52565b005b34801561034657600080fd5b50610361600480360381019061035c9190612897565b610b72565b005b34801561036f57600080fd5b5061038a600480360381019061038591906128e0565b610c08565b6040516103979190612b24565b60405180910390f35b3480156103ac57600080fd5b506103b5610c1a565b6040516103c29190612ba6565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed919061264d565b610ca8565b6040516103ff9190612ca8565b60405180910390f35b34801561041457600080fd5b5061041d610d61565b005b34801561042b57600080fd5b506104466004803603810190610441919061264d565b610de9565b6040516104539190612ca8565b60405180910390f35b34801561046857600080fd5b50610471610e32565b60405161047e9190612b24565b60405180910390f35b34801561049357600080fd5b5061049c610e5c565b6040516104a99190612ba6565b60405180910390f35b6104cc60048036038101906104c791906128e0565b610eee565b005b3480156104da57600080fd5b506104f560048036038101906104f09190612790565b611157565b005b34801561050357600080fd5b5061051e6004803603810190610519919061270d565b6112cf565b005b34801561052c57600080fd5b50610547600480360381019061054291906128e0565b611342565b005b34801561055557600080fd5b50610570600480360381019061056b91906128e0565b6113c8565b60405161057d9190612ba6565b60405180910390f35b34801561059257600080fd5b5061059b611481565b6040516105a89190612ca8565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d391906128e0565b611487565b005b3480156105e657600080fd5b5061060160048036038101906105fc91906128e0565b61150d565b005b34801561060f57600080fd5b5061062a6004803603810190610625919061267a565b611593565b6040516106379190612b8b565b60405180910390f35b34801561064c57600080fd5b506106676004803603810190610662919061264d565b611627565b005b34801561067557600080fd5b50610690600480360381019061068b9190612810565b61171f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ed57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061071d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461073390612f58565b80601f016020809104026020016040519081016040528092919081815260200182805461075f90612f58565b80156107ac5780601f10610781576101008083540402835291602001916107ac565b820191906000526020600020905b81548152906001019060200180831161078f57829003601f168201915b5050505050905090565b60006107c1826117b8565b6107f7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083d82611817565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108a5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c46118e5565b73ffffffffffffffffffffffffffffffffffffffff1614610927576108f0816108eb6118e5565b611593565b610926576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109e36118ed565b6001546000540303905090565b6109fb8383836118f2565b505050565b610a08611c9c565b73ffffffffffffffffffffffffffffffffffffffff16610a26610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7390612c48565b60405180910390fd5b610a84610e32565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ac9573d6000803e3d6000fd5b50565b610ad4611c9c565b73ffffffffffffffffffffffffffffffffffffffff16610af2610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3f90612c48565b60405180910390fd5b80600b8190555050565b610b6d838383604051806020016040528060008152506112cf565b505050565b610b7a611c9c565b73ffffffffffffffffffffffffffffffffffffffff16610b98610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590612c48565b60405180910390fd5b80600f9080519060200190610c04929190612461565b5050565b6000610c1382611817565b9050919050565b600f8054610c2790612f58565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5390612f58565b8015610ca05780601f10610c7557610100808354040283529160200191610ca0565b820191906000526020600020905b815481529060010190602001808311610c8357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d10576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d69611c9c565b73ffffffffffffffffffffffffffffffffffffffff16610d87610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490612c48565b60405180910390fd5b610de76000611ca4565b565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e6b90612f58565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9790612f58565b8015610ee45780601f10610eb957610100808354040283529160200191610ee4565b820191906000526020600020905b815481529060010190602001808311610ec757829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5390612bc8565b60405180910390fd5b600a54610f6833611d6a565b82610f739190612d8d565b1115610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab90612c08565b60405180910390fd5b600c60009054906101000a900460ff1615610fce57600080fd5b600b5481610fda6109d9565b610fe49190612d8d565b1115611025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101c90612c28565b60405180910390fd5b600081600e546110359190612e14565b9050600d54826110436109d9565b61104d9190612d8d565b11611106576000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546009546110a19190612e6e565b90506000811115611104578083106110dd57600e54816110c19190612e14565b826110cc9190612e6e565b91506110d83382611dc1565b611103565b600e54836110eb9190612e14565b826110f69190612e6e565b91506111023384611dc1565b5b5b505b80341015611149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114090612c88565b60405180910390fd5b6111533383611e1b565b5050565b61115f6118e5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111c4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111d16118e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661127e6118e5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112c39190612b8b565b60405180910390a35050565b6112da8484846118f2565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461133c5761130584848484611e39565b61133b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61134a611c9c565b73ffffffffffffffffffffffffffffffffffffffff16611368610e32565b73ffffffffffffffffffffffffffffffffffffffff16146113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b590612c48565b60405180910390fd5b8060098190555050565b60606113d3826117b8565b611412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140990612c68565b60405180910390fd5b600061141c611f99565b9050600060018461142d9190612d8d565b9050600082511161144d5760405180602001604052806000815250611478565b816114578261202b565b604051602001611468929190612af5565b6040516020818303038152906040525b92505050919050565b600e5481565b61148f611c9c565b73ffffffffffffffffffffffffffffffffffffffff166114ad610e32565b73ffffffffffffffffffffffffffffffffffffffff1614611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90612c48565b60405180910390fd5b80600e8190555050565b611515611c9c565b73ffffffffffffffffffffffffffffffffffffffff16611533610e32565b73ffffffffffffffffffffffffffffffffffffffff1614611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090612c48565b60405180910390fd5b80600a8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61162f611c9c565b73ffffffffffffffffffffffffffffffffffffffff1661164d610e32565b73ffffffffffffffffffffffffffffffffffffffff16146116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a90612c48565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a90612be8565b60405180910390fd5b61171c81611ca4565b50565b611727611c9c565b73ffffffffffffffffffffffffffffffffffffffff16611745610e32565b73ffffffffffffffffffffffffffffffffffffffff161461179b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179290612c48565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6000816117c36118ed565b111580156117d2575060005482105b8015611810575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806118266118ed565b116118ae576000548110156118ad5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156118ab575b60008114156118a1576004600083600190039350838152602001908152602001600020549050611876565b80925050506118e0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006118fd82611817565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611964576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166119856118e5565b73ffffffffffffffffffffffffffffffffffffffff1614806119b457506119b3856119ae6118e5565b611593565b5b806119f957506119c26118e5565b73ffffffffffffffffffffffffffffffffffffffff166119e1846107b6565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611a32576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a99576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611aa6858585600161218c565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611ba386612192565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611c2d576000600184019050600060046000838152602001908152602001600020541415611c2b576000548114611c2a578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c95858585600161219c565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e109190612d8d565b925050819055505050565b611e358282604051806020016040528060008152506121a2565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e5f6118e5565b8786866040518563ffffffff1660e01b8152600401611e819493929190612b3f565b602060405180830381600087803b158015611e9b57600080fd5b505af1925050508015611ecc57506040513d601f19601f82011682018060405250810190611ec9919061286a565b60015b611f46573d8060008114611efc576040519150601f19603f3d011682016040523d82523d6000602084013e611f01565b606091505b50600081511415611f3e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054611fa890612f58565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd490612f58565b80156120215780601f10611ff657610100808354040283529160200191612021565b820191906000526020600020905b81548152906001019060200180831161200457829003601f168201915b5050505050905090565b60606000821415612073576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612187565b600082905060005b600082146120a557808061208e90612fbb565b915050600a8261209e9190612de3565b915061207b565b60008167ffffffffffffffff8111156120c1576120c06130f1565b5b6040519080825280601f01601f1916602001820160405280156120f35781602001600182028036833780820191505090505b5090505b600085146121805760018261210c9190612e6e565b9150600a8561211b9190613004565b60306121279190612d8d565b60f81b81838151811061213d5761213c6130c2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121799190612de3565b94506120f7565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561220f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561224a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612257600085838661218c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16122bc60018514612457565b901b60a042901b6122cc86612192565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146123d0575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123806000878480600101955087611e39565b6123b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106123115782600054146123cb57600080fd5b61243b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106123d1575b816000819055505050612451600085838661219c565b50505050565b6000819050919050565b82805461246d90612f58565b90600052602060002090601f01602090048101928261248f57600085556124d6565b82601f106124a857805160ff19168380011785556124d6565b828001600101855582156124d6579182015b828111156124d55782518255916020019190600101906124ba565b5b5090506124e391906124e7565b5090565b5b808211156125005760008160009055506001016124e8565b5090565b600061251761251284612ce8565b612cc3565b90508281526020810184848401111561253357612532613125565b5b61253e848285612f16565b509392505050565b600061255961255484612d19565b612cc3565b90508281526020810184848401111561257557612574613125565b5b612580848285612f16565b509392505050565b600081359050612597816132d9565b92915050565b6000813590506125ac816132f0565b92915050565b6000813590506125c181613307565b92915050565b6000815190506125d681613307565b92915050565b600082601f8301126125f1576125f0613120565b5b8135612601848260208601612504565b91505092915050565b600082601f83011261261f5761261e613120565b5b813561262f848260208601612546565b91505092915050565b6000813590506126478161331e565b92915050565b6000602082840312156126635761266261312f565b5b600061267184828501612588565b91505092915050565b600080604083850312156126915761269061312f565b5b600061269f85828601612588565b92505060206126b085828601612588565b9150509250929050565b6000806000606084860312156126d3576126d261312f565b5b60006126e186828701612588565b93505060206126f286828701612588565b925050604061270386828701612638565b9150509250925092565b600080600080608085870312156127275761272661312f565b5b600061273587828801612588565b945050602061274687828801612588565b935050604061275787828801612638565b925050606085013567ffffffffffffffff8111156127785761277761312a565b5b612784878288016125dc565b91505092959194509250565b600080604083850312156127a7576127a661312f565b5b60006127b585828601612588565b92505060206127c68582860161259d565b9150509250929050565b600080604083850312156127e7576127e661312f565b5b60006127f585828601612588565b925050602061280685828601612638565b9150509250929050565b6000602082840312156128265761282561312f565b5b60006128348482850161259d565b91505092915050565b6000602082840312156128535761285261312f565b5b6000612861848285016125b2565b91505092915050565b6000602082840312156128805761287f61312f565b5b600061288e848285016125c7565b91505092915050565b6000602082840312156128ad576128ac61312f565b5b600082013567ffffffffffffffff8111156128cb576128ca61312a565b5b6128d78482850161260a565b91505092915050565b6000602082840312156128f6576128f561312f565b5b600061290484828501612638565b91505092915050565b61291681612ea2565b82525050565b61292581612eb4565b82525050565b600061293682612d4a565b6129408185612d60565b9350612950818560208601612f25565b61295981613134565b840191505092915050565b600061296f82612d55565b6129798185612d71565b9350612989818560208601612f25565b61299281613134565b840191505092915050565b60006129a882612d55565b6129b28185612d82565b93506129c2818560208601612f25565b80840191505092915050565b60006129db601d83612d71565b91506129e682613145565b602082019050919050565b60006129fe602683612d71565b9150612a098261316e565b604082019050919050565b6000612a21601283612d71565b9150612a2c826131bd565b602082019050919050565b6000612a44601683612d71565b9150612a4f826131e6565b602082019050919050565b6000612a67600583612d82565b9150612a728261320f565b600582019050919050565b6000612a8a602083612d71565b9150612a9582613238565b602082019050919050565b6000612aad602f83612d71565b9150612ab882613261565b604082019050919050565b6000612ad0601683612d71565b9150612adb826132b0565b602082019050919050565b612aef81612f0c565b82525050565b6000612b01828561299d565b9150612b0d828461299d565b9150612b1882612a5a565b91508190509392505050565b6000602082019050612b39600083018461290d565b92915050565b6000608082019050612b54600083018761290d565b612b61602083018661290d565b612b6e6040830185612ae6565b8181036060830152612b80818461292b565b905095945050505050565b6000602082019050612ba0600083018461291c565b92915050565b60006020820190508181036000830152612bc08184612964565b905092915050565b60006020820190508181036000830152612be1816129ce565b9050919050565b60006020820190508181036000830152612c01816129f1565b9050919050565b60006020820190508181036000830152612c2181612a14565b9050919050565b60006020820190508181036000830152612c4181612a37565b9050919050565b60006020820190508181036000830152612c6181612a7d565b9050919050565b60006020820190508181036000830152612c8181612aa0565b9050919050565b60006020820190508181036000830152612ca181612ac3565b9050919050565b6000602082019050612cbd6000830184612ae6565b92915050565b6000612ccd612cde565b9050612cd98282612f8a565b919050565b6000604051905090565b600067ffffffffffffffff821115612d0357612d026130f1565b5b612d0c82613134565b9050602081019050919050565b600067ffffffffffffffff821115612d3457612d336130f1565b5b612d3d82613134565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d9882612f0c565b9150612da383612f0c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612dd857612dd7613035565b5b828201905092915050565b6000612dee82612f0c565b9150612df983612f0c565b925082612e0957612e08613064565b5b828204905092915050565b6000612e1f82612f0c565b9150612e2a83612f0c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e6357612e62613035565b5b828202905092915050565b6000612e7982612f0c565b9150612e8483612f0c565b925082821015612e9757612e96613035565b5b828203905092915050565b6000612ead82612eec565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f43578082015181840152602081019050612f28565b83811115612f52576000848401525b50505050565b60006002820490506001821680612f7057607f821691505b60208210811415612f8457612f83613093565b5b50919050565b612f9382613134565b810181811067ffffffffffffffff82111715612fb257612fb16130f1565b5b80604052505050565b6000612fc682612f0c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ff957612ff8613035565b5b600182019050919050565b600061300f82612f0c565b915061301a83612f0c565b92508261302a57613029613064565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e27742062652063616c6c65642066726f6d20636f6e7472616374000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e742e00000000000000000000600082015250565b6132e281612ea2565b81146132ed57600080fd5b50565b6132f981612eb4565b811461330457600080fd5b50565b61331081612ec0565b811461331b57600080fd5b50565b61332781612f0c565b811461333257600080fd5b5056fea26469706673582212206f3a2eec83a72efa5c0deeab6fd7338c2ba1cd5aa9edf9741511eb4df223c39364736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101b75760003560e01c80638d740cf2116100ec578063c87b56dd1161008a578063e268e4d311610064578063e268e4d3146105da578063e985e9c514610603578063f2fde38b14610640578063fa80723914610669576101b7565b8063c87b56dd14610549578063ca0dcf1614610586578063dbe2193f146105b1576101b7565b8063a0712d68116100c6578063a0712d68146104b2578063a22cb465146104ce578063b88d4fde146104f7578063c3ba61ef14610520576101b7565b80638d740cf21461041f5780638da5cb5b1461045c57806395d89b4114610487576101b7565b80633f409f39116101595780636352211e116101335780636352211e146103635780636c0360eb146103a057806370a08231146103cb578063715018a614610408576101b7565b80633f409f39146102e857806342842e0e1461031157806355f804b31461033a576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780633ccfd60b146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061283d565b610692565b6040516101f09190612b8b565b60405180910390f35b34801561020557600080fd5b5061020e610724565b60405161021b9190612ba6565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906128e0565b6107b6565b6040516102589190612b24565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906127d0565b610832565b005b34801561029657600080fd5b5061029f6109d9565b6040516102ac9190612ca8565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d791906126ba565b6109f0565b005b6102e6610a00565b005b3480156102f457600080fd5b5061030f600480360381019061030a91906128e0565b610acc565b005b34801561031d57600080fd5b50610338600480360381019061033391906126ba565b610b52565b005b34801561034657600080fd5b50610361600480360381019061035c9190612897565b610b72565b005b34801561036f57600080fd5b5061038a600480360381019061038591906128e0565b610c08565b6040516103979190612b24565b60405180910390f35b3480156103ac57600080fd5b506103b5610c1a565b6040516103c29190612ba6565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed919061264d565b610ca8565b6040516103ff9190612ca8565b60405180910390f35b34801561041457600080fd5b5061041d610d61565b005b34801561042b57600080fd5b506104466004803603810190610441919061264d565b610de9565b6040516104539190612ca8565b60405180910390f35b34801561046857600080fd5b50610471610e32565b60405161047e9190612b24565b60405180910390f35b34801561049357600080fd5b5061049c610e5c565b6040516104a99190612ba6565b60405180910390f35b6104cc60048036038101906104c791906128e0565b610eee565b005b3480156104da57600080fd5b506104f560048036038101906104f09190612790565b611157565b005b34801561050357600080fd5b5061051e6004803603810190610519919061270d565b6112cf565b005b34801561052c57600080fd5b50610547600480360381019061054291906128e0565b611342565b005b34801561055557600080fd5b50610570600480360381019061056b91906128e0565b6113c8565b60405161057d9190612ba6565b60405180910390f35b34801561059257600080fd5b5061059b611481565b6040516105a89190612ca8565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d391906128e0565b611487565b005b3480156105e657600080fd5b5061060160048036038101906105fc91906128e0565b61150d565b005b34801561060f57600080fd5b5061062a6004803603810190610625919061267a565b611593565b6040516106379190612b8b565b60405180910390f35b34801561064c57600080fd5b506106676004803603810190610662919061264d565b611627565b005b34801561067557600080fd5b50610690600480360381019061068b9190612810565b61171f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ed57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061071d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461073390612f58565b80601f016020809104026020016040519081016040528092919081815260200182805461075f90612f58565b80156107ac5780601f10610781576101008083540402835291602001916107ac565b820191906000526020600020905b81548152906001019060200180831161078f57829003601f168201915b5050505050905090565b60006107c1826117b8565b6107f7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083d82611817565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108a5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c46118e5565b73ffffffffffffffffffffffffffffffffffffffff1614610927576108f0816108eb6118e5565b611593565b610926576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109e36118ed565b6001546000540303905090565b6109fb8383836118f2565b505050565b610a08611c9c565b73ffffffffffffffffffffffffffffffffffffffff16610a26610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7390612c48565b60405180910390fd5b610a84610e32565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ac9573d6000803e3d6000fd5b50565b610ad4611c9c565b73ffffffffffffffffffffffffffffffffffffffff16610af2610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3f90612c48565b60405180910390fd5b80600b8190555050565b610b6d838383604051806020016040528060008152506112cf565b505050565b610b7a611c9c565b73ffffffffffffffffffffffffffffffffffffffff16610b98610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590612c48565b60405180910390fd5b80600f9080519060200190610c04929190612461565b5050565b6000610c1382611817565b9050919050565b600f8054610c2790612f58565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5390612f58565b8015610ca05780601f10610c7557610100808354040283529160200191610ca0565b820191906000526020600020905b815481529060010190602001808311610c8357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d10576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d69611c9c565b73ffffffffffffffffffffffffffffffffffffffff16610d87610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490612c48565b60405180910390fd5b610de76000611ca4565b565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e6b90612f58565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9790612f58565b8015610ee45780601f10610eb957610100808354040283529160200191610ee4565b820191906000526020600020905b815481529060010190602001808311610ec757829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5390612bc8565b60405180910390fd5b600a54610f6833611d6a565b82610f739190612d8d565b1115610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab90612c08565b60405180910390fd5b600c60009054906101000a900460ff1615610fce57600080fd5b600b5481610fda6109d9565b610fe49190612d8d565b1115611025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101c90612c28565b60405180910390fd5b600081600e546110359190612e14565b9050600d54826110436109d9565b61104d9190612d8d565b11611106576000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546009546110a19190612e6e565b90506000811115611104578083106110dd57600e54816110c19190612e14565b826110cc9190612e6e565b91506110d83382611dc1565b611103565b600e54836110eb9190612e14565b826110f69190612e6e565b91506111023384611dc1565b5b5b505b80341015611149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114090612c88565b60405180910390fd5b6111533383611e1b565b5050565b61115f6118e5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111c4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111d16118e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661127e6118e5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112c39190612b8b565b60405180910390a35050565b6112da8484846118f2565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461133c5761130584848484611e39565b61133b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61134a611c9c565b73ffffffffffffffffffffffffffffffffffffffff16611368610e32565b73ffffffffffffffffffffffffffffffffffffffff16146113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b590612c48565b60405180910390fd5b8060098190555050565b60606113d3826117b8565b611412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140990612c68565b60405180910390fd5b600061141c611f99565b9050600060018461142d9190612d8d565b9050600082511161144d5760405180602001604052806000815250611478565b816114578261202b565b604051602001611468929190612af5565b6040516020818303038152906040525b92505050919050565b600e5481565b61148f611c9c565b73ffffffffffffffffffffffffffffffffffffffff166114ad610e32565b73ffffffffffffffffffffffffffffffffffffffff1614611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90612c48565b60405180910390fd5b80600e8190555050565b611515611c9c565b73ffffffffffffffffffffffffffffffffffffffff16611533610e32565b73ffffffffffffffffffffffffffffffffffffffff1614611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090612c48565b60405180910390fd5b80600a8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61162f611c9c565b73ffffffffffffffffffffffffffffffffffffffff1661164d610e32565b73ffffffffffffffffffffffffffffffffffffffff16146116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a90612c48565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a90612be8565b60405180910390fd5b61171c81611ca4565b50565b611727611c9c565b73ffffffffffffffffffffffffffffffffffffffff16611745610e32565b73ffffffffffffffffffffffffffffffffffffffff161461179b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179290612c48565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6000816117c36118ed565b111580156117d2575060005482105b8015611810575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806118266118ed565b116118ae576000548110156118ad5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156118ab575b60008114156118a1576004600083600190039350838152602001908152602001600020549050611876565b80925050506118e0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006118fd82611817565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611964576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166119856118e5565b73ffffffffffffffffffffffffffffffffffffffff1614806119b457506119b3856119ae6118e5565b611593565b5b806119f957506119c26118e5565b73ffffffffffffffffffffffffffffffffffffffff166119e1846107b6565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611a32576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a99576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611aa6858585600161218c565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611ba386612192565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611c2d576000600184019050600060046000838152602001908152602001600020541415611c2b576000548114611c2a578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c95858585600161219c565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e109190612d8d565b925050819055505050565b611e358282604051806020016040528060008152506121a2565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e5f6118e5565b8786866040518563ffffffff1660e01b8152600401611e819493929190612b3f565b602060405180830381600087803b158015611e9b57600080fd5b505af1925050508015611ecc57506040513d601f19601f82011682018060405250810190611ec9919061286a565b60015b611f46573d8060008114611efc576040519150601f19603f3d011682016040523d82523d6000602084013e611f01565b606091505b50600081511415611f3e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054611fa890612f58565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd490612f58565b80156120215780601f10611ff657610100808354040283529160200191612021565b820191906000526020600020905b81548152906001019060200180831161200457829003601f168201915b5050505050905090565b60606000821415612073576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612187565b600082905060005b600082146120a557808061208e90612fbb565b915050600a8261209e9190612de3565b915061207b565b60008167ffffffffffffffff8111156120c1576120c06130f1565b5b6040519080825280601f01601f1916602001820160405280156120f35781602001600182028036833780820191505090505b5090505b600085146121805760018261210c9190612e6e565b9150600a8561211b9190613004565b60306121279190612d8d565b60f81b81838151811061213d5761213c6130c2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121799190612de3565b94506120f7565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561220f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561224a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612257600085838661218c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16122bc60018514612457565b901b60a042901b6122cc86612192565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146123d0575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123806000878480600101955087611e39565b6123b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106123115782600054146123cb57600080fd5b61243b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106123d1575b816000819055505050612451600085838661219c565b50505050565b6000819050919050565b82805461246d90612f58565b90600052602060002090601f01602090048101928261248f57600085556124d6565b82601f106124a857805160ff19168380011785556124d6565b828001600101855582156124d6579182015b828111156124d55782518255916020019190600101906124ba565b5b5090506124e391906124e7565b5090565b5b808211156125005760008160009055506001016124e8565b5090565b600061251761251284612ce8565b612cc3565b90508281526020810184848401111561253357612532613125565b5b61253e848285612f16565b509392505050565b600061255961255484612d19565b612cc3565b90508281526020810184848401111561257557612574613125565b5b612580848285612f16565b509392505050565b600081359050612597816132d9565b92915050565b6000813590506125ac816132f0565b92915050565b6000813590506125c181613307565b92915050565b6000815190506125d681613307565b92915050565b600082601f8301126125f1576125f0613120565b5b8135612601848260208601612504565b91505092915050565b600082601f83011261261f5761261e613120565b5b813561262f848260208601612546565b91505092915050565b6000813590506126478161331e565b92915050565b6000602082840312156126635761266261312f565b5b600061267184828501612588565b91505092915050565b600080604083850312156126915761269061312f565b5b600061269f85828601612588565b92505060206126b085828601612588565b9150509250929050565b6000806000606084860312156126d3576126d261312f565b5b60006126e186828701612588565b93505060206126f286828701612588565b925050604061270386828701612638565b9150509250925092565b600080600080608085870312156127275761272661312f565b5b600061273587828801612588565b945050602061274687828801612588565b935050604061275787828801612638565b925050606085013567ffffffffffffffff8111156127785761277761312a565b5b612784878288016125dc565b91505092959194509250565b600080604083850312156127a7576127a661312f565b5b60006127b585828601612588565b92505060206127c68582860161259d565b9150509250929050565b600080604083850312156127e7576127e661312f565b5b60006127f585828601612588565b925050602061280685828601612638565b9150509250929050565b6000602082840312156128265761282561312f565b5b60006128348482850161259d565b91505092915050565b6000602082840312156128535761285261312f565b5b6000612861848285016125b2565b91505092915050565b6000602082840312156128805761287f61312f565b5b600061288e848285016125c7565b91505092915050565b6000602082840312156128ad576128ac61312f565b5b600082013567ffffffffffffffff8111156128cb576128ca61312a565b5b6128d78482850161260a565b91505092915050565b6000602082840312156128f6576128f561312f565b5b600061290484828501612638565b91505092915050565b61291681612ea2565b82525050565b61292581612eb4565b82525050565b600061293682612d4a565b6129408185612d60565b9350612950818560208601612f25565b61295981613134565b840191505092915050565b600061296f82612d55565b6129798185612d71565b9350612989818560208601612f25565b61299281613134565b840191505092915050565b60006129a882612d55565b6129b28185612d82565b93506129c2818560208601612f25565b80840191505092915050565b60006129db601d83612d71565b91506129e682613145565b602082019050919050565b60006129fe602683612d71565b9150612a098261316e565b604082019050919050565b6000612a21601283612d71565b9150612a2c826131bd565b602082019050919050565b6000612a44601683612d71565b9150612a4f826131e6565b602082019050919050565b6000612a67600583612d82565b9150612a728261320f565b600582019050919050565b6000612a8a602083612d71565b9150612a9582613238565b602082019050919050565b6000612aad602f83612d71565b9150612ab882613261565b604082019050919050565b6000612ad0601683612d71565b9150612adb826132b0565b602082019050919050565b612aef81612f0c565b82525050565b6000612b01828561299d565b9150612b0d828461299d565b9150612b1882612a5a565b91508190509392505050565b6000602082019050612b39600083018461290d565b92915050565b6000608082019050612b54600083018761290d565b612b61602083018661290d565b612b6e6040830185612ae6565b8181036060830152612b80818461292b565b905095945050505050565b6000602082019050612ba0600083018461291c565b92915050565b60006020820190508181036000830152612bc08184612964565b905092915050565b60006020820190508181036000830152612be1816129ce565b9050919050565b60006020820190508181036000830152612c01816129f1565b9050919050565b60006020820190508181036000830152612c2181612a14565b9050919050565b60006020820190508181036000830152612c4181612a37565b9050919050565b60006020820190508181036000830152612c6181612a7d565b9050919050565b60006020820190508181036000830152612c8181612aa0565b9050919050565b60006020820190508181036000830152612ca181612ac3565b9050919050565b6000602082019050612cbd6000830184612ae6565b92915050565b6000612ccd612cde565b9050612cd98282612f8a565b919050565b6000604051905090565b600067ffffffffffffffff821115612d0357612d026130f1565b5b612d0c82613134565b9050602081019050919050565b600067ffffffffffffffff821115612d3457612d336130f1565b5b612d3d82613134565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d9882612f0c565b9150612da383612f0c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612dd857612dd7613035565b5b828201905092915050565b6000612dee82612f0c565b9150612df983612f0c565b925082612e0957612e08613064565b5b828204905092915050565b6000612e1f82612f0c565b9150612e2a83612f0c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e6357612e62613035565b5b828202905092915050565b6000612e7982612f0c565b9150612e8483612f0c565b925082821015612e9757612e96613035565b5b828203905092915050565b6000612ead82612eec565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f43578082015181840152602081019050612f28565b83811115612f52576000848401525b50505050565b60006002820490506001821680612f7057607f821691505b60208210811415612f8457612f83613093565b5b50919050565b612f9382613134565b810181811067ffffffffffffffff82111715612fb257612fb16130f1565b5b80604052505050565b6000612fc682612f0c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ff957612ff8613035565b5b600182019050919050565b600061300f82612f0c565b915061301a83612f0c565b92508261302a57613029613064565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e27742062652063616c6c65642066726f6d20636f6e7472616374000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e742e00000000000000000000600082015250565b6132e281612ea2565b81146132ed57600080fd5b50565b6132f981612eb4565b811461330457600080fd5b50565b61331081612ec0565b811461331b57600080fd5b50565b61332781612f0c565b811461333257600080fd5b5056fea26469706673582212206f3a2eec83a72efa5c0deeab6fd7338c2ba1cd5aa9edf9741511eb4df223c39364736f6c63430008070033
Deployed Bytecode Sourcemap
44471:3185:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19137:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24150:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26218:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25678:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18191:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27104:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46374:114;;;:::i;:::-;;47549:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27345:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46822:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23939:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44778:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19816:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5247:103;;;;;;;;;;;;;:::i;:::-;;45219:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4596:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24319:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45340:1022;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26494:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27601:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46496:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46934:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44732:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46718:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47434:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26873:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5505:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47353:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19137:615;19222:4;19537:10;19522:25;;:11;:25;;;;:102;;;;19614:10;19599:25;;:11;:25;;;;19522:102;:179;;;;19691:10;19676:25;;:11;:25;;;;19522:179;19502:199;;19137:615;;;:::o;24150:100::-;24204:13;24237:5;24230:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24150:100;:::o;26218:204::-;26286:7;26311:16;26319:7;26311;:16::i;:::-;26306:64;;26336:34;;;;;;;;;;;;;;26306:64;26390:15;:24;26406:7;26390:24;;;;;;;;;;;;;;;;;;;;;26383:31;;26218:204;;;:::o;25678:474::-;25751:13;25783:27;25802:7;25783:18;:27::i;:::-;25751:61;;25833:5;25827:11;;:2;:11;;;25823:48;;;25847:24;;;;;;;;;;;;;;25823:48;25911:5;25888:28;;:19;:17;:19::i;:::-;:28;;;25884:175;;25936:44;25953:5;25960:19;:17;:19::i;:::-;25936:16;:44::i;:::-;25931:128;;26008:35;;;;;;;;;;;;;;25931:128;25884:175;26098:2;26071:15;:24;26087:7;26071:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;26136:7;26132:2;26116:28;;26125:5;26116:28;;;;;;;;;;;;25740:412;25678:474;;:::o;18191:315::-;18244:7;18472:15;:13;:15::i;:::-;18457:12;;18441:13;;:28;:46;18434:53;;18191:315;:::o;27104:170::-;27238:28;27248:4;27254:2;27258:7;27238:9;:28::i;:::-;27104:170;;;:::o;46374:114::-;4827:12;:10;:12::i;:::-;4816:23;;:7;:5;:7::i;:::-;:23;;;4808:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46440:7:::1;:5;:7::i;:::-;46432:25;;:48;46458:21;46432:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;46374:114::o:0;47549:96::-;4827:12;:10;:12::i;:::-;4816:23;;:7;:5;:7::i;:::-;:23;;;4808:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47629:10:::1;47616;:23;;;;47549:96:::0;:::o;27345:185::-;27483:39;27500:4;27506:2;27510:7;27483:39;;;;;;;;;;;;:16;:39::i;:::-;27345:185;;;:::o;46822:104::-;4827:12;:10;:12::i;:::-;4816:23;;:7;:5;:7::i;:::-;:23;;;4808:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46907:11:::1;46897:7;:21;;;;;;;;;;;;:::i;:::-;;46822:104:::0;:::o;23939:144::-;24003:7;24046:27;24065:7;24046:18;:27::i;:::-;24023:52;;23939:144;;;:::o;44778:55::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19816:224::-;19880:7;19921:1;19904:19;;:5;:19;;;19900:60;;;19932:28;;;;;;;;;;;;;;19900:60;15155:13;19978:18;:25;19997:5;19978:25;;;;;;;;;;;;;;;;:54;19971:61;;19816:224;;;:::o;5247:103::-;4827:12;:10;:12::i;:::-;4816:23;;:7;:5;:7::i;:::-;:23;;;4808:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5312:30:::1;5339:1;5312:18;:30::i;:::-;5247:103::o:0;45219:111::-;45272:7;45298:16;:24;45315:6;45298:24;;;;;;;;;;;;;;;;45291:31;;45219:111;;;:::o;4596:87::-;4642:7;4669:6;;;;;;;;;;;4662:13;;4596:87;:::o;24319:104::-;24375:13;24408:7;24401:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24319:104;:::o;45340:1022::-;45018:10;45006:22;;:9;:22;;;44998:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;45461:9:::1;;45432:25;45446:10;45432:13;:25::i;:::-;45421:8;:36;;;;:::i;:::-;:49;;45413:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45513:6;;;;;;;;;;;45512:7;45504:16;;;::::0;::::1;;45567:10;;45555:8;45539:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;45531:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45617:13;45644:8;45633;;:19;;;;:::i;:::-;45617:35;;45696:8;;45683;45668:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:36;45665:582;;45720:25;45794:16;:28;45811:10;45794:28;;;;;;;;;;;;;;;;45748:26;;:74;;;;:::i;:::-;45720:102;;45860:1;45840:17;:21;45837:399;;;45896:17;45884:8;:29;45881:340;;45966:8;;45946:17;:28;;;;:::i;:::-;45937:37;;;;;:::i;:::-;;;45997:49;46017:10;46028:17;45997:19;:49::i;:::-;45881:340;;;46130:8;;46119;:19;;;;:::i;:::-;46111:27;;;;;:::i;:::-;;;46161:40;46181:10;46192:8;46161:19;:40::i;:::-;45881:340;45837:399;45705:542;45665:582;46278:5;46265:9;:18;;46257:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;46323:31;46333:10;46345:8;46323:9;:31::i;:::-;45402:960;45340:1022:::0;:::o;26494:308::-;26605:19;:17;:19::i;:::-;26593:31;;:8;:31;;;26589:61;;;26633:17;;;;;;;;;;;;;;26589:61;26715:8;26663:18;:39;26682:19;:17;:19::i;:::-;26663:39;;;;;;;;;;;;;;;:49;26703:8;26663:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26775:8;26739:55;;26754:19;:17;:19::i;:::-;26739:55;;;26785:8;26739:55;;;;;;:::i;:::-;;;;;;;;26494:308;;:::o;27601:396::-;27768:28;27778:4;27784:2;27788:7;27768:9;:28::i;:::-;27829:1;27811:2;:14;;;:19;27807:183;;27850:56;27881:4;27887:2;27891:7;27900:5;27850:30;:56::i;:::-;27845:145;;27934:40;;;;;;;;;;;;;;27845:145;27807:183;27601:396;;;;:::o;46496:106::-;4827:12;:10;:12::i;:::-;4816:23;;:7;:5;:7::i;:::-;:23;;;4808:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46588:6:::1;46559:26;:35;;;;46496:106:::0;:::o;46934:413::-;47007:13;47040:16;47048:7;47040;:16::i;:::-;47031:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;47116:28;47147:10;:8;:10::i;:::-;47116:41;;47166:14;47193:1;47183:7;:11;;;;:::i;:::-;47166:28;;47241:1;47216:14;47210:28;:32;:131;;;;;;;;;;;;;;;;;47280:14;47296:17;:6;:15;:17::i;:::-;47263:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47210:131;47203:138;;;;46934:413;;;:::o;44732:37::-;;;;:::o;46718:96::-;4827:12;:10;:12::i;:::-;4816:23;;:7;:5;:7::i;:::-;:23;;;4808:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46797:9:::1;46786:8;:20;;;;46718:96:::0;:::o;47434:109::-;4827:12;:10;:12::i;:::-;4816:23;;:7;:5;:7::i;:::-;:23;;;4808:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47522:15:::1;47510:9;:27;;;;47434:109:::0;:::o;26873:164::-;26970:4;26994:18;:25;27013:5;26994:25;;;;;;;;;;;;;;;:35;27020:8;26994:35;;;;;;;;;;;;;;;;;;;;;;;;;26987:42;;26873:164;;;;:::o;5505:201::-;4827:12;:10;:12::i;:::-;4816:23;;:7;:5;:7::i;:::-;:23;;;4808:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5614:1:::1;5594:22;;:8;:22;;;;5586:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5670:28;5689:8;5670:18;:28::i;:::-;5505:201:::0;:::o;47353:75::-;4827:12;:10;:12::i;:::-;4816:23;;:7;:5;:7::i;:::-;:23;;;4808:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47416:6:::1;47407;;:15;;;;;;;;;;;;;;;;;;47353:75:::0;:::o;28252:273::-;28309:4;28365:7;28346:15;:13;:15::i;:::-;:26;;:66;;;;;28399:13;;28389:7;:23;28346:66;:152;;;;;28497:1;15925:8;28450:17;:26;28468:7;28450:26;;;;;;;;;;;;:43;:48;28346:152;28326:172;;28252:273;;;:::o;21454:1129::-;21521:7;21541:12;21556:7;21541:22;;21624:4;21605:15;:13;:15::i;:::-;:23;21601:915;;21658:13;;21651:4;:20;21647:869;;;21696:14;21713:17;:23;21731:4;21713:23;;;;;;;;;;;;21696:40;;21829:1;15925:8;21802:6;:23;:28;21798:699;;;22321:113;22338:1;22328:6;:11;22321:113;;;22381:17;:25;22399:6;;;;;;;22381:25;;;;;;;;;;;;22372:34;;22321:113;;;22467:6;22460:13;;;;;;21798:699;21673:843;21647:869;21601:915;22544:31;;;;;;;;;;;;;;21454:1129;;;;:::o;42234:105::-;42294:7;42321:10;42314:17;;42234:105;:::o;17714:92::-;17770:7;17714:92;:::o;33491:2515::-;33606:27;33636;33655:7;33636:18;:27::i;:::-;33606:57;;33721:4;33680:45;;33696:19;33680:45;;;33676:86;;33734:28;;;;;;;;;;;;;;33676:86;33775:22;33824:4;33801:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;33845:43;33862:4;33868:19;:17;:19::i;:::-;33845:16;:43::i;:::-;33801:87;:147;;;;33929:19;:17;:19::i;:::-;33905:43;;:20;33917:7;33905:11;:20::i;:::-;:43;;;33801:147;33775:174;;33967:17;33962:66;;33993:35;;;;;;;;;;;;;;33962:66;34057:1;34043:16;;:2;:16;;;34039:52;;;34068:23;;;;;;;;;;;;;;34039:52;34104:43;34126:4;34132:2;34136:7;34145:1;34104:21;:43::i;:::-;34220:15;:24;34236:7;34220:24;;;;;;;;;;;;34213:31;;;;;;;;;;;34612:18;:24;34631:4;34612:24;;;;;;;;;;;;;;;;34610:26;;;;;;;;;;;;34681:18;:22;34700:2;34681:22;;;;;;;;;;;;;;;;34679:24;;;;;;;;;;;16207:8;15809:3;35062:15;:41;;35020:21;35038:2;35020:17;:21::i;:::-;:84;:128;34974:17;:26;34992:7;34974:26;;;;;;;;;;;:174;;;;35318:1;16207:8;35268:19;:46;:51;35264:626;;;35340:19;35372:1;35362:7;:11;35340:33;;35529:1;35495:17;:30;35513:11;35495:30;;;;;;;;;;;;:35;35491:384;;;35633:13;;35618:11;:28;35614:242;;35813:19;35780:17;:30;35798:11;35780:30;;;;;;;;;;;:52;;;;35614:242;35491:384;35321:569;35264:626;35937:7;35933:2;35918:27;;35927:4;35918:27;;;;;;;;;;;;35956:42;35977:4;35983:2;35987:7;35996:1;35956:20;:42::i;:::-;33595:2411;;33491:2515;;;:::o;3267:98::-;3320:7;3347:10;3340:17;;3267:98;:::o;5866:191::-;5940:16;5959:6;;;;;;;;;;;5940:25;;5985:8;5976:6;;:17;;;;;;;;;;;;;;;;;;6040:8;6009:40;;6030:8;6009:40;;;;;;;;;;;;5929:128;5866:191;:::o;20122:176::-;20183:7;15155:13;15292:2;20211:18;:25;20230:5;20211:25;;;;;;;;;;;;;;;;:49;;20210:80;20203:87;;20122:176;;;:::o;45090:120::-;45197:5;45169:16;:24;45186:6;45169:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;45090:120;;:::o;28609:104::-;28678:27;28688:2;28692:8;28678:27;;;;;;;;;;;;:9;:27::i;:::-;28609:104;;:::o;39703:716::-;39866:4;39912:2;39887:45;;;39933:19;:17;:19::i;:::-;39954:4;39960:7;39969:5;39887:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39883:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40187:1;40170:6;:13;:18;40166:235;;;40216:40;;;;;;;;;;;;;;40166:235;40359:6;40353:13;40344:6;40340:2;40336:15;40329:38;39883:529;40056:54;;;40046:64;;;:6;:64;;;;40039:71;;;39703:716;;;;;;:::o;46610:100::-;46662:13;46695:7;46688:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46610:100;:::o;468:723::-;524:13;754:1;745:5;:10;741:53;;;772:10;;;;;;;;;;;;;;;;;;;;;741:53;804:12;819:5;804:20;;835:14;860:78;875:1;867:4;:9;860:78;;893:8;;;;;:::i;:::-;;;;924:2;916:10;;;;;:::i;:::-;;;860:78;;;948:19;980:6;970:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;948:39;;998:154;1014:1;1005:5;:10;998:154;;1042:1;1032:11;;;;;:::i;:::-;;;1109:2;1101:5;:10;;;;:::i;:::-;1088:2;:24;;;;:::i;:::-;1075:39;;1058:6;1065;1058:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1138:2;1129:11;;;;;:::i;:::-;;;998:154;;;1176:6;1162:21;;;;;468:723;;;;:::o;41067:159::-;;;;;:::o;25239:148::-;25303:14;25364:5;25354:15;;25239:148;;;:::o;41885:158::-;;;;;:::o;29086:2236::-;29209:20;29232:13;;29209:36;;29274:1;29260:16;;:2;:16;;;29256:48;;;29285:19;;;;;;;;;;;;;;29256:48;29331:1;29319:8;:13;29315:44;;;29341:18;;;;;;;;;;;;;;29315:44;29372:61;29402:1;29406:2;29410:12;29424:8;29372:21;:61::i;:::-;29976:1;15292:2;29947:1;:25;;29946:31;29934:8;:44;29908:18;:22;29927:2;29908:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;16072:3;30377:29;30404:1;30392:8;:13;30377:14;:29::i;:::-;:56;;15809:3;30314:15;:41;;30272:21;30290:2;30272:17;:21::i;:::-;:84;:162;30221:17;:31;30239:12;30221:31;;;;;;;;;;;:213;;;;30451:20;30474:12;30451:35;;30501:11;30530:8;30515:12;:23;30501:37;;30577:1;30559:2;:14;;;:19;30555:635;;30599:313;30655:12;30651:2;30630:38;;30647:1;30630:38;;;;;;;;;;;;30696:69;30735:1;30739:2;30743:14;;;;;;30759:5;30696:30;:69::i;:::-;30691:174;;30801:40;;;;;;;;;;;;;;30691:174;30907:3;30892:12;:18;30599:313;;30993:12;30976:13;;:29;30972:43;;31007:8;;;30972:43;30555:635;;;31056:119;31112:14;;;;;;31108:2;31087:40;;31104:1;31087:40;;;;;;;;;;;;31170:3;31155:12;:18;31056:119;;30555:635;31220:12;31204:13;:28;;;;29685:1559;;31254:60;31283:1;31287:2;31291:12;31305:8;31254:20;:60::i;:::-;29198:2124;29086:2236;;;:::o;25474:142::-;25532:14;25593:5;25583:15;;25474:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:::-;9731:3;9752:67;9816:2;9811:3;9752:67;:::i;:::-;9745:74;;9828:93;9917:3;9828:93;:::i;:::-;9946:2;9941:3;9937:12;9930:19;;9589:366;;;:::o;9961:::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:400::-;10493:3;10514:84;10596:1;10591:3;10514:84;:::i;:::-;10507:91;;10607:93;10696:3;10607:93;:::i;:::-;10725:1;10720:3;10716:11;10709:18;;10333:400;;;:::o;10739:366::-;10881:3;10902:67;10966:2;10961:3;10902:67;:::i;:::-;10895:74;;10978:93;11067:3;10978:93;:::i;:::-;11096:2;11091:3;11087:12;11080:19;;10739:366;;;:::o;11111:::-;11253:3;11274:67;11338:2;11333:3;11274:67;:::i;:::-;11267:74;;11350:93;11439:3;11350:93;:::i;:::-;11468:2;11463:3;11459:12;11452:19;;11111:366;;;:::o;11483:::-;11625:3;11646:67;11710:2;11705:3;11646:67;:::i;:::-;11639:74;;11722:93;11811:3;11722:93;:::i;:::-;11840:2;11835:3;11831:12;11824:19;;11483:366;;;:::o;11855:118::-;11942:24;11960:5;11942:24;:::i;:::-;11937:3;11930:37;11855:118;;:::o;11979:701::-;12260:3;12282:95;12373:3;12364:6;12282:95;:::i;:::-;12275:102;;12394:95;12485:3;12476:6;12394:95;:::i;:::-;12387:102;;12506:148;12650:3;12506:148;:::i;:::-;12499:155;;12671:3;12664:10;;11979:701;;;;;:::o;12686:222::-;12779:4;12817:2;12806:9;12802:18;12794:26;;12830:71;12898:1;12887:9;12883:17;12874:6;12830:71;:::i;:::-;12686:222;;;;:::o;12914:640::-;13109:4;13147:3;13136:9;13132:19;13124:27;;13161:71;13229:1;13218:9;13214:17;13205:6;13161:71;:::i;:::-;13242:72;13310:2;13299:9;13295:18;13286:6;13242:72;:::i;:::-;13324;13392:2;13381:9;13377:18;13368:6;13324:72;:::i;:::-;13443:9;13437:4;13433:20;13428:2;13417:9;13413:18;13406:48;13471:76;13542:4;13533:6;13471:76;:::i;:::-;13463:84;;12914:640;;;;;;;:::o;13560:210::-;13647:4;13685:2;13674:9;13670:18;13662:26;;13698:65;13760:1;13749:9;13745:17;13736:6;13698:65;:::i;:::-;13560:210;;;;:::o;13776:313::-;13889:4;13927:2;13916:9;13912:18;13904:26;;13976:9;13970:4;13966:20;13962:1;13951:9;13947:17;13940:47;14004:78;14077:4;14068:6;14004:78;:::i;:::-;13996:86;;13776:313;;;;:::o;14095:419::-;14261:4;14299:2;14288:9;14284:18;14276:26;;14348:9;14342:4;14338:20;14334:1;14323:9;14319:17;14312:47;14376:131;14502:4;14376:131;:::i;:::-;14368:139;;14095:419;;;:::o;14520:::-;14686:4;14724:2;14713:9;14709:18;14701:26;;14773:9;14767:4;14763:20;14759:1;14748:9;14744:17;14737:47;14801:131;14927:4;14801:131;:::i;:::-;14793:139;;14520:419;;;:::o;14945:::-;15111:4;15149:2;15138:9;15134:18;15126:26;;15198:9;15192:4;15188:20;15184:1;15173:9;15169:17;15162:47;15226:131;15352:4;15226:131;:::i;:::-;15218:139;;14945:419;;;:::o;15370:::-;15536:4;15574:2;15563:9;15559:18;15551:26;;15623:9;15617:4;15613:20;15609:1;15598:9;15594:17;15587:47;15651:131;15777:4;15651:131;:::i;:::-;15643:139;;15370:419;;;:::o;15795:::-;15961:4;15999:2;15988:9;15984:18;15976:26;;16048:9;16042:4;16038:20;16034:1;16023:9;16019:17;16012:47;16076:131;16202:4;16076:131;:::i;:::-;16068:139;;15795:419;;;:::o;16220:::-;16386:4;16424:2;16413:9;16409:18;16401:26;;16473:9;16467:4;16463:20;16459:1;16448:9;16444:17;16437:47;16501:131;16627:4;16501:131;:::i;:::-;16493:139;;16220:419;;;:::o;16645:::-;16811:4;16849:2;16838:9;16834:18;16826:26;;16898:9;16892:4;16888:20;16884:1;16873:9;16869:17;16862:47;16926:131;17052:4;16926:131;:::i;:::-;16918:139;;16645:419;;;:::o;17070:222::-;17163:4;17201:2;17190:9;17186:18;17178:26;;17214:71;17282:1;17271:9;17267:17;17258:6;17214:71;:::i;:::-;17070:222;;;;:::o;17298:129::-;17332:6;17359:20;;:::i;:::-;17349:30;;17388:33;17416:4;17408:6;17388:33;:::i;:::-;17298:129;;;:::o;17433:75::-;17466:6;17499:2;17493:9;17483:19;;17433:75;:::o;17514:307::-;17575:4;17665:18;17657:6;17654:30;17651:56;;;17687:18;;:::i;:::-;17651:56;17725:29;17747:6;17725:29;:::i;:::-;17717:37;;17809:4;17803;17799:15;17791:23;;17514:307;;;:::o;17827:308::-;17889:4;17979:18;17971:6;17968:30;17965:56;;;18001:18;;:::i;:::-;17965:56;18039:29;18061:6;18039:29;:::i;:::-;18031:37;;18123:4;18117;18113:15;18105:23;;17827:308;;;:::o;18141:98::-;18192:6;18226:5;18220:12;18210:22;;18141:98;;;:::o;18245:99::-;18297:6;18331:5;18325:12;18315:22;;18245:99;;;:::o;18350:168::-;18433:11;18467:6;18462:3;18455:19;18507:4;18502:3;18498:14;18483:29;;18350:168;;;;:::o;18524:169::-;18608:11;18642:6;18637:3;18630:19;18682:4;18677:3;18673:14;18658:29;;18524:169;;;;:::o;18699:148::-;18801:11;18838:3;18823:18;;18699:148;;;;:::o;18853:305::-;18893:3;18912:20;18930:1;18912:20;:::i;:::-;18907:25;;18946:20;18964:1;18946:20;:::i;:::-;18941:25;;19100:1;19032:66;19028:74;19025:1;19022:81;19019:107;;;19106:18;;:::i;:::-;19019:107;19150:1;19147;19143:9;19136:16;;18853:305;;;;:::o;19164:185::-;19204:1;19221:20;19239:1;19221:20;:::i;:::-;19216:25;;19255:20;19273:1;19255:20;:::i;:::-;19250:25;;19294:1;19284:35;;19299:18;;:::i;:::-;19284:35;19341:1;19338;19334:9;19329:14;;19164:185;;;;:::o;19355:348::-;19395:7;19418:20;19436:1;19418:20;:::i;:::-;19413:25;;19452:20;19470:1;19452:20;:::i;:::-;19447:25;;19640:1;19572:66;19568:74;19565:1;19562:81;19557:1;19550:9;19543:17;19539:105;19536:131;;;19647:18;;:::i;:::-;19536:131;19695:1;19692;19688:9;19677:20;;19355:348;;;;:::o;19709:191::-;19749:4;19769:20;19787:1;19769:20;:::i;:::-;19764:25;;19803:20;19821:1;19803:20;:::i;:::-;19798:25;;19842:1;19839;19836:8;19833:34;;;19847:18;;:::i;:::-;19833:34;19892:1;19889;19885:9;19877:17;;19709:191;;;;:::o;19906:96::-;19943:7;19972:24;19990:5;19972:24;:::i;:::-;19961:35;;19906:96;;;:::o;20008:90::-;20042:7;20085:5;20078:13;20071:21;20060:32;;20008:90;;;:::o;20104:149::-;20140:7;20180:66;20173:5;20169:78;20158:89;;20104:149;;;:::o;20259:126::-;20296:7;20336:42;20329:5;20325:54;20314:65;;20259:126;;;:::o;20391:77::-;20428:7;20457:5;20446:16;;20391:77;;;:::o;20474:154::-;20558:6;20553:3;20548;20535:30;20620:1;20611:6;20606:3;20602:16;20595:27;20474:154;;;:::o;20634:307::-;20702:1;20712:113;20726:6;20723:1;20720:13;20712:113;;;20811:1;20806:3;20802:11;20796:18;20792:1;20787:3;20783:11;20776:39;20748:2;20745:1;20741:10;20736:15;;20712:113;;;20843:6;20840:1;20837:13;20834:101;;;20923:1;20914:6;20909:3;20905:16;20898:27;20834:101;20683:258;20634:307;;;:::o;20947:320::-;20991:6;21028:1;21022:4;21018:12;21008:22;;21075:1;21069:4;21065:12;21096:18;21086:81;;21152:4;21144:6;21140:17;21130:27;;21086:81;21214:2;21206:6;21203:14;21183:18;21180:38;21177:84;;;21233:18;;:::i;:::-;21177:84;20998:269;20947:320;;;:::o;21273:281::-;21356:27;21378:4;21356:27;:::i;:::-;21348:6;21344:40;21486:6;21474:10;21471:22;21450:18;21438:10;21435:34;21432:62;21429:88;;;21497:18;;:::i;:::-;21429:88;21537:10;21533:2;21526:22;21316:238;21273:281;;:::o;21560:233::-;21599:3;21622:24;21640:5;21622:24;:::i;:::-;21613:33;;21668:66;21661:5;21658:77;21655:103;;;21738:18;;:::i;:::-;21655:103;21785:1;21778:5;21774:13;21767:20;;21560:233;;;:::o;21799:176::-;21831:1;21848:20;21866:1;21848:20;:::i;:::-;21843:25;;21882:20;21900:1;21882:20;:::i;:::-;21877:25;;21921:1;21911:35;;21926:18;;:::i;:::-;21911:35;21967:1;21964;21960:9;21955:14;;21799:176;;;;:::o;21981:180::-;22029:77;22026:1;22019:88;22126:4;22123:1;22116:15;22150:4;22147:1;22140:15;22167:180;22215:77;22212:1;22205:88;22312:4;22309:1;22302:15;22336:4;22333:1;22326:15;22353:180;22401:77;22398:1;22391:88;22498:4;22495:1;22488:15;22522:4;22519:1;22512:15;22539:180;22587:77;22584:1;22577:88;22684:4;22681:1;22674:15;22708:4;22705:1;22698:15;22725:180;22773:77;22770:1;22763:88;22870:4;22867:1;22860:15;22894:4;22891:1;22884:15;22911:117;23020:1;23017;23010:12;23034:117;23143:1;23140;23133:12;23157:117;23266:1;23263;23256:12;23280:117;23389:1;23386;23379:12;23403:102;23444:6;23495:2;23491:7;23486:2;23479:5;23475:14;23471:28;23461:38;;23403:102;;;:::o;23511:179::-;23651:31;23647:1;23639:6;23635:14;23628:55;23511:179;:::o;23696:225::-;23836:34;23832:1;23824:6;23820:14;23813:58;23905:8;23900:2;23892:6;23888:15;23881:33;23696:225;:::o;23927:168::-;24067:20;24063:1;24055:6;24051:14;24044:44;23927:168;:::o;24101:172::-;24241:24;24237:1;24229:6;24225:14;24218:48;24101:172;:::o;24279:155::-;24419:7;24415:1;24407:6;24403:14;24396:31;24279:155;:::o;24440:182::-;24580:34;24576:1;24568:6;24564:14;24557:58;24440:182;:::o;24628:234::-;24768:34;24764:1;24756:6;24752:14;24745:58;24837:17;24832:2;24824:6;24820:15;24813:42;24628:234;:::o;24868:172::-;25008:24;25004:1;24996:6;24992:14;24985:48;24868:172;:::o;25046:122::-;25119:24;25137:5;25119:24;:::i;:::-;25112:5;25109:35;25099:63;;25158:1;25155;25148:12;25099:63;25046:122;:::o;25174:116::-;25244:21;25259:5;25244:21;:::i;:::-;25237:5;25234:32;25224:60;;25280:1;25277;25270:12;25224:60;25174:116;:::o;25296:120::-;25368:23;25385:5;25368:23;:::i;:::-;25361:5;25358:34;25348:62;;25406:1;25403;25396:12;25348:62;25296:120;:::o;25422:122::-;25495:24;25513:5;25495:24;:::i;:::-;25488:5;25485:35;25475:63;;25534:1;25531;25524:12;25475:63;25422:122;:::o
Swarm Source
ipfs://6f3a2eec83a72efa5c0deeab6fd7338c2ba1cd5aa9edf9741511eb4df223c393
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.