Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
540 LxG
Holders
285
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 LxGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LilGlyphs
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-09 */ pragma solidity ^0.8.0; // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol /** * @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. */ 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) { 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 = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface 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); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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: @openzeppelin/contracts/utils/Address.sol /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{ value: amount }(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{ value: value }(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/Context.sol /** * @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/utils/Strings.sol /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @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 See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), 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 { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _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 { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require( index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds" ); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require( index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds" ); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/access/Ownable.sol /** * @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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/LilGlyphs.sol pragma solidity >=0.4.22 <0.9.0; contract LilGlyphs is ERC721Enumerable, Ownable { ERC721 pxg; bytes32 public root; constructor(address pixelglyphs) ERC721("Lil' Glyphs", "LxG") { pxg = ERC721(pixelglyphs); } function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } function verify(bytes32[] memory proof, bytes32 leaf) public view returns (bool) { return MerkleProof.verify(proof, root, leaf); } function setRoot(bytes32 _root) public onlyOwner { root = _root; } function setBoolean( uint256 _packedBools, uint256 _boolNumber, uint256 _value ) public pure returns (uint256) { if (_value == 1) return _packedBools | (uint256(1) << _boolNumber); else return _packedBools & ~(uint256(1) << _boolNumber); } function getBoolean(uint256 _packedBools, uint256 _boolNumber) public pure returns (uint256) { uint256 flag = (_packedBools >> _boolNumber) & uint256(1); return flag; } mapping(uint256 => uint256) public bigGlyphToLilGlyph; function mint( uint256 bigGlyph, uint256 lilGlyph, bytes32[] memory proof ) public { require(pxg.ownerOf(bigGlyph) == msg.sender, "2"); require(bigGlyphToLilGlyph[bigGlyph] == 0, "3"); require( verify(proof, keccak256(abi.encodePacked(bigGlyph, lilGlyph))), "4" ); bigGlyphToLilGlyph[bigGlyph] = lilGlyph; _safeMint(msg.sender, lilGlyph); } function countNeighbors( uint256 id, uint256 idx, uint256 index ) internal pure returns (uint256) { uint256 top = idx >= 5 ? getBoolean(id, idx - 5) : 0; uint256 bottom = idx <= 44 ? getBoolean(id, idx + 5) : 0; uint256 left = idx > 0 && index != 0 ? getBoolean(id, idx - 1) : 0; uint256 right = idx < 49 && index != 4 ? getBoolean(id, idx + 1) : 0; return top + bottom + left + right; } function getSvg(uint256 tokenId) public view returns (string memory) { require(_exists(tokenId), "1"); uint256 ppd = 5; string memory svg; for (uint256 i = 0; i < 50; i++) { uint256 x = (i - ((i / 5) * 5)); if (getBoolean(tokenId, i) == 1) { string memory rect = string( abi.encodePacked( '<rect x="', toString(x * ppd), '" y="', toString((i / 5) * ppd), '" width="5" height="5" style="fill: #FFF"></rect>' ) ); svg = string(abi.encodePacked(svg, rect)); } else if (countNeighbors(tokenId, i, x) > 0) { string memory rect = string( abi.encodePacked( '<rect x="', toString(x * ppd), '" y="', toString((i / 5) * ppd), '" width="5" height="5" style="fill: #000"></rect>' ) ); string memory rectFlip = string( abi.encodePacked( '<rect data-id="', toString(i), '" x="', toString((10 - x - 1) * ppd), '" y="', toString((i / 5) * ppd), '" width="5" height="5" style="fill: #000"></rect>' ) ); svg = string(abi.encodePacked(svg, rect, rectFlip)); } else { continue; } } return string( abi.encodePacked( '<svg version="1.1" width="500" height="500" xmlns="http://www.w3.org/2000/svg"><g transform="translate(225 225)">', svg, "</g></svg>" ) ); } function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "1"); string memory json = Base64.encode( bytes( string( abi.encodePacked( '{"name": "Lil\' Glyph #', toString(tokenId), '", "description": "Fully on-chain little Pixelglyphs.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(getSvg(tokenId))), '"}' ) ) ) ); return string(abi.encodePacked("data:application/json;base64,", json)); } function getMatrixFromTokenId(uint256 tokenId) public view returns (uint256[5][10] memory output) { require(_exists(tokenId), "1"); for (uint256 i = 0; i < 50; i++) { output[i / 5][(i - ((i / 5) * 5))] = getBoolean(tokenId, i); } } function getTokenIdFromMatrix(uint256[5][10] calldata matrix) public pure returns (uint256) { uint256 tokenId; for (uint256 i = 0; i < matrix.length; i++) { for (uint256 j = 0; j < matrix[i].length; j++) { tokenId = setBoolean(tokenId, j + i * 5, matrix[i][j]); } } return tokenId; } } /* Error codes: ------------ 1: Token ID does not exist 2: Sender does not own Pixelglyph to be claimed 3: Glyph already claimed 4: Leaf not part of tree */ library Base64 { bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /// @notice Encodes some bytes to the base64 representation function encode(bytes memory data) internal pure returns (string memory) { uint256 len = data.length; if (len == 0) return ""; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((len + 2) / 3); // Add some extra buffer at the end bytes memory result = new bytes(encodedLen + 32); bytes memory table = TABLE; assembly { let tablePtr := add(table, 1) let resultPtr := add(result, 32) for { let i := 0 } lt(i, len) { } { i := add(i, 3) let input := and(mload(add(data, i)), 0xffffff) let out := mload(add(tablePtr, and(shr(18, input), 0x3F))) out := shl(8, out) out := add( out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF) ) out := shl(8, out) out := add( out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF) ) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)) out := shl(224, out) mstore(resultPtr, out) resultPtr := add(resultPtr, 4) } switch mod(len, 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } mstore(result, encodedLen) } return string(result); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"pixelglyphs","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"bigGlyphToLilGlyph","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":"uint256","name":"_packedBools","type":"uint256"},{"internalType":"uint256","name":"_boolNumber","type":"uint256"}],"name":"getBoolean","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getMatrixFromTokenId","outputs":[{"internalType":"uint256[5][10]","name":"output","type":"uint256[5][10]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSvg","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[5][10]","name":"matrix","type":"uint256[5][10]"}],"name":"getTokenIdFromMatrix","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"bigGlyph","type":"uint256"},{"internalType":"uint256","name":"lilGlyph","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_packedBools","type":"uint256"},{"internalType":"uint256","name":"_boolNumber","type":"uint256"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setBoolean","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002dcc38038062002dcc8339810160408190526200003491620001d7565b604080518082018252600b81526a4c696c2720476c7970687360a81b6020808301918252835180850190945260038452624c784760e81b908401528151919291620000829160009162000131565b5080516200009890600190602084019062000131565b505050620000b5620000af620000db60201b60201c565b620000df565b600b80546001600160a01b0319166001600160a01b039290921691909117905562000244565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013f9062000207565b90600052602060002090601f016020900481019282620001635760008555620001ae565b82601f106200017e57805160ff1916838001178555620001ae565b82800160010185558215620001ae579182015b82811115620001ae57825182559160200191906001019062000191565b50620001bc929150620001c0565b5090565b5b80821115620001bc5760008155600101620001c1565b600060208284031215620001e9578081fd5b81516001600160a01b038116811462000200578182fd5b9392505050565b6002810460018216806200021c57607f821691505b602082108114156200023e57634e487b7160e01b600052602260045260246000fd5b50919050565b612b7880620002546000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638da5cb5b11610104578063b88d4fde116100a2578063e6d37b8811610071578063e6d37b88146103c4578063e985e9c5146103d7578063ebf0c717146103ea578063f2fde38b146103f2576101cf565b8063b88d4fde14610378578063c87b56dd1461038b578063caebe85e1461039e578063dab5f340146103b1576101cf565b8063972a2a62116100de578063972a2a621461032c578063995e92281461033f578063a22cb46514610352578063b0dc78fa14610365576101cf565b80638da5cb5b14610309578063902492aa1461031157806395d89b4114610324576101cf565b80632f745c59116101715780634f6ccce71161014b5780634f6ccce7146102c85780636352211e146102db57806370a08231146102ee578063715018a614610301576101cf565b80632f745c591461028257806334481ddf1461029557806342842e0e146102b5576101cf565b8063095ea7b3116101ad578063095ea7b31461023257806318160ddd1461024757806323b872dd1461025c578063268391401461026f576101cf565b806301ffc9a7146101d457806306fdde03146101fd578063081812fc14610212575b600080fd5b6101e76101e2366004611e70565b610405565b6040516101f49190612438565b60405180910390f35b610205610432565b6040516101f4919061244c565b610225610220366004611e58565b6104c4565b6040516101f49190612396565b610245610240366004611dc1565b610510565b005b61024f6105a8565b6040516101f49190612443565b61024561026a366004611c94565b6105ae565b61024f61027d366004611e58565b6105e6565b61024f610290366004611dc1565b6105f8565b6102a86102a3366004611e58565b61064a565b6040516101f491906123dd565b6102456102c3366004611c94565b610717565b61024f6102d6366004611e58565b610732565b6102256102e9366004611e58565b61078d565b61024f6102fc366004611c24565b6107c2565b610245610806565b610225610851565b61024f61031f366004611dec565b610860565b610205610931565b6101e761033a366004611e15565b610940565b61024f61034d366004611ea8565b610956565b610245610360366004611d90565b61095d565b610205610373366004611e58565b610a2b565b610245610386366004611cd4565b610c2d565b610205610399366004611e58565b610c6c565b61024f6103ac366004611f17565b610d01565b6102456103bf366004611e58565b610d23565b6102456103d2366004611ec9565b610d67565b6101e76103e5366004611c5c565b610ea2565b61024f610ed0565b610245610400366004611c24565b610ed6565b60006001600160e01b0319821663780e9d6360e01b148061042a575061042a82610f47565b90505b919050565b60606000805461044190612a31565b80601f016020809104026020016040519081016040528092919081815260200182805461046d90612a31565b80156104ba5780601f1061048f576101008083540402835291602001916104ba565b820191906000526020600020905b81548152906001019060200180831161049d57829003601f168201915b5050505050905090565b60006104cf82610f87565b6104f45760405162461bcd60e51b81526004016104eb9061279b565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061051b8261078d565b9050806001600160a01b0316836001600160a01b0316141561054f5760405162461bcd60e51b81526004016104eb90612880565b806001600160a01b0316610561610fa4565b6001600160a01b0316148061057d575061057d816103e5610fa4565b6105995760405162461bcd60e51b81526004016104eb90612676565b6105a38383610fa8565b505050565b60085490565b6105bf6105b9610fa4565b82611016565b6105db5760405162461bcd60e51b81526004016104eb906128c1565b6105a383838361109b565b600d6020526000908152604090205481565b6000610603836107c2565b82106106215760405162461bcd60e51b81526004016104eb9061247a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610652611b56565b61065b82610f87565b6106775760405162461bcd60e51b81526004016104eb90612912565b60005b60328110156107115761068d8382610956565b826106996005846129bb565b600a81106106b757634e487b7160e01b600052603260045260246000fd5b60200201516106c76005846129bb565b6106d29060056129cf565b6106dc90846129ee565b600581106106fa57634e487b7160e01b600052603260045260246000fd5b60200201528061070981612a66565b91505061067a565b50919050565b6105a383838360405180602001604052806000815250610c2d565b600061073c6105a8565b821061075a5760405162461bcd60e51b81526004016104eb9061292d565b6008828154811061077b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061042a5760405162461bcd60e51b81526004016104eb9061271d565b60006001600160a01b0382166107ea5760405162461bcd60e51b81526004016104eb906126d3565b506001600160a01b031660009081526003602052604090205490565b61080e610fa4565b6001600160a01b031661081f610851565b6001600160a01b0316146108455760405162461bcd60e51b81526004016104eb906127e7565b61084f60006111c8565b565b600a546001600160a01b031690565b60008060005b600a81101561092a5760005b8482600a811061089257634e487b7160e01b600052603260045260246000fd5b5050600581101561091757610903836108ac8460056129cf565b6108b690846129a3565b8785600a81106108d657634e487b7160e01b600052603260045260246000fd5b60a0020184600581106108f957634e487b7160e01b600052603260045260246000fd5b6020020135610d01565b92508061090f81612a66565b915050610872565b508061092281612a66565b915050610866565b5092915050565b60606001805461044190612a31565b600061094f83600c548461121a565b9392505050565b1c60011690565b610965610fa4565b6001600160a01b0316826001600160a01b031614156109965760405162461bcd60e51b81526004016104eb906125f3565b80600560006109a3610fa4565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556109e7610fa4565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610a1f9190612438565b60405180910390a35050565b6060610a3682610f87565b610a525760405162461bcd60e51b81526004016104eb90612912565b6005606060005b6032811015610c03576000610a6f6005836129bb565b610a7a9060056129cf565b610a8490836129ee565b9050610a908683610956565b60011415610b11576000610aac610aa786846129cf565b6112d5565b610ac586610abb6005876129bb565b610aa791906129cf565b604051602001610ad692919061220b565b60405160208183030381529060405290508381604051602001610afa929190611fbf565b604051602081830303815290604052935050610bef565b6000610b1e8784846113f0565b1115610be9576000610b33610aa786846129cf565b610b4286610abb6005876129bb565b604051602001610b539291906122a5565b60405160208183030381529060405290506000610b6f846112d5565b610b8a876001610b8087600a6129ee565b610abb91906129ee565b610b9988610abb6005896129bb565b604051602001610bab93929190612307565b6040516020818303038152906040529050848282604051602001610bd193929190611fee565b60405160208183030381529060405294505050610bef565b50610bf1565b505b80610bfb81612a66565b915050610a59565b5080604051602001610c159190612031565b60405160208183030381529060405292505050919050565b610c3e610c38610fa4565b83611016565b610c5a5760405162461bcd60e51b81526004016104eb906128c1565b610c66848484846114be565b50505050565b6060610c7782610f87565b610c935760405162461bcd60e51b81526004016104eb90612912565b6000610cd7610ca1846112d5565b610cb2610cad86610a2b565b6114f1565b604051602001610cc39291906120f0565b6040516020818303038152906040526114f1565b905080604051602001610cea91906121c6565b604051602081830303815290604052915050919050565b60008160011415610d1857506001821b831761094f565b50506001901b191690565b610d2b610fa4565b6001600160a01b0316610d3c610851565b6001600160a01b031614610d625760405162461bcd60e51b81526004016104eb906127e7565b600c55565b600b546040516331a9108f60e11b815233916001600160a01b031690636352211e90610d97908790600401612443565b60206040518083038186803b158015610daf57600080fd5b505afa158015610dc3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de79190611c40565b6001600160a01b031614610e0d5760405162461bcd60e51b81526004016104eb90612865565b6000838152600d602052604090205415610e395760405162461bcd60e51b81526004016104eb90612594565b610e6b818484604051602001610e50929190611fb1565b60405160208183030381529060405280519060200120610940565b610e875760405162461bcd60e51b81526004016104eb9061245f565b6000838152600d602052604090208290556105a33383611665565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600c5481565b610ede610fa4565b6001600160a01b0316610eef610851565b6001600160a01b031614610f155760405162461bcd60e51b81526004016104eb906127e7565b6001600160a01b038116610f3b5760405162461bcd60e51b81526004016104eb90612517565b610f44816111c8565b50565b60006001600160e01b031982166380ac58cd60e01b1480610f7857506001600160e01b03198216635b5e139f60e01b145b8061042a575061042a82611683565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fdd8261078d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061102182610f87565b61103d5760405162461bcd60e51b81526004016104eb9061262a565b60006110488361078d565b9050806001600160a01b0316846001600160a01b031614806110835750836001600160a01b0316611078846104c4565b6001600160a01b0316145b8061109357506110938185610ea2565b949350505050565b826001600160a01b03166110ae8261078d565b6001600160a01b0316146110d45760405162461bcd60e51b81526004016104eb9061281c565b6001600160a01b0382166110fa5760405162461bcd60e51b81526004016104eb906125af565b61110583838361169c565b611110600082610fa8565b6001600160a01b03831660009081526003602052604081208054600192906111399084906129ee565b90915550506001600160a01b03821660009081526003602052604081208054600192906111679084906129a3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815b85518110156112ca57600086828151811061124a57634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161128b57828160405160200161126e929190611fb1565b6040516020818303038152906040528051906020012092506112b7565b808360405160200161129e929190611fb1565b6040516020818303038152906040528051906020012092505b50806112c281612a66565b91505061121f565b509092149392505050565b6060816112fa57506040805180820190915260018152600360fc1b602082015261042d565b8160005b8115611324578061130e81612a66565b915061131d9050600a836129bb565b91506112fe565b60008167ffffffffffffffff81111561134d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611377576020820181803683370190505b5090505b84156110935761138c6001836129ee565b9150611399600a86612a81565b6113a49060306129a3565b60f81b8183815181106113c757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506113e9600a866129bb565b945061137b565b6000806005841015611403576000611412565b6114128561034d6005876129ee565b90506000602c851115611426576000611435565b6114358661034d8760056129a3565b90506000808611801561144757508415155b611452576000611461565b6114618761034d6001896129ee565b90506000603187108015611476575085600414155b611481576000611490565b6114908861034d8960016129a3565b9050808261149e85876129a3565b6114a891906129a3565b6114b291906129a3565b98975050505050505050565b6114c984848461109b565b6114d584848484611725565b610c665760405162461bcd60e51b81526004016104eb906124c5565b80516060908061151157505060408051602081019091526000815261042d565b600060036115208360026129a3565b61152a91906129bb565b6115359060046129cf565b905060006115448260206129a3565b67ffffffffffffffff81111561156a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611594576020820181803683370190505b5090506000604051806060016040528060408152602001612b03604091399050600181016020830160005b86811015611620576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b8352600490920191016115bf565b50600386066001811461163a576002811461164b57611657565b613d3d60f01b600119830152611657565b603d60f81b6000198301525b505050918152949350505050565b61167f828260405180602001604052806000815250611840565b5050565b6001600160e01b031981166301ffc9a760e01b14919050565b6116a78383836105a3565b6001600160a01b0383166116c3576116be81611873565b6116e6565b816001600160a01b0316836001600160a01b0316146116e6576116e683826118b7565b6001600160a01b038216611702576116fd81611954565b6105a3565b826001600160a01b0316826001600160a01b0316146105a3576105a38282611a2d565b6000611739846001600160a01b0316611a71565b1561183557836001600160a01b031663150b7a02611755610fa4565b8786866040518563ffffffff1660e01b815260040161177794939291906123aa565b602060405180830381600087803b15801561179157600080fd5b505af19250505080156117c1575060408051601f3d908101601f191682019092526117be91810190611e8c565b60015b61181b573d8080156117ef576040519150601f19603f3d011682016040523d82523d6000602084013e6117f4565b606091505b5080516118135760405162461bcd60e51b81526004016104eb906124c5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611093565b506001949350505050565b61184a8383611a77565b6118576000848484611725565b6105a35760405162461bcd60e51b81526004016104eb906124c5565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016118c4846107c2565b6118ce91906129ee565b600083815260076020526040902054909150808214611921576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611966906001906129ee565b6000838152600960205260408120546008805493945090928490811061199c57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106119cb57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a1157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611a38836107c2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b6001600160a01b038216611a9d5760405162461bcd60e51b81526004016104eb90612766565b611aa681610f87565b15611ac35760405162461bcd60e51b81526004016104eb9061255d565b611acf6000838361169c565b6001600160a01b0382166000908152600360205260408120805460019290611af89084906129a3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b604051806101400160405280600a905b611b6e611b84565b815260200190600190039081611b665790505090565b6040518060a001604052806005906020820280368337509192915050565b600082601f830112611bb2578081fd5b8135602067ffffffffffffffff821115611bce57611bce612ac1565b808202611bdc828201612979565b838152828101908684018388018501891015611bf6578687fd5b8693505b85841015611c18578035835260019390930192918401918401611bfa565b50979650505050505050565b600060208284031215611c35578081fd5b813561094f81612ad7565b600060208284031215611c51578081fd5b815161094f81612ad7565b60008060408385031215611c6e578081fd5b8235611c7981612ad7565b91506020830135611c8981612ad7565b809150509250929050565b600080600060608486031215611ca8578081fd5b8335611cb381612ad7565b92506020840135611cc381612ad7565b929592945050506040919091013590565b60008060008060808587031215611ce9578081fd5b8435611cf481612ad7565b9350602085810135611d0581612ad7565b935060408601359250606086013567ffffffffffffffff80821115611d28578384fd5b818801915088601f830112611d3b578384fd5b813581811115611d4d57611d4d612ac1565b611d5f601f8201601f19168501612979565b91508082528984828501011115611d74578485fd5b8084840185840137810190920192909252939692955090935050565b60008060408385031215611da2578182fd5b8235611dad81612ad7565b915060208301358015158114611c89578182fd5b60008060408385031215611dd3578182fd5b8235611dde81612ad7565b946020939093013593505050565b6000610640808385031215611dff578182fd5b838184011115611e0d578182fd5b509092915050565b60008060408385031215611e27578182fd5b823567ffffffffffffffff811115611e3d578283fd5b611e4985828601611ba2565b95602094909401359450505050565b600060208284031215611e69578081fd5b5035919050565b600060208284031215611e81578081fd5b813561094f81612aec565b600060208284031215611e9d578081fd5b815161094f81612aec565b60008060408385031215611eba578182fd5b50508035926020909101359150565b600080600060608486031215611edd578081fd5b8335925060208401359150604084013567ffffffffffffffff811115611f01578182fd5b611f0d86828701611ba2565b9150509250925092565b600080600060608486031215611f2b578081fd5b505081359360208301359350604090920135919050565b60008151808452611f5a816020860160208601612a05565b601f01601f19169290920160200192915050565b7f222077696474683d223522206865696768743d223522207374796c653d22666981527036361d1011981818111f1e17b932b1ba1f60791b602082015260310190565b918252602082015260400190565b60008351611fd1818460208801612a05565b835190830190611fe5818360208801612a05565b01949350505050565b60008451612000818460208901612a05565b845190830190612014818360208901612a05565b8451910190612027818360208801612a05565b0195945050505050565b60007f3c7376672076657273696f6e3d22312e31222077696474683d2235303022206882527f65696768743d223530302220786d6c6e733d22687474703a2f2f7777772e773360208301527f2e6f72672f323030302f737667223e3c67207472616e73666f726d3d227472616040830152703739b630ba329419191a9019191a94911f60791b606083015282516120cf816071850160208701612a05565b691e17b39f1e17b9bb339f60b11b6071939091019283015250607b01919050565b757b226e616d65223a20224c696c2720476c797068202360501b81528251600090612122816016850160208801612a05565b7f222c20226465736372697074696f6e223a202246756c6c79206f6e2d636861696016918401918201527f6e206c6974746c6520506978656c676c797068732e222c2022696d616765223a60368201527f2022646174613a696d6167652f7376672b786d6c3b6261736536342c00000000605682015283516121ab816072840160208801612a05565b61227d60f01b60729290910191820152607401949350505050565b60007f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000825282516121fe81601d850160208701612a05565b91909101601d0192915050565b681e3932b1ba103c1e9160b91b81528251600090612230816009850160208801612a05565b6411103c9e9160d91b600991840191820152835161225581600e840160208801612a05565b7f222077696474683d223522206865696768743d223522207374796c653d226669600e92909101918201527036361d1011a32323111f1e17b932b1ba1f60791b602e820152603f01949350505050565b681e3932b1ba103c1e9160b91b815282516000906122ca816009850160208801612a05565b6411103c9e9160d91b60099184019182015283516122ef81600e840160208801612a05565b6122fd600e82840101611f6e565b9695505050505050565b6e1e3932b1ba103230ba3096b4b21e9160891b8152835160009061233281600f850160208901612a05565b6411103c1e9160d91b600f918401918201528451612357816014840160208901612a05565b6411103c9e9160d91b60149290910191820152835161237d816019840160208801612a05565b61238b601982840101611f6e565b979650505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122fd90830184611f42565b610640810181836000805b600a81101561242e57825184835b60058110156124155782518252602092830192909101906001016123f6565b50505060a09390930192602092909201916001016123e8565b5050505092915050565b901515815260200190565b90815260200190565b60006020825261094f6020830184611f42565b6020808252600190820152600d60fa1b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252600190820152603360f81b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252600190820152601960f91b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600190820152603160f81b604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60405181810167ffffffffffffffff8111828210171561299b5761299b612ac1565b604052919050565b600082198211156129b6576129b6612a95565b500190565b6000826129ca576129ca612aab565b500490565b60008160001904831182151516156129e9576129e9612a95565b500290565b600082821015612a0057612a00612a95565b500390565b60005b83811015612a20578181015183820152602001612a08565b83811115610c665750506000910152565b600281046001821680612a4557607f821691505b6020821081141561071157634e487b7160e01b600052602260045260246000fd5b6000600019821415612a7a57612a7a612a95565b5060010190565b600082612a9057612a90612aab565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f4457600080fd5b6001600160e01b031981168114610f4457600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220eb523d4599cdc0f4d38a1719e702135754a2c93589a18c7c8f004a13365bebc564736f6c63430008000033000000000000000000000000f38d6bf300d52ba7880b43cddb3f94ee3c6c4ea6
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638da5cb5b11610104578063b88d4fde116100a2578063e6d37b8811610071578063e6d37b88146103c4578063e985e9c5146103d7578063ebf0c717146103ea578063f2fde38b146103f2576101cf565b8063b88d4fde14610378578063c87b56dd1461038b578063caebe85e1461039e578063dab5f340146103b1576101cf565b8063972a2a62116100de578063972a2a621461032c578063995e92281461033f578063a22cb46514610352578063b0dc78fa14610365576101cf565b80638da5cb5b14610309578063902492aa1461031157806395d89b4114610324576101cf565b80632f745c59116101715780634f6ccce71161014b5780634f6ccce7146102c85780636352211e146102db57806370a08231146102ee578063715018a614610301576101cf565b80632f745c591461028257806334481ddf1461029557806342842e0e146102b5576101cf565b8063095ea7b3116101ad578063095ea7b31461023257806318160ddd1461024757806323b872dd1461025c578063268391401461026f576101cf565b806301ffc9a7146101d457806306fdde03146101fd578063081812fc14610212575b600080fd5b6101e76101e2366004611e70565b610405565b6040516101f49190612438565b60405180910390f35b610205610432565b6040516101f4919061244c565b610225610220366004611e58565b6104c4565b6040516101f49190612396565b610245610240366004611dc1565b610510565b005b61024f6105a8565b6040516101f49190612443565b61024561026a366004611c94565b6105ae565b61024f61027d366004611e58565b6105e6565b61024f610290366004611dc1565b6105f8565b6102a86102a3366004611e58565b61064a565b6040516101f491906123dd565b6102456102c3366004611c94565b610717565b61024f6102d6366004611e58565b610732565b6102256102e9366004611e58565b61078d565b61024f6102fc366004611c24565b6107c2565b610245610806565b610225610851565b61024f61031f366004611dec565b610860565b610205610931565b6101e761033a366004611e15565b610940565b61024f61034d366004611ea8565b610956565b610245610360366004611d90565b61095d565b610205610373366004611e58565b610a2b565b610245610386366004611cd4565b610c2d565b610205610399366004611e58565b610c6c565b61024f6103ac366004611f17565b610d01565b6102456103bf366004611e58565b610d23565b6102456103d2366004611ec9565b610d67565b6101e76103e5366004611c5c565b610ea2565b61024f610ed0565b610245610400366004611c24565b610ed6565b60006001600160e01b0319821663780e9d6360e01b148061042a575061042a82610f47565b90505b919050565b60606000805461044190612a31565b80601f016020809104026020016040519081016040528092919081815260200182805461046d90612a31565b80156104ba5780601f1061048f576101008083540402835291602001916104ba565b820191906000526020600020905b81548152906001019060200180831161049d57829003601f168201915b5050505050905090565b60006104cf82610f87565b6104f45760405162461bcd60e51b81526004016104eb9061279b565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061051b8261078d565b9050806001600160a01b0316836001600160a01b0316141561054f5760405162461bcd60e51b81526004016104eb90612880565b806001600160a01b0316610561610fa4565b6001600160a01b0316148061057d575061057d816103e5610fa4565b6105995760405162461bcd60e51b81526004016104eb90612676565b6105a38383610fa8565b505050565b60085490565b6105bf6105b9610fa4565b82611016565b6105db5760405162461bcd60e51b81526004016104eb906128c1565b6105a383838361109b565b600d6020526000908152604090205481565b6000610603836107c2565b82106106215760405162461bcd60e51b81526004016104eb9061247a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610652611b56565b61065b82610f87565b6106775760405162461bcd60e51b81526004016104eb90612912565b60005b60328110156107115761068d8382610956565b826106996005846129bb565b600a81106106b757634e487b7160e01b600052603260045260246000fd5b60200201516106c76005846129bb565b6106d29060056129cf565b6106dc90846129ee565b600581106106fa57634e487b7160e01b600052603260045260246000fd5b60200201528061070981612a66565b91505061067a565b50919050565b6105a383838360405180602001604052806000815250610c2d565b600061073c6105a8565b821061075a5760405162461bcd60e51b81526004016104eb9061292d565b6008828154811061077b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061042a5760405162461bcd60e51b81526004016104eb9061271d565b60006001600160a01b0382166107ea5760405162461bcd60e51b81526004016104eb906126d3565b506001600160a01b031660009081526003602052604090205490565b61080e610fa4565b6001600160a01b031661081f610851565b6001600160a01b0316146108455760405162461bcd60e51b81526004016104eb906127e7565b61084f60006111c8565b565b600a546001600160a01b031690565b60008060005b600a81101561092a5760005b8482600a811061089257634e487b7160e01b600052603260045260246000fd5b5050600581101561091757610903836108ac8460056129cf565b6108b690846129a3565b8785600a81106108d657634e487b7160e01b600052603260045260246000fd5b60a0020184600581106108f957634e487b7160e01b600052603260045260246000fd5b6020020135610d01565b92508061090f81612a66565b915050610872565b508061092281612a66565b915050610866565b5092915050565b60606001805461044190612a31565b600061094f83600c548461121a565b9392505050565b1c60011690565b610965610fa4565b6001600160a01b0316826001600160a01b031614156109965760405162461bcd60e51b81526004016104eb906125f3565b80600560006109a3610fa4565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556109e7610fa4565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610a1f9190612438565b60405180910390a35050565b6060610a3682610f87565b610a525760405162461bcd60e51b81526004016104eb90612912565b6005606060005b6032811015610c03576000610a6f6005836129bb565b610a7a9060056129cf565b610a8490836129ee565b9050610a908683610956565b60011415610b11576000610aac610aa786846129cf565b6112d5565b610ac586610abb6005876129bb565b610aa791906129cf565b604051602001610ad692919061220b565b60405160208183030381529060405290508381604051602001610afa929190611fbf565b604051602081830303815290604052935050610bef565b6000610b1e8784846113f0565b1115610be9576000610b33610aa786846129cf565b610b4286610abb6005876129bb565b604051602001610b539291906122a5565b60405160208183030381529060405290506000610b6f846112d5565b610b8a876001610b8087600a6129ee565b610abb91906129ee565b610b9988610abb6005896129bb565b604051602001610bab93929190612307565b6040516020818303038152906040529050848282604051602001610bd193929190611fee565b60405160208183030381529060405294505050610bef565b50610bf1565b505b80610bfb81612a66565b915050610a59565b5080604051602001610c159190612031565b60405160208183030381529060405292505050919050565b610c3e610c38610fa4565b83611016565b610c5a5760405162461bcd60e51b81526004016104eb906128c1565b610c66848484846114be565b50505050565b6060610c7782610f87565b610c935760405162461bcd60e51b81526004016104eb90612912565b6000610cd7610ca1846112d5565b610cb2610cad86610a2b565b6114f1565b604051602001610cc39291906120f0565b6040516020818303038152906040526114f1565b905080604051602001610cea91906121c6565b604051602081830303815290604052915050919050565b60008160011415610d1857506001821b831761094f565b50506001901b191690565b610d2b610fa4565b6001600160a01b0316610d3c610851565b6001600160a01b031614610d625760405162461bcd60e51b81526004016104eb906127e7565b600c55565b600b546040516331a9108f60e11b815233916001600160a01b031690636352211e90610d97908790600401612443565b60206040518083038186803b158015610daf57600080fd5b505afa158015610dc3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de79190611c40565b6001600160a01b031614610e0d5760405162461bcd60e51b81526004016104eb90612865565b6000838152600d602052604090205415610e395760405162461bcd60e51b81526004016104eb90612594565b610e6b818484604051602001610e50929190611fb1565b60405160208183030381529060405280519060200120610940565b610e875760405162461bcd60e51b81526004016104eb9061245f565b6000838152600d602052604090208290556105a33383611665565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600c5481565b610ede610fa4565b6001600160a01b0316610eef610851565b6001600160a01b031614610f155760405162461bcd60e51b81526004016104eb906127e7565b6001600160a01b038116610f3b5760405162461bcd60e51b81526004016104eb90612517565b610f44816111c8565b50565b60006001600160e01b031982166380ac58cd60e01b1480610f7857506001600160e01b03198216635b5e139f60e01b145b8061042a575061042a82611683565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fdd8261078d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061102182610f87565b61103d5760405162461bcd60e51b81526004016104eb9061262a565b60006110488361078d565b9050806001600160a01b0316846001600160a01b031614806110835750836001600160a01b0316611078846104c4565b6001600160a01b0316145b8061109357506110938185610ea2565b949350505050565b826001600160a01b03166110ae8261078d565b6001600160a01b0316146110d45760405162461bcd60e51b81526004016104eb9061281c565b6001600160a01b0382166110fa5760405162461bcd60e51b81526004016104eb906125af565b61110583838361169c565b611110600082610fa8565b6001600160a01b03831660009081526003602052604081208054600192906111399084906129ee565b90915550506001600160a01b03821660009081526003602052604081208054600192906111679084906129a3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815b85518110156112ca57600086828151811061124a57634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161128b57828160405160200161126e929190611fb1565b6040516020818303038152906040528051906020012092506112b7565b808360405160200161129e929190611fb1565b6040516020818303038152906040528051906020012092505b50806112c281612a66565b91505061121f565b509092149392505050565b6060816112fa57506040805180820190915260018152600360fc1b602082015261042d565b8160005b8115611324578061130e81612a66565b915061131d9050600a836129bb565b91506112fe565b60008167ffffffffffffffff81111561134d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611377576020820181803683370190505b5090505b84156110935761138c6001836129ee565b9150611399600a86612a81565b6113a49060306129a3565b60f81b8183815181106113c757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506113e9600a866129bb565b945061137b565b6000806005841015611403576000611412565b6114128561034d6005876129ee565b90506000602c851115611426576000611435565b6114358661034d8760056129a3565b90506000808611801561144757508415155b611452576000611461565b6114618761034d6001896129ee565b90506000603187108015611476575085600414155b611481576000611490565b6114908861034d8960016129a3565b9050808261149e85876129a3565b6114a891906129a3565b6114b291906129a3565b98975050505050505050565b6114c984848461109b565b6114d584848484611725565b610c665760405162461bcd60e51b81526004016104eb906124c5565b80516060908061151157505060408051602081019091526000815261042d565b600060036115208360026129a3565b61152a91906129bb565b6115359060046129cf565b905060006115448260206129a3565b67ffffffffffffffff81111561156a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611594576020820181803683370190505b5090506000604051806060016040528060408152602001612b03604091399050600181016020830160005b86811015611620576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b8352600490920191016115bf565b50600386066001811461163a576002811461164b57611657565b613d3d60f01b600119830152611657565b603d60f81b6000198301525b505050918152949350505050565b61167f828260405180602001604052806000815250611840565b5050565b6001600160e01b031981166301ffc9a760e01b14919050565b6116a78383836105a3565b6001600160a01b0383166116c3576116be81611873565b6116e6565b816001600160a01b0316836001600160a01b0316146116e6576116e683826118b7565b6001600160a01b038216611702576116fd81611954565b6105a3565b826001600160a01b0316826001600160a01b0316146105a3576105a38282611a2d565b6000611739846001600160a01b0316611a71565b1561183557836001600160a01b031663150b7a02611755610fa4565b8786866040518563ffffffff1660e01b815260040161177794939291906123aa565b602060405180830381600087803b15801561179157600080fd5b505af19250505080156117c1575060408051601f3d908101601f191682019092526117be91810190611e8c565b60015b61181b573d8080156117ef576040519150601f19603f3d011682016040523d82523d6000602084013e6117f4565b606091505b5080516118135760405162461bcd60e51b81526004016104eb906124c5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611093565b506001949350505050565b61184a8383611a77565b6118576000848484611725565b6105a35760405162461bcd60e51b81526004016104eb906124c5565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016118c4846107c2565b6118ce91906129ee565b600083815260076020526040902054909150808214611921576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611966906001906129ee565b6000838152600960205260408120546008805493945090928490811061199c57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106119cb57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a1157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611a38836107c2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b6001600160a01b038216611a9d5760405162461bcd60e51b81526004016104eb90612766565b611aa681610f87565b15611ac35760405162461bcd60e51b81526004016104eb9061255d565b611acf6000838361169c565b6001600160a01b0382166000908152600360205260408120805460019290611af89084906129a3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b604051806101400160405280600a905b611b6e611b84565b815260200190600190039081611b665790505090565b6040518060a001604052806005906020820280368337509192915050565b600082601f830112611bb2578081fd5b8135602067ffffffffffffffff821115611bce57611bce612ac1565b808202611bdc828201612979565b838152828101908684018388018501891015611bf6578687fd5b8693505b85841015611c18578035835260019390930192918401918401611bfa565b50979650505050505050565b600060208284031215611c35578081fd5b813561094f81612ad7565b600060208284031215611c51578081fd5b815161094f81612ad7565b60008060408385031215611c6e578081fd5b8235611c7981612ad7565b91506020830135611c8981612ad7565b809150509250929050565b600080600060608486031215611ca8578081fd5b8335611cb381612ad7565b92506020840135611cc381612ad7565b929592945050506040919091013590565b60008060008060808587031215611ce9578081fd5b8435611cf481612ad7565b9350602085810135611d0581612ad7565b935060408601359250606086013567ffffffffffffffff80821115611d28578384fd5b818801915088601f830112611d3b578384fd5b813581811115611d4d57611d4d612ac1565b611d5f601f8201601f19168501612979565b91508082528984828501011115611d74578485fd5b8084840185840137810190920192909252939692955090935050565b60008060408385031215611da2578182fd5b8235611dad81612ad7565b915060208301358015158114611c89578182fd5b60008060408385031215611dd3578182fd5b8235611dde81612ad7565b946020939093013593505050565b6000610640808385031215611dff578182fd5b838184011115611e0d578182fd5b509092915050565b60008060408385031215611e27578182fd5b823567ffffffffffffffff811115611e3d578283fd5b611e4985828601611ba2565b95602094909401359450505050565b600060208284031215611e69578081fd5b5035919050565b600060208284031215611e81578081fd5b813561094f81612aec565b600060208284031215611e9d578081fd5b815161094f81612aec565b60008060408385031215611eba578182fd5b50508035926020909101359150565b600080600060608486031215611edd578081fd5b8335925060208401359150604084013567ffffffffffffffff811115611f01578182fd5b611f0d86828701611ba2565b9150509250925092565b600080600060608486031215611f2b578081fd5b505081359360208301359350604090920135919050565b60008151808452611f5a816020860160208601612a05565b601f01601f19169290920160200192915050565b7f222077696474683d223522206865696768743d223522207374796c653d22666981527036361d1011981818111f1e17b932b1ba1f60791b602082015260310190565b918252602082015260400190565b60008351611fd1818460208801612a05565b835190830190611fe5818360208801612a05565b01949350505050565b60008451612000818460208901612a05565b845190830190612014818360208901612a05565b8451910190612027818360208801612a05565b0195945050505050565b60007f3c7376672076657273696f6e3d22312e31222077696474683d2235303022206882527f65696768743d223530302220786d6c6e733d22687474703a2f2f7777772e773360208301527f2e6f72672f323030302f737667223e3c67207472616e73666f726d3d227472616040830152703739b630ba329419191a9019191a94911f60791b606083015282516120cf816071850160208701612a05565b691e17b39f1e17b9bb339f60b11b6071939091019283015250607b01919050565b757b226e616d65223a20224c696c2720476c797068202360501b81528251600090612122816016850160208801612a05565b7f222c20226465736372697074696f6e223a202246756c6c79206f6e2d636861696016918401918201527f6e206c6974746c6520506978656c676c797068732e222c2022696d616765223a60368201527f2022646174613a696d6167652f7376672b786d6c3b6261736536342c00000000605682015283516121ab816072840160208801612a05565b61227d60f01b60729290910191820152607401949350505050565b60007f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000825282516121fe81601d850160208701612a05565b91909101601d0192915050565b681e3932b1ba103c1e9160b91b81528251600090612230816009850160208801612a05565b6411103c9e9160d91b600991840191820152835161225581600e840160208801612a05565b7f222077696474683d223522206865696768743d223522207374796c653d226669600e92909101918201527036361d1011a32323111f1e17b932b1ba1f60791b602e820152603f01949350505050565b681e3932b1ba103c1e9160b91b815282516000906122ca816009850160208801612a05565b6411103c9e9160d91b60099184019182015283516122ef81600e840160208801612a05565b6122fd600e82840101611f6e565b9695505050505050565b6e1e3932b1ba103230ba3096b4b21e9160891b8152835160009061233281600f850160208901612a05565b6411103c1e9160d91b600f918401918201528451612357816014840160208901612a05565b6411103c9e9160d91b60149290910191820152835161237d816019840160208801612a05565b61238b601982840101611f6e565b979650505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122fd90830184611f42565b610640810181836000805b600a81101561242e57825184835b60058110156124155782518252602092830192909101906001016123f6565b50505060a09390930192602092909201916001016123e8565b5050505092915050565b901515815260200190565b90815260200190565b60006020825261094f6020830184611f42565b6020808252600190820152600d60fa1b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252600190820152603360f81b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252600190820152601960f91b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600190820152603160f81b604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60405181810167ffffffffffffffff8111828210171561299b5761299b612ac1565b604052919050565b600082198211156129b6576129b6612a95565b500190565b6000826129ca576129ca612aab565b500490565b60008160001904831182151516156129e9576129e9612a95565b500290565b600082821015612a0057612a00612a95565b500390565b60005b83811015612a20578181015183820152602001612a08565b83811115610c665750506000910152565b600281046001821680612a4557607f821691505b6020821081141561071157634e487b7160e01b600052602260045260246000fd5b6000600019821415612a7a57612a7a612a95565b5060010190565b600082612a9057612a90612aab565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f4457600080fd5b6001600160e01b031981168114610f4457600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220eb523d4599cdc0f4d38a1719e702135754a2c93589a18c7c8f004a13365bebc564736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f38d6bf300d52ba7880b43cddb3f94ee3c6c4ea6
-----Decoded View---------------
Arg [0] : pixelglyphs (address): 0xF38d6BF300d52bA7880b43cDDB3F94ee3C6C4Ea6
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f38d6bf300d52ba7880b43cddb3f94ee3c6c4ea6
Deployed Bytecode Sourcemap
42630:5373:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34456:260;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22029:94;;;:::i;:::-;;;;;;;:::i;23552:239::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;23117:377::-;;;;;;:::i;:::-;;:::i;:::-;;35155:107;;;:::i;:::-;;;;;;;:::i;24462:332::-;;;;;;:::i;:::-;;:::i;44196:53::-;;;;;;:::i;:::-;;:::i;34792:295::-;;;;;;:::i;:::-;;:::i;47373:274::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;24857:165::-;;;;;;:::i;:::-;;:::i;35331:272::-;;;;;;:::i;:::-;;:::i;21717:253::-;;;;;;:::i;:::-;;:::i;21437:226::-;;;;;;:::i;:::-;;:::i;41971:88::-;;;:::i;41360:81::-;;;:::i;47653:347::-;;;;;;:::i;:::-;;:::i;22184:98::-;;;:::i;43473:156::-;;;;;;:::i;:::-;;:::i;43991:199::-;;;;;;:::i;:::-;;:::i;23855:299::-;;;;;;:::i;:::-;;:::i;45106:1639::-;;;;;;:::i;:::-;;:::i;25085:321::-;;;;;;:::i;:::-;;:::i;46751:616::-;;;;;;:::i;:::-;;:::i;43715:270::-;;;;;;:::i;:::-;;:::i;43635:74::-;;;;;;:::i;:::-;;:::i;44256:405::-;;;;;;:::i;:::-;;:::i;24217:186::-;;;;;;:::i;:::-;;:::i;42698:19::-;;;:::i;42204:182::-;;;;;;:::i;:::-;;:::i;34456:260::-;34583:4;-1:-1:-1;;;;;;34613:50:0;;-1:-1:-1;;;34613:50:0;;:97;;;34674:36;34698:11;34674:23;:36::i;:::-;34599:111;;34456:260;;;;:::o;22029:94::-;22083:13;22112:5;22105:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22029:94;:::o;23552:239::-;23653:7;23680:16;23688:7;23680;:16::i;:::-;23672:73;;;;-1:-1:-1;;;23672:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;23761:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23761:24:0;;23552:239::o;23117:377::-;23194:13;23210:23;23225:7;23210:14;:23::i;:::-;23194:39;;23254:5;-1:-1:-1;;;;;23248:11:0;:2;-1:-1:-1;;;;;23248:11:0;;;23240:57;;;;-1:-1:-1;;;23240:57:0;;;;;;;:::i;:::-;23338:5;-1:-1:-1;;;;;23322:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;23322:21:0;;:62;;;;23347:37;23364:5;23371:12;:10;:12::i;23347:37::-;23306:152;;;;-1:-1:-1;;;23306:152:0;;;;;;;:::i;:::-;23467:21;23476:2;23480:7;23467:8;:21::i;:::-;23117:377;;;:::o;35155:107::-;35239:10;:17;35155:107;:::o;24462:332::-;24643:41;24662:12;:10;:12::i;:::-;24676:7;24643:18;:41::i;:::-;24627:124;;;;-1:-1:-1;;;24627:124:0;;;;;;;:::i;:::-;24760:28;24770:4;24776:2;24780:7;24760:9;:28::i;44196:53::-;;;;;;;;;;;;;:::o;34792:295::-;34914:7;34957:23;34974:5;34957:16;:23::i;:::-;34949:5;:31;34933:108;;;;-1:-1:-1;;;34933:108:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35055:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34792:295::o;47373:274::-;47456:28;;:::i;:::-;47504:16;47512:7;47504;:16::i;:::-;47496:30;;;;-1:-1:-1;;;47496:30:0;;;;;;;:::i;:::-;47538:9;47533:109;47557:2;47553:1;:6;47533:109;;;47612:22;47623:7;47632:1;47612:10;:22::i;:::-;47575:6;47582:5;47586:1;47582;:5;:::i;:::-;47575:13;;;;;-1:-1:-1;;;47575:13:0;;;;;;;;;;;;;47596:5;47600:1;47596;:5;:::i;:::-;47595:11;;47605:1;47595:11;:::i;:::-;47590:17;;:1;:17;:::i;:::-;47575:34;;;;;-1:-1:-1;;;47575:34:0;;;;;;;;;;;;:59;47561:3;;;;:::i;:::-;;;;47533:109;;;;47373:274;;;:::o;24857:165::-;24977:39;24994:4;25000:2;25004:7;24977:39;;;;;;;;;;;;:16;:39::i;35331:272::-;35431:7;35474:30;:28;:30::i;:::-;35466:5;:38;35450:116;;;;-1:-1:-1;;;35450:116:0;;;;;;;:::i;:::-;35580:10;35591:5;35580:17;;;;;;-1:-1:-1;;;35580:17:0;;;;;;;;;;;;;;;;;35573:24;;35331:272;;;:::o;21717:253::-;21814:7;21849:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21849:16:0;21880:19;21872:73;;;;-1:-1:-1;;;21872:73:0;;;;;;;:::i;21437:226::-;21534:7;-1:-1:-1;;;;;21561:19:0;;21553:74;;;;-1:-1:-1;;;21553:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;21641:16:0;;;;;:9;:16;;;;;;;21437:226::o;41971:88::-;41573:12;:10;:12::i;:::-;-1:-1:-1;;;;;41562:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41562:23:0;;41554:68;;;;-1:-1:-1;;;41554:68:0;;;;;;;:::i;:::-;42032:21:::1;42050:1;42032:9;:21::i;:::-;41971:88::o:0;41360:81::-;41429:6;;-1:-1:-1;;;;;41429:6:0;41360:81;:::o;47653:347::-;47751:7;47770:15;47797:9;47792:182;47816:13;47812:1;:17;47792:182;;;47850:9;47845:122;47869:6;47876:1;47869:9;;;;;-1:-1:-1;;;47869:9:0;;;;;;;;;;;:16;47865:1;:20;47845:122;;;47913:44;47924:7;47937:5;:1;47941;47937:5;:::i;:::-;47933:9;;:1;:9;:::i;:::-;47944:6;47951:1;47944:9;;;;;-1:-1:-1;;;47944:9:0;;;;;;;;;;;;47954:1;47944:12;;;;;-1:-1:-1;;;47944:12:0;;;;;;;;;;;;;47913:10;:44::i;:::-;47903:54;-1:-1:-1;47887:3:0;;;;:::i;:::-;;;;47845:122;;;-1:-1:-1;47831:3:0;;;;:::i;:::-;;;;47792:182;;;-1:-1:-1;47987:7:0;47653:347;-1:-1:-1;;47653:347:0:o;22184:98::-;22240:13;22269:7;22262:14;;;;;:::i;43473:156::-;43563:4;43586:37;43605:5;43612:4;;43618;43586:18;:37::i;:::-;43579:44;43473:156;-1:-1:-1;;;43473:156:0:o;43991:199::-;44125:27;44164:1;44124:42;;43991:199::o;23855:299::-;23984:12;:10;:12::i;:::-;-1:-1:-1;;;;;23972:24:0;:8;-1:-1:-1;;;;;23972:24:0;;;23964:62;;;;-1:-1:-1;;;23964:62:0;;;;;;;:::i;:::-;24080:8;24035:18;:32;24054:12;:10;:12::i;:::-;-1:-1:-1;;;;;24035:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;24035:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;24035:53:0;;;;;;;;;;;24115:12;:10;:12::i;:::-;-1:-1:-1;;;;;24100:48:0;;24139:8;24100:48;;;;;;:::i;:::-;;;;;;;;23855:299;;:::o;45106:1639::-;45160:13;45190:16;45198:7;45190;:16::i;:::-;45182:30;;;;-1:-1:-1;;;45182:30:0;;;;;;;:::i;:::-;45233:1;45241:17;45219:11;45265:1232;45289:2;45285:1;:6;45265:1232;;;45307:9;45326:5;45330:1;45326;:5;:::i;:::-;45325:11;;45335:1;45325:11;:::i;:::-;45320:17;;:1;:17;:::i;:::-;45307:31;;45351:22;45362:7;45371:1;45351:10;:22::i;:::-;45377:1;45351:27;45347:1143;;;45391:18;45488:17;45497:7;45501:3;45497:1;:7;:::i;:::-;45488:8;:17::i;:::-;45542:23;45561:3;45552:5;45556:1;45552;:5;:::i;:::-;45551:13;;;;:::i;45542:23::-;45431:213;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45391:264;;45696:3;45701:4;45679:27;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45666:41;;45347:1143;;;;45759:1;45727:29;45742:7;45751:1;45754;45727:14;:29::i;:::-;:33;45723:767;;;45773:18;45870:17;45879:7;45883:3;45879:1;:7;:::i;45870:17::-;45924:23;45943:3;45934:5;45938:1;45934;:5;:::i;45924:23::-;45813:213;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45773:264;;46048:22;46155:11;46164:1;46155:8;:11::i;:::-;46203:28;46227:3;46222:1;46213:6;46218:1;46213:2;:6;:::i;:::-;:10;;;;:::i;46203:28::-;46268:23;46287:3;46278:5;46282:1;46278;:5;:::i;46268:23::-;46092:278;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46048:333;;46424:3;46429:4;46435:8;46407:37;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46394:51;;45723:767;;;;;46472:8;;;45723:767;45265:1232;;45293:3;;;;:::i;:::-;;;;45265:1232;;;;46691:3;46534:196;;;;;;;;:::i;:::-;;;;;;;;;;;;;46503:236;;;;45106:1639;;;:::o;25085:321::-;25246:41;25265:12;:10;:12::i;:::-;25279:7;25246:18;:41::i;:::-;25230:124;;;;-1:-1:-1;;;25230:124:0;;;;;;;:::i;:::-;25361:39;25375:4;25381:2;25385:7;25394:5;25361:13;:39::i;:::-;25085:321;;;;:::o;46751:616::-;46836:13;46869:16;46877:7;46869;:16::i;:::-;46861:30;;;;-1:-1:-1;;;46861:30:0;;;;;;;:::i;:::-;46898:18;46919:365;47047:17;47056:7;47047:8;:17::i;:::-;47188:37;47208:15;47215:7;47208:6;:15::i;:::-;47188:13;:37::i;:::-;46976:281;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46919:13;:365::i;:::-;46898:386;;47355:4;47305:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;47291:70;;;46751:616;;;:::o;43715:270::-;43835:7;43855:6;43865:1;43855:11;43851:128;;;-1:-1:-1;43899:1:0;43891:25;;43875:42;;43868:49;;43851:128;-1:-1:-1;;43961:1:0;43953:25;;43951:28;43936:43;;43715:270::o;43635:74::-;41573:12;:10;:12::i;:::-;-1:-1:-1;;;;;41562:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41562:23:0;;41554:68;;;;-1:-1:-1;;;41554:68:0;;;;;;;:::i;:::-;43691:4:::1;:12:::0;43635:74::o;44256:405::-;44372:3;;:21;;-1:-1:-1;;;44372:21:0;;44397:10;;-1:-1:-1;;;;;44372:3:0;;:11;;:21;;44384:8;;44372:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;44372:35:0;;44364:49;;;;-1:-1:-1;;;44364:49:0;;;;;;;:::i;:::-;44428:28;;;;:18;:28;;;;;;:33;44420:47;;;;-1:-1:-1;;;44420:47:0;;;;;;;:::i;:::-;44490:62;44497:5;44531:8;44541;44514:36;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44504:47;;;;;;44490:6;:62::i;:::-;44474:97;;;;-1:-1:-1;;;44474:97:0;;;;;;;:::i;:::-;44578:28;;;;:18;:28;;;;;:39;;;44624:31;44634:10;44609:8;44624:9;:31::i;24217:186::-;-1:-1:-1;;;;;24362:25:0;;;24339:4;24362:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24217:186::o;42698:19::-;;;;:::o;42204:182::-;41573:12;:10;:12::i;:::-;-1:-1:-1;;;;;41562:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41562:23:0;;41554:68;;;;-1:-1:-1;;;41554:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42289:22:0;::::1;42281:73;;;;-1:-1:-1::0;;;42281:73:0::1;;;;;;;:::i;:::-;42361:19;42371:8;42361:9;:19::i;:::-;42204:182:::0;:::o;21072:309::-;21199:4;-1:-1:-1;;;;;;21229:40:0;;-1:-1:-1;;;21229:40:0;;:99;;-1:-1:-1;;;;;;;21280:48:0;;-1:-1:-1;;;21280:48:0;21229:99;:146;;;;21339:36;21363:11;21339:23;:36::i;26853:121::-;26918:4;26938:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26938:16:0;:30;;;26853:121::o;16841:92::-;16917:10;16841:92;:::o;30587:164::-;30658:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30658:29:0;-1:-1:-1;;;;;30658:29:0;;;;;;;;:24;;30708:23;30658:24;30708:14;:23::i;:::-;-1:-1:-1;;;;;30699:46:0;;;;;;;;;;;30587:164;;:::o;27125:371::-;27238:4;27262:16;27270:7;27262;:16::i;:::-;27254:73;;;;-1:-1:-1;;;27254:73:0;;;;;;;:::i;:::-;27334:13;27350:23;27365:7;27350:14;:23::i;:::-;27334:39;;27399:5;-1:-1:-1;;;;;27388:16:0;:7;-1:-1:-1;;;;;27388:16:0;;:58;;;;27439:7;-1:-1:-1;;;;;27415:31:0;:20;27427:7;27415:11;:20::i;:::-;-1:-1:-1;;;;;27415:31:0;;27388:58;:101;;;;27457:32;27474:5;27481:7;27457:16;:32::i;:::-;27380:110;27125:371;-1:-1:-1;;;;27125:371:0:o;29934:547::-;30083:4;-1:-1:-1;;;;;30056:31:0;:23;30071:7;30056:14;:23::i;:::-;-1:-1:-1;;;;;30056:31:0;;30040:106;;;;-1:-1:-1;;;30040:106:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30161:16:0;;30153:65;;;;-1:-1:-1;;;30153:65:0;;;;;;;:::i;:::-;30227:39;30248:4;30254:2;30258:7;30227:20;:39::i;:::-;30323:29;30340:1;30344:7;30323:8;:29::i;:::-;-1:-1:-1;;;;;30361:15:0;;;;;;:9;:15;;;;;:20;;30380:1;;30361:15;:20;;30380:1;;30361:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30388:13:0;;;;;;:9;:13;;;;;:18;;30405:1;;30388:13;:18;;30405:1;;30388:18;:::i;:::-;;;;-1:-1:-1;;30413:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30413:21:0;-1:-1:-1;;;;;30413:21:0;;;;;;;;;30448:27;;30413:16;;30448:27;;;;;;;29934:547;;;:::o;42392:159::-;42463:6;;;-1:-1:-1;;;;;42476:17:0;;;-1:-1:-1;;;;;;42476:17:0;;;;;;;42505:40;;42463:6;;;42476:17;42463:6;;42505:40;;42444:16;;42505:40;42392:159;;:::o;819:738::-;930:4;966;930;979:465;1003:5;:12;999:1;:16;979:465;;;1031:20;1054:5;1060:1;1054:8;;;;;;-1:-1:-1;;;1054:8:0;;;;;;;;;;;;;;;1031:31;;1093:12;1077;:28;1073:364;;1231:12;1245;1214:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1204:55;;;;;;1189:70;;1073:364;;;1399:12;1413;1382:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1372:55;;;;;;1357:70;;1073:364;-1:-1:-1;1017:3:0;;;;:::i;:::-;;;;979:465;;;-1:-1:-1;1531:20:0;;;;819:738;-1:-1:-1;;;819:738:0:o;42830:637::-;42886:13;43095:10;43091:43;;-1:-1:-1;43116:10:0;;;;;;;;;;;;-1:-1:-1;;;43116:10:0;;;;;;43091:43;43155:5;43140:12;43188:62;43195:9;;43188:62;;43215:8;;;;:::i;:::-;;-1:-1:-1;43232:10:0;;-1:-1:-1;43240:2:0;43232:10;;:::i;:::-;;;43188:62;;;43256:19;43288:6;43278:17;;;;;;-1:-1:-1;;;43278:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43278:17:0;;43256:39;;43302:132;43309:10;;43302:132;;43330:11;43340:1;43330:11;;:::i;:::-;;-1:-1:-1;43393:10:0;43401:2;43393:5;:10;:::i;:::-;43380:24;;:2;:24;:::i;:::-;43367:39;;43350:6;43357;43350:14;;;;;;-1:-1:-1;;;43350:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;43350:56:0;;;;;;;;-1:-1:-1;43415:11:0;43424:2;43415:11;;:::i;:::-;;;43302:132;;44667:433;44774:7;44790:11;44811:1;44804:3;:8;;:38;;44841:1;44804:38;;;44815:23;44826:2;44830:7;44836:1;44830:3;:7;:::i;44815:23::-;44790:52;;44849:14;44873:2;44866:3;:9;;:39;;44904:1;44866:39;;;44878:23;44889:2;44893:7;:3;44899:1;44893:7;:::i;44878:23::-;44849:56;;44912:12;44933:1;44927:3;:7;:21;;;;-1:-1:-1;44938:10:0;;;44927:21;:51;;44977:1;44927:51;;;44951:23;44962:2;44966:7;44972:1;44966:3;:7;:::i;44951:23::-;44912:66;;44985:13;45007:2;45001:3;:8;:22;;;;;45013:5;45022:1;45013:10;;45001:22;:52;;45052:1;45001:52;;;45026:23;45037:2;45041:7;:3;45047:1;45041:7;:::i;45026:23::-;44985:68;-1:-1:-1;44985:68:0;45082:4;45067:12;45073:6;45067:3;:12;:::i;:::-;:19;;;;:::i;:::-;:27;;;;:::i;:::-;45060:34;44667:433;-1:-1:-1;;;;;;;;44667:433:0:o;26250:308::-;26385:28;26395:4;26401:2;26405:7;26385:9;:28::i;:::-;26436:48;26459:4;26465:2;26469:7;26478:5;26436:22;:48::i;:::-;26420:132;;;;-1:-1:-1;;;26420:132:0;;;;;;;:::i;48379:1439::-;48473:11;;48437:13;;48495:8;48491:23;;-1:-1:-1;;48505:9:0;;;;;;;;;-1:-1:-1;48505:9:0;;;;48491:23;48558:18;48596:1;48585:7;:3;48591:1;48585:7;:::i;:::-;48584:13;;;;:::i;:::-;48579:19;;:1;:19;:::i;:::-;48558:40;-1:-1:-1;48648:19:0;48680:15;48558:40;48693:2;48680:15;:::i;:::-;48670:26;;;;;;-1:-1:-1;;;48670:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48670:26:0;;48648:48;;48705:18;48726:5;;;;;;;;;;;;;;;;;48705:26;;48785:1;48778:5;48774:13;48824:2;48816:6;48812:15;48861:1;48837:721;48878:3;48875:1;48872:10;48837:721;;;48919:1;48954:12;;;;;48948:19;49041:4;49029:2;49025:14;;;;;49007:40;;49001:47;49157:2;49153:14;;;49149:25;;49135:40;;49129:47;49303:1;49299:13;;;49295:24;;49281:39;;49275:46;49417:16;;;;49403:31;;49397:38;49069:1;49065:11;;;49178:4;49125:58;;;49093:101;49211:11;;49271:57;;;49239:100;;;;49356:11;;49393:49;;49384:59;49464:3;49460:13;49485:22;;49547:1;49532:17;;;;48912:9;48837:721;;;48841:30;49584:1;49579:3;49575:11;49599:1;49594:70;;;;49677:1;49672:68;;;;49568:172;;49594:70;-1:-1:-1;;;;;49619:17:0;;49612:43;49594:70;;49672:68;-1:-1:-1;;;;;49697:17:0;;49690:41;49568:172;-1:-1:-1;;;49750:26:0;;;;48379:1439;-1:-1:-1;;;;48379:1439:0:o;27816:104::-;27888:26;27898:2;27902:7;27888:26;;;;;;;;;;;;:9;:26::i;:::-;27816:104;;:::o;19653:179::-;-1:-1:-1;;;;;;19786:40:0;;-1:-1:-1;;;19786:40:0;19653:179;;;:::o;36184:521::-;36310:45;36337:4;36343:2;36347:7;36310:26;:45::i;:::-;-1:-1:-1;;;;;36368:18:0;;36364:167;;36397:40;36429:7;36397:31;:40::i;:::-;36364:167;;;36463:2;-1:-1:-1;;;;;36455:10:0;:4;-1:-1:-1;;;;;36455:10:0;;36451:80;;36476:47;36509:4;36515:7;36476:32;:47::i;:::-;-1:-1:-1;;;;;36541:16:0;;36537:163;;36568:45;36605:7;36568:36;:45::i;:::-;36537:163;;;36637:4;-1:-1:-1;;;;;36631:10:0;:2;-1:-1:-1;;;;;36631:10:0;;36627:73;;36652:40;36680:2;36684:7;36652:27;:40::i;31294:685::-;31431:4;31448:15;:2;-1:-1:-1;;;;;31448:13:0;;:15::i;:::-;31444:530;;;31503:2;-1:-1:-1;;;;;31487:36:0;;31524:12;:10;:12::i;:::-;31538:4;31544:7;31553:5;31487:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31487:72:0;;;;;;;;-1:-1:-1;;31487:72:0;;;;;;;;;;;;:::i;:::-;;;31474:459;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31714:13:0;;31710:214;;31747:60;;-1:-1:-1;;;31747:60:0;;;;;;;:::i;31710:214::-;31892:6;31886:13;31877:6;31873:2;31869:15;31862:38;31474:459;-1:-1:-1;;;;;;31609:51:0;-1:-1:-1;;;31609:51:0;;-1:-1:-1;31602:58:0;;31444:530;-1:-1:-1;31962:4:0;31294:685;;;;;;:::o;28137:281::-;28249:18;28255:2;28259:7;28249:5;:18::i;:::-;28290:54;28321:1;28325:2;28329:7;28338:5;28290:22;:54::i;:::-;28274:138;;;;-1:-1:-1;;;28274:138:0;;;;;;;:::i;37392:154::-;37492:10;:17;;37465:24;;;;:15;:24;;;;;:44;;;37516:24;;;;;;;;;;;;37392:154::o;38155:936::-;38417:22;38467:1;38442:22;38459:4;38442:16;:22::i;:::-;:26;;;;:::i;:::-;38475:18;38496:26;;;:17;:26;;;;;;38417:51;;-1:-1:-1;38621:28:0;;;38617:306;;-1:-1:-1;;;;;38682:18:0;;38660:19;38682:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38727:30;;;;;;:44;;;38838:30;;:17;:30;;;;;:43;;;38617:306;-1:-1:-1;39011:26:0;;;;:17;:26;;;;;;;;39004:33;;;-1:-1:-1;;;;;39051:18:0;;;;;:12;:18;;;;;:34;;;;;;;39044:41;38155:936::o;39374:1025::-;39640:10;:17;39615:22;;39640:21;;39660:1;;39640:21;:::i;:::-;39668:18;39689:24;;;:15;:24;;;;;;40046:10;:26;;39615:46;;-1:-1:-1;39689:24:0;;39615:46;;40046:26;;;;-1:-1:-1;;;40046:26:0;;;;;;;;;;;;;;;;;40024:48;;40106:11;40081:10;40092;40081:22;;;;;;-1:-1:-1;;;40081:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40182:28;;;:15;:28;;;;;;;:41;;;40346:24;;;;;40339:31;40377:10;:16;;;;;-1:-1:-1;;;40377:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39374:1025;;;;:::o;36994:207::-;37075:14;37092:20;37109:2;37092:16;:20::i;:::-;-1:-1:-1;;;;;37119:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37160:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36994:207:0:o;9230:351::-;9527:20;9567:8;;;9230:351::o;28728:356::-;-1:-1:-1;;;;;28804:16:0;;28796:61;;;;-1:-1:-1;;;28796:61:0;;;;;;;:::i;:::-;28873:16;28881:7;28873;:16::i;:::-;28872:17;28864:58;;;;-1:-1:-1;;;28864:58:0;;;;;;;:::i;:::-;28931:45;28960:1;28964:2;28968:7;28931:20;:45::i;:::-;-1:-1:-1;;;;;28985:13:0;;;;;;:9;:13;;;;;:18;;29002:1;;28985:13;:18;;29002:1;;28985:18;:::i;:::-;;;;-1:-1:-1;;29010:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29010:21:0;-1:-1:-1;;;;;29010:21:0;;;;;;;;29045:33;;29010:16;;;29045:33;;29010:16;;29045:33;28728:356;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:749:1:-;;127:3;120:4;112:6;108:17;104:27;94:2;;149:5;142;135:20;94:2;189:6;176:20;215:4;238:18;234:2;231:26;228:2;;;260:18;;:::i;:::-;307:2;303;299:11;330:27;353:2;349;345:11;330:27;:::i;:::-;391:15;;;422:12;;;;454:15;;;488;;;484:24;;481:33;-1:-1:-1;478:2:1;;;531:5;524;517:20;478:2;557:5;548:14;;571:163;585:2;582:1;579:9;571:163;;;642:17;;630:30;;603:1;596:9;;;;;680:12;;;;712;;571:163;;;-1:-1:-1;752:5:1;84:679;-1:-1:-1;;;;;;;84:679:1:o;768:259::-;;880:2;868:9;859:7;855:23;851:32;848:2;;;901:6;893;886:22;848:2;945:9;932:23;964:33;991:5;964:33;:::i;1032:263::-;;1155:2;1143:9;1134:7;1130:23;1126:32;1123:2;;;1176:6;1168;1161:22;1123:2;1213:9;1207:16;1232:33;1259:5;1232:33;:::i;1300:402::-;;;1429:2;1417:9;1408:7;1404:23;1400:32;1397:2;;;1450:6;1442;1435:22;1397:2;1494:9;1481:23;1513:33;1540:5;1513:33;:::i;:::-;1565:5;-1:-1:-1;1622:2:1;1607:18;;1594:32;1635:35;1594:32;1635:35;:::i;:::-;1689:7;1679:17;;;1387:315;;;;;:::o;1707:470::-;;;;1853:2;1841:9;1832:7;1828:23;1824:32;1821:2;;;1874:6;1866;1859:22;1821:2;1918:9;1905:23;1937:33;1964:5;1937:33;:::i;:::-;1989:5;-1:-1:-1;2046:2:1;2031:18;;2018:32;2059:35;2018:32;2059:35;:::i;:::-;1811:366;;2113:7;;-1:-1:-1;;;2167:2:1;2152:18;;;;2139:32;;1811:366::o;2182:1156::-;;;;;2354:3;2342:9;2333:7;2329:23;2325:33;2322:2;;;2376:6;2368;2361:22;2322:2;2420:9;2407:23;2439:33;2466:5;2439:33;:::i;:::-;2491:5;-1:-1:-1;2515:2:1;2554:18;;;2541:32;2582:35;2541:32;2582:35;:::i;:::-;2636:7;-1:-1:-1;2690:2:1;2675:18;;2662:32;;-1:-1:-1;2745:2:1;2730:18;;2717:32;2768:18;2798:14;;;2795:2;;;2830:6;2822;2815:22;2795:2;2873:6;2862:9;2858:22;2848:32;;2918:7;2911:4;2907:2;2903:13;2899:27;2889:2;;2945:6;2937;2930:22;2889:2;2986;2973:16;3008:2;3004;3001:10;2998:2;;;3014:18;;:::i;:::-;3056:52;3098:2;3079:13;;-1:-1:-1;;3075:27:1;3071:36;;3056:52;:::i;:::-;3043:65;;3131:2;3124:5;3117:17;3171:7;3166:2;3161;3157;3153:11;3149:20;3146:33;3143:2;;;3197:6;3189;3182:22;3143:2;3257;3252;3248;3244:11;3239:2;3232:5;3228:14;3215:45;3280:14;;3276:23;;;3269:39;;;;2312:1026;;;;-1:-1:-1;2312:1026:1;;-1:-1:-1;;2312:1026:1:o;3343:438::-;;;3469:2;3457:9;3448:7;3444:23;3440:32;3437:2;;;3490:6;3482;3475:22;3437:2;3534:9;3521:23;3553:33;3580:5;3553:33;:::i;:::-;3605:5;-1:-1:-1;3662:2:1;3647:18;;3634:32;3704:15;;3697:23;3685:36;;3675:2;;3740:6;3732;3725:22;3786:327;;;3915:2;3903:9;3894:7;3890:23;3886:32;3883:2;;;3936:6;3928;3921:22;3883:2;3980:9;3967:23;3999:33;4026:5;3999:33;:::i;:::-;4051:5;4103:2;4088:18;;;;4075:32;;-1:-1:-1;;;3873:240:1:o;4118:320::-;;4259:4;4304:2;4292:9;4283:7;4279:23;4275:32;4272:2;;;4325:6;4317;4310:22;4272:2;4369:7;4364:2;4353:9;4349:18;4346:31;4343:2;;;4395:6;4387;4380:22;4343:2;-1:-1:-1;4423:9:1;;4239:199;-1:-1:-1;;4239:199:1:o;4443:442::-;;;4597:2;4585:9;4576:7;4572:23;4568:32;4565:2;;;4618:6;4610;4603:22;4565:2;4663:9;4650:23;4696:18;4688:6;4685:30;4682:2;;;4733:6;4725;4718:22;4682:2;4761:67;4820:7;4811:6;4800:9;4796:22;4761:67;:::i;:::-;4751:77;4875:2;4860:18;;;;4847:32;;-1:-1:-1;;;;4555:330:1:o;4890:190::-;;5002:2;4990:9;4981:7;4977:23;4973:32;4970:2;;;5023:6;5015;5008:22;4970:2;-1:-1:-1;5051:23:1;;4960:120;-1:-1:-1;4960:120:1:o;5085:257::-;;5196:2;5184:9;5175:7;5171:23;5167:32;5164:2;;;5217:6;5209;5202:22;5164:2;5261:9;5248:23;5280:32;5306:5;5280:32;:::i;5347:261::-;;5469:2;5457:9;5448:7;5444:23;5440:32;5437:2;;;5490:6;5482;5475:22;5437:2;5527:9;5521:16;5546:32;5572:5;5546:32;:::i;5808:258::-;;;5937:2;5925:9;5916:7;5912:23;5908:32;5905:2;;;5958:6;5950;5943:22;5905:2;-1:-1:-1;;5986:23:1;;;6056:2;6041:18;;;6028:32;;-1:-1:-1;5895:171:1:o;6071:510::-;;;;6242:2;6230:9;6221:7;6217:23;6213:32;6210:2;;;6263:6;6255;6248:22;6210:2;6304:9;6291:23;6281:33;;6361:2;6350:9;6346:18;6333:32;6323:42;;6416:2;6405:9;6401:18;6388:32;6443:18;6435:6;6432:30;6429:2;;;6480:6;6472;6465:22;6429:2;6508:67;6567:7;6558:6;6547:9;6543:22;6508:67;:::i;:::-;6498:77;;;6200:381;;;;;:::o;6586:326::-;;;;6732:2;6720:9;6711:7;6707:23;6703:32;6700:2;;;6753:6;6745;6738:22;6700:2;-1:-1:-1;;6781:23:1;;;6851:2;6836:18;;6823:32;;-1:-1:-1;6902:2:1;6887:18;;;6874:32;;6690:222;-1:-1:-1;6690:222:1:o;6917:259::-;;6998:5;6992:12;7025:6;7020:3;7013:19;7041:63;7097:6;7090:4;7085:3;7081:14;7074:4;7067:5;7063:16;7041:63;:::i;:::-;7158:2;7137:15;-1:-1:-1;;7133:29:1;7124:39;;;;7165:4;7120:50;;6968:208;-1:-1:-1;;6968:208:1:o;7181:257::-;7260:66;7248:79;;-1:-1:-1;;;7352:2:1;7343:12;;7336:68;7429:2;7420:12;;7238:200::o;7443:247::-;7600:19;;;7644:2;7635:12;;7628:28;7681:2;7672:12;;7590:100::o;7695:470::-;;7912:6;7906:13;7928:53;7974:6;7969:3;7962:4;7954:6;7950:17;7928:53;:::i;:::-;8044:13;;8003:16;;;;8066:57;8044:13;8003:16;8100:4;8088:17;;8066:57;:::i;:::-;8139:20;;7882:283;-1:-1:-1;;;;7882:283:1:o;8170:664::-;;8435:6;8429:13;8451:53;8497:6;8492:3;8485:4;8477:6;8473:17;8451:53;:::i;:::-;8567:13;;8526:16;;;;8589:57;8567:13;8526:16;8623:4;8611:17;;8589:57;:::i;:::-;8713:13;;8668:20;;;8735:57;8713:13;8668:20;8769:4;8757:17;;8735:57;:::i;:::-;8808:20;;8405:429;-1:-1:-1;;;;;8405:429:1:o;8839:919::-;;9202:66;9197:3;9190:79;9299:66;9294:2;9289:3;9285:12;9278:88;9396:66;9391:2;9386:3;9382:12;9375:88;9502:36;9497:3;9493:46;9488:2;9483:3;9479:12;9472:68;9569:6;9563:13;9585:61;9639:6;9633:3;9628;9624:13;9619:2;9611:6;9607:15;9585:61;:::i;:::-;-1:-1:-1;;;9705:3:1;9665:16;;;;9697:12;;;9690:34;-1:-1:-1;9748:3:1;9740:12;;9180:578;-1:-1:-1;9180:578:1:o;9763:1224::-;-1:-1:-1;;;10263:68:1;;10354:13;;9763:1224;;10376:62;10354:13;10426:2;10417:12;;10410:4;10398:17;;10376:62;:::i;:::-;10502:66;10497:2;10457:16;;;10489:11;;;10482:87;10598:66;10593:2;10585:11;;10578:87;10694:66;10689:2;10681:11;;10674:87;10786:13;;10808:64;10786:13;10857:3;10849:12;;10842:4;10830:17;;10808:64;:::i;:::-;-1:-1:-1;;;10932:3:1;10891:17;;;;10924:12;;;10917:36;10977:3;10969:12;;10253:734;-1:-1:-1;;;;10253:734:1:o;10992:448::-;;11254:31;11249:3;11242:44;11315:6;11309:13;11331:62;11386:6;11381:2;11376:3;11372:12;11365:4;11357:6;11353:17;11331:62;:::i;:::-;11413:16;;;;11431:2;11409:25;;11232:208;-1:-1:-1;;11232:208:1:o;11445:1086::-;-1:-1:-1;;;11945:43:1;;12011:13;;11445:1086;;12033:61;12011:13;12083:1;12074:11;;12067:4;12055:17;;12033:61;:::i;:::-;-1:-1:-1;;;12153:1:1;12113:16;;;12145:10;;;12138:42;12205:13;;12227:63;12205:13;12276:2;12268:11;;12261:4;12249:17;;12227:63;:::i;:::-;12355:66;12350:2;12309:17;;;;12342:11;;;12335:87;-1:-1:-1;;;12446:2:1;12438:11;;12431:67;12522:2;12514:11;;11935:596;-1:-1:-1;;;;11935:596:1:o;12536:926::-;-1:-1:-1;;;13036:43:1;;13102:13;;12536:926;;13124:61;13102:13;13174:1;13165:11;;13158:4;13146:17;;13124:61;:::i;:::-;-1:-1:-1;;;13244:1:1;13204:16;;;13236:10;;;13229:42;13296:13;;13318:63;13296:13;13367:2;13359:11;;13352:4;13340:17;;13318:63;:::i;:::-;13397:59;13452:2;13441:8;13437:2;13433:17;13429:26;13397:59;:::i;:::-;13390:66;13026:436;-1:-1:-1;;;;;;13026:436:1:o;13467:1287::-;-1:-1:-1;;;14116:55:1;;14194:13;;13467:1287;;14216:62;14194:13;14266:2;14257:12;;14250:4;14238:17;;14216:62;:::i;:::-;-1:-1:-1;;;14337:2:1;14297:16;;;14329:11;;;14322:43;14390:13;;14412:63;14390:13;14461:2;14453:11;;14446:4;14434:17;;14412:63;:::i;:::-;-1:-1:-1;;;14535:2:1;14494:17;;;;14527:11;;;14520:43;14588:13;;14610:63;14588:13;14659:2;14651:11;;14644:4;14632:17;;14610:63;:::i;:::-;14689:59;14744:2;14733:8;14729:2;14725:17;14721:26;14689:59;:::i;:::-;14682:66;14106:648;-1:-1:-1;;;;;;;14106:648:1:o;15011:203::-;-1:-1:-1;;;;;15175:32:1;;;;15157:51;;15145:2;15130:18;;15112:102::o;15219:490::-;-1:-1:-1;;;;;15488:15:1;;;15470:34;;15540:15;;15535:2;15520:18;;15513:43;15587:2;15572:18;;15565:34;;;15635:3;15630:2;15615:18;;15608:31;;;15219:490;;15656:47;;15683:19;;15675:6;15656:47;:::i;15714:904::-;15942:4;15927:20;;15931:9;16024:6;15714:904;;16079:533;16095:4;16090:3;16087:13;16079:533;;;16156:13;;16195:3;16278:1;16292:236;16308:4;16303:3;16300:13;16292:236;;;16381:15;;16367:30;;16424:4;16497:17;;;;16454:14;;;;16332:1;16323:11;16292:236;;;-1:-1:-1;;;16557:4:1;16548:14;;;;;16597:4;16585:17;;;;;16119:1;16110:11;16079:533;;;16083:3;;;;15909:709;;;;:::o;16623:187::-;16788:14;;16781:22;16763:41;;16751:2;16736:18;;16718:92::o;16815:177::-;16961:25;;;16949:2;16934:18;;16916:76::o;16997:221::-;;17146:2;17135:9;17128:21;17166:46;17208:2;17197:9;17193:18;17185:6;17166:46;:::i;17223:324::-;17425:2;17407:21;;;17464:1;17444:18;;;17437:29;-1:-1:-1;;;17497:2:1;17482:18;;17475:31;17538:2;17523:18;;17397:150::o;17552:407::-;17754:2;17736:21;;;17793:2;17773:18;;;17766:30;17832:34;17827:2;17812:18;;17805:62;-1:-1:-1;;;17898:2:1;17883:18;;17876:41;17949:3;17934:19;;17726:233::o;17964:414::-;18166:2;18148:21;;;18205:2;18185:18;;;18178:30;18244:34;18239:2;18224:18;;18217:62;-1:-1:-1;;;18310:2:1;18295:18;;18288:48;18368:3;18353:19;;18138:240::o;18383:402::-;18585:2;18567:21;;;18624:2;18604:18;;;18597:30;18663:34;18658:2;18643:18;;18636:62;-1:-1:-1;;;18729:2:1;18714:18;;18707:36;18775:3;18760:19;;18557:228::o;18790:352::-;18992:2;18974:21;;;19031:2;19011:18;;;19004:30;19070;19065:2;19050:18;;19043:58;19133:2;19118:18;;18964:178::o;19147:324::-;19349:2;19331:21;;;19388:1;19368:18;;;19361:29;-1:-1:-1;;;19421:2:1;19406:18;;19399:31;19462:2;19447:18;;19321:150::o;19476:400::-;19678:2;19660:21;;;19717:2;19697:18;;;19690:30;19756:34;19751:2;19736:18;;19729:62;-1:-1:-1;;;19822:2:1;19807:18;;19800:34;19866:3;19851:19;;19650:226::o;19881:349::-;20083:2;20065:21;;;20122:2;20102:18;;;20095:30;20161:27;20156:2;20141:18;;20134:55;20221:2;20206:18;;20055:175::o;20235:408::-;20437:2;20419:21;;;20476:2;20456:18;;;20449:30;20515:34;20510:2;20495:18;;20488:62;-1:-1:-1;;;20581:2:1;20566:18;;20559:42;20633:3;20618:19;;20409:234::o;20648:420::-;20850:2;20832:21;;;20889:2;20869:18;;;20862:30;20928:34;20923:2;20908:18;;20901:62;20999:26;20994:2;20979:18;;20972:54;21058:3;21043:19;;20822:246::o;21073:406::-;21275:2;21257:21;;;21314:2;21294:18;;;21287:30;21353:34;21348:2;21333:18;;21326:62;-1:-1:-1;;;21419:2:1;21404:18;;21397:40;21469:3;21454:19;;21247:232::o;21484:405::-;21686:2;21668:21;;;21725:2;21705:18;;;21698:30;21764:34;21759:2;21744:18;;21737:62;-1:-1:-1;;;21830:2:1;21815:18;;21808:39;21879:3;21864:19;;21658:231::o;21894:356::-;22096:2;22078:21;;;22115:18;;;22108:30;22174:34;22169:2;22154:18;;22147:62;22241:2;22226:18;;22068:182::o;22255:408::-;22457:2;22439:21;;;22496:2;22476:18;;;22469:30;22535:34;22530:2;22515:18;;22508:62;-1:-1:-1;;;22601:2:1;22586:18;;22579:42;22653:3;22638:19;;22429:234::o;22668:356::-;22870:2;22852:21;;;22889:18;;;22882:30;22948:34;22943:2;22928:18;;22921:62;23015:2;23000:18;;22842:182::o;23029:405::-;23231:2;23213:21;;;23270:2;23250:18;;;23243:30;23309:34;23304:2;23289:18;;23282:62;-1:-1:-1;;;23375:2:1;23360:18;;23353:39;23424:3;23409:19;;23203:231::o;23439:324::-;23641:2;23623:21;;;23680:1;23660:18;;;23653:29;-1:-1:-1;;;23713:2:1;23698:18;;23691:31;23754:2;23739:18;;23613:150::o;23768:397::-;23970:2;23952:21;;;24009:2;23989:18;;;23982:30;24048:34;24043:2;24028:18;;24021:62;-1:-1:-1;;;24114:2:1;24099:18;;24092:31;24155:3;24140:19;;23942:223::o;24170:413::-;24372:2;24354:21;;;24411:2;24391:18;;;24384:30;24450:34;24445:2;24430:18;;24423:62;-1:-1:-1;;;24516:2:1;24501:18;;24494:47;24573:3;24558:19;;24344:239::o;24588:324::-;24790:2;24772:21;;;24829:1;24809:18;;;24802:29;-1:-1:-1;;;24862:2:1;24847:18;;24840:31;24903:2;24888:18;;24762:150::o;24917:408::-;25119:2;25101:21;;;25158:2;25138:18;;;25131:30;25197:34;25192:2;25177:18;;25170:62;-1:-1:-1;;;25263:2:1;25248:18;;25241:42;25315:3;25300:19;;25091:234::o;25512:251::-;25582:2;25576:9;25612:17;;;25659:18;25644:34;;25680:22;;;25641:62;25638:2;;;25706:18;;:::i;:::-;25742:2;25735:22;25556:207;;-1:-1:-1;25556:207:1:o;25768:128::-;;25839:1;25835:6;25832:1;25829:13;25826:2;;;25845:18;;:::i;:::-;-1:-1:-1;25881:9:1;;25816:80::o;25901:120::-;;25967:1;25957:2;;25972:18;;:::i;:::-;-1:-1:-1;26006:9:1;;25947:74::o;26026:168::-;;26132:1;26128;26124:6;26120:14;26117:1;26114:21;26109:1;26102:9;26095:17;26091:45;26088:2;;;26139:18;;:::i;:::-;-1:-1:-1;26179:9:1;;26078:116::o;26199:125::-;;26267:1;26264;26261:8;26258:2;;;26272:18;;:::i;:::-;-1:-1:-1;26309:9:1;;26248:76::o;26329:258::-;26401:1;26411:113;26425:6;26422:1;26419:13;26411:113;;;26501:11;;;26495:18;26482:11;;;26475:39;26447:2;26440:10;26411:113;;;26542:6;26539:1;26536:13;26533:2;;;-1:-1:-1;;26577:1:1;26559:16;;26552:27;26382:205::o;26592:380::-;26677:1;26667:12;;26724:1;26714:12;;;26735:2;;26789:4;26781:6;26777:17;26767:27;;26735:2;26842;26834:6;26831:14;26811:18;26808:38;26805:2;;;26888:10;26883:3;26879:20;26876:1;26869:31;26923:4;26920:1;26913:15;26951:4;26948:1;26941:15;26977:135;;-1:-1:-1;;27037:17:1;;27034:2;;;27057:18;;:::i;:::-;-1:-1:-1;27104:1:1;27093:13;;27024:88::o;27117:112::-;;27175:1;27165:2;;27180:18;;:::i;:::-;-1:-1:-1;27214:9:1;;27155:74::o;27234:127::-;27295:10;27290:3;27286:20;27283:1;27276:31;27326:4;27323:1;27316:15;27350:4;27347:1;27340:15;27366:127;27427:10;27422:3;27418:20;27415:1;27408:31;27458:4;27455:1;27448:15;27482:4;27479:1;27472:15;27498:127;27559:10;27554:3;27550:20;27547:1;27540:31;27590:4;27587:1;27580:15;27614:4;27611:1;27604:15;27630:133;-1:-1:-1;;;;;27707:31:1;;27697:42;;27687:2;;27753:1;27750;27743:12;27768:133;-1:-1:-1;;;;;;27844:32:1;;27834:43;;27824:2;;27891:1;27888;27881:12
Swarm Source
ipfs://eb523d4599cdc0f4d38a1719e702135754a2c93589a18c7c8f004a13365bebc5
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.