ERC-721
Overview
Max Total Supply
132 MHH
Holders
132
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MHHLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MyHeartHurts
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-11 */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: 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: contracts/mhh.sol //SPDX-License-Identifier: MIT pragma solidity >=0.8.13 <0.9.0; contract MyHeartHurts is ERC721A, Ownable, ReentrancyGuard { enum SalesStatus { Public, Heartlist, Paused } uint256 public mintPrice = 0.01 ether; uint256 public maxSupply = 3701; uint256 public maxPublicPerWallet = 3; uint256 public maxHLPerWallet = 1; string public metadataURI; bytes32 public merkleRoot; SalesStatus public status = SalesStatus.Paused; mapping(address => uint256) public amountMintedPublicPerWallet; mapping(address => uint256) public amountMintedHLPerWallet; constructor() ERC721A("My Heart Hurts", "MHH") {} modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } modifier userCanMintHL(address _user, bytes32[] memory _proof, uint256 _amount) { require(status == SalesStatus.Heartlist, "Heartlist sale is not on"); require(isWalletOnHL(_user, _proof), "Wallet is not on Heartlist"); require(amountMintedHLPerWallet[_user] + _amount < maxHLPerWallet + 1, "Max HL wallet allocation exceeded"); _; } modifier userCanMintPublic(address _user, uint256 _amount) { require(status == SalesStatus.Public, "Public sale is not on"); require(totalSupply() + _amount < maxSupply + 1, "Max supply exceeded"); require(amountMintedPublicPerWallet[_user] + _amount < maxPublicPerWallet + 1, "Max public wallet allocation exceeded"); _; } function airdrop(uint256 _amount, address _to) public onlyOwner { require(totalSupply() + _amount < maxSupply + 1, "Max supply exceeded"); _safeMint(_to, _amount); } function hlMint(bytes32[] memory _proof, uint256 _amount) public payable nonReentrant callerIsUser userCanMintHL(msg.sender, _proof, _amount) { amountMintedHLPerWallet[msg.sender] += _amount; _safeMint(msg.sender, _amount); } function publicMint(uint256 _amount) public payable nonReentrant callerIsUser userCanMintPublic(msg.sender, _amount) { require(msg.value >= mintPrice * _amount, "Not enough ETH for transaction"); amountMintedPublicPerWallet[msg.sender] += _amount; _safeMint(msg.sender, _amount); } function isWalletOnHL(address _account, bytes32[] memory _proof) public view returns (bool) { return MerkleProof.verify(_proof, merkleRoot, keccak256(abi.encodePacked(_account))); } function setSaleStatus(SalesStatus _status) external onlyOwner { status = _status; } function setMetadataURI(string memory _metadataURI) external onlyOwner { metadataURI = _metadataURI; } function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } function _withdraw(uint256 amount, address to) private { (bool success,) = payable(to).call{value: amount}(""); require(success); } function withdrawPercentage(uint256 _percent, address _to) external onlyOwner nonReentrant { uint256 _balance = address(this).balance; require(_balance > 0, "Insufficient balance."); _withdraw(_balance * _percent / 100, _to); } function _baseURI() internal view virtual override returns (string memory) { return metadataURI; } }
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":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountMintedHLPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountMintedPublicPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"hlMint","outputs":[],"stateMutability":"payable","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":"address","name":"_account","type":"address"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"isWalletOnHL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHLPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_metadataURI","type":"string"}],"name":"setMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum MyHeartHurts.SalesStatus","name":"_status","type":"uint8"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum MyHeartHurts.SalesStatus","name":"","type":"uint8"}],"stateMutability":"view","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":"uint256","name":"_percent","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052662386f26fc10000600a55610e75600b556003600c556001600d556010805460ff191660021790553480156200003957600080fd5b50604080518082018252600e81526d4d7920486561727420487572747360901b60208083019182528351808501909452600384526209a90960eb1b9084015281519192916200008b9160029162000110565b508051620000a190600390602084019062000110565b50506000805550620000b333620000be565b6001600955620001f2565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011e90620001b6565b90600052602060002090601f0160209004810192826200014257600085556200018d565b82601f106200015d57805160ff19168380011785556200018d565b828001600101855582156200018d579182015b828111156200018d57825182559160200191906001019062000170565b506200019b9291506200019f565b5090565b5b808211156200019b5760008155600101620001a0565b600181811c90821680620001cb57607f821691505b602082108103620001ec57634e487b7160e01b600052602260045260246000fd5b50919050565b61200780620002026000396000f3fe6080604052600436106101f95760003560e01c80636a3d3f171161010d57806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd14610585578063d157f54c146105a5578063d5abeb01146105d2578063e985e9c5146105e8578063f2fde38b1461063157600080fd5b806395d89b4114610510578063a22cb46514610525578063b88d4fde14610545578063bc63f02e1461056557600080fd5b8063775dce59116100dc578063775dce591461048f5780637cb64759146104bc5780638da5cb5b146104dc57806393ce0033146104fa57600080fd5b80636a3d3f171461041a57806370a082311461043a578063715018a61461045a578063750521f51461046f57600080fd5b806323b872dd116101905780634891ad881161015f5780634891ad881461039157806350729c9b146103b15780635c1de6cd146103c45780636352211e146103e45780636817c76c1461040457600080fd5b806323b872dd146103285780632db11544146103485780632eb4a7ab1461035b57806342842e0e1461037157600080fd5b8063095ea7b3116101cc578063095ea7b3146102a25780630fa26ccb146102c457806318160ddd146102e8578063200d2ed21461030157600080fd5b806301ffc9a7146101fe57806303ee438c1461023357806306fdde0314610255578063081812fc1461026a575b600080fd5b34801561020a57600080fd5b5061021e61021936600461195e565b610651565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b506102486106a3565b60405161022a91906119d3565b34801561026157600080fd5b50610248610731565b34801561027657600080fd5b5061028a6102853660046119e6565b6107c3565b6040516001600160a01b03909116815260200161022a565b3480156102ae57600080fd5b506102c26102bd366004611a1b565b610807565b005b3480156102d057600080fd5b506102da600d5481565b60405190815260200161022a565b3480156102f457600080fd5b50600154600054036102da565b34801561030d57600080fd5b5060105461031b9060ff1681565b60405161022a9190611a5b565b34801561033457600080fd5b506102c2610343366004611a83565b6108d9565b6102c26103563660046119e6565b6108e9565b34801561036757600080fd5b506102da600f5481565b34801561037d57600080fd5b506102c261038c366004611a83565b610b54565b34801561039d57600080fd5b506102c26103ac366004611abf565b610b6f565b6102c26103bf366004611ba7565b610bc0565b3480156103d057600080fd5b5061021e6103df366004611bec565b610db9565b3480156103f057600080fd5b5061028a6103ff3660046119e6565b610e07565b34801561041057600080fd5b506102da600a5481565b34801561042657600080fd5b506102c2610435366004611c3a565b610e12565b34801561044657600080fd5b506102da610455366004611c66565b610ec8565b34801561046657600080fd5b506102c2610f17565b34801561047b57600080fd5b506102c261048a366004611cd9565b610f4d565b34801561049b57600080fd5b506102da6104aa366004611c66565b60126020526000908152604090205481565b3480156104c857600080fd5b506102c26104d73660046119e6565b610f8e565b3480156104e857600080fd5b506008546001600160a01b031661028a565b34801561050657600080fd5b506102da600c5481565b34801561051c57600080fd5b50610248610fbd565b34801561053157600080fd5b506102c2610540366004611d22565b610fcc565b34801561055157600080fd5b506102c2610560366004611d5e565b611061565b34801561057157600080fd5b506102c2610580366004611c3a565b6110ab565b34801561059157600080fd5b506102486105a03660046119e6565b611148565b3480156105b157600080fd5b506102da6105c0366004611c66565b60116020526000908152604090205481565b3480156105de57600080fd5b506102da600b5481565b3480156105f457600080fd5b5061021e610603366004611dda565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561063d57600080fd5b506102c261064c366004611c66565b6111cb565b60006301ffc9a760e01b6001600160e01b03198316148061068257506380ac58cd60e01b6001600160e01b03198316145b8061069d5750635b5e139f60e01b6001600160e01b03198316145b92915050565b600e80546106b090611e04565b80601f01602080910402602001604051908101604052809291908181526020018280546106dc90611e04565b80156107295780601f106106fe57610100808354040283529160200191610729565b820191906000526020600020905b81548152906001019060200180831161070c57829003601f168201915b505050505081565b60606002805461074090611e04565b80601f016020809104026020016040519081016040528092919081815260200182805461076c90611e04565b80156107b95780601f1061078e576101008083540402835291602001916107b9565b820191906000526020600020905b81548152906001019060200180831161079c57829003601f168201915b5050505050905090565b60006107ce82611266565b6107eb576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108128261128d565b9050806001600160a01b0316836001600160a01b0316036108465760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461087d576108608133610603565b61087d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108e48383836112f4565b505050565b6002600954036109145760405162461bcd60e51b815260040161090b90611e3e565b60405180910390fd5b60026009553233146109685760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161090b565b3381600060105460ff16600281111561098357610983611a45565b146109c85760405162461bcd60e51b8152602060048201526015602482015274283ab13634b19039b0b6329034b9903737ba1037b760591b604482015260640161090b565b600b546109d6906001611e8b565b816109e46001546000540390565b6109ee9190611e8b565b10610a315760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604482015260640161090b565b600c54610a3f906001611e8b565b6001600160a01b038316600090815260116020526040902054610a63908390611e8b565b10610abe5760405162461bcd60e51b815260206004820152602560248201527f4d6178207075626c69632077616c6c657420616c6c6f636174696f6e20657863604482015264195959195960da1b606482015260840161090b565b82600a54610acc9190611ea3565b341015610b1b5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e0000604482015260640161090b565b3360009081526011602052604081208054859290610b3a908490611e8b565b90915550610b4a9050338461149b565b5050600160095550565b6108e483838360405180602001604052806000815250611061565b6008546001600160a01b03163314610b995760405162461bcd60e51b815260040161090b90611ec2565b6010805482919060ff19166001836002811115610bb857610bb8611a45565b021790555050565b600260095403610be25760405162461bcd60e51b815260040161090b90611e3e565b6002600955323314610c365760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161090b565b338282600160105460ff166002811115610c5257610c52611a45565b14610c9f5760405162461bcd60e51b815260206004820152601860248201527f48656172746c6973742073616c65206973206e6f74206f6e0000000000000000604482015260640161090b565b610ca98383610db9565b610cf55760405162461bcd60e51b815260206004820152601a60248201527f57616c6c6574206973206e6f74206f6e2048656172746c697374000000000000604482015260640161090b565b600d54610d03906001611e8b565b6001600160a01b038416600090815260126020526040902054610d27908390611e8b565b10610d7e5760405162461bcd60e51b815260206004820152602160248201527f4d617820484c2077616c6c657420616c6c6f636174696f6e20657863656564656044820152601960fa1b606482015260840161090b565b3360009081526012602052604081208054869290610d9d908490611e8b565b90915550610dad9050338561149b565b50506001600955505050565b600f546040516bffffffffffffffffffffffff19606085901b166020820152600091610e0091849190603401604051602081830303815290604052805190602001206114b5565b9392505050565b600061069d8261128d565b6008546001600160a01b03163314610e3c5760405162461bcd60e51b815260040161090b90611ec2565b600260095403610e5e5760405162461bcd60e51b815260040161090b90611e3e565b60026009554780610ea95760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a103130b630b731b29760591b604482015260640161090b565b610b4a6064610eb88584611ea3565b610ec29190611ef7565b836114cb565b60006001600160a01b038216610ef1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610f415760405162461bcd60e51b815260040161090b90611ec2565b610f4b600061152b565b565b6008546001600160a01b03163314610f775760405162461bcd60e51b815260040161090b90611ec2565b8051610f8a90600e9060208401906118af565b5050565b6008546001600160a01b03163314610fb85760405162461bcd60e51b815260040161090b90611ec2565b600f55565b60606003805461074090611e04565b336001600160a01b03831603610ff55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61106c8484846112f4565b6001600160a01b0383163b156110a5576110888484848461157d565b6110a5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146110d55760405162461bcd60e51b815260040161090b90611ec2565b600b546110e3906001611e8b565b826110f16001546000540390565b6110fb9190611e8b565b1061113e5760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604482015260640161090b565b610f8a818361149b565b606061115382611266565b61117057604051630a14c4b560e41b815260040160405180910390fd5b600061117a611669565b9050805160000361119a5760405180602001604052806000815250610e00565b806111a484611678565b6040516020016111b5929190611f19565b6040516020818303038152906040529392505050565b6008546001600160a01b031633146111f55760405162461bcd60e51b815260040161090b90611ec2565b6001600160a01b03811661125a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090b565b6112638161152b565b50565b600080548210801561069d575050600090815260046020526040902054600160e01b161590565b6000816000548110156112db5760008181526004602052604081205490600160e01b821690036112d9575b80600003610e005750600019016000818152600460205260409020546112b8565b505b604051636f96cda160e11b815260040160405180910390fd5b60006112ff8261128d565b9050836001600160a01b0316816001600160a01b0316146113325760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061135057506113508533610603565b8061136b575033611360846107c3565b6001600160a01b0316145b90508061138b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166113b257604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003611453576001830160008181526004602052604081205490036114515760005481146114515760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610f8a8282604051806020016040528060008152506116c7565b6000826114c2858461183b565b14949350505050565b6000816001600160a01b03168360405160006040518083038185875af1925050503d8060008114611518576040519150601f19603f3d011682016040523d82523d6000602084013e61151d565b606091505b50509050806108e457600080fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115b2903390899088908890600401611f48565b6020604051808303816000875af19250505080156115ed575060408051601f3d908101601f191682019092526115ea91810190611f85565b60015b61164b573d80801561161b576040519150601f19603f3d011682016040523d82523d6000602084013e611620565b606091505b508051600003611643576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e805461074090611e04565b604080516080810191829052607f0190826030600a8206018353600a90045b80156116b557600183039250600a81066030018353600a9004611697565b50819003601f19909101908152919050565b6000546001600160a01b0384166116f057604051622e076360e81b815260040160405180910390fd5b826000036117115760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156117e6575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46117af600087848060010195508761157d565b6117cc576040516368d2bf6b60e11b815260040160405180910390fd5b8082106117645782600054146117e157600080fd5b61182b565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106117e7575b5060009081556110a59085838684565b600081815b84518110156118a757600085828151811061185d5761185d611fa2565b602002602001015190508083116118835760008381526020829052604090209250611894565b600081815260208490526040902092505b508061189f81611fb8565b915050611840565b509392505050565b8280546118bb90611e04565b90600052602060002090601f0160209004810192826118dd5760008555611923565b82601f106118f657805160ff1916838001178555611923565b82800160010185558215611923579182015b82811115611923578251825591602001919060010190611908565b5061192f929150611933565b5090565b5b8082111561192f5760008155600101611934565b6001600160e01b03198116811461126357600080fd5b60006020828403121561197057600080fd5b8135610e0081611948565b60005b8381101561199657818101518382015260200161197e565b838111156110a55750506000910152565b600081518084526119bf81602086016020860161197b565b601f01601f19169290920160200192915050565b602081526000610e0060208301846119a7565b6000602082840312156119f857600080fd5b5035919050565b80356001600160a01b0381168114611a1657600080fd5b919050565b60008060408385031215611a2e57600080fd5b611a37836119ff565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b6020810160038310611a7d57634e487b7160e01b600052602160045260246000fd5b91905290565b600080600060608486031215611a9857600080fd5b611aa1846119ff565b9250611aaf602085016119ff565b9150604084013590509250925092565b600060208284031215611ad157600080fd5b813560038110610e0057600080fd5b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611b1f57611b1f611ae0565b604052919050565b600082601f830112611b3857600080fd5b8135602067ffffffffffffffff821115611b5457611b54611ae0565b8160051b611b63828201611af6565b9283528481018201928281019087851115611b7d57600080fd5b83870192505b84831015611b9c57823582529183019190830190611b83565b979650505050505050565b60008060408385031215611bba57600080fd5b823567ffffffffffffffff811115611bd157600080fd5b611bdd85828601611b27565b95602094909401359450505050565b60008060408385031215611bff57600080fd5b611c08836119ff565b9150602083013567ffffffffffffffff811115611c2457600080fd5b611c3085828601611b27565b9150509250929050565b60008060408385031215611c4d57600080fd5b82359150611c5d602084016119ff565b90509250929050565b600060208284031215611c7857600080fd5b610e00826119ff565b600067ffffffffffffffff831115611c9b57611c9b611ae0565b611cae601f8401601f1916602001611af6565b9050828152838383011115611cc257600080fd5b828260208301376000602084830101529392505050565b600060208284031215611ceb57600080fd5b813567ffffffffffffffff811115611d0257600080fd5b8201601f81018413611d1357600080fd5b61166184823560208401611c81565b60008060408385031215611d3557600080fd5b611d3e836119ff565b915060208301358015158114611d5357600080fd5b809150509250929050565b60008060008060808587031215611d7457600080fd5b611d7d856119ff565b9350611d8b602086016119ff565b925060408501359150606085013567ffffffffffffffff811115611dae57600080fd5b8501601f81018713611dbf57600080fd5b611dce87823560208401611c81565b91505092959194509250565b60008060408385031215611ded57600080fd5b611df6836119ff565b9150611c5d602084016119ff565b600181811c90821680611e1857607f821691505b602082108103611e3857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611e9e57611e9e611e75565b500190565b6000816000190483118215151615611ebd57611ebd611e75565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082611f1457634e487b7160e01b600052601260045260246000fd5b500490565b60008351611f2b81846020880161197b565b835190830190611f3f81836020880161197b565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f7b908301846119a7565b9695505050505050565b600060208284031215611f9757600080fd5b8151610e0081611948565b634e487b7160e01b600052603260045260246000fd5b600060018201611fca57611fca611e75565b506001019056fea26469706673582212201da2df1b8b3cfc2561ffc52f222947d0b0fd76641a357e5917e483587a6079ac64736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106101f95760003560e01c80636a3d3f171161010d57806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd14610585578063d157f54c146105a5578063d5abeb01146105d2578063e985e9c5146105e8578063f2fde38b1461063157600080fd5b806395d89b4114610510578063a22cb46514610525578063b88d4fde14610545578063bc63f02e1461056557600080fd5b8063775dce59116100dc578063775dce591461048f5780637cb64759146104bc5780638da5cb5b146104dc57806393ce0033146104fa57600080fd5b80636a3d3f171461041a57806370a082311461043a578063715018a61461045a578063750521f51461046f57600080fd5b806323b872dd116101905780634891ad881161015f5780634891ad881461039157806350729c9b146103b15780635c1de6cd146103c45780636352211e146103e45780636817c76c1461040457600080fd5b806323b872dd146103285780632db11544146103485780632eb4a7ab1461035b57806342842e0e1461037157600080fd5b8063095ea7b3116101cc578063095ea7b3146102a25780630fa26ccb146102c457806318160ddd146102e8578063200d2ed21461030157600080fd5b806301ffc9a7146101fe57806303ee438c1461023357806306fdde0314610255578063081812fc1461026a575b600080fd5b34801561020a57600080fd5b5061021e61021936600461195e565b610651565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b506102486106a3565b60405161022a91906119d3565b34801561026157600080fd5b50610248610731565b34801561027657600080fd5b5061028a6102853660046119e6565b6107c3565b6040516001600160a01b03909116815260200161022a565b3480156102ae57600080fd5b506102c26102bd366004611a1b565b610807565b005b3480156102d057600080fd5b506102da600d5481565b60405190815260200161022a565b3480156102f457600080fd5b50600154600054036102da565b34801561030d57600080fd5b5060105461031b9060ff1681565b60405161022a9190611a5b565b34801561033457600080fd5b506102c2610343366004611a83565b6108d9565b6102c26103563660046119e6565b6108e9565b34801561036757600080fd5b506102da600f5481565b34801561037d57600080fd5b506102c261038c366004611a83565b610b54565b34801561039d57600080fd5b506102c26103ac366004611abf565b610b6f565b6102c26103bf366004611ba7565b610bc0565b3480156103d057600080fd5b5061021e6103df366004611bec565b610db9565b3480156103f057600080fd5b5061028a6103ff3660046119e6565b610e07565b34801561041057600080fd5b506102da600a5481565b34801561042657600080fd5b506102c2610435366004611c3a565b610e12565b34801561044657600080fd5b506102da610455366004611c66565b610ec8565b34801561046657600080fd5b506102c2610f17565b34801561047b57600080fd5b506102c261048a366004611cd9565b610f4d565b34801561049b57600080fd5b506102da6104aa366004611c66565b60126020526000908152604090205481565b3480156104c857600080fd5b506102c26104d73660046119e6565b610f8e565b3480156104e857600080fd5b506008546001600160a01b031661028a565b34801561050657600080fd5b506102da600c5481565b34801561051c57600080fd5b50610248610fbd565b34801561053157600080fd5b506102c2610540366004611d22565b610fcc565b34801561055157600080fd5b506102c2610560366004611d5e565b611061565b34801561057157600080fd5b506102c2610580366004611c3a565b6110ab565b34801561059157600080fd5b506102486105a03660046119e6565b611148565b3480156105b157600080fd5b506102da6105c0366004611c66565b60116020526000908152604090205481565b3480156105de57600080fd5b506102da600b5481565b3480156105f457600080fd5b5061021e610603366004611dda565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561063d57600080fd5b506102c261064c366004611c66565b6111cb565b60006301ffc9a760e01b6001600160e01b03198316148061068257506380ac58cd60e01b6001600160e01b03198316145b8061069d5750635b5e139f60e01b6001600160e01b03198316145b92915050565b600e80546106b090611e04565b80601f01602080910402602001604051908101604052809291908181526020018280546106dc90611e04565b80156107295780601f106106fe57610100808354040283529160200191610729565b820191906000526020600020905b81548152906001019060200180831161070c57829003601f168201915b505050505081565b60606002805461074090611e04565b80601f016020809104026020016040519081016040528092919081815260200182805461076c90611e04565b80156107b95780601f1061078e576101008083540402835291602001916107b9565b820191906000526020600020905b81548152906001019060200180831161079c57829003601f168201915b5050505050905090565b60006107ce82611266565b6107eb576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108128261128d565b9050806001600160a01b0316836001600160a01b0316036108465760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461087d576108608133610603565b61087d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108e48383836112f4565b505050565b6002600954036109145760405162461bcd60e51b815260040161090b90611e3e565b60405180910390fd5b60026009553233146109685760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161090b565b3381600060105460ff16600281111561098357610983611a45565b146109c85760405162461bcd60e51b8152602060048201526015602482015274283ab13634b19039b0b6329034b9903737ba1037b760591b604482015260640161090b565b600b546109d6906001611e8b565b816109e46001546000540390565b6109ee9190611e8b565b10610a315760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604482015260640161090b565b600c54610a3f906001611e8b565b6001600160a01b038316600090815260116020526040902054610a63908390611e8b565b10610abe5760405162461bcd60e51b815260206004820152602560248201527f4d6178207075626c69632077616c6c657420616c6c6f636174696f6e20657863604482015264195959195960da1b606482015260840161090b565b82600a54610acc9190611ea3565b341015610b1b5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e0000604482015260640161090b565b3360009081526011602052604081208054859290610b3a908490611e8b565b90915550610b4a9050338461149b565b5050600160095550565b6108e483838360405180602001604052806000815250611061565b6008546001600160a01b03163314610b995760405162461bcd60e51b815260040161090b90611ec2565b6010805482919060ff19166001836002811115610bb857610bb8611a45565b021790555050565b600260095403610be25760405162461bcd60e51b815260040161090b90611e3e565b6002600955323314610c365760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161090b565b338282600160105460ff166002811115610c5257610c52611a45565b14610c9f5760405162461bcd60e51b815260206004820152601860248201527f48656172746c6973742073616c65206973206e6f74206f6e0000000000000000604482015260640161090b565b610ca98383610db9565b610cf55760405162461bcd60e51b815260206004820152601a60248201527f57616c6c6574206973206e6f74206f6e2048656172746c697374000000000000604482015260640161090b565b600d54610d03906001611e8b565b6001600160a01b038416600090815260126020526040902054610d27908390611e8b565b10610d7e5760405162461bcd60e51b815260206004820152602160248201527f4d617820484c2077616c6c657420616c6c6f636174696f6e20657863656564656044820152601960fa1b606482015260840161090b565b3360009081526012602052604081208054869290610d9d908490611e8b565b90915550610dad9050338561149b565b50506001600955505050565b600f546040516bffffffffffffffffffffffff19606085901b166020820152600091610e0091849190603401604051602081830303815290604052805190602001206114b5565b9392505050565b600061069d8261128d565b6008546001600160a01b03163314610e3c5760405162461bcd60e51b815260040161090b90611ec2565b600260095403610e5e5760405162461bcd60e51b815260040161090b90611e3e565b60026009554780610ea95760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a103130b630b731b29760591b604482015260640161090b565b610b4a6064610eb88584611ea3565b610ec29190611ef7565b836114cb565b60006001600160a01b038216610ef1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610f415760405162461bcd60e51b815260040161090b90611ec2565b610f4b600061152b565b565b6008546001600160a01b03163314610f775760405162461bcd60e51b815260040161090b90611ec2565b8051610f8a90600e9060208401906118af565b5050565b6008546001600160a01b03163314610fb85760405162461bcd60e51b815260040161090b90611ec2565b600f55565b60606003805461074090611e04565b336001600160a01b03831603610ff55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61106c8484846112f4565b6001600160a01b0383163b156110a5576110888484848461157d565b6110a5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146110d55760405162461bcd60e51b815260040161090b90611ec2565b600b546110e3906001611e8b565b826110f16001546000540390565b6110fb9190611e8b565b1061113e5760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604482015260640161090b565b610f8a818361149b565b606061115382611266565b61117057604051630a14c4b560e41b815260040160405180910390fd5b600061117a611669565b9050805160000361119a5760405180602001604052806000815250610e00565b806111a484611678565b6040516020016111b5929190611f19565b6040516020818303038152906040529392505050565b6008546001600160a01b031633146111f55760405162461bcd60e51b815260040161090b90611ec2565b6001600160a01b03811661125a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090b565b6112638161152b565b50565b600080548210801561069d575050600090815260046020526040902054600160e01b161590565b6000816000548110156112db5760008181526004602052604081205490600160e01b821690036112d9575b80600003610e005750600019016000818152600460205260409020546112b8565b505b604051636f96cda160e11b815260040160405180910390fd5b60006112ff8261128d565b9050836001600160a01b0316816001600160a01b0316146113325760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061135057506113508533610603565b8061136b575033611360846107c3565b6001600160a01b0316145b90508061138b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166113b257604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003611453576001830160008181526004602052604081205490036114515760005481146114515760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610f8a8282604051806020016040528060008152506116c7565b6000826114c2858461183b565b14949350505050565b6000816001600160a01b03168360405160006040518083038185875af1925050503d8060008114611518576040519150601f19603f3d011682016040523d82523d6000602084013e61151d565b606091505b50509050806108e457600080fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115b2903390899088908890600401611f48565b6020604051808303816000875af19250505080156115ed575060408051601f3d908101601f191682019092526115ea91810190611f85565b60015b61164b573d80801561161b576040519150601f19603f3d011682016040523d82523d6000602084013e611620565b606091505b508051600003611643576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e805461074090611e04565b604080516080810191829052607f0190826030600a8206018353600a90045b80156116b557600183039250600a81066030018353600a9004611697565b50819003601f19909101908152919050565b6000546001600160a01b0384166116f057604051622e076360e81b815260040160405180910390fd5b826000036117115760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156117e6575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46117af600087848060010195508761157d565b6117cc576040516368d2bf6b60e11b815260040160405180910390fd5b8082106117645782600054146117e157600080fd5b61182b565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106117e7575b5060009081556110a59085838684565b600081815b84518110156118a757600085828151811061185d5761185d611fa2565b602002602001015190508083116118835760008381526020829052604090209250611894565b600081815260208490526040902092505b508061189f81611fb8565b915050611840565b509392505050565b8280546118bb90611e04565b90600052602060002090601f0160209004810192826118dd5760008555611923565b82601f106118f657805160ff1916838001178555611923565b82800160010185558215611923579182015b82811115611923578251825591602001919060010190611908565b5061192f929150611933565b5090565b5b8082111561192f5760008155600101611934565b6001600160e01b03198116811461126357600080fd5b60006020828403121561197057600080fd5b8135610e0081611948565b60005b8381101561199657818101518382015260200161197e565b838111156110a55750506000910152565b600081518084526119bf81602086016020860161197b565b601f01601f19169290920160200192915050565b602081526000610e0060208301846119a7565b6000602082840312156119f857600080fd5b5035919050565b80356001600160a01b0381168114611a1657600080fd5b919050565b60008060408385031215611a2e57600080fd5b611a37836119ff565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b6020810160038310611a7d57634e487b7160e01b600052602160045260246000fd5b91905290565b600080600060608486031215611a9857600080fd5b611aa1846119ff565b9250611aaf602085016119ff565b9150604084013590509250925092565b600060208284031215611ad157600080fd5b813560038110610e0057600080fd5b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611b1f57611b1f611ae0565b604052919050565b600082601f830112611b3857600080fd5b8135602067ffffffffffffffff821115611b5457611b54611ae0565b8160051b611b63828201611af6565b9283528481018201928281019087851115611b7d57600080fd5b83870192505b84831015611b9c57823582529183019190830190611b83565b979650505050505050565b60008060408385031215611bba57600080fd5b823567ffffffffffffffff811115611bd157600080fd5b611bdd85828601611b27565b95602094909401359450505050565b60008060408385031215611bff57600080fd5b611c08836119ff565b9150602083013567ffffffffffffffff811115611c2457600080fd5b611c3085828601611b27565b9150509250929050565b60008060408385031215611c4d57600080fd5b82359150611c5d602084016119ff565b90509250929050565b600060208284031215611c7857600080fd5b610e00826119ff565b600067ffffffffffffffff831115611c9b57611c9b611ae0565b611cae601f8401601f1916602001611af6565b9050828152838383011115611cc257600080fd5b828260208301376000602084830101529392505050565b600060208284031215611ceb57600080fd5b813567ffffffffffffffff811115611d0257600080fd5b8201601f81018413611d1357600080fd5b61166184823560208401611c81565b60008060408385031215611d3557600080fd5b611d3e836119ff565b915060208301358015158114611d5357600080fd5b809150509250929050565b60008060008060808587031215611d7457600080fd5b611d7d856119ff565b9350611d8b602086016119ff565b925060408501359150606085013567ffffffffffffffff811115611dae57600080fd5b8501601f81018713611dbf57600080fd5b611dce87823560208401611c81565b91505092959194509250565b60008060408385031215611ded57600080fd5b611df6836119ff565b9150611c5d602084016119ff565b600181811c90821680611e1857607f821691505b602082108103611e3857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611e9e57611e9e611e75565b500190565b6000816000190483118215151615611ebd57611ebd611e75565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082611f1457634e487b7160e01b600052601260045260246000fd5b500490565b60008351611f2b81846020880161197b565b835190830190611f3f81836020880161197b565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f7b908301846119a7565b9695505050505050565b600060208284031215611f9757600080fd5b8151610e0081611948565b634e487b7160e01b600052603260045260246000fd5b600060018201611fca57611fca611e75565b506001019056fea26469706673582212201da2df1b8b3cfc2561ffc52f222947d0b0fd76641a357e5917e483587a6079ac64736f6c634300080d0033
Deployed Bytecode Sourcemap
47322:3386:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21940:615;;;;;;;;;;-1:-1:-1;21940:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21940:615:0;;;;;;;;47644:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26953:100::-;;;;;;;;;;;;;:::i;29021:204::-;;;;;;;;;;-1:-1:-1;29021:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;29021:204:0;1528:203:1;28481:474:0;;;;;;;;;;-1:-1:-1;28481:474:0;;;;;:::i;:::-;;:::i;:::-;;47602:33;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;47602:33:0;2173:177:1;20994:315:0;;;;;;;;;;-1:-1:-1;21260:12:0;;21047:7;21244:13;:28;20994:315;;47708:46;;;;;;;;;;-1:-1:-1;47708:46:0;;;;;;;;;;;;;;;:::i;29907:170::-;;;;;;;;;;-1:-1:-1;29907:170:0;;;;;:::i;:::-;;:::i;49292:313::-;;;;;;:::i;:::-;;:::i;47676:25::-;;;;;;;;;;;;;;;;30148:185;;;;;;;;;;-1:-1:-1;30148:185:0;;;;;:::i;:::-;;:::i;49816:98::-;;;;;;;;;;-1:-1:-1;49816:98:0;;;;;:::i;:::-;;:::i;49036:248::-;;;;;;:::i;:::-;;:::i;49613:195::-;;;;;;;;;;-1:-1:-1;49613:195:0;;;;;:::i;:::-;;:::i;26742:144::-;;;;;;;;;;-1:-1:-1;26742:144:0;;;;;:::i;:::-;;:::i;47476:37::-;;;;;;;;;;;;;;;;50326:259;;;;;;;;;;-1:-1:-1;50326:259:0;;;;;:::i;:::-;;:::i;22619:224::-;;;;;;;;;;-1:-1:-1;22619:224:0;;;;;:::i;:::-;;:::i;8050:103::-;;;;;;;;;;;;;:::i;49922:116::-;;;;;;;;;;-1:-1:-1;49922:116:0;;;;;:::i;:::-;;:::i;47832:58::-;;;;;;;;;;-1:-1:-1;47832:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;50050:106;;;;;;;;;;-1:-1:-1;50050:106:0;;;;;:::i;:::-;;:::i;7399:87::-;;;;;;;;;;-1:-1:-1;7472:6:0;;-1:-1:-1;;;;;7472:6:0;7399:87;;47558:37;;;;;;;;;;;;;;;;27122:104;;;;;;;;;;;;;:::i;29297:308::-;;;;;;;;;;-1:-1:-1;29297:308:0;;;;;:::i;:::-;;:::i;30404:396::-;;;;;;;;;;-1:-1:-1;30404:396:0;;;;;:::i;:::-;;:::i;48840:188::-;;;;;;;;;;-1:-1:-1;48840:188:0;;;;;:::i;:::-;;:::i;27297:318::-;;;;;;;;;;-1:-1:-1;27297:318:0;;;;;:::i;:::-;;:::i;47763:62::-;;;;;;;;;;-1:-1:-1;47763:62:0;;;;;:::i;:::-;;;;;;;;;;;;;;47520:31;;;;;;;;;;;;;;;;29676:164;;;;;;;;;;-1:-1:-1;29676:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29797:25:0;;;29773:4;29797:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29676:164;8308:201;;;;;;;;;;-1:-1:-1;8308:201:0;;;;;:::i;:::-;;:::i;21940:615::-;22025:4;-1:-1:-1;;;;;;;;;22325:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;22402:25:0;;;22325:102;:179;;;-1:-1:-1;;;;;;;;;;22479:25:0;;;22325:179;22305:199;21940:615;-1:-1:-1;;21940:615:0:o;47644:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26953:100::-;27007:13;27040:5;27033:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26953:100;:::o;29021:204::-;29089:7;29114:16;29122:7;29114;:16::i;:::-;29109:64;;29139:34;;-1:-1:-1;;;29139:34:0;;;;;;;;;;;29109:64;-1:-1:-1;29193:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29193:24:0;;29021:204::o;28481:474::-;28554:13;28586:27;28605:7;28586:18;:27::i;:::-;28554:61;;28636:5;-1:-1:-1;;;;;28630:11:0;:2;-1:-1:-1;;;;;28630:11:0;;28626:48;;28650:24;;-1:-1:-1;;;28650:24:0;;;;;;;;;;;28626:48;45124:10;-1:-1:-1;;;;;28691:28:0;;;28687:175;;28739:44;28756:5;45124:10;29676:164;:::i;28739:44::-;28734:128;;28811:35;;-1:-1:-1;;;28811:35:0;;;;;;;;;;;28734:128;28874:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;28874:29:0;-1:-1:-1;;;;;28874:29:0;;;;;;;;;28919:28;;28874:24;;28919:28;;;;;;;28543:412;28481:474;;:::o;29907:170::-;30041:28;30051:4;30057:2;30061:7;30041:9;:28::i;:::-;29907:170;;;:::o;49292:313::-;1812:1;2410:7;;:19;2402:63;;;;-1:-1:-1;;;2402:63:0;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;48000:9:::1;48013:10;48000:23;47992:66;;;::::0;-1:-1:-1;;;47992:66:0;;9344:2:1;47992:66:0::1;::::0;::::1;9326:21:1::0;9383:2;9363:18;;;9356:30;9422:32;9402:18;;;9395:60;9472:18;;47992:66:0::1;9142:354:1::0;47992:66:0::1;49388:10:::2;49400:7:::0;48556:18:::2;48546:6;::::0;::::2;;:28;::::0;::::2;;;;;;:::i;:::-;;48538:62;;;::::0;-1:-1:-1;;;48538:62:0;;9703:2:1;48538:62:0::2;::::0;::::2;9685:21:1::0;9742:2;9722:18;;;9715:30;-1:-1:-1;;;9761:18:1;;;9754:51;9822:18;;48538:62:0::2;9501:345:1::0;48538:62:0::2;48645:9;::::0;:13:::2;::::0;48657:1:::2;48645:13;:::i;:::-;48635:7;48619:13;21260:12:::0;;21047:7;21244:13;:28;;20994:315;48619:13:::2;:23;;;;:::i;:::-;:39;48611:71;;;::::0;-1:-1:-1;;;48611:71:0;;10318:2:1;48611:71:0::2;::::0;::::2;10300:21:1::0;10357:2;10337:18;;;10330:30;-1:-1:-1;;;10376:18:1;;;10369:49;10435:18;;48611:71:0::2;10116:343:1::0;48611:71:0::2;48748:18;::::0;:22:::2;::::0;48769:1:::2;48748:22;:::i;:::-;-1:-1:-1::0;;;;;48701:34:0;::::2;;::::0;;;:27:::2;:34;::::0;;;;;:44:::2;::::0;48738:7;;48701:44:::2;:::i;:::-;:69;48693:119;;;::::0;-1:-1:-1;;;48693:119:0;;10666:2:1;48693:119:0::2;::::0;::::2;10648:21:1::0;10705:2;10685:18;;;10678:30;10744:34;10724:18;;;10717:62;-1:-1:-1;;;10795:18:1;;;10788:35;10840:19;;48693:119:0::2;10464:401:1::0;48693:119:0::2;49453:7:::3;49441:9;;:19;;;;:::i;:::-;49428:9;:32;;49420:75;;;::::0;-1:-1:-1;;;49420:75:0;;11245:2:1;49420:75:0::3;::::0;::::3;11227:21:1::0;11284:2;11264:18;;;11257:30;11323:32;11303:18;;;11296:60;11373:18;;49420:75:0::3;11043:354:1::0;49420:75:0::3;49534:10;49506:39;::::0;;;:27:::3;:39;::::0;;;;:50;;49549:7;;49506:39;:50:::3;::::0;49549:7;;49506:50:::3;:::i;:::-;::::0;;;-1:-1:-1;49567:30:0::3;::::0;-1:-1:-1;49577:10:0::3;49589:7:::0;49567:9:::3;:30::i;:::-;-1:-1:-1::0;;1768:1:0;2722:7;:22;-1:-1:-1;49292:313:0:o;30148:185::-;30286:39;30303:4;30309:2;30313:7;30286:39;;;;;;;;;;;;:16;:39::i;49816:98::-;7472:6;;-1:-1:-1;;;;;7472:6:0;45124:10;7619:23;7611:68;;;;-1:-1:-1;;;7611:68:0;;;;;;;:::i;:::-;49890:6:::1;:16:::0;;49899:7;;49890:6;-1:-1:-1;;49890:16:0::1;::::0;49899:7;49890:16:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;49816:98:::0;:::o;49036:248::-;1812:1;2410:7;;:19;2402:63;;;;-1:-1:-1;;;2402:63:0;;;;;;;:::i;:::-;1812:1;2543:7;:18;48000:9:::1;48013:10;48000:23;47992:66;;;::::0;-1:-1:-1;;;47992:66:0;;9344:2:1;47992:66:0::1;::::0;::::1;9326:21:1::0;9383:2;9363:18;;;9356:30;9422:32;9402:18;;;9395:60;9472:18;;47992:66:0::1;9142:354:1::0;47992:66:0::1;49149:10:::2;49161:6:::0;49169:7;48195:21:::2;48185:6;::::0;::::2;;:31;::::0;::::2;;;;;;:::i;:::-;;48177:68;;;::::0;-1:-1:-1;;;48177:68:0;;11965:2:1;48177:68:0::2;::::0;::::2;11947:21:1::0;12004:2;11984:18;;;11977:30;12043:26;12023:18;;;12016:54;12087:18;;48177:68:0::2;11763:348:1::0;48177:68:0::2;48264:27;48277:5;48284:6;48264:12;:27::i;:::-;48256:66;;;::::0;-1:-1:-1;;;48256:66:0;;12318:2:1;48256:66:0::2;::::0;::::2;12300:21:1::0;12357:2;12337:18;;;12330:30;12396:28;12376:18;;;12369:56;12442:18;;48256:66:0::2;12116:350:1::0;48256:66:0::2;48384:14;::::0;:18:::2;::::0;48401:1:::2;48384:18;:::i;:::-;-1:-1:-1::0;;;;;48341:30:0;::::2;;::::0;;;:23:::2;:30;::::0;;;;;:40:::2;::::0;48374:7;;48341:40:::2;:::i;:::-;:61;48333:107;;;::::0;-1:-1:-1;;;48333:107:0;;12673:2:1;48333:107:0::2;::::0;::::2;12655:21:1::0;12712:2;12692:18;;;12685:30;12751:34;12731:18;;;12724:62;-1:-1:-1;;;12802:18:1;;;12795:31;12843:19;;48333:107:0::2;12471:397:1::0;48333:107:0::2;49213:10:::3;49189:35;::::0;;;:23:::3;:35;::::0;;;;:46;;49228:7;;49189:35;:46:::3;::::0;49228:7;;49189:46:::3;:::i;:::-;::::0;;;-1:-1:-1;49246:30:0::3;::::0;-1:-1:-1;49256:10:0::3;49268:7:::0;49246:9:::3;:30::i;:::-;-1:-1:-1::0;;1768:1:0;2722:7;:22;-1:-1:-1;;;49036:248:0:o;49613:195::-;49750:10;;49772:26;;-1:-1:-1;;13022:2:1;13018:15;;;13014:53;49772:26:0;;;13002:66:1;49699:4:0;;49723:77;;49742:6;;49750:10;13084:12:1;;49772:26:0;;;;;;;;;;;;49762:37;;;;;;49723:18;:77::i;:::-;49716:84;49613:195;-1:-1:-1;;;49613:195:0:o;26742:144::-;26806:7;26849:27;26868:7;26849:18;:27::i;50326:259::-;7472:6;;-1:-1:-1;;;;;7472:6:0;45124:10;7619:23;7611:68;;;;-1:-1:-1;;;7611:68:0;;;;;;;:::i;:::-;1812:1:::1;2410:7;;:19:::0;2402:63:::1;;;;-1:-1:-1::0;;;2402:63:0::1;;;;;;;:::i;:::-;1812:1;2543:7;:18:::0;50447:21:::2;50487:12:::0;50479:46:::2;;;::::0;-1:-1:-1;;;50479:46:0;;13309:2:1;50479:46:0::2;::::0;::::2;13291:21:1::0;13348:2;13328:18;;;13321:30;-1:-1:-1;;;13367:18:1;;;13360:51;13428:18;;50479:46:0::2;13107:345:1::0;50479:46:0::2;50536:41;50568:3;50546:19;50557:8:::0;50546;:19:::2;:::i;:::-;:25;;;;:::i;:::-;50573:3;50536:9;:41::i;22619:224::-:0;22683:7;-1:-1:-1;;;;;22707:19:0;;22703:60;;22735:28;;-1:-1:-1;;;22735:28:0;;;;;;;;;;;22703:60;-1:-1:-1;;;;;;22781:25:0;;;;;:18;:25;;;;;;17958:13;22781:54;;22619:224::o;8050:103::-;7472:6;;-1:-1:-1;;;;;7472:6:0;45124:10;7619:23;7611:68;;;;-1:-1:-1;;;7611:68:0;;;;;;;:::i;:::-;8115:30:::1;8142:1;8115:18;:30::i;:::-;8050:103::o:0;49922:116::-;7472:6;;-1:-1:-1;;;;;7472:6:0;45124:10;7619:23;7611:68;;;;-1:-1:-1;;;7611:68:0;;;;;;;:::i;:::-;50004:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49922:116:::0;:::o;50050:106::-;7472:6;;-1:-1:-1;;;;;7472:6:0;45124:10;7619:23;7611:68;;;;-1:-1:-1;;;7611:68:0;;;;;;;:::i;:::-;50124:10:::1;:24:::0;50050:106::o;27122:104::-;27178:13;27211:7;27204:14;;;;;:::i;29297:308::-;45124:10;-1:-1:-1;;;;;29396:31:0;;;29392:61;;29436:17;;-1:-1:-1;;;29436:17:0;;;;;;;;;;;29392:61;45124:10;29466:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;29466:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;29466:60:0;;;;;;;;;;29542:55;;540:41:1;;;29466:49:0;;45124:10;29542:55;;513:18:1;29542:55:0;;;;;;;29297:308;;:::o;30404:396::-;30571:28;30581:4;30587:2;30591:7;30571:9;:28::i;:::-;-1:-1:-1;;;;;30614:14:0;;;:19;30610:183;;30653:56;30684:4;30690:2;30694:7;30703:5;30653:30;:56::i;:::-;30648:145;;30737:40;;-1:-1:-1;;;30737:40:0;;;;;;;;;;;30648:145;30404:396;;;;:::o;48840:188::-;7472:6;;-1:-1:-1;;;;;7472:6:0;45124:10;7619:23;7611:68;;;;-1:-1:-1;;;7611:68:0;;;;;;;:::i;:::-;48949:9:::1;::::0;:13:::1;::::0;48961:1:::1;48949:13;:::i;:::-;48939:7;48923:13;21260:12:::0;;21047:7;21244:13;:28;;20994:315;48923:13:::1;:23;;;;:::i;:::-;:39;48915:71;;;::::0;-1:-1:-1;;;48915:71:0;;10318:2:1;48915:71:0::1;::::0;::::1;10300:21:1::0;10357:2;10337:18;;;10330:30;-1:-1:-1;;;10376:18:1;;;10369:49;10435:18;;48915:71:0::1;10116:343:1::0;48915:71:0::1;48997:23;49007:3;49012:7;48997:9;:23::i;27297:318::-:0;27370:13;27401:16;27409:7;27401;:16::i;:::-;27396:59;;27426:29;;-1:-1:-1;;;27426:29:0;;;;;;;;;;;27396:59;27468:21;27492:10;:8;:10::i;:::-;27468:34;;27526:7;27520:21;27545:1;27520:26;:87;;;;;;;;;;;;;;;;;27573:7;27582:18;27592:7;27582:9;:18::i;:::-;27556:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27513:94;27297:318;-1:-1:-1;;;27297:318:0:o;8308:201::-;7472:6;;-1:-1:-1;;;;;7472:6:0;45124:10;7619:23;7611:68;;;;-1:-1:-1;;;7611:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8397:22:0;::::1;8389:73;;;::::0;-1:-1:-1;;;8389:73:0;;14356:2:1;8389:73:0::1;::::0;::::1;14338:21:1::0;14395:2;14375:18;;;14368:30;14434:34;14414:18;;;14407:62;-1:-1:-1;;;14485:18:1;;;14478:36;14531:19;;8389:73:0::1;14154:402:1::0;8389:73:0::1;8473:28;8492:8;8473:18;:28::i;:::-;8308:201:::0;:::o;31055:273::-;31112:4;31202:13;;31192:7;:23;31149:152;;;;-1:-1:-1;;31253:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;31253:43:0;:48;;31055:273::o;24257:1129::-;24324:7;24359;24461:13;;24454:4;:20;24450:869;;;24499:14;24516:23;;;:17;:23;;;;;;;-1:-1:-1;;;24605:23:0;;:28;;24601:699;;25124:113;25131:6;25141:1;25131:11;25124:113;;-1:-1:-1;;;25202:6:0;25184:25;;;;:17;:25;;;;;;25124:113;;24601:699;24476:843;24450:869;25347:31;;-1:-1:-1;;;25347:31:0;;;;;;;;;;;36294:2515;36409:27;36439;36458:7;36439:18;:27::i;:::-;36409:57;;36524:4;-1:-1:-1;;;;;36483:45:0;36499:19;-1:-1:-1;;;;;36483:45:0;;36479:86;;36537:28;;-1:-1:-1;;;36537:28:0;;;;;;;;;;;36479:86;36578:22;45124:10;-1:-1:-1;;;;;36604:27:0;;;;:87;;-1:-1:-1;36648:43:0;36665:4;45124:10;29676:164;:::i;36648:43::-;36604:147;;;-1:-1:-1;45124:10:0;36708:20;36720:7;36708:11;:20::i;:::-;-1:-1:-1;;;;;36708:43:0;;36604:147;36578:174;;36770:17;36765:66;;36796:35;;-1:-1:-1;;;36796:35:0;;;;;;;;;;;36765:66;-1:-1:-1;;;;;36846:16:0;;36842:52;;36871:23;;-1:-1:-1;;;36871:23:0;;;;;;;;;;;36842:52;37023:24;;;;:15;:24;;;;;;;;37016:31;;-1:-1:-1;;;;;;37016:31:0;;;-1:-1:-1;;;;;37415:24:0;;;;;:18;:24;;;;;37413:26;;-1:-1:-1;;37413:26:0;;;37484:22;;;;;;;37482:24;;-1:-1:-1;37482:24:0;;;37777:26;;;:17;:26;;;;;-1:-1:-1;;;37865:15:0;18612:3;37865:41;37823:84;;:128;;37777:174;;;38071:46;;:51;;38067:626;;38175:1;38165:11;;38143:19;38298:30;;;:17;:30;;;;;;:35;;38294:384;;38436:13;;38421:11;:28;38417:242;;38583:30;;;;:17;:30;;;;;:52;;;38417:242;38124:569;38067:626;38740:7;38736:2;-1:-1:-1;;;;;38721:27:0;38730:4;-1:-1:-1;;;;;38721:27:0;;;;;;;;;;;36398:2411;;36294:2515;;;:::o;31412:104::-;31481:27;31491:2;31495:8;31481:27;;;;;;;;;;;;:9;:27::i;3979:190::-;4104:4;4157;4128:25;4141:5;4148:4;4128:12;:25::i;:::-;:33;;3979:190;-1:-1:-1;;;;3979:190:0:o;50164:154::-;50231:12;50256:2;-1:-1:-1;;;;;50248:16:0;50272:6;50248:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50230:53;;;50302:7;50294:16;;;;;8669:191;8762:6;;;-1:-1:-1;;;;;8779:17:0;;;-1:-1:-1;;;;;;8779:17:0;;;;;;;8812:40;;8762:6;;;8779:17;8762:6;;8812:40;;8743:16;;8812:40;8732:128;8669:191;:::o;42506:716::-;42690:88;;-1:-1:-1;;;42690:88:0;;42669:4;;-1:-1:-1;;;;;42690:45:0;;;;;:88;;45124:10;;42757:4;;42763:7;;42772:5;;42690:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42690:88:0;;;;;;;;-1:-1:-1;;42690:88:0;;;;;;;;;;;;:::i;:::-;;;42686:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42973:6;:13;42990:1;42973:18;42969:235;;43019:40;;-1:-1:-1;;;43019:40:0;;;;;;;;;;;42969:235;43162:6;43156:13;43147:6;43143:2;43139:15;43132:38;42686:529;-1:-1:-1;;;;;;42849:64:0;-1:-1:-1;;;42849:64:0;;-1:-1:-1;42686:529:0;42506:716;;;;;;:::o;50593:112::-;50653:13;50686:11;50679:18;;;;;:::i;45248:1959::-;45719:4;45713:11;;45726:3;45709:21;;45804:17;;;;46501:11;;;46380:5;46633:2;46647;46637:13;;46629:22;46501:11;46616:36;46688:2;46678:13;;46271:682;46707:4;46271:682;;;46882:1;46877:3;46873:11;46866:18;;46933:2;46927:4;46923:13;46919:2;46915:22;46910:3;46902:36;46803:2;46793:13;;46271:682;;;-1:-1:-1;46995:13:0;;;-1:-1:-1;;47110:12:0;;;47170:19;;;47110:12;45248:1959;-1:-1:-1;45248:1959:0:o;31889:2236::-;32012:20;32035:13;-1:-1:-1;;;;;32063:16:0;;32059:48;;32088:19;;-1:-1:-1;;;32088:19:0;;;;;;;;;;;32059:48;32122:8;32134:1;32122:13;32118:44;;32144:18;;-1:-1:-1;;;32144:18:0;;;;;;;;;;;32118:44;-1:-1:-1;;;;;32711:22:0;;;;;;:18;:22;;;;18095:2;32711:22;;;:70;;32749:31;32737:44;;32711:70;;;33024:31;;;:17;:31;;;;;33117:15;18612:3;33117:41;33075:84;;-1:-1:-1;33195:13:0;;18875:3;33180:56;33075:162;33024:213;;:31;;33318:23;;;;33362:14;:19;33358:635;;33402:313;33433:38;;33458:12;;-1:-1:-1;;;;;33433:38:0;;;33450:1;;33433:38;;33450:1;;33433:38;33499:69;33538:1;33542:2;33546:14;;;;;;33562:5;33499:30;:69::i;:::-;33494:174;;33604:40;;-1:-1:-1;;;33604:40:0;;;;;;;;;;;33494:174;33710:3;33695:12;:18;33402:313;;33796:12;33779:13;;:29;33775:43;;33810:8;;;33775:43;33358:635;;;33859:119;33890:40;;33915:14;;;;;-1:-1:-1;;;;;33890:40:0;;;33907:1;;33890:40;;33907:1;;33890:40;33973:3;33958:12;:18;33859:119;;33358:635;-1:-1:-1;34007:13:0;:28;;;34057:60;;34090:2;34094:12;34108:8;34057:60;:::i;4530:675::-;4613:7;4656:4;4613:7;4671:497;4695:5;:12;4691:1;:16;4671:497;;;4729:20;4752:5;4758:1;4752:8;;;;;;;;:::i;:::-;;;;;;;4729:31;;4795:12;4779;:28;4775:382;;5281:13;5331:15;;;5367:4;5360:15;;;5414:4;5398:21;;4907:57;;4775:382;;;5281:13;5331:15;;;5367:4;5360:15;;;5414:4;5398:21;;5084:57;;4775:382;-1:-1:-1;4709:3:0;;;;:::i;:::-;;;;4671:497;;;-1:-1:-1;5185:12:0;4530:675;-1:-1:-1;;;4530:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:344;2635:2;2620:18;;2668:1;2657:13;;2647:144;;2713:10;2708:3;2704:20;2701:1;2694:31;2748:4;2745:1;2738:15;2776:4;2773:1;2766:15;2647:144;2800:25;;;2487:344;:::o;2836:328::-;2913:6;2921;2929;2982:2;2970:9;2961:7;2957:23;2953:32;2950:52;;;2998:1;2995;2988:12;2950:52;3021:29;3040:9;3021:29;:::i;:::-;3011:39;;3069:38;3103:2;3092:9;3088:18;3069:38;:::i;:::-;3059:48;;3154:2;3143:9;3139:18;3126:32;3116:42;;2836:328;;;;;:::o;3351:272::-;3426:6;3479:2;3467:9;3458:7;3454:23;3450:32;3447:52;;;3495:1;3492;3485:12;3447:52;3534:9;3521:23;3573:1;3566:5;3563:12;3553:40;;3589:1;3586;3579:12;3628:127;3689:10;3684:3;3680:20;3677:1;3670:31;3720:4;3717:1;3710:15;3744:4;3741:1;3734:15;3760:275;3831:2;3825:9;3896:2;3877:13;;-1:-1:-1;;3873:27:1;3861:40;;3931:18;3916:34;;3952:22;;;3913:62;3910:88;;;3978:18;;:::i;:::-;4014:2;4007:22;3760:275;;-1:-1:-1;3760:275:1:o;4040:712::-;4094:5;4147:3;4140:4;4132:6;4128:17;4124:27;4114:55;;4165:1;4162;4155:12;4114:55;4201:6;4188:20;4227:4;4250:18;4246:2;4243:26;4240:52;;;4272:18;;:::i;:::-;4318:2;4315:1;4311:10;4341:28;4365:2;4361;4357:11;4341:28;:::i;:::-;4403:15;;;4473;;;4469:24;;;4434:12;;;;4505:15;;;4502:35;;;4533:1;4530;4523:12;4502:35;4569:2;4561:6;4557:15;4546:26;;4581:142;4597:6;4592:3;4589:15;4581:142;;;4663:17;;4651:30;;4614:12;;;;4701;;;;4581:142;;;4741:5;4040:712;-1:-1:-1;;;;;;;4040:712:1:o;4757:416::-;4850:6;4858;4911:2;4899:9;4890:7;4886:23;4882:32;4879:52;;;4927:1;4924;4917:12;4879:52;4967:9;4954:23;5000:18;4992:6;4989:30;4986:50;;;5032:1;5029;5022:12;4986:50;5055:61;5108:7;5099:6;5088:9;5084:22;5055:61;:::i;:::-;5045:71;5163:2;5148:18;;;;5135:32;;-1:-1:-1;;;;4757:416:1:o;5178:422::-;5271:6;5279;5332:2;5320:9;5311:7;5307:23;5303:32;5300:52;;;5348:1;5345;5338:12;5300:52;5371:29;5390:9;5371:29;:::i;:::-;5361:39;;5451:2;5440:9;5436:18;5423:32;5478:18;5470:6;5467:30;5464:50;;;5510:1;5507;5500:12;5464:50;5533:61;5586:7;5577:6;5566:9;5562:22;5533:61;:::i;:::-;5523:71;;;5178:422;;;;;:::o;5605:254::-;5673:6;5681;5734:2;5722:9;5713:7;5709:23;5705:32;5702:52;;;5750:1;5747;5740:12;5702:52;5786:9;5773:23;5763:33;;5815:38;5849:2;5838:9;5834:18;5815:38;:::i;:::-;5805:48;;5605:254;;;;;:::o;5864:186::-;5923:6;5976:2;5964:9;5955:7;5951:23;5947:32;5944:52;;;5992:1;5989;5982:12;5944:52;6015:29;6034:9;6015:29;:::i;6055:407::-;6120:5;6154:18;6146:6;6143:30;6140:56;;;6176:18;;:::i;:::-;6214:57;6259:2;6238:15;;-1:-1:-1;;6234:29:1;6265:4;6230:40;6214:57;:::i;:::-;6205:66;;6294:6;6287:5;6280:21;6334:3;6325:6;6320:3;6316:16;6313:25;6310:45;;;6351:1;6348;6341:12;6310:45;6400:6;6395:3;6388:4;6381:5;6377:16;6364:43;6454:1;6447:4;6438:6;6431:5;6427:18;6423:29;6416:40;6055:407;;;;;:::o;6467:451::-;6536:6;6589:2;6577:9;6568:7;6564:23;6560:32;6557:52;;;6605:1;6602;6595:12;6557:52;6645:9;6632:23;6678:18;6670:6;6667:30;6664:50;;;6710:1;6707;6700:12;6664:50;6733:22;;6786:4;6778:13;;6774:27;-1:-1:-1;6764:55:1;;6815:1;6812;6805:12;6764:55;6838:74;6904:7;6899:2;6886:16;6881:2;6877;6873:11;6838:74;:::i;7108:347::-;7173:6;7181;7234:2;7222:9;7213:7;7209:23;7205:32;7202:52;;;7250:1;7247;7240:12;7202:52;7273:29;7292:9;7273:29;:::i;:::-;7263:39;;7352:2;7341:9;7337:18;7324:32;7399:5;7392:13;7385:21;7378:5;7375:32;7365:60;;7421:1;7418;7411:12;7365:60;7444:5;7434:15;;;7108:347;;;;;:::o;7460:667::-;7555:6;7563;7571;7579;7632:3;7620:9;7611:7;7607:23;7603:33;7600:53;;;7649:1;7646;7639:12;7600:53;7672:29;7691:9;7672:29;:::i;:::-;7662:39;;7720:38;7754:2;7743:9;7739:18;7720:38;:::i;:::-;7710:48;;7805:2;7794:9;7790:18;7777:32;7767:42;;7860:2;7849:9;7845:18;7832:32;7887:18;7879:6;7876:30;7873:50;;;7919:1;7916;7909:12;7873:50;7942:22;;7995:4;7987:13;;7983:27;-1:-1:-1;7973:55:1;;8024:1;8021;8014:12;7973:55;8047:74;8113:7;8108:2;8095:16;8090:2;8086;8082:11;8047:74;:::i;:::-;8037:84;;;7460:667;;;;;;;:::o;8132:260::-;8200:6;8208;8261:2;8249:9;8240:7;8236:23;8232:32;8229:52;;;8277:1;8274;8267:12;8229:52;8300:29;8319:9;8300:29;:::i;:::-;8290:39;;8348:38;8382:2;8371:9;8367:18;8348:38;:::i;8397:380::-;8476:1;8472:12;;;;8519;;;8540:61;;8594:4;8586:6;8582:17;8572:27;;8540:61;8647:2;8639:6;8636:14;8616:18;8613:38;8610:161;;8693:10;8688:3;8684:20;8681:1;8674:31;8728:4;8725:1;8718:15;8756:4;8753:1;8746:15;8610:161;;8397:380;;;:::o;8782:355::-;8984:2;8966:21;;;9023:2;9003:18;;;8996:30;9062:33;9057:2;9042:18;;9035:61;9128:2;9113:18;;8782:355::o;9851:127::-;9912:10;9907:3;9903:20;9900:1;9893:31;9943:4;9940:1;9933:15;9967:4;9964:1;9957:15;9983:128;10023:3;10054:1;10050:6;10047:1;10044:13;10041:39;;;10060:18;;:::i;:::-;-1:-1:-1;10096:9:1;;9983:128::o;10870:168::-;10910:7;10976:1;10972;10968:6;10964:14;10961:1;10958:21;10953:1;10946:9;10939:17;10935:45;10932:71;;;10983:18;;:::i;:::-;-1:-1:-1;11023:9:1;;10870:168::o;11402:356::-;11604:2;11586:21;;;11623:18;;;11616:30;11682:34;11677:2;11662:18;;11655:62;11749:2;11734:18;;11402:356::o;13457:217::-;13497:1;13523;13513:132;;13567:10;13562:3;13558:20;13555:1;13548:31;13602:4;13599:1;13592:15;13630:4;13627:1;13620:15;13513:132;-1:-1:-1;13659:9:1;;13457:217::o;13679:470::-;13858:3;13896:6;13890:13;13912:53;13958:6;13953:3;13946:4;13938:6;13934:17;13912:53;:::i;:::-;14028:13;;13987:16;;;;14050:57;14028:13;13987:16;14084:4;14072:17;;14050:57;:::i;:::-;14123:20;;13679:470;-1:-1:-1;;;;13679:470:1:o;14771:489::-;-1:-1:-1;;;;;15040:15:1;;;15022:34;;15092:15;;15087:2;15072:18;;15065:43;15139:2;15124:18;;15117:34;;;15187:3;15182:2;15167:18;;15160:31;;;14965:4;;15208:46;;15234:19;;15226:6;15208:46;:::i;:::-;15200:54;14771:489;-1:-1:-1;;;;;;14771:489:1:o;15265:249::-;15334:6;15387:2;15375:9;15366:7;15362:23;15358:32;15355:52;;;15403:1;15400;15393:12;15355:52;15435:9;15429:16;15454:30;15478:5;15454:30;:::i;15519:127::-;15580:10;15575:3;15571:20;15568:1;15561:31;15611:4;15608:1;15601:15;15635:4;15632:1;15625:15;15651:135;15690:3;15711:17;;;15708:43;;15731:18;;:::i;:::-;-1:-1:-1;15778:1:1;15767:13;;15651:135::o
Swarm Source
ipfs://1da2df1b8b3cfc2561ffc52f222947d0b0fd76641a357e5917e483587a6079ac
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.