ERC-721
Overview
Max Total Supply
150 Kongz
Holders
88
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 KongzLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BrickToKongZ
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-11-02 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Counters.sol pragma solidity ^0.8.0; /** * @title Counters * @author BrickToKongZ * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @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 pragma solidity ^0.8.0; /** * @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/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @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/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @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/utils/Strings.sol pragma solidity ^0.8.0; /** * @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/Address.sol pragma solidity ^0.8.0; /** * @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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @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/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @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/ERC721.sol pragma solidity ^0.8.0; /** * @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(to).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/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @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: BrickToKongZ.sol pragma solidity ^0.8.0; /// @author BrickToKongZ contract BrickToKongZ is ERC721Enumerable, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenId; uint256 public constant MAX_KONGZ = 1000; uint256 public price = 80000000000000000; //0.08 Ether string baseTokenURI; bool public saleOpen = false; event BrickToKongZMinted(uint256 totalMinted); constructor(string memory baseURI) ERC721("Brick To KongZ", "Kongz") { setBaseURI(baseURI); } //Get token Ids of all tokens owned by _owner function walletOfOwner(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function setPrice(uint256 _newPrice) external onlyOwner { price = _newPrice; } //Close sale if open, open sale if closed function flipSaleState() external onlyOwner { saleOpen = !saleOpen; } function withdrawAll() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } //mint BrickToKongZ function mintBrickToKongZ(address _to, uint256 _count) external payable { require( totalSupply() + _count <= MAX_KONGZ, "Exceeds maximum supply of Brick To KongZ" ); if (msg.sender != owner()) { require(saleOpen, "Sale is not open yet"); require( _count > 0 && _count <= 5, "Minimum 1 & Maximum 5 Geo Freeze can be minted per transaction" ); require( msg.value >= price * _count, "Ether sent with this transaction is not correct" ); } for (uint256 i = 0; i < _count; i++) { _mint(_to); } } function _mint(address _to) private { _tokenId.increment(); uint256 tokenId = _tokenId.current(); _safeMint(_to, tokenId); emit BrickToKongZMinted(tokenId); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"BrickToKongZMinted","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":[],"name":"MAX_KONGZ","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintBrickToKongZ","outputs":[],"stateMutability":"payable","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405267011c37937e080000600c55600e805460ff191690553480156200002757600080fd5b506040516200277d3803806200277d8339810160408190526200004a9162000255565b604080518082018252600e81526d213934b1b5902a379025b7b733ad60911b60208083019182528351808501909452600584526425b7b733bd60d91b9084015281519192916200009d91600091620001af565b508051620000b3906001906020840190620001af565b505050620000d0620000ca620000e260201b60201c565b620000e6565b620000db8162000138565b50620003ac565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000142620000e2565b6001600160a01b031662000155620001a0565b6001600160a01b031614620001875760405162461bcd60e51b81526004016200017e9062000324565b60405180910390fd5b80516200019c90600d906020840190620001af565b5050565b600a546001600160a01b031690565b828054620001bd9062000359565b90600052602060002090601f016020900481019282620001e157600085556200022c565b82601f10620001fc57805160ff19168380011785556200022c565b828001600101855582156200022c579182015b828111156200022c5782518255916020019190600101906200020f565b506200023a9291506200023e565b5090565b5b808211156200023a57600081556001016200023f565b6000602080838503121562000268578182fd5b82516001600160401b03808211156200027f578384fd5b818501915085601f83011262000293578384fd5b815181811115620002a857620002a862000396565b604051601f8201601f1916810185018381118282101715620002ce57620002ce62000396565b6040528181528382018501881015620002e5578586fd5b8592505b81831015620003085783830185015181840186015291840191620002e9565b818311156200031957858583830101525b979650505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200036e57607f821691505b602082108114156200039057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6123c180620003bc6000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a035b1fe1161008a578063bdd6bcdf11610064578063bdd6bcdf1461049a578063c87b56dd146104ad578063e985e9c5146104cd578063f2fde38b146104ed576101b7565b8063a035b1fe14610445578063a22cb4651461045a578063b88d4fde1461047a576101b7565b80638da5cb5b116100c65780638da5cb5b146103e657806391b7f5ed146103fb57806395d89b411461041b57806399288dbb14610430576101b7565b806370a082311461039c578063715018a6146103bc578063853828b6146103d1576101b7565b806334918dfd116101595780634f6ccce7116101335780634f6ccce71461032757806355657ef91461034757806355f804b31461035c5780636352211e1461037c576101b7565b806334918dfd146102c557806342842e0e146102da578063438b6300146102fa576101b7565b8063095ea7b311610195578063095ea7b31461024157806318160ddd1461026357806323b872dd146102855780632f745c59146102a5576101b7565b806301ffc9a7146101bc57806306fdde03146101f2578063081812fc14610214575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611a42565b61050d565b6040516101e99190611bcb565b60405180910390f35b3480156101fe57600080fd5b5061020761053a565b6040516101e99190611bd6565b34801561022057600080fd5b5061023461022f366004611ac0565b6105cc565b6040516101e99190611b36565b34801561024d57600080fd5b5061026161025c366004611a19565b610618565b005b34801561026f57600080fd5b506102786106b0565b6040516101e99190612232565b34801561029157600080fd5b506102616102a036600461192b565b6106b6565b3480156102b157600080fd5b506102786102c0366004611a19565b6106ee565b3480156102d157600080fd5b50610261610740565b3480156102e657600080fd5b506102616102f536600461192b565b610793565b34801561030657600080fd5b5061031a6103153660046118df565b6107ae565b6040516101e99190611b87565b34801561033357600080fd5b50610278610342366004611ac0565b61086c565b34801561035357600080fd5b506102786108c7565b34801561036857600080fd5b50610261610377366004611a7a565b6108cd565b34801561038857600080fd5b50610234610397366004611ac0565b610923565b3480156103a857600080fd5b506102786103b73660046118df565b610958565b3480156103c857600080fd5b5061026161099c565b3480156103dd57600080fd5b506102616109e7565b3480156103f257600080fd5b50610234610aa5565b34801561040757600080fd5b50610261610416366004611ac0565b610ab4565b34801561042757600080fd5b50610207610af8565b34801561043c57600080fd5b506101dc610b07565b34801561045157600080fd5b50610278610b10565b34801561046657600080fd5b506102616104753660046119df565b610b16565b34801561048657600080fd5b50610261610495366004611966565b610be4565b6102616104a8366004611a19565b610c23565b3480156104b957600080fd5b506102076104c8366004611ac0565b610d19565b3480156104d957600080fd5b506101dc6104e83660046118f9565b610d9c565b3480156104f957600080fd5b506102616105083660046118df565b610dca565b60006001600160e01b0319821663780e9d6360e01b1480610532575061053282610e38565b90505b919050565b606060008054610549906122c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610575906122c9565b80156105c25780601f10610597576101008083540402835291602001916105c2565b820191906000526020600020905b8154815290600101906020018083116105a557829003601f168201915b5050505050905090565b60006105d782610e78565b6105fc5760405162461bcd60e51b81526004016105f390611f65565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061062382610923565b9050806001600160a01b0316836001600160a01b031614156106575760405162461bcd60e51b81526004016105f39061212a565b806001600160a01b0316610669610e95565b6001600160a01b031614806106855750610685816104e8610e95565b6106a15760405162461bcd60e51b81526004016105f390611e40565b6106ab8383610e99565b505050565b60085490565b6106c76106c1610e95565b82610f07565b6106e35760405162461bcd60e51b81526004016105f390612195565b6106ab838383610f8c565b60006106f983610958565b82106107175760405162461bcd60e51b81526004016105f390611c31565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610748610e95565b6001600160a01b0316610759610aa5565b6001600160a01b03161461077f5760405162461bcd60e51b81526004016105f390612000565b600e805460ff19811660ff90911615179055565b6106ab83838360405180602001604052806000815250610be4565b606060006107bb83610958565b905060008167ffffffffffffffff8111156107e657634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561080f578160200160208202803683370190505b50905060005b828110156108645761082785826106ee565b82828151811061084757634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061085c81612304565b915050610815565b509392505050565b60006108766106b0565b82106108945760405162461bcd60e51b81526004016105f3906121e6565b600882815481106108b557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6103e881565b6108d5610e95565b6001600160a01b03166108e6610aa5565b6001600160a01b03161461090c5760405162461bcd60e51b81526004016105f390612000565b805161091f90600d9060208401906117bf565b5050565b6000818152600260205260408120546001600160a01b0316806105325760405162461bcd60e51b81526004016105f390611ee7565b60006001600160a01b0382166109805760405162461bcd60e51b81526004016105f390611e9d565b506001600160a01b031660009081526003602052604090205490565b6109a4610e95565b6001600160a01b03166109b5610aa5565b6001600160a01b0316146109db5760405162461bcd60e51b81526004016105f390612000565b6109e560006110b9565b565b6109ef610e95565b6001600160a01b0316610a00610aa5565b6001600160a01b031614610a265760405162461bcd60e51b81526004016105f390612000565b6000336001600160a01b031647604051610a3f90611b33565b60006040518083038185875af1925050503d8060008114610a7c576040519150601f19603f3d011682016040523d82523d6000602084013e610a81565b606091505b5050905080610aa25760405162461bcd60e51b81526004016105f39061216b565b50565b600a546001600160a01b031690565b610abc610e95565b6001600160a01b0316610acd610aa5565b6001600160a01b031614610af35760405162461bcd60e51b81526004016105f390612000565b600c55565b606060018054610549906122c9565b600e5460ff1681565b600c5481565b610b1e610e95565b6001600160a01b0316826001600160a01b03161415610b4f5760405162461bcd60e51b81526004016105f390611d8f565b8060056000610b5c610e95565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ba0610e95565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610bd89190611bcb565b60405180910390a35050565b610bf5610bef610e95565b83610f07565b610c115760405162461bcd60e51b81526004016105f390612195565b610c1d8484848461110b565b50505050565b6103e881610c2f6106b0565b610c39919061223b565b1115610c575760405162461bcd60e51b81526004016105f390611be9565b610c5f610aa5565b6001600160a01b0316336001600160a01b031614610cf357600e5460ff16610c995760405162461bcd60e51b81526004016105f390611dc6565b600081118015610caa575060058111155b610cc65760405162461bcd60e51b81526004016105f3906120cd565b80600c54610cd49190612267565b341015610cf35760405162461bcd60e51b81526004016105f390611fb1565b60005b818110156106ab57610d078361113e565b80610d1181612304565b915050610cf6565b6060610d2482610e78565b610d405760405162461bcd60e51b81526004016105f39061207e565b6000610d4a61119b565b90506000815111610d6a5760405180602001604052806000815250610d95565b80610d74846111aa565b604051602001610d85929190611b04565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610dd2610e95565b6001600160a01b0316610de3610aa5565b6001600160a01b031614610e095760405162461bcd60e51b81526004016105f390612000565b6001600160a01b038116610e2f5760405162461bcd60e51b81526004016105f390611cce565b610aa2816110b9565b60006001600160e01b031982166380ac58cd60e01b1480610e6957506001600160e01b03198216635b5e139f60e01b145b806105325750610532826112c5565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ece82610923565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f1282610e78565b610f2e5760405162461bcd60e51b81526004016105f390611df4565b6000610f3983610923565b9050806001600160a01b0316846001600160a01b03161480610f745750836001600160a01b0316610f69846105cc565b6001600160a01b0316145b80610f845750610f848185610d9c565b949350505050565b826001600160a01b0316610f9f82610923565b6001600160a01b031614610fc55760405162461bcd60e51b81526004016105f390612035565b6001600160a01b038216610feb5760405162461bcd60e51b81526004016105f390611d4b565b610ff68383836112de565b611001600082610e99565b6001600160a01b038316600090815260036020526040812080546001929061102a908490612286565b90915550506001600160a01b038216600090815260036020526040812080546001929061105890849061223b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611116848484610f8c565b61112284848484611367565b610c1d5760405162461bcd60e51b81526004016105f390611c7c565b611148600b611482565b6000611154600b61148b565b9050611160828261148f565b7fe74e2acb548048634d04712810006d160a821f763feaf43a6f94d59443fb3ee48160405161118f9190612232565b60405180910390a15050565b6060600d8054610549906122c9565b6060816111cf57506040805180820190915260018152600360fc1b6020820152610535565b8160005b81156111f957806111e381612304565b91506111f29050600a83612253565b91506111d3565b60008167ffffffffffffffff81111561122257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561124c576020820181803683370190505b5090505b8415610f8457611261600183612286565b915061126e600a8661231f565b61127990603061223b565b60f81b81838151811061129c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506112be600a86612253565b9450611250565b6001600160e01b031981166301ffc9a760e01b14919050565b6112e98383836106ab565b6001600160a01b03831661130557611300816114a9565b611328565b816001600160a01b0316836001600160a01b0316146113285761132883826114ed565b6001600160a01b0382166113445761133f8161158a565b6106ab565b826001600160a01b0316826001600160a01b0316146106ab576106ab8282611663565b600061137b846001600160a01b03166116a7565b1561147757836001600160a01b031663150b7a02611397610e95565b8786866040518563ffffffff1660e01b81526004016113b99493929190611b4a565b602060405180830381600087803b1580156113d357600080fd5b505af1925050508015611403575060408051601f3d908101601f1916820190925261140091810190611a5e565b60015b61145d573d808015611431576040519150601f19603f3d011682016040523d82523d6000602084013e611436565b606091505b5080516114555760405162461bcd60e51b81526004016105f390611c7c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f84565b506001949350505050565b80546001019055565b5490565b61091f8282604051806020016040528060008152506116ad565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016114fa84610958565b6115049190612286565b600083815260076020526040902054909150808214611557576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061159c90600190612286565b600083815260096020526040812054600880549394509092849081106115d257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061160157634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061164757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061166e83610958565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b6116b783836116e0565b6116c46000848484611367565b6106ab5760405162461bcd60e51b81526004016105f390611c7c565b6001600160a01b0382166117065760405162461bcd60e51b81526004016105f390611f30565b61170f81610e78565b1561172c5760405162461bcd60e51b81526004016105f390611d14565b611738600083836112de565b6001600160a01b038216600090815260036020526040812080546001929061176190849061223b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546117cb906122c9565b90600052602060002090601f0160209004810192826117ed5760008555611833565b82601f1061180657805160ff1916838001178555611833565b82800160010185558215611833579182015b82811115611833578251825591602001919060010190611818565b5061183f929150611843565b5090565b5b8082111561183f5760008155600101611844565b600067ffffffffffffffff808411156118735761187361235f565b604051601f8501601f1916810160200182811182821017156118975761189761235f565b6040528481529150818385018610156118af57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461053557600080fd5b6000602082840312156118f0578081fd5b610d95826118c8565b6000806040838503121561190b578081fd5b611914836118c8565b9150611922602084016118c8565b90509250929050565b60008060006060848603121561193f578081fd5b611948846118c8565b9250611956602085016118c8565b9150604084013590509250925092565b6000806000806080858703121561197b578081fd5b611984856118c8565b9350611992602086016118c8565b925060408501359150606085013567ffffffffffffffff8111156119b4578182fd5b8501601f810187136119c4578182fd5b6119d387823560208401611858565b91505092959194509250565b600080604083850312156119f1578182fd5b6119fa836118c8565b915060208301358015158114611a0e578182fd5b809150509250929050565b60008060408385031215611a2b578182fd5b611a34836118c8565b946020939093013593505050565b600060208284031215611a53578081fd5b8135610d9581612375565b600060208284031215611a6f578081fd5b8151610d9581612375565b600060208284031215611a8b578081fd5b813567ffffffffffffffff811115611aa1578182fd5b8201601f81018413611ab1578182fd5b610f8484823560208401611858565b600060208284031215611ad1578081fd5b5035919050565b60008151808452611af081602086016020860161229d565b601f01601f19169290920160200192915050565b60008351611b1681846020880161229d565b835190830190611b2a81836020880161229d565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b7d90830184611ad8565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611bbf57835183529284019291840191600101611ba3565b50909695505050505050565b901515815260200190565b600060208252610d956020830184611ad8565b60208082526028908201527f45786365656473206d6178696d756d20737570706c79206f6620427269636b206040820152672a379025b7b733ad60c11b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526014908201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602f908201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252603e908201527f4d696e696d756d20312026204d6178696d756d20352047656f20467265657a6560408201527f2063616e206265206d696e74656420706572207472616e73616374696f6e0000606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b6000821982111561224e5761224e612333565b500190565b60008261226257612262612349565b500490565b600081600019048311821515161561228157612281612333565b500290565b60008282101561229857612298612333565b500390565b60005b838110156122b85781810151838201526020016122a0565b83811115610c1d5750506000910152565b6002810460018216806122dd57607f821691505b602082108114156122fe57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561231857612318612333565b5060010190565b60008261232e5761232e612349565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610aa257600080fdfea2646970667358221220fdf05d54b674d5d7a5a19042941b8356338eec916849ea5987de3fed105df12464736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a035b1fe1161008a578063bdd6bcdf11610064578063bdd6bcdf1461049a578063c87b56dd146104ad578063e985e9c5146104cd578063f2fde38b146104ed576101b7565b8063a035b1fe14610445578063a22cb4651461045a578063b88d4fde1461047a576101b7565b80638da5cb5b116100c65780638da5cb5b146103e657806391b7f5ed146103fb57806395d89b411461041b57806399288dbb14610430576101b7565b806370a082311461039c578063715018a6146103bc578063853828b6146103d1576101b7565b806334918dfd116101595780634f6ccce7116101335780634f6ccce71461032757806355657ef91461034757806355f804b31461035c5780636352211e1461037c576101b7565b806334918dfd146102c557806342842e0e146102da578063438b6300146102fa576101b7565b8063095ea7b311610195578063095ea7b31461024157806318160ddd1461026357806323b872dd146102855780632f745c59146102a5576101b7565b806301ffc9a7146101bc57806306fdde03146101f2578063081812fc14610214575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611a42565b61050d565b6040516101e99190611bcb565b60405180910390f35b3480156101fe57600080fd5b5061020761053a565b6040516101e99190611bd6565b34801561022057600080fd5b5061023461022f366004611ac0565b6105cc565b6040516101e99190611b36565b34801561024d57600080fd5b5061026161025c366004611a19565b610618565b005b34801561026f57600080fd5b506102786106b0565b6040516101e99190612232565b34801561029157600080fd5b506102616102a036600461192b565b6106b6565b3480156102b157600080fd5b506102786102c0366004611a19565b6106ee565b3480156102d157600080fd5b50610261610740565b3480156102e657600080fd5b506102616102f536600461192b565b610793565b34801561030657600080fd5b5061031a6103153660046118df565b6107ae565b6040516101e99190611b87565b34801561033357600080fd5b50610278610342366004611ac0565b61086c565b34801561035357600080fd5b506102786108c7565b34801561036857600080fd5b50610261610377366004611a7a565b6108cd565b34801561038857600080fd5b50610234610397366004611ac0565b610923565b3480156103a857600080fd5b506102786103b73660046118df565b610958565b3480156103c857600080fd5b5061026161099c565b3480156103dd57600080fd5b506102616109e7565b3480156103f257600080fd5b50610234610aa5565b34801561040757600080fd5b50610261610416366004611ac0565b610ab4565b34801561042757600080fd5b50610207610af8565b34801561043c57600080fd5b506101dc610b07565b34801561045157600080fd5b50610278610b10565b34801561046657600080fd5b506102616104753660046119df565b610b16565b34801561048657600080fd5b50610261610495366004611966565b610be4565b6102616104a8366004611a19565b610c23565b3480156104b957600080fd5b506102076104c8366004611ac0565b610d19565b3480156104d957600080fd5b506101dc6104e83660046118f9565b610d9c565b3480156104f957600080fd5b506102616105083660046118df565b610dca565b60006001600160e01b0319821663780e9d6360e01b1480610532575061053282610e38565b90505b919050565b606060008054610549906122c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610575906122c9565b80156105c25780601f10610597576101008083540402835291602001916105c2565b820191906000526020600020905b8154815290600101906020018083116105a557829003601f168201915b5050505050905090565b60006105d782610e78565b6105fc5760405162461bcd60e51b81526004016105f390611f65565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061062382610923565b9050806001600160a01b0316836001600160a01b031614156106575760405162461bcd60e51b81526004016105f39061212a565b806001600160a01b0316610669610e95565b6001600160a01b031614806106855750610685816104e8610e95565b6106a15760405162461bcd60e51b81526004016105f390611e40565b6106ab8383610e99565b505050565b60085490565b6106c76106c1610e95565b82610f07565b6106e35760405162461bcd60e51b81526004016105f390612195565b6106ab838383610f8c565b60006106f983610958565b82106107175760405162461bcd60e51b81526004016105f390611c31565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610748610e95565b6001600160a01b0316610759610aa5565b6001600160a01b03161461077f5760405162461bcd60e51b81526004016105f390612000565b600e805460ff19811660ff90911615179055565b6106ab83838360405180602001604052806000815250610be4565b606060006107bb83610958565b905060008167ffffffffffffffff8111156107e657634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561080f578160200160208202803683370190505b50905060005b828110156108645761082785826106ee565b82828151811061084757634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061085c81612304565b915050610815565b509392505050565b60006108766106b0565b82106108945760405162461bcd60e51b81526004016105f3906121e6565b600882815481106108b557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6103e881565b6108d5610e95565b6001600160a01b03166108e6610aa5565b6001600160a01b03161461090c5760405162461bcd60e51b81526004016105f390612000565b805161091f90600d9060208401906117bf565b5050565b6000818152600260205260408120546001600160a01b0316806105325760405162461bcd60e51b81526004016105f390611ee7565b60006001600160a01b0382166109805760405162461bcd60e51b81526004016105f390611e9d565b506001600160a01b031660009081526003602052604090205490565b6109a4610e95565b6001600160a01b03166109b5610aa5565b6001600160a01b0316146109db5760405162461bcd60e51b81526004016105f390612000565b6109e560006110b9565b565b6109ef610e95565b6001600160a01b0316610a00610aa5565b6001600160a01b031614610a265760405162461bcd60e51b81526004016105f390612000565b6000336001600160a01b031647604051610a3f90611b33565b60006040518083038185875af1925050503d8060008114610a7c576040519150601f19603f3d011682016040523d82523d6000602084013e610a81565b606091505b5050905080610aa25760405162461bcd60e51b81526004016105f39061216b565b50565b600a546001600160a01b031690565b610abc610e95565b6001600160a01b0316610acd610aa5565b6001600160a01b031614610af35760405162461bcd60e51b81526004016105f390612000565b600c55565b606060018054610549906122c9565b600e5460ff1681565b600c5481565b610b1e610e95565b6001600160a01b0316826001600160a01b03161415610b4f5760405162461bcd60e51b81526004016105f390611d8f565b8060056000610b5c610e95565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ba0610e95565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610bd89190611bcb565b60405180910390a35050565b610bf5610bef610e95565b83610f07565b610c115760405162461bcd60e51b81526004016105f390612195565b610c1d8484848461110b565b50505050565b6103e881610c2f6106b0565b610c39919061223b565b1115610c575760405162461bcd60e51b81526004016105f390611be9565b610c5f610aa5565b6001600160a01b0316336001600160a01b031614610cf357600e5460ff16610c995760405162461bcd60e51b81526004016105f390611dc6565b600081118015610caa575060058111155b610cc65760405162461bcd60e51b81526004016105f3906120cd565b80600c54610cd49190612267565b341015610cf35760405162461bcd60e51b81526004016105f390611fb1565b60005b818110156106ab57610d078361113e565b80610d1181612304565b915050610cf6565b6060610d2482610e78565b610d405760405162461bcd60e51b81526004016105f39061207e565b6000610d4a61119b565b90506000815111610d6a5760405180602001604052806000815250610d95565b80610d74846111aa565b604051602001610d85929190611b04565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610dd2610e95565b6001600160a01b0316610de3610aa5565b6001600160a01b031614610e095760405162461bcd60e51b81526004016105f390612000565b6001600160a01b038116610e2f5760405162461bcd60e51b81526004016105f390611cce565b610aa2816110b9565b60006001600160e01b031982166380ac58cd60e01b1480610e6957506001600160e01b03198216635b5e139f60e01b145b806105325750610532826112c5565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ece82610923565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f1282610e78565b610f2e5760405162461bcd60e51b81526004016105f390611df4565b6000610f3983610923565b9050806001600160a01b0316846001600160a01b03161480610f745750836001600160a01b0316610f69846105cc565b6001600160a01b0316145b80610f845750610f848185610d9c565b949350505050565b826001600160a01b0316610f9f82610923565b6001600160a01b031614610fc55760405162461bcd60e51b81526004016105f390612035565b6001600160a01b038216610feb5760405162461bcd60e51b81526004016105f390611d4b565b610ff68383836112de565b611001600082610e99565b6001600160a01b038316600090815260036020526040812080546001929061102a908490612286565b90915550506001600160a01b038216600090815260036020526040812080546001929061105890849061223b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611116848484610f8c565b61112284848484611367565b610c1d5760405162461bcd60e51b81526004016105f390611c7c565b611148600b611482565b6000611154600b61148b565b9050611160828261148f565b7fe74e2acb548048634d04712810006d160a821f763feaf43a6f94d59443fb3ee48160405161118f9190612232565b60405180910390a15050565b6060600d8054610549906122c9565b6060816111cf57506040805180820190915260018152600360fc1b6020820152610535565b8160005b81156111f957806111e381612304565b91506111f29050600a83612253565b91506111d3565b60008167ffffffffffffffff81111561122257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561124c576020820181803683370190505b5090505b8415610f8457611261600183612286565b915061126e600a8661231f565b61127990603061223b565b60f81b81838151811061129c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506112be600a86612253565b9450611250565b6001600160e01b031981166301ffc9a760e01b14919050565b6112e98383836106ab565b6001600160a01b03831661130557611300816114a9565b611328565b816001600160a01b0316836001600160a01b0316146113285761132883826114ed565b6001600160a01b0382166113445761133f8161158a565b6106ab565b826001600160a01b0316826001600160a01b0316146106ab576106ab8282611663565b600061137b846001600160a01b03166116a7565b1561147757836001600160a01b031663150b7a02611397610e95565b8786866040518563ffffffff1660e01b81526004016113b99493929190611b4a565b602060405180830381600087803b1580156113d357600080fd5b505af1925050508015611403575060408051601f3d908101601f1916820190925261140091810190611a5e565b60015b61145d573d808015611431576040519150601f19603f3d011682016040523d82523d6000602084013e611436565b606091505b5080516114555760405162461bcd60e51b81526004016105f390611c7c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f84565b506001949350505050565b80546001019055565b5490565b61091f8282604051806020016040528060008152506116ad565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016114fa84610958565b6115049190612286565b600083815260076020526040902054909150808214611557576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061159c90600190612286565b600083815260096020526040812054600880549394509092849081106115d257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061160157634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061164757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061166e83610958565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b6116b783836116e0565b6116c46000848484611367565b6106ab5760405162461bcd60e51b81526004016105f390611c7c565b6001600160a01b0382166117065760405162461bcd60e51b81526004016105f390611f30565b61170f81610e78565b1561172c5760405162461bcd60e51b81526004016105f390611d14565b611738600083836112de565b6001600160a01b038216600090815260036020526040812080546001929061176190849061223b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546117cb906122c9565b90600052602060002090601f0160209004810192826117ed5760008555611833565b82601f1061180657805160ff1916838001178555611833565b82800160010185558215611833579182015b82811115611833578251825591602001919060010190611818565b5061183f929150611843565b5090565b5b8082111561183f5760008155600101611844565b600067ffffffffffffffff808411156118735761187361235f565b604051601f8501601f1916810160200182811182821017156118975761189761235f565b6040528481529150818385018610156118af57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461053557600080fd5b6000602082840312156118f0578081fd5b610d95826118c8565b6000806040838503121561190b578081fd5b611914836118c8565b9150611922602084016118c8565b90509250929050565b60008060006060848603121561193f578081fd5b611948846118c8565b9250611956602085016118c8565b9150604084013590509250925092565b6000806000806080858703121561197b578081fd5b611984856118c8565b9350611992602086016118c8565b925060408501359150606085013567ffffffffffffffff8111156119b4578182fd5b8501601f810187136119c4578182fd5b6119d387823560208401611858565b91505092959194509250565b600080604083850312156119f1578182fd5b6119fa836118c8565b915060208301358015158114611a0e578182fd5b809150509250929050565b60008060408385031215611a2b578182fd5b611a34836118c8565b946020939093013593505050565b600060208284031215611a53578081fd5b8135610d9581612375565b600060208284031215611a6f578081fd5b8151610d9581612375565b600060208284031215611a8b578081fd5b813567ffffffffffffffff811115611aa1578182fd5b8201601f81018413611ab1578182fd5b610f8484823560208401611858565b600060208284031215611ad1578081fd5b5035919050565b60008151808452611af081602086016020860161229d565b601f01601f19169290920160200192915050565b60008351611b1681846020880161229d565b835190830190611b2a81836020880161229d565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b7d90830184611ad8565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611bbf57835183529284019291840191600101611ba3565b50909695505050505050565b901515815260200190565b600060208252610d956020830184611ad8565b60208082526028908201527f45786365656473206d6178696d756d20737570706c79206f6620427269636b206040820152672a379025b7b733ad60c11b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526014908201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602f908201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252603e908201527f4d696e696d756d20312026204d6178696d756d20352047656f20467265657a6560408201527f2063616e206265206d696e74656420706572207472616e73616374696f6e0000606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b6000821982111561224e5761224e612333565b500190565b60008261226257612262612349565b500490565b600081600019048311821515161561228157612281612333565b500290565b60008282101561229857612298612333565b500390565b60005b838110156122b85781810151838201526020016122a0565b83811115610c1d5750506000910152565b6002810460018216806122dd57607f821691505b602082108114156122fe57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561231857612318612333565b5060010190565b60008261232e5761232e612349565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610aa257600080fdfea2646970667358221220fdf05d54b674d5d7a5a19042941b8356338eec916849ea5987de3fed105df12464736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
46357:2534:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39863:300;;;;;;;;;;-1:-1:-1;39863:300:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27023:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28716:308::-;;;;;;;;;;-1:-1:-1;28716:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28239:411::-;;;;;;;;;;-1:-1:-1;28239:411:0;;;;;:::i;:::-;;:::i;:::-;;40666:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29775:376::-;;;;;;;;;;-1:-1:-1;29775:376:0;;;;;:::i;:::-;;:::i;40247:343::-;;;;;;;;;;-1:-1:-1;40247:343:0;;;;;:::i;:::-;;:::i;47538:83::-;;;;;;;;;;;;;:::i;30222:185::-;;;;;;;;;;-1:-1:-1;30222:185:0;;;;;:::i;:::-;;:::i;46889:385::-;;;;;;;;;;-1:-1:-1;46889:385:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40856:320::-;;;;;;;;;;-1:-1:-1;40856:320:0;;;;;:::i;:::-;;:::i;46499:40::-;;;;;;;;;;;;;:::i;47282:101::-;;;;;;;;;;-1:-1:-1;47282:101:0;;;;;:::i;:::-;;:::i;26630:326::-;;;;;;;;;;-1:-1:-1;26630:326:0;;;;;:::i;:::-;;:::i;26273:295::-;;;;;;;;;;-1:-1:-1;26273:295:0;;;;;:::i;:::-;;:::i;9730:94::-;;;;;;;;;;;;;:::i;47629:176::-;;;;;;;;;;;;;:::i;9079:87::-;;;;;;;;;;;;;:::i;47391:92::-;;;;;;;;;;-1:-1:-1;47391:92:0;;;;;:::i;:::-;;:::i;27192:104::-;;;;;;;;;;;;;:::i;46632:28::-;;;;;;;;;;;;;:::i;46546:40::-;;;;;;;;;;;;;:::i;29096:327::-;;;;;;;;;;-1:-1:-1;29096:327:0;;;;;:::i;:::-;;:::i;30478:365::-;;;;;;;;;;-1:-1:-1;30478:365:0;;;;;:::i;:::-;;:::i;47838:722::-;;;;;;:::i;:::-;;:::i;27367:468::-;;;;;;;;;;-1:-1:-1;27367:468:0;;;;;:::i;:::-;;:::i;29494:214::-;;;;;;;;;;-1:-1:-1;29494:214:0;;;;;:::i;:::-;;:::i;9979:229::-;;;;;;;;;;-1:-1:-1;9979:229:0;;;;;:::i;:::-;;:::i;39863:300::-;40010:4;-1:-1:-1;;;;;;40052:50:0;;-1:-1:-1;;;40052:50:0;;:103;;;40119:36;40143:11;40119:23;:36::i;:::-;40032:123;;39863:300;;;;:::o;27023:100::-;27077:13;27110:5;27103:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27023:100;:::o;28716:308::-;28837:7;28884:16;28892:7;28884;:16::i;:::-;28862:110;;;;-1:-1:-1;;;28862:110:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;28992:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28992:24:0;;28716:308::o;28239:411::-;28320:13;28336:23;28351:7;28336:14;:23::i;:::-;28320:39;;28384:5;-1:-1:-1;;;;;28378:11:0;:2;-1:-1:-1;;;;;28378:11:0;;;28370:57;;;;-1:-1:-1;;;28370:57:0;;;;;;;:::i;:::-;28478:5;-1:-1:-1;;;;;28462:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;28462:21:0;;:62;;;;28487:37;28504:5;28511:12;:10;:12::i;28487:37::-;28440:168;;;;-1:-1:-1;;;28440:168:0;;;;;;;:::i;:::-;28621:21;28630:2;28634:7;28621:8;:21::i;:::-;28239:411;;;:::o;40666:113::-;40754:10;:17;40666:113;:::o;29775:376::-;29984:41;30003:12;:10;:12::i;:::-;30017:7;29984:18;:41::i;:::-;29962:140;;;;-1:-1:-1;;;29962:140:0;;;;;;;:::i;:::-;30115:28;30125:4;30131:2;30135:7;30115:9;:28::i;40247:343::-;40389:7;40444:23;40461:5;40444:16;:23::i;:::-;40436:5;:31;40414:124;;;;-1:-1:-1;;;40414:124:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;40556:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40247:343::o;47538:83::-;9310:12;:10;:12::i;:::-;-1:-1:-1;;;;;9299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9299:23:0;;9291:68;;;;-1:-1:-1;;;9291:68:0;;;;;;;:::i;:::-;47605:8:::1;::::0;;-1:-1:-1;;47593:20:0;::::1;47605:8;::::0;;::::1;47604:9;47593:20;::::0;;47538:83::o;30222:185::-;30360:39;30377:4;30383:2;30387:7;30360:39;;;;;;;;;;;;:16;:39::i;46889:385::-;46978:16;47012:18;47033:17;47043:6;47033:9;:17::i;:::-;47012:38;;47063:25;47105:10;47091:25;;;;;;-1:-1:-1;;;47091:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47091:25:0;;47063:53;;47132:9;47127:112;47151:10;47147:1;:14;47127:112;;;47197:30;47217:6;47225:1;47197:19;:30::i;:::-;47183:8;47192:1;47183:11;;;;;;-1:-1:-1;;;47183:11:0;;;;;;;;;;;;;;;;;;:44;47163:3;;;;:::i;:::-;;;;47127:112;;;-1:-1:-1;47258:8:0;46889:385;-1:-1:-1;;;46889:385:0:o;40856:320::-;40976:7;41031:30;:28;:30::i;:::-;41023:5;:38;41001:132;;;;-1:-1:-1;;;41001:132:0;;;;;;;:::i;:::-;41151:10;41162:5;41151:17;;;;;;-1:-1:-1;;;41151:17:0;;;;;;;;;;;;;;;;;41144:24;;40856:320;;;:::o;46499:40::-;46535:4;46499:40;:::o;47282:101::-;9310:12;:10;:12::i;:::-;-1:-1:-1;;;;;9299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9299:23:0;;9291:68;;;;-1:-1:-1;;;9291:68:0;;;;;;;:::i;:::-;47353:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47282:101:::0;:::o;26630:326::-;26747:7;26788:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26788:16:0;26837:19;26815:110;;;;-1:-1:-1;;;26815:110:0;;;;;;;:::i;26273:295::-;26390:7;-1:-1:-1;;;;;26437:19:0;;26415:111;;;;-1:-1:-1;;;26415:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;26544:16:0;;;;;:9;:16;;;;;;;26273:295::o;9730:94::-;9310:12;:10;:12::i;:::-;-1:-1:-1;;;;;9299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9299:23:0;;9291:68;;;;-1:-1:-1;;;9291:68:0;;;;;;;:::i;:::-;9795:21:::1;9813:1;9795:9;:21::i;:::-;9730:94::o:0;47629:176::-;9310:12;:10;:12::i;:::-;-1:-1:-1;;;;;9299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9299:23:0;;9291:68;;;;-1:-1:-1;;;9291:68:0;;;;;;;:::i;:::-;47683:12:::1;47701:10;-1:-1:-1::0;;;;;47701:15:0::1;47724:21;47701:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47682:68;;;47769:7;47761:36;;;;-1:-1:-1::0;;;47761:36:0::1;;;;;;;:::i;:::-;9370:1;47629:176::o:0;9079:87::-;9152:6;;-1:-1:-1;;;;;9152:6:0;9079:87;:::o;47391:92::-;9310:12;:10;:12::i;:::-;-1:-1:-1;;;;;9299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9299:23:0;;9291:68;;;;-1:-1:-1;;;9291:68:0;;;;;;;:::i;:::-;47458:5:::1;:17:::0;47391:92::o;27192:104::-;27248:13;27281:7;27274:14;;;;;:::i;46632:28::-;;;;;;:::o;46546:40::-;;;;:::o;29096:327::-;29243:12;:10;:12::i;:::-;-1:-1:-1;;;;;29231:24:0;:8;-1:-1:-1;;;;;29231:24:0;;;29223:62;;;;-1:-1:-1;;;29223:62:0;;;;;;;:::i;:::-;29343:8;29298:18;:32;29317:12;:10;:12::i;:::-;-1:-1:-1;;;;;29298:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;29298:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;29298:53:0;;;;;;;;;;;29382:12;:10;:12::i;:::-;-1:-1:-1;;;;;29367:48:0;;29406:8;29367:48;;;;;;:::i;:::-;;;;;;;;29096:327;;:::o;30478:365::-;30667:41;30686:12;:10;:12::i;:::-;30700:7;30667:18;:41::i;:::-;30645:140;;;;-1:-1:-1;;;30645:140:0;;;;;;;:::i;:::-;30796:39;30810:4;30816:2;30820:7;30829:5;30796:13;:39::i;:::-;30478:365;;;;:::o;47838:722::-;46535:4;47959:6;47943:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;47921:125;;;;-1:-1:-1;;;47921:125:0;;;;;;;:::i;:::-;48075:7;:5;:7::i;:::-;-1:-1:-1;;;;;48061:21:0;:10;-1:-1:-1;;;;;48061:21:0;;48057:410;;48107:8;;;;48099:41;;;;-1:-1:-1;;;48099:41:0;;;;;;;:::i;:::-;48190:1;48181:6;:10;:25;;;;;48205:1;48195:6;:11;;48181:25;48155:149;;;;-1:-1:-1;;;48155:149:0;;;;;;;:::i;:::-;48366:6;48358:5;;:14;;;;:::i;:::-;48345:9;:27;;48319:136;;;;-1:-1:-1;;;48319:136:0;;;;;;;:::i;:::-;48484:9;48479:74;48503:6;48499:1;:10;48479:74;;;48531:10;48537:3;48531:5;:10::i;:::-;48511:3;;;;:::i;:::-;;;;48479:74;;27367:468;27485:13;27538:16;27546:7;27538;:16::i;:::-;27516:113;;;;-1:-1:-1;;;27516:113:0;;;;;;;:::i;:::-;27642:21;27666:10;:8;:10::i;:::-;27642:34;;27731:1;27713:7;27707:21;:25;:120;;;;;;;;;;;;;;;;;27776:7;27785:18;:7;:16;:18::i;:::-;27759:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27707:120;27687:140;27367:468;-1:-1:-1;;;27367:468:0:o;29494:214::-;-1:-1:-1;;;;;29665:25:0;;;29636:4;29665:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29494:214::o;9979:229::-;9310:12;:10;:12::i;:::-;-1:-1:-1;;;;;9299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9299:23:0;;9291:68;;;;-1:-1:-1;;;9291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10082:22:0;::::1;10060:110;;;;-1:-1:-1::0;;;10060:110:0::1;;;;;;;:::i;:::-;10181:19;10191:8;10181:9;:19::i;25854:355::-:0;26001:4;-1:-1:-1;;;;;;26043:40:0;;-1:-1:-1;;;26043:40:0;;:105;;-1:-1:-1;;;;;;;26100:48:0;;-1:-1:-1;;;26100:48:0;26043:105;:158;;;;26165:36;26189:11;26165:23;:36::i;32390:127::-;32455:4;32479:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32479:16:0;:30;;;32390:127::o;2052:98::-;2132:10;2052:98;:::o;36513:174::-;36588:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36588:29:0;-1:-1:-1;;;;;36588:29:0;;;;;;;;:24;;36642:23;36588:24;36642:14;:23::i;:::-;-1:-1:-1;;;;;36633:46:0;;;;;;;;;;;36513:174;;:::o;32684:452::-;32813:4;32857:16;32865:7;32857;:16::i;:::-;32835:110;;;;-1:-1:-1;;;32835:110:0;;;;;;;:::i;:::-;32956:13;32972:23;32987:7;32972:14;:23::i;:::-;32956:39;;33025:5;-1:-1:-1;;;;;33014:16:0;:7;-1:-1:-1;;;;;33014:16:0;;:64;;;;33071:7;-1:-1:-1;;;;;33047:31:0;:20;33059:7;33047:11;:20::i;:::-;-1:-1:-1;;;;;33047:31:0;;33014:64;:113;;;;33095:32;33112:5;33119:7;33095:16;:32::i;:::-;33006:122;32684:452;-1:-1:-1;;;;32684:452:0:o;35780:615::-;35953:4;-1:-1:-1;;;;;35926:31:0;:23;35941:7;35926:14;:23::i;:::-;-1:-1:-1;;;;;35926:31:0;;35904:122;;;;-1:-1:-1;;;35904:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36045:16:0;;36037:65;;;;-1:-1:-1;;;36037:65:0;;;;;;;:::i;:::-;36115:39;36136:4;36142:2;36146:7;36115:20;:39::i;:::-;36219:29;36236:1;36240:7;36219:8;:29::i;:::-;-1:-1:-1;;;;;36261:15:0;;;;;;:9;:15;;;;;:20;;36280:1;;36261:15;:20;;36280:1;;36261:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36292:13:0;;;;;;:9;:13;;;;;:18;;36309:1;;36292:13;:18;;36309:1;;36292:18;:::i;:::-;;;;-1:-1:-1;;36321:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36321:21:0;-1:-1:-1;;;;;36321:21:0;;;;;;;;;36360:27;;36321:16;;36360:27;;;;;;;35780:615;;;:::o;10216:173::-;10291:6;;;-1:-1:-1;;;;;10308:17:0;;;-1:-1:-1;;;;;;10308:17:0;;;;;;;10341:40;;10291:6;;;10308:17;10291:6;;10341:40;;10272:16;;10341:40;10216:173;;:::o;31725:352::-;31882:28;31892:4;31898:2;31902:7;31882:9;:28::i;:::-;31943:48;31966:4;31972:2;31976:7;31985:5;31943:22;:48::i;:::-;31921:148;;;;-1:-1:-1;;;31921:148:0;;;;;;;:::i;48568:199::-;48615:20;:8;:18;:20::i;:::-;48646:15;48664:18;:8;:16;:18::i;:::-;48646:36;;48693:23;48703:3;48708:7;48693:9;:23::i;:::-;48732:27;48751:7;48732:27;;;;;;:::i;:::-;;;;;;;;48568:199;;:::o;48775:113::-;48835:13;48868:12;48861:19;;;;;:::i;12721:723::-;12777:13;12998:10;12994:53;;-1:-1:-1;13025:10:0;;;;;;;;;;;;-1:-1:-1;;;13025:10:0;;;;;;12994:53;13072:5;13057:12;13113:78;13120:9;;13113:78;;13146:8;;;;:::i;:::-;;-1:-1:-1;13169:10:0;;-1:-1:-1;13177:2:0;13169:10;;:::i;:::-;;;13113:78;;;13201:19;13233:6;13223:17;;;;;;-1:-1:-1;;;13223:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13223:17:0;;13201:39;;13251:154;13258:10;;13251:154;;13285:11;13295:1;13285:11;;:::i;:::-;;-1:-1:-1;13354:10:0;13362:2;13354:5;:10;:::i;:::-;13341:24;;:2;:24;:::i;:::-;13328:39;;13311:6;13318;13311:14;;;;;;-1:-1:-1;;;13311:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;13311:56:0;;;;;;;;-1:-1:-1;13382:11:0;13391:2;13382:11;;:::i;:::-;;;13251:154;;12200:207;-1:-1:-1;;;;;;12359:40:0;;-1:-1:-1;;;12359:40:0;12200:207;;;:::o;41789:589::-;41933:45;41960:4;41966:2;41970:7;41933:26;:45::i;:::-;-1:-1:-1;;;;;41995:18:0;;41991:187;;42030:40;42062:7;42030:31;:40::i;:::-;41991:187;;;42100:2;-1:-1:-1;;;;;42092:10:0;:4;-1:-1:-1;;;;;42092:10:0;;42088:90;;42119:47;42152:4;42158:7;42119:32;:47::i;:::-;-1:-1:-1;;;;;42192:16:0;;42188:183;;42225:45;42262:7;42225:36;:45::i;:::-;42188:183;;;42298:4;-1:-1:-1;;;;;42292:10:0;:2;-1:-1:-1;;;;;42292:10:0;;42288:83;;42319:40;42347:2;42351:7;42319:27;:40::i;37252:984::-;37407:4;37428:15;:2;-1:-1:-1;;;;;37428:13:0;;:15::i;:::-;37424:805;;;37497:2;-1:-1:-1;;;;;37481:36:0;;37540:12;:10;:12::i;:::-;37575:4;37602:7;37632:5;37481:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37481:175:0;;;;;;;;-1:-1:-1;;37481:175:0;;;;;;;;;;;;:::i;:::-;;;37460:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37843:13:0;;37839:320;;37886:108;;-1:-1:-1;;;37886:108:0;;;;;;;:::i;37839:320::-;38109:6;38103:13;38094:6;38090:2;38086:15;38079:38;37460:714;-1:-1:-1;;;;;;37720:55:0;-1:-1:-1;;;37720:55:0;;-1:-1:-1;37713:62:0;;37424:805;-1:-1:-1;38213:4:0;37252:984;;;;;;:::o;961:127::-;1050:19;;1068:1;1050:19;;;961:127::o;839:114::-;931:14;;839:114::o;33478:110::-;33554:26;33564:2;33568:7;33554:26;;;;;;;;;;;;:9;:26::i;43101:164::-;43205:10;:17;;43178:24;;;;:15;:24;;;;;:44;;;43233:24;;;;;;;;;;;;43101:164::o;43892:1002::-;44172:22;44222:1;44197:22;44214:4;44197:16;:22::i;:::-;:26;;;;:::i;:::-;44234:18;44255:26;;;:17;:26;;;;;;44172:51;;-1:-1:-1;44388:28:0;;;44384:328;;-1:-1:-1;;;;;44455:18:0;;44433:19;44455:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44506:30;;;;;;:44;;;44623:30;;:17;:30;;;;;:43;;;44384:328;-1:-1:-1;44808:26:0;;;;:17;:26;;;;;;;;44801:33;;;-1:-1:-1;;;;;44852:18:0;;;;;:12;:18;;;;;:34;;;;;;;44845:41;43892:1002::o;45189:1079::-;45467:10;:17;45442:22;;45467:21;;45487:1;;45467:21;:::i;:::-;45499:18;45520:24;;;:15;:24;;;;;;45893:10;:26;;45442:46;;-1:-1:-1;45520:24:0;;45442:46;;45893:26;;;;-1:-1:-1;;;45893:26:0;;;;;;;;;;;;;;;;;45871:48;;45957:11;45932:10;45943;45932:22;;;;;;-1:-1:-1;;;45932:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;46037:28;;;:15;:28;;;;;;;:41;;;46209:24;;;;;46202:31;46244:10;:16;;;;;-1:-1:-1;;;46244:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;45189:1079;;;;:::o;42679:221::-;42764:14;42781:20;42798:2;42781:16;:20::i;:::-;-1:-1:-1;;;;;42812:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42857:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42679:221:0:o;15274:387::-;15597:20;15645:8;;;15274:387::o;33815:321::-;33945:18;33951:2;33955:7;33945:5;:18::i;:::-;33996:54;34027:1;34031:2;34035:7;34044:5;33996:22;:54::i;:::-;33974:154;;;;-1:-1:-1;;;33974:154:0;;;;;;;:::i;34472:382::-;-1:-1:-1;;;;;34552:16:0;;34544:61;;;;-1:-1:-1;;;34544:61:0;;;;;;;:::i;:::-;34625:16;34633:7;34625;:16::i;:::-;34624:17;34616:58;;;;-1:-1:-1;;;34616:58:0;;;;;;;:::i;:::-;34687:45;34716:1;34720:2;34724:7;34687:20;:45::i;:::-;-1:-1:-1;;;;;34745:13:0;;;;;;:9;:13;;;;;:18;;34762:1;;34745:13;:18;;34762:1;;34745:18;:::i;:::-;;;;-1:-1:-1;;34774:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34774:21:0;-1:-1:-1;;;;;34774:21:0;;;;;;;;34813:33;;34774:16;;;34813:33;;34774:16;;34813:33;34472:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:257::-;;3098:2;3086:9;3077:7;3073:23;3069:32;3066:2;;;3119:6;3111;3104:22;3066:2;3163:9;3150:23;3182:32;3208:5;3182:32;:::i;3249:261::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:32;3474:5;3448:32;:::i;3515:482::-;;3637:2;3625:9;3616:7;3612:23;3608:32;3605:2;;;3658:6;3650;3643:22;3605:2;3703:9;3690:23;3736:18;3728:6;3725:30;3722:2;;;3773:6;3765;3758:22;3722:2;3801:22;;3854:4;3846:13;;3842:27;-1:-1:-1;3832:2:1;;3888:6;3880;3873:22;3832:2;3916:75;3983:7;3978:2;3965:16;3960:2;3956;3952:11;3916:75;:::i;4002:190::-;;4114:2;4102:9;4093:7;4089:23;4085:32;4082:2;;;4135:6;4127;4120:22;4082:2;-1:-1:-1;4163:23:1;;4072:120;-1:-1:-1;4072:120:1:o;4197:259::-;;4278:5;4272:12;4305:6;4300:3;4293:19;4321:63;4377:6;4370:4;4365:3;4361:14;4354:4;4347:5;4343:16;4321:63;:::i;:::-;4438:2;4417:15;-1:-1:-1;;4413:29:1;4404:39;;;;4445:4;4400:50;;4248:208;-1:-1:-1;;4248:208:1:o;4461:470::-;;4678:6;4672:13;4694:53;4740:6;4735:3;4728:4;4720:6;4716:17;4694:53;:::i;:::-;4810:13;;4769:16;;;;4832:57;4810:13;4769:16;4866:4;4854:17;;4832:57;:::i;:::-;4905:20;;4648:283;-1:-1:-1;;;;4648:283:1:o;4936:205::-;5136:3;5127:14::o;5146:203::-;-1:-1:-1;;;;;5310:32:1;;;;5292:51;;5280:2;5265:18;;5247:102::o;5354:490::-;-1:-1:-1;;;;;5623:15:1;;;5605:34;;5675:15;;5670:2;5655:18;;5648:43;5722:2;5707:18;;5700:34;;;5770:3;5765:2;5750:18;;5743:31;;;5354:490;;5791:47;;5818:19;;5810:6;5791:47;:::i;:::-;5783:55;5557:287;-1:-1:-1;;;;;;5557:287:1:o;5849:635::-;6020:2;6072:21;;;6142:13;;6045:18;;;6164:22;;;5849:635;;6020:2;6243:15;;;;6217:2;6202:18;;;5849:635;6289:169;6303:6;6300:1;6297:13;6289:169;;;6364:13;;6352:26;;6433:15;;;;6398:12;;;;6325:1;6318:9;6289:169;;;-1:-1:-1;6475:3:1;;6000:484;-1:-1:-1;;;;;;6000:484:1:o;6489:187::-;6654:14;;6647:22;6629:41;;6617:2;6602:18;;6584:92::o;6681:221::-;;6830:2;6819:9;6812:21;6850:46;6892:2;6881:9;6877:18;6869:6;6850:46;:::i;6907:404::-;7109:2;7091:21;;;7148:2;7128:18;;;7121:30;7187:34;7182:2;7167:18;;7160:62;-1:-1:-1;;;7253:2:1;7238:18;;7231:38;7301:3;7286:19;;7081:230::o;7316:407::-;7518:2;7500:21;;;7557:2;7537:18;;;7530:30;7596:34;7591:2;7576:18;;7569:62;-1:-1:-1;;;7662:2:1;7647:18;;7640:41;7713:3;7698:19;;7490:233::o;7728:414::-;7930:2;7912:21;;;7969:2;7949:18;;;7942:30;8008:34;8003:2;7988:18;;7981:62;-1:-1:-1;;;8074:2:1;8059:18;;8052:48;8132:3;8117:19;;7902:240::o;8147:402::-;8349:2;8331:21;;;8388:2;8368:18;;;8361:30;8427:34;8422:2;8407:18;;8400:62;-1:-1:-1;;;8493:2:1;8478:18;;8471:36;8539:3;8524:19;;8321:228::o;8554:352::-;8756:2;8738:21;;;8795:2;8775:18;;;8768:30;8834;8829:2;8814:18;;8807:58;8897:2;8882:18;;8728:178::o;8911:400::-;9113:2;9095:21;;;9152:2;9132:18;;;9125:30;9191:34;9186:2;9171:18;;9164:62;-1:-1:-1;;;9257:2:1;9242:18;;9235:34;9301:3;9286:19;;9085:226::o;9316:349::-;9518:2;9500:21;;;9557:2;9537:18;;;9530:30;9596:27;9591:2;9576:18;;9569:55;9656:2;9641:18;;9490:175::o;9670:344::-;9872:2;9854:21;;;9911:2;9891:18;;;9884:30;-1:-1:-1;;;9945:2:1;9930:18;;9923:50;10005:2;9990:18;;9844:170::o;10019:408::-;10221:2;10203:21;;;10260:2;10240:18;;;10233:30;10299:34;10294:2;10279:18;;10272:62;-1:-1:-1;;;10365:2:1;10350:18;;10343:42;10417:3;10402:19;;10193:234::o;10432:420::-;10634:2;10616:21;;;10673:2;10653:18;;;10646:30;10712:34;10707:2;10692:18;;10685:62;10783:26;10778:2;10763:18;;10756:54;10842:3;10827:19;;10606:246::o;10857:406::-;11059:2;11041:21;;;11098:2;11078:18;;;11071:30;11137:34;11132:2;11117:18;;11110:62;-1:-1:-1;;;11203:2:1;11188:18;;11181:40;11253:3;11238:19;;11031:232::o;11268:405::-;11470:2;11452:21;;;11509:2;11489:18;;;11482:30;11548:34;11543:2;11528:18;;11521:62;-1:-1:-1;;;11614:2:1;11599:18;;11592:39;11663:3;11648:19;;11442:231::o;11678:356::-;11880:2;11862:21;;;11899:18;;;11892:30;11958:34;11953:2;11938:18;;11931:62;12025:2;12010:18;;11852:182::o;12039:408::-;12241:2;12223:21;;;12280:2;12260:18;;;12253:30;12319:34;12314:2;12299:18;;12292:62;-1:-1:-1;;;12385:2:1;12370:18;;12363:42;12437:3;12422:19;;12213:234::o;12452:411::-;12654:2;12636:21;;;12693:2;12673:18;;;12666:30;12732:34;12727:2;12712:18;;12705:62;-1:-1:-1;;;12798:2:1;12783:18;;12776:45;12853:3;12838:19;;12626:237::o;12868:356::-;13070:2;13052:21;;;13089:18;;;13082:30;13148:34;13143:2;13128:18;;13121:62;13215:2;13200:18;;13042:182::o;13229:405::-;13431:2;13413:21;;;13470:2;13450:18;;;13443:30;13509:34;13504:2;13489:18;;13482:62;-1:-1:-1;;;13575:2:1;13560:18;;13553:39;13624:3;13609:19;;13403:231::o;13639:411::-;13841:2;13823:21;;;13880:2;13860:18;;;13853:30;13919:34;13914:2;13899:18;;13892:62;-1:-1:-1;;;13985:2:1;13970:18;;13963:45;14040:3;14025:19;;13813:237::o;14055:426::-;14257:2;14239:21;;;14296:2;14276:18;;;14269:30;14335:34;14330:2;14315:18;;14308:62;14406:32;14401:2;14386:18;;14379:60;14471:3;14456:19;;14229:252::o;14486:397::-;14688:2;14670:21;;;14727:2;14707:18;;;14700:30;14766:34;14761:2;14746:18;;14739:62;-1:-1:-1;;;14832:2:1;14817:18;;14810:31;14873:3;14858:19;;14660:223::o;14888:340::-;15090:2;15072:21;;;15129:2;15109:18;;;15102:30;-1:-1:-1;;;15163:2:1;15148:18;;15141:46;15219:2;15204:18;;15062:166::o;15233:413::-;15435:2;15417:21;;;15474:2;15454:18;;;15447:30;15513:34;15508:2;15493:18;;15486:62;-1:-1:-1;;;15579:2:1;15564:18;;15557:47;15636:3;15621:19;;15407:239::o;15651:408::-;15853:2;15835:21;;;15892:2;15872:18;;;15865:30;15931:34;15926:2;15911:18;;15904:62;-1:-1:-1;;;15997:2:1;15982:18;;15975:42;16049:3;16034:19;;15825:234::o;16064:177::-;16210:25;;;16198:2;16183:18;;16165:76::o;16246:128::-;;16317:1;16313:6;16310:1;16307:13;16304:2;;;16323:18;;:::i;:::-;-1:-1:-1;16359:9:1;;16294:80::o;16379:120::-;;16445:1;16435:2;;16450:18;;:::i;:::-;-1:-1:-1;16484:9:1;;16425:74::o;16504:168::-;;16610:1;16606;16602:6;16598:14;16595:1;16592:21;16587:1;16580:9;16573:17;16569:45;16566:2;;;16617:18;;:::i;:::-;-1:-1:-1;16657:9:1;;16556:116::o;16677:125::-;;16745:1;16742;16739:8;16736:2;;;16750:18;;:::i;:::-;-1:-1:-1;16787:9:1;;16726:76::o;16807:258::-;16879:1;16889:113;16903:6;16900:1;16897:13;16889:113;;;16979:11;;;16973:18;16960:11;;;16953:39;16925:2;16918:10;16889:113;;;17020:6;17017:1;17014:13;17011:2;;;-1:-1:-1;;17055:1:1;17037:16;;17030:27;16860:205::o;17070:380::-;17155:1;17145:12;;17202:1;17192:12;;;17213:2;;17267:4;17259:6;17255:17;17245:27;;17213:2;17320;17312:6;17309:14;17289:18;17286:38;17283:2;;;17366:10;17361:3;17357:20;17354:1;17347:31;17401:4;17398:1;17391:15;17429:4;17426:1;17419:15;17283:2;;17125:325;;;:::o;17455:135::-;;-1:-1:-1;;17515:17:1;;17512:2;;;17535:18;;:::i;:::-;-1:-1:-1;17582:1:1;17571:13;;17502:88::o;17595:112::-;;17653:1;17643:2;;17658:18;;:::i;:::-;-1:-1:-1;17692:9:1;;17633:74::o;17712:127::-;17773:10;17768:3;17764:20;17761:1;17754:31;17804:4;17801:1;17794:15;17828:4;17825:1;17818:15;17844:127;17905:10;17900:3;17896:20;17893:1;17886:31;17936:4;17933:1;17926:15;17960:4;17957:1;17950:15;17976:127;18037:10;18032:3;18028:20;18025:1;18018:31;18068:4;18065:1;18058:15;18092:4;18089:1;18082:15;18108:133;-1:-1:-1;;;;;;18184:32:1;;18174:43;;18164:2;;18231:1;18228;18221:12
Swarm Source
ipfs://fdf05d54b674d5d7a5a19042941b8356338eec916849ea5987de3fed105df124
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.