ERC-721
Overview
Max Total Supply
208 CLAWS
Holders
64
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CLAWSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CLAW
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-22 */ //SPDX-License-Identifier: UNLICENSED pragma solidity >=0.8.19; 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; } } library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } 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); } } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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); } } library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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); } 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); } abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } 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; } 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); } 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); } contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } 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(); } } interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract CLAW is ERC721Enumerable, Ownable { using Strings for uint256; using SafeMath for uint256; using Counters for Counters.Counter; // Constants string public baseExtension = ".json"; uint256 public cost = 0.05 ether; // Supply uint256 public mintReward = 30; uint256 public maxSupply = 1000; uint256 public lastSupply = maxSupply; uint256 public maxMintAmount = 10; // Reflection uint256 public reflectionBalance; uint256 public totalDividend; // Lists uint256[1000] public remainingIds; mapping(uint256 => uint256) public lastDividendAt; mapping(uint256 => address) public minters; // Params bool public paused = true; string private _baseTokenURI; address private _wallet; // Addresses address public DexRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; address public RewardToken = 0xe115401B985306837B9f1495c8e9d7f8f8328cc3; address public FeeReceiver = 0xcEe2777FFe36F7Ab163DB0Ef1d22b2639b3D5332; address public Marketing = 0xAfa0C142bc28bcC35A97559e632FcBe8569Ca327; uint256 public mktSplit = 30; //Contracts IUniswapV2Router02 public router; IERC20 public token; // Constructor constructor( string memory name, string memory symbol, string memory baseTokenURI ) ERC721(name, symbol) { _baseTokenURI = baseTokenURI; _wallet = msg.sender; router = IUniswapV2Router02(DexRouter); token = IERC20(RewardToken); _regularMint(); } // URI Handling function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } // Setters function setBaseURI(string memory baseURI) external onlyOwner { _baseTokenURI = baseURI; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function setRewardToken(address _newRewardToken) public onlyOwner { RewardToken = _newRewardToken; token = IERC20(RewardToken); } function setDexRouter(address _newDexRouter) public onlyOwner { DexRouter = _newDexRouter; router = IUniswapV2Router02(DexRouter); } function setFeeReceiver(address _newFeeReceiver) public onlyOwner { FeeReceiver = _newFeeReceiver; } function setMarketing(address _newMarketing) public onlyOwner { Marketing = _newMarketing; } function setMintShare(uint256 _newMintShare) public onlyOwner { mintReward = _newMintShare; } function setMktShare(uint256 _newMktShare) public onlyOwner { mktSplit = _newMktShare; } // Minting function mint(uint256 _mintAmount) public payable { // Checks require(!paused, "CLAW: minting has not started yet"); require(_mintAmount > 0, "CLAW: you have to mint at least one"); require( _mintAmount <= maxMintAmount, "CLAW: you can only mint 10 at a time" ); require( lastSupply >= _mintAmount, "CLAW: the collection is sold out" ); if (msg.sender != owner()) { require( msg.value >= cost * _mintAmount, "CLAW: total cost isn't match" ); } // Minting for (uint256 i = 1; i <= _mintAmount; i++) { // Mint for caller _randomMint(msg.sender); // Split cost handleMintReward(msg.value / _mintAmount); } } // Give a random NFT to a contest winner function randomGiveaway(address _winner, uint256 _amount) external onlyOwner { // Checks require(_winner != address(0), "CLAW: zero address"); require(_amount > 0, "CLAW: you have to mint at least one"); require(lastSupply != 0, "CLAW: the collection is sold out"); // Mint random NFTs for a winner for (uint256 i = 1; i <= _amount; i++) { _randomMint(_winner); } } // Random mint function _randomMint(address _target) internal returns (uint256) { // Get Random id to mint uint256 _index = _getRandom() % lastSupply; uint256 _realIndex = getValue(_index) + 1; // Reduce supply lastSupply--; // Replace used id by last remainingIds[_index] = getValue(lastSupply); // Mint _safeMint(_target, _realIndex); // Save Original minters minters[_realIndex] = msg.sender; // Save dividend lastDividendAt[_realIndex] = totalDividend; return _realIndex; } // Mint for reserved spots function _regularMint() internal returns (uint256) { // Get Actual id to mint uint256 _index = totalSupply(); uint256 _realIndex = getValue(_index) + 1; // Reduce supply lastSupply--; // Replace used id by last remainingIds[_index] = getValue(lastSupply); // Mint _safeMint(msg.sender, _realIndex); // Save Original minters minters[_realIndex] = msg.sender; // Save dividend lastDividendAt[_realIndex] = totalDividend; return _realIndex; } // Get Token List function getTokenIds(address _owner) public view returns (uint256[] memory) { // Count owned Token uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); // Get ids of owned Token for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } // Return compiled Token URI function tokenURI(uint256 _id) public view virtual override returns (string memory) { require(_exists(_id), "CLAW: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, _id.toString(), baseExtension ) ) : ""; } // Reflections function handleMintReward(uint256 _amount) private { // Split payment uint256 mintShare = _amount.mul(mintReward).div(100); uint256 mktShare = _amount.mul(mktSplit).div(100); uint256 devShare = _amount.sub(mintShare).sub(mktShare); // Save dividend for community reflectDividend(mintShare); // Send owner share payable(FeeReceiver).transfer(devShare); } // Add dividend function reflectDividend(uint256 _amount) private { reflectionBalance = reflectionBalance.add(_amount); totalDividend = totalDividend.add((_amount.div(totalSupply()))); } function reflectToOwners() public payable { reflectDividend(msg.value); } function getReflectionBalances(address _owner) public view returns (uint256) { uint256 count = balanceOf(_owner); uint256 total = 0; for (uint256 i = 0; i < count; i++) { uint256 tokenId = tokenOfOwnerByIndex(_owner, i); total = total.add(getReflectionBalance(tokenId)); } return total; } function getReflectionBalance(uint256 tokenId) public view returns (uint256) { return totalDividend.sub(lastDividendAt[tokenId]); } function claimRewardsTokens() public { uint256 count = balanceOf(msg.sender); uint256 initialBalanceOf = token.balanceOf(address(this)); uint256 balance = 0; for (uint256 i = 0; i < count; i++) { uint256 tokenId = tokenOfOwnerByIndex(msg.sender, i); balance = balance.add(getReflectionBalance(tokenId)); lastDividendAt[tokenId] = totalDividend; } // Covert Balance to Tokens address[] memory path = new address[](2); path[0] = router.WETH(); path[1] = RewardToken; router.swapExactETHForTokensSupportingFeeOnTransferTokens{value : balance}( 0, path, address(this), block.timestamp ); uint256 finalBalanceOf = token.balanceOf(address(this)); uint256 tokens = finalBalanceOf.sub(initialBalanceOf); token.transfer(msg.sender, tokens); } // Utils // Get value from a remaining id node function getValue(uint256 _index) internal view returns (uint256) { if (remainingIds[_index] != 0) return remainingIds[_index]; else return _index; } // Create a random id for minting function _getRandom() internal view returns (uint256) { return uint256( keccak256( abi.encodePacked( block.prevrandao, block.timestamp, lastSupply ) ) ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","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":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":"DexRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FeeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Marketing","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RewardToken","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimRewardsTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getReflectionBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getReflectionBalances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokenIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lastDividendAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minters","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mktSplit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_winner","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"randomGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reflectToOwners","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"reflectionBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"remainingIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newDexRouter","type":"address"}],"name":"setDexRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newFeeReceiver","type":"address"}],"name":"setFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newMarketing","type":"address"}],"name":"setMarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintShare","type":"uint256"}],"name":"setMintShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMktShare","type":"uint256"}],"name":"setMktShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newRewardToken","type":"address"}],"name":"setRewardToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"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":"_id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDividend","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]
Contract Creation Code
60c06040526005608090815264173539b7b760d91b60a052600b90620000269082620009ca565b5066b1a2bc2ec50000600c55601e600d8190556103e8600e819055600f55600a6010556103fd805460ff1916600117905561040080546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d179091556104018054821673e115401b985306837b9f1495c8e9d7f8f8328cc31790556104028054821673cee2777ffe36f7ab163db0ef1d22b2639b3d5332179055610403805490911673afa0c142bc28bcc35a97559e632fcbe8569ca32717905561040455348015620000f057600080fd5b5060405162003e3338038062003e33833981016040819052620001139162000b4d565b82826000620001238382620009ca565b506001620001328282620009ca565b5050506200014f62000149620001b360201b60201c565b620001b7565b6103fe6200015e8282620009ca565b506103ff80546001600160a01b0319908116331790915561040054610405805483166001600160a01b039283161790556104015461040680549093169116179055620001a962000209565b5050505062000cf5565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000806200021660085490565b905060006200022582620002b3565b6200023290600162000bf4565b600f80549192506000620002468362000c10565b9091555050600f546200025990620002b3565b6013836103e8811062000270576200027062000c2a565b01556200027e3382620002f7565b60008181526103fc6020908152604080832080546001600160a01b031916331790556012546103fb9092529091205592915050565b60006013826103e88110620002cc57620002cc62000c2a565b015415620002f3576013826103e88110620002eb57620002eb62000c2a565b015492915050565b5090565b620003198282604051806020016040528060008152506200031d60201b60201c565b5050565b62000329838362000399565b620003386000848484620004ef565b620003945760405162461bcd60e51b8152602060048201526032602482015260008051602062003e1383398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084015b60405180910390fd5b505050565b6001600160a01b038216620003f15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016200038b565b6000818152600260205260409020546001600160a01b031615620004585760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200038b565b620004666000838362000637565b6001600160a01b03821660009081526003602052604081208054600192906200049190849062000bf4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156200062b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200053690339089908890889060040162000c40565b6020604051808303816000875af192505050801562000574575060408051601f3d908101601f19168201909252620005719181019062000c96565b60015b62000610573d808015620005a5576040519150601f19603f3d011682016040523d82523d6000602084013e620005aa565b606091505b508051600003620006085760405162461bcd60e51b8152602060048201526032602482015260008051602062003e1383398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200038b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506200062f565b5060015b949350505050565b6001600160a01b03831662000695576200068f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b620006bb565b816001600160a01b0316836001600160a01b031614620006bb57620006bb8382620006fb565b6001600160a01b038216620006d55762000394816200079d565b826001600160a01b0316826001600160a01b031614620003945762000394828262000857565b600060016200070a846200089d565b62000716919062000cc9565b6000838152600760205260409020549091508082146200076a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620007b19060019062000cc9565b60008381526009602052604081205460088054939450909284908110620007dc57620007dc62000c2a565b90600052602060002001549050806008838154811062000800576200080062000c2a565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806200083b576200083b62000cdf565b6001900381819060005260206000200160009055905550505050565b600062000864836200089d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b0382166200090a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016200038b565b506001600160a01b031660009081526003602052604090205490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200095157607f821691505b6020821081036200097257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200039457600081815260208120601f850160051c81016020861015620009a15750805b601f850160051c820191505b81811015620009c257828155600101620009ad565b505050505050565b81516001600160401b03811115620009e657620009e662000926565b620009fe81620009f784546200093c565b8462000978565b602080601f83116001811462000a36576000841562000a1d5750858301515b600019600386901b1c1916600185901b178555620009c2565b600085815260208120601f198616915b8281101562000a675788860151825594840194600190910190840162000a46565b508582101562000a865787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60005b8381101562000ab357818101518382015260200162000a99565b50506000910152565b600082601f83011262000ace57600080fd5b81516001600160401b038082111562000aeb5762000aeb62000926565b604051601f8301601f19908116603f0116810190828211818310171562000b165762000b1662000926565b8160405283815286602085880101111562000b3057600080fd5b62000b4384602083016020890162000a96565b9695505050505050565b60008060006060848603121562000b6357600080fd5b83516001600160401b038082111562000b7b57600080fd5b62000b898783880162000abc565b9450602086015191508082111562000ba057600080fd5b62000bae8783880162000abc565b9350604086015191508082111562000bc557600080fd5b5062000bd48682870162000abc565b9150509250925092565b634e487b7160e01b600052601160045260246000fd5b8082018082111562000c0a5762000c0a62000bde565b92915050565b60008162000c225762000c2262000bde565b506000190190565b634e487b7160e01b600052603260045260246000fd5b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000c7f8160a085016020870162000a96565b601f01601f19169190910160a00195945050505050565b60006020828403121562000ca957600080fd5b81516001600160e01b03198116811462000cc257600080fd5b9392505050565b8181038181111562000c0a5762000c0a62000bde565b634e487b7160e01b600052603160045260246000fd5b61310e8062000d056000396000f3fe6080604052600436106103695760003560e01c80637f00c7a6116101c6578063d2068857116100f7578063f1e9f1e511610095578063f72f863b1161006f578063f72f863b146109e4578063f75b8c5f14610a04578063f887ea4014610a1a578063fc0c546a14610a3b57600080fd5b8063f1e9f1e51461098c578063f2fde38b146109ad578063f447500a146109cd57600080fd5b8063db886f23116100d1578063db886f23146108e2578063e985e9c514610903578063ee6d9d6d1461094c578063efdcd9741461096c57600080fd5b8063d20688571461087e578063d5abeb01146108ac578063da3ef23f146108c257600080fd5b8063a22cb46511610164578063b88d4fde1161013e578063b88d4fde146107fc578063c66828621461081c578063c87b56dd14610831578063d004b0361461085157600080fd5b8063a22cb4651461079c578063a708d404146107bc578063b3ef77f2146107dc57600080fd5b80638b0414d5116101a05780638b0414d5146107365780638da5cb5b1461075657806395d89b4114610774578063a0712d681461078957600080fd5b80637f00c7a6146106bf5780638623ec7b146106df5780638aee81271461071657600080fd5b80634131ff99116102a05780635c975abb1161023e5780636f534b4e116102185780636f534b4e1461064957806370a0823114610669578063715018a614610689578063736ce0d41461069e57600080fd5b80635c975abb146105ee5780636352211e146106095780636eb0d0301461062957600080fd5b80634b6acafb1161027a5780634b6acafb146105835780634f6ccce714610599578063521133d1146105b957806355f804b3146105ce57600080fd5b80634131ff991461052d57806342842e0e1461054357806344a0d68a1461056357600080fd5b8063095ea7b31161030d57806318160ddd116102e757806318160ddd146104c2578063239c70ae146104d757806323b872dd146104ed5780632f745c591461050d57600080fd5b8063095ea7b31461047657806313faede614610496578063174f57af146104ac57600080fd5b806302329a291161034957806302329a291461040a578063047d5e801461042c57806306fdde0314610434578063081812fc1461045657600080fd5b80620251641461036e578062fe50c6146103ac57806301ffc9a7146103da575b600080fd5b34801561037a57600080fd5b506104025461038f906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156103b857600080fd5b506103cc6103c7366004612858565b610a5c565b6040519081526020016103a3565b3480156103e657600080fd5b506103fa6103f5366004612887565b610a7e565b60405190151581526020016103a3565b34801561041657600080fd5b5061042a6104253660046128b2565b610aa3565b005b61042a610aea565b34801561044057600080fd5b50610449610af5565b6040516103a3919061291f565b34801561046257600080fd5b5061038f610471366004612858565b610b87565b34801561048257600080fd5b5061042a610491366004612947565b610c1c565b3480156104a257600080fd5b506103cc600c5481565b3480156104b857600080fd5b506103cc600d5481565b3480156104ce57600080fd5b506008546103cc565b3480156104e357600080fd5b506103cc60105481565b3480156104f957600080fd5b5061042a610508366004612973565b610d31565b34801561051957600080fd5b506103cc610528366004612947565b610d62565b34801561053957600080fd5b506103cc60115481565b34801561054f57600080fd5b5061042a61055e366004612973565b610df8565b34801561056f57600080fd5b5061042a61057e366004612858565b610e13565b34801561058f57600080fd5b506103cc60125481565b3480156105a557600080fd5b506103cc6105b4366004612858565b610e42565b3480156105c557600080fd5b5061042a610ed5565b3480156105da57600080fd5b5061042a6105e9366004612a40565b6111f9565b3480156105fa57600080fd5b506103fd546103fa9060ff1681565b34801561061557600080fd5b5061038f610624366004612858565b611234565b34801561063557600080fd5b5061042a610644366004612858565b6112ab565b34801561065557600080fd5b5061042a610664366004612858565b6112da565b34801561067557600080fd5b506103cc610684366004612a89565b61130a565b34801561069557600080fd5b5061042a611391565b3480156106aa57600080fd5b506104005461038f906001600160a01b031681565b3480156106cb57600080fd5b5061042a6106da366004612858565b6113c5565b3480156106eb57600080fd5b5061038f6106fa366004612858565b6103fc602052600090815260409020546001600160a01b031681565b34801561072257600080fd5b5061042a610731366004612a89565b6113f4565b34801561074257600080fd5b5061042a610751366004612a89565b61144c565b34801561076257600080fd5b50600a546001600160a01b031661038f565b34801561078057600080fd5b50610449611499565b61042a610797366004612858565b6114a8565b3480156107a857600080fd5b5061042a6107b7366004612aa6565b61167d565b3480156107c857600080fd5b506103cc6107d7366004612a89565b611741565b3480156107e857600080fd5b5061042a6107f7366004612947565b611793565b34801561080857600080fd5b5061042a610817366004612adf565b6118a0565b34801561082857600080fd5b506104496118d8565b34801561083d57600080fd5b5061044961084c366004612858565b611966565b34801561085d57600080fd5b5061087161086c366004612a89565b611a3a565b6040516103a39190612b5f565b34801561088a57600080fd5b506103cc610899366004612858565b6103fb6020526000908152604090205481565b3480156108b857600080fd5b506103cc600e5481565b3480156108ce57600080fd5b5061042a6108dd366004612a40565b611ad4565b3480156108ee57600080fd5b506104035461038f906001600160a01b031681565b34801561090f57600080fd5b506103fa61091e366004612ba3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561095857600080fd5b506103cc610967366004612858565b611b0a565b34801561097857600080fd5b5061042a610987366004612a89565b611b22565b34801561099857600080fd5b506104015461038f906001600160a01b031681565b3480156109b957600080fd5b5061042a6109c8366004612a89565b611b6f565b3480156109d957600080fd5b506103cc6104045481565b3480156109f057600080fd5b5061042a6109ff366004612a89565b611c0a565b348015610a1057600080fd5b506103cc600f5481565b348015610a2657600080fd5b506104055461038f906001600160a01b031681565b348015610a4757600080fd5b506104065461038f906001600160a01b031681565b60008181526103fb6020526040812054601254610a7891611c62565b92915050565b60006001600160e01b0319821663780e9d6360e01b1480610a785750610a7882611c6e565b600a546001600160a01b03163314610ad65760405162461bcd60e51b8152600401610acd90612bd1565b60405180910390fd5b6103fd805460ff1916911515919091179055565b610af334611cbe565b565b606060008054610b0490612c06565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3090612c06565b8015610b7d5780601f10610b5257610100808354040283529160200191610b7d565b820191906000526020600020905b815481529060010190602001808311610b6057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c005760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610acd565b506000908152600460205260409020546001600160a01b031690565b6000610c2782611234565b9050806001600160a01b0316836001600160a01b031603610c945760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610acd565b336001600160a01b0382161480610cb05750610cb0813361091e565b610d225760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610acd565b610d2c8383611cf3565b505050565b610d3b3382611d61565b610d575760405162461bcd60e51b8152600401610acd90612c40565b610d2c838383611e58565b6000610d6d8361130a565b8210610dcf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610acd565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610d2c838383604051806020016040528060008152506118a0565b600a546001600160a01b03163314610e3d5760405162461bcd60e51b8152600401610acd90612bd1565b600c55565b6000610e4d60085490565b8210610eb05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610acd565b60088281548110610ec357610ec3612c91565b90600052602060002001549050919050565b6000610ee03361130a565b610406546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a0823190602401602060405180830381865afa158015610f2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f539190612ca7565b90506000805b83811015610fad576000610f6d3383610d62565b9050610f82610f7b82610a5c565b8490612003565b60125460009283526103fb602052604090922091909155915080610fa581612cd6565b915050610f59565b50604080516002808252606082018352600092602083019080368337505061040554604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015611019573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103d9190612cef565b8160008151811061105057611050612c91565b6001600160a01b0392831660209182029290920101526104015482519116908290600190811061108257611082612c91565b6001600160a01b0392831660209182029290920101526104055460405163b6f9de9560e01b815291169063b6f9de959084906110c990600090869030904290600401612d0c565b6000604051808303818588803b1580156110e257600080fd5b505af11580156110f6573d6000803e3d6000fd5b5050610406546040516370a0823160e01b8152306004820152600094506001600160a01b0390911692506370a082319150602401602060405180830381865afa158015611147573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116b9190612ca7565b905060006111798286611c62565b6104065460405163a9059cbb60e01b8152336004820152602481018390529192506001600160a01b03169063a9059cbb906044016020604051808303816000875af11580156111cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f09190612d76565b50505050505050565b600a546001600160a01b031633146112235760405162461bcd60e51b8152600401610acd90612bd1565b6103fe6112308282612de1565b5050565b6000818152600260205260408120546001600160a01b031680610a785760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610acd565b600a546001600160a01b031633146112d55760405162461bcd60e51b8152600401610acd90612bd1565b600d55565b600a546001600160a01b031633146113045760405162461bcd60e51b8152600401610acd90612bd1565b61040455565b60006001600160a01b0382166113755760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610acd565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113bb5760405162461bcd60e51b8152600401610acd90612bd1565b610af3600061200f565b600a546001600160a01b031633146113ef5760405162461bcd60e51b8152600401610acd90612bd1565b601055565b600a546001600160a01b0316331461141e5760405162461bcd60e51b8152600401610acd90612bd1565b61040180546001600160a01b039092166001600160a01b031992831681179091556104068054909216179055565b600a546001600160a01b031633146114765760405162461bcd60e51b8152600401610acd90612bd1565b61040380546001600160a01b0319166001600160a01b0392909216919091179055565b606060018054610b0490612c06565b6103fd5460ff16156115065760405162461bcd60e51b815260206004820152602160248201527f434c41573a206d696e74696e6720686173206e6f7420737461727465642079656044820152601d60fa1b6064820152608401610acd565b600081116115265760405162461bcd60e51b8152600401610acd90612ea1565b6010548111156115845760405162461bcd60e51b8152602060048201526024808201527f434c41573a20796f752063616e206f6e6c79206d696e7420313020617420612060448201526374696d6560e01b6064820152608401610acd565b80600f5410156115d65760405162461bcd60e51b815260206004820181905260248201527f434c41573a2074686520636f6c6c656374696f6e20697320736f6c64206f75746044820152606401610acd565b600a546001600160a01b031633146116455780600c546115f69190612ee4565b3410156116455760405162461bcd60e51b815260206004820152601c60248201527f434c41573a20746f74616c20636f73742069736e2774206d61746368000000006044820152606401610acd565b60015b8181116112305761165833612061565b5061166b6116668334612f11565b612135565b8061167581612cd6565b915050611648565b336001600160a01b038316036116d55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610acd565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60008061174d8361130a565b90506000805b8281101561178b5760006117678683610d62565b9050611775610f7b82610a5c565b925050808061178390612cd6565b915050611753565b509392505050565b600a546001600160a01b031633146117bd5760405162461bcd60e51b8152600401610acd90612bd1565b6001600160a01b0382166118085760405162461bcd60e51b8152602060048201526012602482015271434c41573a207a65726f206164647265737360701b6044820152606401610acd565b600081116118285760405162461bcd60e51b8152600401610acd90612ea1565b600f5460000361187a5760405162461bcd60e51b815260206004820181905260248201527f434c41573a2074686520636f6c6c656374696f6e20697320736f6c64206f75746044820152606401610acd565b60015b818111610d2c5761188d83612061565b508061189881612cd6565b91505061187d565b6118aa3383611d61565b6118c65760405162461bcd60e51b8152600401610acd90612c40565b6118d2848484846121db565b50505050565b600b80546118e590612c06565b80601f016020809104026020016040519081016040528092919081815260200182805461191190612c06565b801561195e5780601f106119335761010080835404028352916020019161195e565b820191906000526020600020905b81548152906001019060200180831161194157829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166119db5760405162461bcd60e51b815260206004820152602560248201527f434c41573a2055524920717565727920666f72206e6f6e6578697374656e74206044820152643a37b5b2b760d91b6064820152608401610acd565b60006119e561220e565b90506000815111611a055760405180602001604052806000815250611a33565b80611a0f8461221e565b600b604051602001611a2393929190612f25565b6040516020818303038152906040525b9392505050565b60606000611a478361130a565b905060008167ffffffffffffffff811115611a6457611a646129b4565b604051908082528060200260200182016040528015611a8d578160200160208202803683370190505b50905060005b8281101561178b57611aa58582610d62565b828281518110611ab757611ab7612c91565b602090810291909101015280611acc81612cd6565b915050611a93565b600a546001600160a01b03163314611afe5760405162461bcd60e51b8152600401610acd90612bd1565b600b6112308282612de1565b6013816103e88110611b1b57600080fd5b0154905081565b600a546001600160a01b03163314611b4c5760405162461bcd60e51b8152600401610acd90612bd1565b61040280546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314611b995760405162461bcd60e51b8152600401610acd90612bd1565b6001600160a01b038116611bfe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610acd565b611c078161200f565b50565b600a546001600160a01b03163314611c345760405162461bcd60e51b8152600401610acd90612bd1565b61040080546001600160a01b039092166001600160a01b031992831681179091556104058054909216179055565b6000611a338284612fc5565b60006001600160e01b031982166380ac58cd60e01b1480611c9f57506001600160e01b03198216635b5e139f60e01b145b80610a7857506301ffc9a760e01b6001600160e01b0319831614610a78565b601154611ccb9082612003565b601155611ced611ce4611cdd60085490565b839061231f565b60125490612003565b60125550565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d2882611234565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611dda5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610acd565b6000611de583611234565b9050806001600160a01b0316846001600160a01b03161480611e205750836001600160a01b0316611e1584610b87565b6001600160a01b0316145b80611e5057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e6b82611234565b6001600160a01b031614611ed35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610acd565b6001600160a01b038216611f355760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610acd565b611f4083838361232b565b611f4b600082611cf3565b6001600160a01b0383166000908152600360205260408120805460019290611f74908490612fc5565b90915550506001600160a01b0382166000908152600360205260408120805460019290611fa2908490612fd8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611a338284612fd8565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600f54604080514460208083019190915242828401526060808301859052835180840390910181526080909201909252805191012060009182916120a59190612feb565b905060006120b2826123e3565b6120bd906001612fd8565b600f805491925060006120cf83612fff565b91905055506120df600f546123e3565b6013836103e881106120f3576120f3612c91565b01556120ff8482612420565b60008181526103fc6020908152604080832080546001600160a01b031916331790556012546103fb909252909120559392505050565b60006121576064612151600d548561243a90919063ffffffff16565b9061231f565b905060006121766064612151610404548661243a90919063ffffffff16565b9050600061218e826121888686611c62565b90611c62565b905061219983611cbe565b610402546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156121d4573d6000803e3d6000fd5b5050505050565b6121e6848484611e58565b6121f284848484612446565b6118d25760405162461bcd60e51b8152600401610acd90613016565b60606103fe8054610b0490612c06565b6060816000036122455750506040805180820190915260018152600360fc1b602082015290565b8160005b811561226f578061225981612cd6565b91506122689050600a83612f11565b9150612249565b60008167ffffffffffffffff81111561228a5761228a6129b4565b6040519080825280601f01601f1916602001820160405280156122b4576020820181803683370190505b5090505b8415611e50576122c9600183612fc5565b91506122d6600a86612feb565b6122e1906030612fd8565b60f81b8183815181106122f6576122f6612c91565b60200101906001600160f81b031916908160001a905350612318600a86612f11565b94506122b8565b6000611a338284612f11565b6001600160a01b0383166123865761238181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6123a9565b816001600160a01b0316836001600160a01b0316146123a9576123a98382612547565b6001600160a01b0382166123c057610d2c816125e4565b826001600160a01b0316826001600160a01b031614610d2c57610d2c8282612693565b60006013826103e881106123f9576123f9612c91565b01541561241c576013826103e8811061241457612414612c91565b015492915050565b5090565b6112308282604051806020016040528060008152506126d7565b6000611a338284612ee4565b60006001600160a01b0384163b1561253c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061248a903390899088908890600401613068565b6020604051808303816000875af19250505080156124c5575060408051601f3d908101601f191682019092526124c2918101906130a5565b60015b612522573d8080156124f3576040519150601f19603f3d011682016040523d82523d6000602084013e6124f8565b606091505b50805160000361251a5760405162461bcd60e51b8152600401610acd90613016565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e50565b506001949350505050565b600060016125548461130a565b61255e9190612fc5565b6000838152600760205260409020549091508082146125b1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906125f690600190612fc5565b6000838152600960205260408120546008805493945090928490811061261e5761261e612c91565b90600052602060002001549050806008838154811061263f5761263f612c91565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612677576126776130c2565b6001900381819060005260206000200160009055905550505050565b600061269e8361130a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6126e1838361270a565b6126ee6000848484612446565b610d2c5760405162461bcd60e51b8152600401610acd90613016565b6001600160a01b0382166127605760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610acd565b6000818152600260205260409020546001600160a01b0316156127c55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610acd565b6127d16000838361232b565b6001600160a01b03821660009081526003602052604081208054600192906127fa908490612fd8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006020828403121561286a57600080fd5b5035919050565b6001600160e01b031981168114611c0757600080fd5b60006020828403121561289957600080fd5b8135611a3381612871565b8015158114611c0757600080fd5b6000602082840312156128c457600080fd5b8135611a33816128a4565b60005b838110156128ea5781810151838201526020016128d2565b50506000910152565b6000815180845261290b8160208601602086016128cf565b601f01601f19169290920160200192915050565b602081526000611a3360208301846128f3565b6001600160a01b0381168114611c0757600080fd5b6000806040838503121561295a57600080fd5b823561296581612932565b946020939093013593505050565b60008060006060848603121561298857600080fd5b833561299381612932565b925060208401356129a381612932565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156129e5576129e56129b4565b604051601f8501601f19908116603f01168101908282118183101715612a0d57612a0d6129b4565b81604052809350858152868686011115612a2657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612a5257600080fd5b813567ffffffffffffffff811115612a6957600080fd5b8201601f81018413612a7a57600080fd5b611e50848235602084016129ca565b600060208284031215612a9b57600080fd5b8135611a3381612932565b60008060408385031215612ab957600080fd5b8235612ac481612932565b91506020830135612ad4816128a4565b809150509250929050565b60008060008060808587031215612af557600080fd5b8435612b0081612932565b93506020850135612b1081612932565b925060408501359150606085013567ffffffffffffffff811115612b3357600080fd5b8501601f81018713612b4457600080fd5b612b53878235602084016129ca565b91505092959194509250565b6020808252825182820181905260009190848201906040850190845b81811015612b9757835183529284019291840191600101612b7b565b50909695505050505050565b60008060408385031215612bb657600080fd5b8235612bc181612932565b91506020830135612ad481612932565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612c1a57607f821691505b602082108103612c3a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612cb957600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600060018201612ce857612ce8612cc0565b5060010190565b600060208284031215612d0157600080fd5b8151611a3381612932565b600060808201868352602060808185015281875180845260a086019150828901935060005b81811015612d565784516001600160a01b031683529383019391830191600101612d31565b50506001600160a01b039690961660408501525050506060015292915050565b600060208284031215612d8857600080fd5b8151611a33816128a4565b601f821115610d2c57600081815260208120601f850160051c81016020861015612dba5750805b601f850160051c820191505b81811015612dd957828155600101612dc6565b505050505050565b815167ffffffffffffffff811115612dfb57612dfb6129b4565b612e0f81612e098454612c06565b84612d93565b602080601f831160018114612e445760008415612e2c5750858301515b600019600386901b1c1916600185901b178555612dd9565b600085815260208120601f198616915b82811015612e7357888601518255948401946001909101908401612e54565b5085821015612e915787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526023908201527f434c41573a20796f75206861766520746f206d696e74206174206c65617374206040820152626f6e6560e81b606082015260800190565b8082028115828204841417610a7857610a78612cc0565b634e487b7160e01b600052601260045260246000fd5b600082612f2057612f20612efb565b500490565b600084516020612f388285838a016128cf565b855191840191612f4b8184848a016128cf565b8554920191600090612f5c81612c06565b60018281168015612f745760018114612f8957612fb5565b60ff1984168752821515830287019450612fb5565b896000528560002060005b84811015612fad57815489820152908301908701612f94565b505082870194505b50929a9950505050505050505050565b81810381811115610a7857610a78612cc0565b80820180821115610a7857610a78612cc0565b600082612ffa57612ffa612efb565b500690565b60008161300e5761300e612cc0565b506000190190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061309b908301846128f3565b9695505050505050565b6000602082840312156130b757600080fd5b8151611a3381612871565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220a2d650b5baec8c793f29bc08638b5102d84f87247269270baea0e9bbe7e4e06964736f6c634300081300334552433732313a207472616e7366657220746f206e6f6e204552433732315265000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b436c6177205368696261730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005434c4157530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656968726f693273676133746e6c356534717178346e6578726f6136376d616b746a36686e6675367669686a6f69687a7a64647961342f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103695760003560e01c80637f00c7a6116101c6578063d2068857116100f7578063f1e9f1e511610095578063f72f863b1161006f578063f72f863b146109e4578063f75b8c5f14610a04578063f887ea4014610a1a578063fc0c546a14610a3b57600080fd5b8063f1e9f1e51461098c578063f2fde38b146109ad578063f447500a146109cd57600080fd5b8063db886f23116100d1578063db886f23146108e2578063e985e9c514610903578063ee6d9d6d1461094c578063efdcd9741461096c57600080fd5b8063d20688571461087e578063d5abeb01146108ac578063da3ef23f146108c257600080fd5b8063a22cb46511610164578063b88d4fde1161013e578063b88d4fde146107fc578063c66828621461081c578063c87b56dd14610831578063d004b0361461085157600080fd5b8063a22cb4651461079c578063a708d404146107bc578063b3ef77f2146107dc57600080fd5b80638b0414d5116101a05780638b0414d5146107365780638da5cb5b1461075657806395d89b4114610774578063a0712d681461078957600080fd5b80637f00c7a6146106bf5780638623ec7b146106df5780638aee81271461071657600080fd5b80634131ff99116102a05780635c975abb1161023e5780636f534b4e116102185780636f534b4e1461064957806370a0823114610669578063715018a614610689578063736ce0d41461069e57600080fd5b80635c975abb146105ee5780636352211e146106095780636eb0d0301461062957600080fd5b80634b6acafb1161027a5780634b6acafb146105835780634f6ccce714610599578063521133d1146105b957806355f804b3146105ce57600080fd5b80634131ff991461052d57806342842e0e1461054357806344a0d68a1461056357600080fd5b8063095ea7b31161030d57806318160ddd116102e757806318160ddd146104c2578063239c70ae146104d757806323b872dd146104ed5780632f745c591461050d57600080fd5b8063095ea7b31461047657806313faede614610496578063174f57af146104ac57600080fd5b806302329a291161034957806302329a291461040a578063047d5e801461042c57806306fdde0314610434578063081812fc1461045657600080fd5b80620251641461036e578062fe50c6146103ac57806301ffc9a7146103da575b600080fd5b34801561037a57600080fd5b506104025461038f906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156103b857600080fd5b506103cc6103c7366004612858565b610a5c565b6040519081526020016103a3565b3480156103e657600080fd5b506103fa6103f5366004612887565b610a7e565b60405190151581526020016103a3565b34801561041657600080fd5b5061042a6104253660046128b2565b610aa3565b005b61042a610aea565b34801561044057600080fd5b50610449610af5565b6040516103a3919061291f565b34801561046257600080fd5b5061038f610471366004612858565b610b87565b34801561048257600080fd5b5061042a610491366004612947565b610c1c565b3480156104a257600080fd5b506103cc600c5481565b3480156104b857600080fd5b506103cc600d5481565b3480156104ce57600080fd5b506008546103cc565b3480156104e357600080fd5b506103cc60105481565b3480156104f957600080fd5b5061042a610508366004612973565b610d31565b34801561051957600080fd5b506103cc610528366004612947565b610d62565b34801561053957600080fd5b506103cc60115481565b34801561054f57600080fd5b5061042a61055e366004612973565b610df8565b34801561056f57600080fd5b5061042a61057e366004612858565b610e13565b34801561058f57600080fd5b506103cc60125481565b3480156105a557600080fd5b506103cc6105b4366004612858565b610e42565b3480156105c557600080fd5b5061042a610ed5565b3480156105da57600080fd5b5061042a6105e9366004612a40565b6111f9565b3480156105fa57600080fd5b506103fd546103fa9060ff1681565b34801561061557600080fd5b5061038f610624366004612858565b611234565b34801561063557600080fd5b5061042a610644366004612858565b6112ab565b34801561065557600080fd5b5061042a610664366004612858565b6112da565b34801561067557600080fd5b506103cc610684366004612a89565b61130a565b34801561069557600080fd5b5061042a611391565b3480156106aa57600080fd5b506104005461038f906001600160a01b031681565b3480156106cb57600080fd5b5061042a6106da366004612858565b6113c5565b3480156106eb57600080fd5b5061038f6106fa366004612858565b6103fc602052600090815260409020546001600160a01b031681565b34801561072257600080fd5b5061042a610731366004612a89565b6113f4565b34801561074257600080fd5b5061042a610751366004612a89565b61144c565b34801561076257600080fd5b50600a546001600160a01b031661038f565b34801561078057600080fd5b50610449611499565b61042a610797366004612858565b6114a8565b3480156107a857600080fd5b5061042a6107b7366004612aa6565b61167d565b3480156107c857600080fd5b506103cc6107d7366004612a89565b611741565b3480156107e857600080fd5b5061042a6107f7366004612947565b611793565b34801561080857600080fd5b5061042a610817366004612adf565b6118a0565b34801561082857600080fd5b506104496118d8565b34801561083d57600080fd5b5061044961084c366004612858565b611966565b34801561085d57600080fd5b5061087161086c366004612a89565b611a3a565b6040516103a39190612b5f565b34801561088a57600080fd5b506103cc610899366004612858565b6103fb6020526000908152604090205481565b3480156108b857600080fd5b506103cc600e5481565b3480156108ce57600080fd5b5061042a6108dd366004612a40565b611ad4565b3480156108ee57600080fd5b506104035461038f906001600160a01b031681565b34801561090f57600080fd5b506103fa61091e366004612ba3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561095857600080fd5b506103cc610967366004612858565b611b0a565b34801561097857600080fd5b5061042a610987366004612a89565b611b22565b34801561099857600080fd5b506104015461038f906001600160a01b031681565b3480156109b957600080fd5b5061042a6109c8366004612a89565b611b6f565b3480156109d957600080fd5b506103cc6104045481565b3480156109f057600080fd5b5061042a6109ff366004612a89565b611c0a565b348015610a1057600080fd5b506103cc600f5481565b348015610a2657600080fd5b506104055461038f906001600160a01b031681565b348015610a4757600080fd5b506104065461038f906001600160a01b031681565b60008181526103fb6020526040812054601254610a7891611c62565b92915050565b60006001600160e01b0319821663780e9d6360e01b1480610a785750610a7882611c6e565b600a546001600160a01b03163314610ad65760405162461bcd60e51b8152600401610acd90612bd1565b60405180910390fd5b6103fd805460ff1916911515919091179055565b610af334611cbe565b565b606060008054610b0490612c06565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3090612c06565b8015610b7d5780601f10610b5257610100808354040283529160200191610b7d565b820191906000526020600020905b815481529060010190602001808311610b6057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c005760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610acd565b506000908152600460205260409020546001600160a01b031690565b6000610c2782611234565b9050806001600160a01b0316836001600160a01b031603610c945760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610acd565b336001600160a01b0382161480610cb05750610cb0813361091e565b610d225760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610acd565b610d2c8383611cf3565b505050565b610d3b3382611d61565b610d575760405162461bcd60e51b8152600401610acd90612c40565b610d2c838383611e58565b6000610d6d8361130a565b8210610dcf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610acd565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610d2c838383604051806020016040528060008152506118a0565b600a546001600160a01b03163314610e3d5760405162461bcd60e51b8152600401610acd90612bd1565b600c55565b6000610e4d60085490565b8210610eb05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610acd565b60088281548110610ec357610ec3612c91565b90600052602060002001549050919050565b6000610ee03361130a565b610406546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a0823190602401602060405180830381865afa158015610f2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f539190612ca7565b90506000805b83811015610fad576000610f6d3383610d62565b9050610f82610f7b82610a5c565b8490612003565b60125460009283526103fb602052604090922091909155915080610fa581612cd6565b915050610f59565b50604080516002808252606082018352600092602083019080368337505061040554604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015611019573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103d9190612cef565b8160008151811061105057611050612c91565b6001600160a01b0392831660209182029290920101526104015482519116908290600190811061108257611082612c91565b6001600160a01b0392831660209182029290920101526104055460405163b6f9de9560e01b815291169063b6f9de959084906110c990600090869030904290600401612d0c565b6000604051808303818588803b1580156110e257600080fd5b505af11580156110f6573d6000803e3d6000fd5b5050610406546040516370a0823160e01b8152306004820152600094506001600160a01b0390911692506370a082319150602401602060405180830381865afa158015611147573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116b9190612ca7565b905060006111798286611c62565b6104065460405163a9059cbb60e01b8152336004820152602481018390529192506001600160a01b03169063a9059cbb906044016020604051808303816000875af11580156111cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f09190612d76565b50505050505050565b600a546001600160a01b031633146112235760405162461bcd60e51b8152600401610acd90612bd1565b6103fe6112308282612de1565b5050565b6000818152600260205260408120546001600160a01b031680610a785760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610acd565b600a546001600160a01b031633146112d55760405162461bcd60e51b8152600401610acd90612bd1565b600d55565b600a546001600160a01b031633146113045760405162461bcd60e51b8152600401610acd90612bd1565b61040455565b60006001600160a01b0382166113755760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610acd565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113bb5760405162461bcd60e51b8152600401610acd90612bd1565b610af3600061200f565b600a546001600160a01b031633146113ef5760405162461bcd60e51b8152600401610acd90612bd1565b601055565b600a546001600160a01b0316331461141e5760405162461bcd60e51b8152600401610acd90612bd1565b61040180546001600160a01b039092166001600160a01b031992831681179091556104068054909216179055565b600a546001600160a01b031633146114765760405162461bcd60e51b8152600401610acd90612bd1565b61040380546001600160a01b0319166001600160a01b0392909216919091179055565b606060018054610b0490612c06565b6103fd5460ff16156115065760405162461bcd60e51b815260206004820152602160248201527f434c41573a206d696e74696e6720686173206e6f7420737461727465642079656044820152601d60fa1b6064820152608401610acd565b600081116115265760405162461bcd60e51b8152600401610acd90612ea1565b6010548111156115845760405162461bcd60e51b8152602060048201526024808201527f434c41573a20796f752063616e206f6e6c79206d696e7420313020617420612060448201526374696d6560e01b6064820152608401610acd565b80600f5410156115d65760405162461bcd60e51b815260206004820181905260248201527f434c41573a2074686520636f6c6c656374696f6e20697320736f6c64206f75746044820152606401610acd565b600a546001600160a01b031633146116455780600c546115f69190612ee4565b3410156116455760405162461bcd60e51b815260206004820152601c60248201527f434c41573a20746f74616c20636f73742069736e2774206d61746368000000006044820152606401610acd565b60015b8181116112305761165833612061565b5061166b6116668334612f11565b612135565b8061167581612cd6565b915050611648565b336001600160a01b038316036116d55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610acd565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60008061174d8361130a565b90506000805b8281101561178b5760006117678683610d62565b9050611775610f7b82610a5c565b925050808061178390612cd6565b915050611753565b509392505050565b600a546001600160a01b031633146117bd5760405162461bcd60e51b8152600401610acd90612bd1565b6001600160a01b0382166118085760405162461bcd60e51b8152602060048201526012602482015271434c41573a207a65726f206164647265737360701b6044820152606401610acd565b600081116118285760405162461bcd60e51b8152600401610acd90612ea1565b600f5460000361187a5760405162461bcd60e51b815260206004820181905260248201527f434c41573a2074686520636f6c6c656374696f6e20697320736f6c64206f75746044820152606401610acd565b60015b818111610d2c5761188d83612061565b508061189881612cd6565b91505061187d565b6118aa3383611d61565b6118c65760405162461bcd60e51b8152600401610acd90612c40565b6118d2848484846121db565b50505050565b600b80546118e590612c06565b80601f016020809104026020016040519081016040528092919081815260200182805461191190612c06565b801561195e5780601f106119335761010080835404028352916020019161195e565b820191906000526020600020905b81548152906001019060200180831161194157829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166119db5760405162461bcd60e51b815260206004820152602560248201527f434c41573a2055524920717565727920666f72206e6f6e6578697374656e74206044820152643a37b5b2b760d91b6064820152608401610acd565b60006119e561220e565b90506000815111611a055760405180602001604052806000815250611a33565b80611a0f8461221e565b600b604051602001611a2393929190612f25565b6040516020818303038152906040525b9392505050565b60606000611a478361130a565b905060008167ffffffffffffffff811115611a6457611a646129b4565b604051908082528060200260200182016040528015611a8d578160200160208202803683370190505b50905060005b8281101561178b57611aa58582610d62565b828281518110611ab757611ab7612c91565b602090810291909101015280611acc81612cd6565b915050611a93565b600a546001600160a01b03163314611afe5760405162461bcd60e51b8152600401610acd90612bd1565b600b6112308282612de1565b6013816103e88110611b1b57600080fd5b0154905081565b600a546001600160a01b03163314611b4c5760405162461bcd60e51b8152600401610acd90612bd1565b61040280546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314611b995760405162461bcd60e51b8152600401610acd90612bd1565b6001600160a01b038116611bfe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610acd565b611c078161200f565b50565b600a546001600160a01b03163314611c345760405162461bcd60e51b8152600401610acd90612bd1565b61040080546001600160a01b039092166001600160a01b031992831681179091556104058054909216179055565b6000611a338284612fc5565b60006001600160e01b031982166380ac58cd60e01b1480611c9f57506001600160e01b03198216635b5e139f60e01b145b80610a7857506301ffc9a760e01b6001600160e01b0319831614610a78565b601154611ccb9082612003565b601155611ced611ce4611cdd60085490565b839061231f565b60125490612003565b60125550565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d2882611234565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611dda5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610acd565b6000611de583611234565b9050806001600160a01b0316846001600160a01b03161480611e205750836001600160a01b0316611e1584610b87565b6001600160a01b0316145b80611e5057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e6b82611234565b6001600160a01b031614611ed35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610acd565b6001600160a01b038216611f355760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610acd565b611f4083838361232b565b611f4b600082611cf3565b6001600160a01b0383166000908152600360205260408120805460019290611f74908490612fc5565b90915550506001600160a01b0382166000908152600360205260408120805460019290611fa2908490612fd8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611a338284612fd8565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600f54604080514460208083019190915242828401526060808301859052835180840390910181526080909201909252805191012060009182916120a59190612feb565b905060006120b2826123e3565b6120bd906001612fd8565b600f805491925060006120cf83612fff565b91905055506120df600f546123e3565b6013836103e881106120f3576120f3612c91565b01556120ff8482612420565b60008181526103fc6020908152604080832080546001600160a01b031916331790556012546103fb909252909120559392505050565b60006121576064612151600d548561243a90919063ffffffff16565b9061231f565b905060006121766064612151610404548661243a90919063ffffffff16565b9050600061218e826121888686611c62565b90611c62565b905061219983611cbe565b610402546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156121d4573d6000803e3d6000fd5b5050505050565b6121e6848484611e58565b6121f284848484612446565b6118d25760405162461bcd60e51b8152600401610acd90613016565b60606103fe8054610b0490612c06565b6060816000036122455750506040805180820190915260018152600360fc1b602082015290565b8160005b811561226f578061225981612cd6565b91506122689050600a83612f11565b9150612249565b60008167ffffffffffffffff81111561228a5761228a6129b4565b6040519080825280601f01601f1916602001820160405280156122b4576020820181803683370190505b5090505b8415611e50576122c9600183612fc5565b91506122d6600a86612feb565b6122e1906030612fd8565b60f81b8183815181106122f6576122f6612c91565b60200101906001600160f81b031916908160001a905350612318600a86612f11565b94506122b8565b6000611a338284612f11565b6001600160a01b0383166123865761238181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6123a9565b816001600160a01b0316836001600160a01b0316146123a9576123a98382612547565b6001600160a01b0382166123c057610d2c816125e4565b826001600160a01b0316826001600160a01b031614610d2c57610d2c8282612693565b60006013826103e881106123f9576123f9612c91565b01541561241c576013826103e8811061241457612414612c91565b015492915050565b5090565b6112308282604051806020016040528060008152506126d7565b6000611a338284612ee4565b60006001600160a01b0384163b1561253c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061248a903390899088908890600401613068565b6020604051808303816000875af19250505080156124c5575060408051601f3d908101601f191682019092526124c2918101906130a5565b60015b612522573d8080156124f3576040519150601f19603f3d011682016040523d82523d6000602084013e6124f8565b606091505b50805160000361251a5760405162461bcd60e51b8152600401610acd90613016565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e50565b506001949350505050565b600060016125548461130a565b61255e9190612fc5565b6000838152600760205260409020549091508082146125b1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906125f690600190612fc5565b6000838152600960205260408120546008805493945090928490811061261e5761261e612c91565b90600052602060002001549050806008838154811061263f5761263f612c91565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612677576126776130c2565b6001900381819060005260206000200160009055905550505050565b600061269e8361130a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6126e1838361270a565b6126ee6000848484612446565b610d2c5760405162461bcd60e51b8152600401610acd90613016565b6001600160a01b0382166127605760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610acd565b6000818152600260205260409020546001600160a01b0316156127c55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610acd565b6127d16000838361232b565b6001600160a01b03821660009081526003602052604081208054600192906127fa908490612fd8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006020828403121561286a57600080fd5b5035919050565b6001600160e01b031981168114611c0757600080fd5b60006020828403121561289957600080fd5b8135611a3381612871565b8015158114611c0757600080fd5b6000602082840312156128c457600080fd5b8135611a33816128a4565b60005b838110156128ea5781810151838201526020016128d2565b50506000910152565b6000815180845261290b8160208601602086016128cf565b601f01601f19169290920160200192915050565b602081526000611a3360208301846128f3565b6001600160a01b0381168114611c0757600080fd5b6000806040838503121561295a57600080fd5b823561296581612932565b946020939093013593505050565b60008060006060848603121561298857600080fd5b833561299381612932565b925060208401356129a381612932565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156129e5576129e56129b4565b604051601f8501601f19908116603f01168101908282118183101715612a0d57612a0d6129b4565b81604052809350858152868686011115612a2657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612a5257600080fd5b813567ffffffffffffffff811115612a6957600080fd5b8201601f81018413612a7a57600080fd5b611e50848235602084016129ca565b600060208284031215612a9b57600080fd5b8135611a3381612932565b60008060408385031215612ab957600080fd5b8235612ac481612932565b91506020830135612ad4816128a4565b809150509250929050565b60008060008060808587031215612af557600080fd5b8435612b0081612932565b93506020850135612b1081612932565b925060408501359150606085013567ffffffffffffffff811115612b3357600080fd5b8501601f81018713612b4457600080fd5b612b53878235602084016129ca565b91505092959194509250565b6020808252825182820181905260009190848201906040850190845b81811015612b9757835183529284019291840191600101612b7b565b50909695505050505050565b60008060408385031215612bb657600080fd5b8235612bc181612932565b91506020830135612ad481612932565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612c1a57607f821691505b602082108103612c3a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612cb957600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600060018201612ce857612ce8612cc0565b5060010190565b600060208284031215612d0157600080fd5b8151611a3381612932565b600060808201868352602060808185015281875180845260a086019150828901935060005b81811015612d565784516001600160a01b031683529383019391830191600101612d31565b50506001600160a01b039690961660408501525050506060015292915050565b600060208284031215612d8857600080fd5b8151611a33816128a4565b601f821115610d2c57600081815260208120601f850160051c81016020861015612dba5750805b601f850160051c820191505b81811015612dd957828155600101612dc6565b505050505050565b815167ffffffffffffffff811115612dfb57612dfb6129b4565b612e0f81612e098454612c06565b84612d93565b602080601f831160018114612e445760008415612e2c5750858301515b600019600386901b1c1916600185901b178555612dd9565b600085815260208120601f198616915b82811015612e7357888601518255948401946001909101908401612e54565b5085821015612e915787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526023908201527f434c41573a20796f75206861766520746f206d696e74206174206c65617374206040820152626f6e6560e81b606082015260800190565b8082028115828204841417610a7857610a78612cc0565b634e487b7160e01b600052601260045260246000fd5b600082612f2057612f20612efb565b500490565b600084516020612f388285838a016128cf565b855191840191612f4b8184848a016128cf565b8554920191600090612f5c81612c06565b60018281168015612f745760018114612f8957612fb5565b60ff1984168752821515830287019450612fb5565b896000528560002060005b84811015612fad57815489820152908301908701612f94565b505082870194505b50929a9950505050505050505050565b81810381811115610a7857610a78612cc0565b80820180821115610a7857610a78612cc0565b600082612ffa57612ffa612efb565b500690565b60008161300e5761300e612cc0565b506000190190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061309b908301846128f3565b9695505050505050565b6000602082840312156130b757600080fd5b8151611a3381612871565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220a2d650b5baec8c793f29bc08638b5102d84f87247269270baea0e9bbe7e4e06964736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b436c6177205368696261730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005434c4157530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656968726f693273676133746e6c356534717178346e6578726f6136376d616b746a36686e6675367669686a6f69687a7a64647961342f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Claw Shibas
Arg [1] : symbol (string): CLAWS
Arg [2] : baseTokenURI (string): ipfs://bafybeihroi2sga3tnl5e4qqx4nexroa67maktj6hnfu6vihjoihzzddya4/
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 436c617720536869626173000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 434c415753000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 697066733a2f2f6261667962656968726f693273676133746e6c356534717178
Arg [9] : 346e6578726f6136376d616b746a36686e6675367669686a6f69687a7a646479
Arg [10] : 61342f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
56232:9857:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57214:71;;;;;;;;;;-1:-1:-1;57214:71:0;;;;-1:-1:-1;;;;;57214:71:0;;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;57214:71:0;;;;;;;;64312:177;;;;;;;;;;-1:-1:-1;64312:177:0;;;;;:::i;:::-;;:::i;:::-;;;553:25:1;;;541:2;526:18;64312:177:0;407::1;42318:300:0;;;;;;;;;;-1:-1:-1;42318:300:0;;;;;:::i;:::-;;:::i;:::-;;;1140:14:1;;1133:22;1115:41;;1103:2;1088:18;42318:300:0;975:187:1;58498:79:0;;;;;;;;;;-1:-1:-1;58498:79:0;;;;;:::i;:::-;;:::i;:::-;;63813:87;;;:::i;29795:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31488:308::-;;;;;;;;;;-1:-1:-1;31488:308:0;;;;;:::i;:::-;;:::i;31011:411::-;;;;;;;;;;-1:-1:-1;31011:411:0;;;;;:::i;:::-;;:::i;56453:32::-;;;;;;;;;;;;;;;;56509:30;;;;;;;;;;;;;;;;43121:113;;;;;;;;;;-1:-1:-1;43209:10:0;:17;43121:113;;56628:33;;;;;;;;;;;;;;;;32547:376;;;;;;;;;;-1:-1:-1;32547:376:0;;;;;:::i;:::-;;:::i;42702:343::-;;;;;;;;;;-1:-1:-1;42702:343:0;;;;;:::i;:::-;;:::i;56689:32::-;;;;;;;;;;;;;;;;32994:185;;;;;;;;;;-1:-1:-1;32994:185:0;;;;;:::i;:::-;;:::i;58115:86::-;;;;;;;;;;-1:-1:-1;58115:86:0;;;;;:::i;:::-;;:::i;56728:28::-;;;;;;;;;;;;;;;;43311:320;;;;;;;;;;-1:-1:-1;43311:320:0;;;;;:::i;:::-;;:::i;64497:959::-;;;;;;;;;;;;;:::i;58003:104::-;;;;;;;;;;-1:-1:-1;58003:104:0;;;;;:::i;:::-;;:::i;56941:25::-;;;;;;;;;;-1:-1:-1;56941:25:0;;;;;;;;29402:326;;;;;;;;;;-1:-1:-1;29402:326:0;;;;;:::i;:::-;;:::i;59144:107::-;;;;;;;;;;-1:-1:-1;59144:107:0;;;;;:::i;:::-;;:::i;59259:102::-;;;;;;;;;;-1:-1:-1;59259:102:0;;;;;:::i;:::-;;:::i;29045:295::-;;;;;;;;;;-1:-1:-1;29045:295:0;;;;;:::i;:::-;;:::i;11055:94::-;;;;;;;;;;;;;:::i;57058:69::-;;;;;;;;;;-1:-1:-1;57058:69:0;;;;-1:-1:-1;;;;;57058:69:0;;;58209:122;;;;;;;;;;-1:-1:-1;58209:122:0;;;;;:::i;:::-;;:::i;56875:42::-;;;;;;;;;;-1:-1:-1;56875:42:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;56875:42:0;;;58585:152;;;;;;;;;;-1:-1:-1;58585:152:0;;;;;:::i;:::-;;:::i;59030:106::-;;;;;;;;;;-1:-1:-1;59030:106:0;;;;;:::i;:::-;;:::i;10404:87::-;;;;;;;;;;-1:-1:-1;10477:6:0;;-1:-1:-1;;;;;10477:6:0;10404:87;;29964:104;;;;;;;;;;;;;:::i;59385:881::-;;;;;;:::i;:::-;;:::i;31868:327::-;;;;;;;;;;-1:-1:-1;31868:327:0;;;;;:::i;:::-;;:::i;63908:396::-;;;;;;;;;;-1:-1:-1;63908:396:0;;;;;:::i;:::-;;:::i;60320:469::-;;;;;;;;;;-1:-1:-1;60320:469:0;;;;;:::i;:::-;;:::i;33250:365::-;;;;;;;;;;-1:-1:-1;33250:365:0;;;;;:::i;:::-;;:::i;56409:37::-;;;;;;;;;;;;;:::i;62546:581::-;;;;;;;;;;-1:-1:-1;62546:581:0;;;;;:::i;:::-;;:::i;62051:453::-;;;;;;;;;;-1:-1:-1;62051:453:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;56819:49::-;;;;;;;;;;-1:-1:-1;56819:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;56546:31;;;;;;;;;;;;;;;;58339:151;;;;;;;;;;-1:-1:-1;58339:151:0;;;;;:::i;:::-;;:::i;57292:69::-;;;;;;;;;;-1:-1:-1;57292:69:0;;;;-1:-1:-1;;;;;57292:69:0;;;32266:214;;;;;;;;;;-1:-1:-1;32266:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;32437:25:0;;;32408:4;32437:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32266:214;56779:33;;;;;;;;;;-1:-1:-1;56779:33:0;;;;;:::i;:::-;;:::i;58908:114::-;;;;;;;;;;-1:-1:-1;58908:114:0;;;;;:::i;:::-;;:::i;57134:71::-;;;;;;;;;;-1:-1:-1;57134:71:0;;;;-1:-1:-1;;;;;57134:71:0;;;11304:229;;;;;;;;;;-1:-1:-1;11304:229:0;;;;;:::i;:::-;;:::i;57368:28::-;;;;;;;;;;;;;;;;58745:155;;;;;;;;;;-1:-1:-1;58745:155:0;;;;;:::i;:::-;;:::i;56584:37::-;;;;;;;;;;;;;;;;57422:32;;;;;;;;;;-1:-1:-1;57422:32:0;;;;-1:-1:-1;;;;;57422:32:0;;;57461:19;;;;;;;;;;-1:-1:-1;57461:19:0;;;;-1:-1:-1;;;;;57461:19:0;;;64312:177;64407:7;64457:23;;;:14;:23;;;;;;64439:13;;:42;;:17;:42::i;:::-;64432:49;64312:177;-1:-1:-1;;64312:177:0:o;42318:300::-;42465:4;-1:-1:-1;;;;;;42507:50:0;;-1:-1:-1;;;42507:50:0;;:103;;;42574:36;42598:11;42574:23;:36::i;58498:79::-;10477:6;;-1:-1:-1;;;;;10477:6:0;9842:10;10624:23;10616:68;;;;-1:-1:-1;;;10616:68:0;;;;;;;:::i;:::-;;;;;;;;;58554:6:::1;:15:::0;;-1:-1:-1;;58554:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58498:79::o;63813:87::-;63866:26;63882:9;63866:15;:26::i;:::-;63813:87::o;29795:100::-;29849:13;29882:5;29875:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29795:100;:::o;31488:308::-;31609:7;35251:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35251:16:0;31634:110;;;;-1:-1:-1;;;31634:110:0;;8309:2:1;31634:110:0;;;8291:21:1;8348:2;8328:18;;;8321:30;8387:34;8367:18;;;8360:62;-1:-1:-1;;;8438:18:1;;;8431:42;8490:19;;31634:110:0;8107:408:1;31634:110:0;-1:-1:-1;31764:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31764:24:0;;31488:308::o;31011:411::-;31092:13;31108:23;31123:7;31108:14;:23::i;:::-;31092:39;;31156:5;-1:-1:-1;;;;;31150:11:0;:2;-1:-1:-1;;;;;31150:11:0;;31142:57;;;;-1:-1:-1;;;31142:57:0;;8722:2:1;31142:57:0;;;8704:21:1;8761:2;8741:18;;;8734:30;8800:34;8780:18;;;8773:62;-1:-1:-1;;;8851:18:1;;;8844:31;8892:19;;31142:57:0;8520:397:1;31142:57:0;9842:10;-1:-1:-1;;;;;31234:21:0;;;;:62;;-1:-1:-1;31259:37:0;31276:5;9842:10;32266:214;:::i;31259:37::-;31212:168;;;;-1:-1:-1;;;31212:168:0;;9124:2:1;31212:168:0;;;9106:21:1;9163:2;9143:18;;;9136:30;9202:34;9182:18;;;9175:62;9273:26;9253:18;;;9246:54;9317:19;;31212:168:0;8922:420:1;31212:168:0;31393:21;31402:2;31406:7;31393:8;:21::i;:::-;31081:341;31011:411;;:::o;32547:376::-;32756:41;9842:10;32789:7;32756:18;:41::i;:::-;32734:140;;;;-1:-1:-1;;;32734:140:0;;;;;;;:::i;:::-;32887:28;32897:4;32903:2;32907:7;32887:9;:28::i;42702:343::-;42844:7;42899:23;42916:5;42899:16;:23::i;:::-;42891:5;:31;42869:124;;;;-1:-1:-1;;;42869:124:0;;9967:2:1;42869:124:0;;;9949:21:1;10006:2;9986:18;;;9979:30;10045:34;10025:18;;;10018:62;-1:-1:-1;;;10096:18:1;;;10089:41;10147:19;;42869:124:0;9765:407:1;42869:124:0;-1:-1:-1;;;;;;43011:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42702:343::o;32994:185::-;33132:39;33149:4;33155:2;33159:7;33132:39;;;;;;;;;;;;:16;:39::i;58115:86::-;10477:6;;-1:-1:-1;;;;;10477:6:0;9842:10;10624:23;10616:68;;;;-1:-1:-1;;;10616:68:0;;;;;;;:::i;:::-;58178:4:::1;:15:::0;58115:86::o;43311:320::-;43431:7;43486:30;43209:10;:17;;43121:113;43486:30;43478:5;:38;43456:132;;;;-1:-1:-1;;;43456:132:0;;10379:2:1;43456:132:0;;;10361:21:1;10418:2;10398:18;;;10391:30;10457:34;10437:18;;;10430:62;-1:-1:-1;;;10508:18:1;;;10501:42;10560:19;;43456:132:0;10177:408:1;43456:132:0;43606:10;43617:5;43606:17;;;;;;;;:::i;:::-;;;;;;;;;43599:24;;43311:320;;;:::o;64497:959::-;64545:13;64561:21;64571:10;64561:9;:21::i;:::-;64620:5;;:30;;-1:-1:-1;;;64620:30:0;;64644:4;64620:30;;;160:51:1;64545:37:0;;-1:-1:-1;64593:24:0;;-1:-1:-1;;;;;64620:5:0;;;;:15;;133:18:1;;64620:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64593:57;;64661:15;64696:9;64691:236;64715:5;64711:1;:9;64691:236;;;64742:15;64760:34;64780:10;64792:1;64760:19;:34::i;:::-;64742:52;;64819:42;64831:29;64852:7;64831:20;:29::i;:::-;64819:7;;:11;:42::i;:::-;64902:13;;64876:23;;;;:14;:23;;;;;;:39;;;;64809:52;-1:-1:-1;64722:3:0;;;;:::i;:::-;;;;64691:236;;;-1:-1:-1;64998:16:0;;;65012:1;64998:16;;;;;;;;64974:21;;64998:16;;;;;;;;-1:-1:-1;;65035:6:0;;:13;;;-1:-1:-1;;;65035:13:0;;;;64974:40;;-1:-1:-1;;;;;;65035:6:0;;;;:11;;-1:-1:-1;65035:13:0;;;;;;;;;;;;;;:6;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65025:4;65030:1;65025:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;65025:23:0;;;:7;;;;;;;;;:23;65069:11;;65059:7;;65069:11;;;65059:4;;65069:11;;65059:7;;;;;;:::i;:::-;-1:-1:-1;;;;;65059:21:0;;;:7;;;;;;;;;:21;65093:6;;:178;;-1:-1:-1;;;65093:178:0;;:6;;;:57;;65159:7;;65093:178;;:6;;65198:4;;65225;;65245:15;;65093:178;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;65309:5:0;;:30;;-1:-1:-1;;;65309:30:0;;65333:4;65309:30;;;160:51:1;65284:22:0;;-1:-1:-1;;;;;;65309:5:0;;;;-1:-1:-1;65309:15:0;;-1:-1:-1;133:18:1;;65309:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65284:55;-1:-1:-1;65350:14:0;65367:36;65284:55;65386:16;65367:18;:36::i;:::-;65414:5;;:34;;-1:-1:-1;;;65414:34:0;;65429:10;65414:34;;;12526:51:1;12593:18;;;12586:34;;;65350:53:0;;-1:-1:-1;;;;;;65414:5:0;;:14;;12499:18:1;;65414:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;64534:922;;;;;;64497:959::o;58003:104::-;10477:6;;-1:-1:-1;;;;;10477:6:0;9842:10;10624:23;10616:68;;;;-1:-1:-1;;;10616:68:0;;;;;;;:::i;:::-;58076:13:::1;:23;58092:7:::0;58076:13;:23:::1;:::i;:::-;;58003:104:::0;:::o;29402:326::-;29519:7;29560:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29560:16:0;;29587:110;;;;-1:-1:-1;;;29587:110:0;;15287:2:1;29587:110:0;;;15269:21:1;15326:2;15306:18;;;15299:30;15365:34;15345:18;;;15338:62;-1:-1:-1;;;15416:18:1;;;15409:39;15465:19;;29587:110:0;15085:405:1;59144:107:0;10477:6;;-1:-1:-1;;;;;10477:6:0;9842:10;10624:23;10616:68;;;;-1:-1:-1;;;10616:68:0;;;;;;;:::i;:::-;59217:10:::1;:26:::0;59144:107::o;59259:102::-;10477:6;;-1:-1:-1;;;;;10477:6:0;9842:10;10624:23;10616:68;;;;-1:-1:-1;;;10616:68:0;;;;;;;:::i;:::-;59330:8:::1;:23:::0;59259:102::o;29045:295::-;29162:7;-1:-1:-1;;;;;29209:19:0;;29187:111;;;;-1:-1:-1;;;29187:111:0;;15697:2:1;29187:111:0;;;15679:21:1;15736:2;15716:18;;;15709:30;15775:34;15755:18;;;15748:62;-1:-1:-1;;;15826:18:1;;;15819:40;15876:19;;29187:111:0;15495:406:1;29187:111:0;-1:-1:-1;;;;;;29316:16:0;;;;;:9;:16;;;;;;;29045:295::o;11055:94::-;10477:6;;-1:-1:-1;;;;;10477:6:0;9842:10;10624:23;10616:68;;;;-1:-1:-1;;;10616:68:0;;;;;;;:::i;:::-;11120:21:::1;11138:1;11120:9;:21::i;58209:122::-:0;10477:6;;-1:-1:-1;;;;;10477:6:0;9842:10;10624:23;10616:68;;;;-1:-1:-1;;;10616:68:0;;;;;;;:::i;:::-;58290:13:::1;:33:::0;58209:122::o;58585:152::-;10477:6;;-1:-1:-1;;;;;10477:6:0;9842:10;10624:23;10616:68;;;;-1:-1:-1;;;10616:68:0;;;;;;;:::i;:::-;58662:11:::1;:29:::0;;-1:-1:-1;;;;;58662:29:0;;::::1;-1:-1:-1::0;;;;;;58662:29:0;;::::1;::::0;::::1;::::0;;;58702:5:::1;:27:::0;;;;::::1;;::::0;;58585:152::o;59030:106::-;10477:6;;-1:-1:-1;;;;;10477:6:0;9842:10;10624:23;10616:68;;;;-1:-1:-1;;;10616:68:0;;;;;;;:::i;:::-;59103:9:::1;:25:::0;;-1:-1:-1;;;;;;59103:25:0::1;-1:-1:-1::0;;;;;59103:25:0;;;::::1;::::0;;;::::1;::::0;;59030:106::o;29964:104::-;30020:13;30053:7;30046:14;;;;;:::i;59385:881::-;59474:6;;;;59473:7;59465:53;;;;-1:-1:-1;;;59465:53:0;;16108:2:1;59465:53:0;;;16090:21:1;16147:2;16127:18;;;16120:30;16186:34;16166:18;;;16159:62;-1:-1:-1;;;16237:18:1;;;16230:31;16278:19;;59465:53:0;15906:397:1;59465:53:0;59551:1;59537:11;:15;59529:63;;;;-1:-1:-1;;;59529:63:0;;;;;;;:::i;:::-;59640:13;;59625:11;:28;;59603:114;;;;-1:-1:-1;;;59603:114:0;;16914:2:1;59603:114:0;;;16896:21:1;16953:2;16933:18;;;16926:30;16992:34;16972:18;;;16965:62;-1:-1:-1;;;17043:18:1;;;17036:34;17087:19;;59603:114:0;16712:400:1;59603:114:0;59764:11;59750:10;;:25;;59728:107;;;;-1:-1:-1;;;59728:107:0;;17319:2:1;59728:107:0;;;17301:21:1;;;17338:18;;;17331:30;17397:34;17377:18;;;17370:62;17449:18;;59728:107:0;17117:356:1;59728:107:0;10477:6;;-1:-1:-1;;;;;10477:6:0;59850:10;:21;59846:175;;59934:11;59927:4;;:18;;;;:::i;:::-;59914:9;:31;;59888:121;;;;-1:-1:-1;;;59888:121:0;;17853:2:1;59888:121:0;;;17835:21:1;17892:2;17872:18;;;17865:30;17931;17911:18;;;17904:58;17979:18;;59888:121:0;17651:352:1;59888:121:0;60068:1;60051:208;60076:11;60071:1;:16;60051:208;;60141:23;60153:10;60141:11;:23::i;:::-;-1:-1:-1;60206:41:0;60223:23;60235:11;60223:9;:23;:::i;:::-;60206:16;:41::i;:::-;60089:3;;;;:::i;:::-;;;;60051:208;;31868:327;9842:10;-1:-1:-1;;;;;32003:24:0;;;31995:62;;;;-1:-1:-1;;;31995:62:0;;18467:2:1;31995:62:0;;;18449:21:1;18506:2;18486:18;;;18479:30;18545:27;18525:18;;;18518:55;18590:18;;31995:62:0;18265:349:1;31995:62:0;9842:10;32070:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32070:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32070:53:0;;;;;;;;;;32139:48;;1115:41:1;;;32070:42:0;;9842:10;32139:48;;1088:18:1;32139:48:0;;;;;;;31868:327;;:::o;63908:396::-;64003:7;64028:13;64044:17;64054:6;64044:9;:17::i;:::-;64028:33;;64072:13;64105:9;64100:174;64124:5;64120:1;:9;64100:174;;;64151:15;64169:30;64189:6;64197:1;64169:19;:30::i;:::-;64151:48;;64222:40;64232:29;64253:7;64232:20;:29::i;64222:40::-;64214:48;;64136:138;64131:3;;;;;:::i;:::-;;;;64100:174;;;-1:-1:-1;64291:5:0;63908:396;-1:-1:-1;;;63908:396:0:o;60320:469::-;10477:6;;-1:-1:-1;;;;;10477:6:0;9842:10;10624:23;10616:68;;;;-1:-1:-1;;;10616:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;60458:21:0;::::1;60450:52;;;::::0;-1:-1:-1;;;60450:52:0;;18821:2:1;60450:52:0::1;::::0;::::1;18803:21:1::0;18860:2;18840:18;;;18833:30;-1:-1:-1;;;18879:18:1;;;18872:48;18937:18;;60450:52:0::1;18619:342:1::0;60450:52:0::1;60531:1;60521:7;:11;60513:59;;;;-1:-1:-1::0;;;60513:59:0::1;;;;;;;:::i;:::-;60591:10;;60605:1;60591:15:::0;60583:60:::1;;;::::0;-1:-1:-1;;;60583:60:0;;17319:2:1;60583:60:0::1;::::0;::::1;17301:21:1::0;;;17338:18;;;17331:30;17397:34;17377:18;;;17370:62;17449:18;;60583:60:0::1;17117:356:1::0;60583:60:0::1;60713:1;60696:86;60721:7;60716:1;:12;60696:86;;60750:20;60762:7;60750:11;:20::i;:::-;-1:-1:-1::0;60730:3:0;::::1;::::0;::::1;:::i;:::-;;;;60696:86;;33250:365:::0;33439:41;9842:10;33472:7;33439:18;:41::i;:::-;33417:140;;;;-1:-1:-1;;;33417:140:0;;;;;;;:::i;:::-;33568:39;33582:4;33588:2;33592:7;33601:5;33568:13;:39::i;:::-;33250:365;;;;:::o;56409:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62546:581::-;35227:4;35251:16;;;:7;:16;;;;;;62660:13;;-1:-1:-1;;;;;35251:16:0;62691:62;;;;-1:-1:-1;;;62691:62:0;;19168:2:1;62691:62:0;;;19150:21:1;19207:2;19187:18;;;19180:30;19246:34;19226:18;;;19219:62;-1:-1:-1;;;19297:18:1;;;19290:35;19342:19;;62691:62:0;18966:401:1;62691:62:0;62764:28;62795:10;:8;:10::i;:::-;62764:41;;62867:1;62842:14;62836:28;:32;:283;;;;;;;;;;;;;;;;;62960:14;63001;:3;:12;:14::i;:::-;63042:13;62917:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62836:283;62816:303;62546:581;-1:-1:-1;;;62546:581:0:o;62051:453::-;62136:16;62200:23;62226:17;62236:6;62226:9;:17::i;:::-;62200:43;;62254:25;62296:15;62282:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62282:30:0;;62254:58;;62363:9;62358:113;62378:15;62374:1;:19;62358:113;;;62429:30;62449:6;62457:1;62429:19;:30::i;:::-;62415:8;62424:1;62415:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;62395:3;;;;:::i;:::-;;;;62358:113;;58339:151;10477:6;;-1:-1:-1;;;;;10477:6:0;9842:10;10624:23;10616:68;;;;-1:-1:-1;;;10616:68:0;;;;;;;:::i;:::-;58449:13:::1;:33;58465:17:::0;58449:13;:33:::1;:::i;56779:::-:0;;;;;;;;;;;;;;;-1:-1:-1;56779:33:0;:::o;58908:114::-;10477:6;;-1:-1:-1;;;;;10477:6:0;9842:10;10624:23;10616:68;;;;-1:-1:-1;;;10616:68:0;;;;;;;:::i;:::-;58985:11:::1;:29:::0;;-1:-1:-1;;;;;;58985:29:0::1;-1:-1:-1::0;;;;;58985:29:0;;;::::1;::::0;;;::::1;::::0;;58908:114::o;11304:229::-;10477:6;;-1:-1:-1;;;;;10477:6:0;9842:10;10624:23;10616:68;;;;-1:-1:-1;;;10616:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11407:22:0;::::1;11385:110;;;::::0;-1:-1:-1;;;11385:110:0;;20835:2:1;11385:110:0::1;::::0;::::1;20817:21:1::0;20874:2;20854:18;;;20847:30;20913:34;20893:18;;;20886:62;-1:-1:-1;;;20964:18:1;;;20957:36;21010:19;;11385:110:0::1;20633:402:1::0;11385:110:0::1;11506:19;11516:8;11506:9;:19::i;:::-;11304:229:::0;:::o;58745:155::-;10477:6;;-1:-1:-1;;;;;10477:6:0;9842:10;10624:23;10616:68;;;;-1:-1:-1;;;10616:68:0;;;;;;;:::i;:::-;58818:9:::1;:25:::0;;-1:-1:-1;;;;;58818:25:0;;::::1;-1:-1:-1::0;;;;;;58818:25:0;;::::1;::::0;::::1;::::0;;;58854:6:::1;:38:::0;;;;::::1;;::::0;;58745:155::o;3966:98::-;4024:7;4051:5;4055:1;4051;:5;:::i;28626:355::-;28773:4;-1:-1:-1;;;;;;28815:40:0;;-1:-1:-1;;;28815:40:0;;:105;;-1:-1:-1;;;;;;;28872:48:0;;-1:-1:-1;;;28872:48:0;28815:105;:158;;;-1:-1:-1;;;;;;;;;;21560:40:0;;;28937:36;21401:207;63612:193;63693:17;;:30;;63715:7;63693:21;:30::i;:::-;63673:17;:50;63750:47;63769:26;63781:13;43209:10;:17;;43121:113;63781:13;63769:7;;:11;:26::i;:::-;63750:13;;;:17;:47::i;:::-;63734:13;:63;-1:-1:-1;63612:193:0:o;39285:174::-;39360:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39360:29:0;-1:-1:-1;;;;;39360:29:0;;;;;;;;:24;;39414:23;39360:24;39414:14;:23::i;:::-;-1:-1:-1;;;;;39405:46:0;;;;;;;;;;;39285:174;;:::o;35456:452::-;35585:4;35251:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35251:16:0;35607:110;;;;-1:-1:-1;;;35607:110:0;;21375:2:1;35607:110:0;;;21357:21:1;21414:2;21394:18;;;21387:30;21453:34;21433:18;;;21426:62;-1:-1:-1;;;21504:18:1;;;21497:42;21556:19;;35607:110:0;21173:408:1;35607:110:0;35728:13;35744:23;35759:7;35744:14;:23::i;:::-;35728:39;;35797:5;-1:-1:-1;;;;;35786:16:0;:7;-1:-1:-1;;;;;35786:16:0;;:64;;;;35843:7;-1:-1:-1;;;;;35819:31:0;:20;35831:7;35819:11;:20::i;:::-;-1:-1:-1;;;;;35819:31:0;;35786:64;:113;;;-1:-1:-1;;;;;;32437:25:0;;;32408:4;32437:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35867:32;35778:122;35456:452;-1:-1:-1;;;;35456:452:0:o;38552:615::-;38725:4;-1:-1:-1;;;;;38698:31:0;:23;38713:7;38698:14;:23::i;:::-;-1:-1:-1;;;;;38698:31:0;;38676:122;;;;-1:-1:-1;;;38676:122:0;;21788:2:1;38676:122:0;;;21770:21:1;21827:2;21807:18;;;21800:30;21866:34;21846:18;;;21839:62;-1:-1:-1;;;21917:18:1;;;21910:39;21966:19;;38676:122:0;21586:405:1;38676:122:0;-1:-1:-1;;;;;38817:16:0;;38809:65;;;;-1:-1:-1;;;38809:65:0;;22198:2:1;38809:65:0;;;22180:21:1;22237:2;22217:18;;;22210:30;22276:34;22256:18;;;22249:62;-1:-1:-1;;;22327:18:1;;;22320:34;22371:19;;38809:65:0;21996:400:1;38809:65:0;38887:39;38908:4;38914:2;38918:7;38887:20;:39::i;:::-;38991:29;39008:1;39012:7;38991:8;:29::i;:::-;-1:-1:-1;;;;;39033:15:0;;;;;;:9;:15;;;;;:20;;39052:1;;39033:15;:20;;39052:1;;39033:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39064:13:0;;;;;;:9;:13;;;;;:18;;39081:1;;39064:13;:18;;39081:1;;39064:18;:::i;:::-;;;;-1:-1:-1;;39093:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39093:21:0;-1:-1:-1;;;;;39093:21:0;;;;;;;;;39132:27;;39093:16;;39132:27;;;;;;;38552:615;;;:::o;3585:98::-;3643:7;3670:5;3674:1;3670;:5;:::i;11541:173::-;11616:6;;;-1:-1:-1;;;;;11633:17:0;;;-1:-1:-1;;;;;;11633:17:0;;;;;;;11666:40;;11616:6;;;11633:17;11616:6;;11666:40;;11597:16;;11666:40;11586:128;11541:173;:::o;60817:593::-;60959:10;;65883:161;;;65926:16;65883:161;;;;23393:19:1;;;;65969:15:0;23428:12:1;;;23421:28;23465:12;;;;23458:28;;;65883:161:0;;;;;;;;;;23502:12:1;;;;65883:161:0;;;65851:212;;;;;60873:7;;;;60944:25;;;;:::i;:::-;60927:42;;60980:18;61001:16;61010:6;61001:8;:16::i;:::-;:20;;61020:1;61001:20;:::i;:::-;61058:10;:12;;60980:41;;-1:-1:-1;61058:10:0;:12;;;:::i;:::-;;;;;;61140:20;61149:10;;61140:8;:20::i;:::-;61117:12;61130:6;61117:20;;;;;;;:::i;:::-;;:43;61188:30;61198:7;61207:10;61188:9;:30::i;:::-;61263:19;;;;:7;:19;;;;;;;;:32;;-1:-1:-1;;;;;;61263:32:0;61285:10;61263:32;;;61361:13;;61332:14;:26;;;;;;:42;61271:10;60817:593;-1:-1:-1;;;60817:593:0:o;63153:430::-;63241:17;63261:32;63289:3;63261:23;63273:10;;63261:7;:11;;:23;;;;:::i;:::-;:27;;:32::i;:::-;63241:52;;63304:16;63323:30;63349:3;63323:21;63335:8;;63323:7;:11;;:21;;;;:::i;:30::-;63304:49;-1:-1:-1;63364:16:0;63383:36;63304:49;63383:22;:7;63395:9;63383:11;:22::i;:::-;:26;;:36::i;:::-;63364:55;;63470:26;63486:9;63470:15;:26::i;:::-;63544:11;;63536:39;;-1:-1:-1;;;;;63544:11:0;;;;63536:39;;;;;63566:8;;63544:11;63536:39;63544:11;63536:39;63566:8;63544:11;63536:39;;;;;;;;;;;;;;;;;;;;;63204:379;;;63153:430;:::o;34497:352::-;34654:28;34664:4;34670:2;34674:7;34654:9;:28::i;:::-;34715:48;34738:4;34744:2;34748:7;34757:5;34715:22;:48::i;:::-;34693:148;;;;-1:-1:-1;;;34693:148:0;;;;;;;:::i;57865:114::-;57925:13;57958;57951:20;;;;;:::i;7938:723::-;7994:13;8215:5;8224:1;8215:10;8211:53;;-1:-1:-1;;8242:10:0;;;;;;;;;;;;-1:-1:-1;;;8242:10:0;;;;;7938:723::o;8211:53::-;8289:5;8274:12;8330:78;8337:9;;8330:78;;8363:8;;;;:::i;:::-;;-1:-1:-1;8386:10:0;;-1:-1:-1;8394:2:0;8386:10;;:::i;:::-;;;8330:78;;;8418:19;8450:6;8440:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8440:17:0;;8418:39;;8468:154;8475:10;;8468:154;;8502:11;8512:1;8502:11;;:::i;:::-;;-1:-1:-1;8571:10:0;8579:2;8571:5;:10;:::i;:::-;8558:24;;:2;:24;:::i;:::-;8545:39;;8528:6;8535;8528:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8528:56:0;;;;;;;;-1:-1:-1;8599:11:0;8608:2;8599:11;;:::i;:::-;;;8468:154;;4722:98;4780:7;4807:5;4811:1;4807;:5;:::i;44244:589::-;-1:-1:-1;;;;;44450:18:0;;44446:187;;44485:40;44517:7;45660:10;:17;;45633:24;;;;:15;:24;;;;;:44;;;45688:24;;;;;;;;;;;;45556:164;44485:40;44446:187;;;44555:2;-1:-1:-1;;;;;44547:10:0;:4;-1:-1:-1;;;;;44547:10:0;;44543:90;;44574:47;44607:4;44613:7;44574:32;:47::i;:::-;-1:-1:-1;;;;;44647:16:0;;44643:183;;44680:45;44717:7;44680:36;:45::i;44643:183::-;44753:4;-1:-1:-1;;;;;44747:10:0;:2;-1:-1:-1;;;;;44747:10:0;;44743:83;;44774:40;44802:2;44806:7;44774:27;:40::i;65521:172::-;65578:7;65602:12;65615:6;65602:20;;;;;;;:::i;:::-;;;:25;65598:87;;65636:12;65649:6;65636:20;;;;;;;:::i;:::-;;;;65521:172;-1:-1:-1;;65521:172:0:o;65598:87::-;-1:-1:-1;65679:6:0;65521:172::o;36250:110::-;36326:26;36336:2;36340:7;36326:26;;;;;;;;;;;;:9;:26::i;4323:98::-;4381:7;4408:5;4412:1;4408;:5;:::i;40024:980::-;40179:4;-1:-1:-1;;;;;40200:13:0;;12654:20;12702:8;40196:801;;40253:175;;-1:-1:-1;;;40253:175:0;;-1:-1:-1;;;;;40253:36:0;;;;;:175;;9842:10;;40347:4;;40374:7;;40404:5;;40253:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40253:175:0;;;;;;;;-1:-1:-1;;40253:175:0;;;;;;;;;;;;:::i;:::-;;;40232:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40611:6;:13;40628:1;40611:18;40607:320;;40654:108;;-1:-1:-1;;;40654:108:0;;;;;;;:::i;40607:320::-;40877:6;40871:13;40862:6;40858:2;40854:15;40847:38;40232:710;-1:-1:-1;;;;;;40492:51:0;-1:-1:-1;;;40492:51:0;;-1:-1:-1;40485:58:0;;40196:801;-1:-1:-1;40981:4:0;40024:980;;;;;;:::o;46347:1002::-;46627:22;46677:1;46652:22;46669:4;46652:16;:22::i;:::-;:26;;;;:::i;:::-;46689:18;46710:26;;;:17;:26;;;;;;46627:51;;-1:-1:-1;46843:28:0;;;46839:328;;-1:-1:-1;;;;;46910:18:0;;46888:19;46910:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46961:30;;;;;;:44;;;47078:30;;:17;:30;;;;;:43;;;46839:328;-1:-1:-1;47263:26:0;;;;:17;:26;;;;;;;;47256:33;;;-1:-1:-1;;;;;47307:18:0;;;;;:12;:18;;;;;:34;;;;;;;47300:41;46347:1002::o;47644:1079::-;47922:10;:17;47897:22;;47922:21;;47942:1;;47922:21;:::i;:::-;47954:18;47975:24;;;:15;:24;;;;;;48348:10;:26;;47897:46;;-1:-1:-1;47975:24:0;;47897:46;;48348:26;;;;;;:::i;:::-;;;;;;;;;48326:48;;48412:11;48387:10;48398;48387:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48492:28;;;:15;:28;;;;;;;:41;;;48664:24;;;;;48657:31;48699:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47715:1008;;;47644:1079;:::o;45134:221::-;45219:14;45236:20;45253:2;45236:16;:20::i;:::-;-1:-1:-1;;;;;45267:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45312:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45134:221:0:o;36587:321::-;36717:18;36723:2;36727:7;36717:5;:18::i;:::-;36768:54;36799:1;36803:2;36807:7;36816:5;36768:22;:54::i;:::-;36746:154;;;;-1:-1:-1;;;36746:154:0;;;;;;;:::i;37244:382::-;-1:-1:-1;;;;;37324:16:0;;37316:61;;;;-1:-1:-1;;;37316:61:0;;24607:2:1;37316:61:0;;;24589:21:1;;;24626:18;;;24619:30;24685:34;24665:18;;;24658:62;24737:18;;37316:61:0;24405:356:1;37316:61:0;35227:4;35251:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35251:16:0;:30;37388:58;;;;-1:-1:-1;;;37388:58:0;;24968:2:1;37388:58:0;;;24950:21:1;25007:2;24987:18;;;24980:30;25046;25026:18;;;25019:58;25094:18;;37388:58:0;24766:352:1;37388:58:0;37459:45;37488:1;37492:2;37496:7;37459:20;:45::i;:::-;-1:-1:-1;;;;;37517:13:0;;;;;;:9;:13;;;;;:18;;37534:1;;37517:13;:18;;37534:1;;37517:18;:::i;:::-;;;;-1:-1:-1;;37546:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37546:21:0;-1:-1:-1;;;;;37546:21:0;;;;;;;;37585:33;;37546:16;;;37585:33;;37546:16;;37585:33;37244:382;;:::o;222:180:1:-;281:6;334:2;322:9;313:7;309:23;305:32;302:52;;;350:1;347;340:12;302:52;-1:-1:-1;373:23:1;;222:180;-1:-1:-1;222:180:1:o;589:131::-;-1:-1:-1;;;;;;663:32:1;;653:43;;643:71;;710:1;707;700:12;725:245;783:6;836:2;824:9;815:7;811:23;807:32;804:52;;;852:1;849;842:12;804:52;891:9;878:23;910:30;934:5;910:30;:::i;1167:118::-;1253:5;1246:13;1239:21;1232:5;1229:32;1219:60;;1275:1;1272;1265:12;1290:241;1346:6;1399:2;1387:9;1378:7;1374:23;1370:32;1367:52;;;1415:1;1412;1405:12;1367:52;1454:9;1441:23;1473:28;1495:5;1473:28;:::i;1536:250::-;1621:1;1631:113;1645:6;1642:1;1639:13;1631:113;;;1721:11;;;1715:18;1702:11;;;1695:39;1667:2;1660:10;1631:113;;;-1:-1:-1;;1778:1:1;1760:16;;1753:27;1536:250::o;1791:271::-;1833:3;1871:5;1865:12;1898:6;1893:3;1886:19;1914:76;1983:6;1976:4;1971:3;1967:14;1960:4;1953:5;1949:16;1914:76;:::i;:::-;2044:2;2023:15;-1:-1:-1;;2019:29:1;2010:39;;;;2051:4;2006:50;;1791:271;-1:-1:-1;;1791:271:1:o;2067:220::-;2216:2;2205:9;2198:21;2179:4;2236:45;2277:2;2266:9;2262:18;2254:6;2236:45;:::i;2292:131::-;-1:-1:-1;;;;;2367:31:1;;2357:42;;2347:70;;2413:1;2410;2403:12;2428:315;2496:6;2504;2557:2;2545:9;2536:7;2532:23;2528:32;2525:52;;;2573:1;2570;2563:12;2525:52;2612:9;2599:23;2631:31;2656:5;2631:31;:::i;:::-;2681:5;2733:2;2718:18;;;;2705:32;;-1:-1:-1;;;2428:315:1:o;2748:456::-;2825:6;2833;2841;2894:2;2882:9;2873:7;2869:23;2865:32;2862:52;;;2910:1;2907;2900:12;2862:52;2949:9;2936:23;2968:31;2993:5;2968:31;:::i;:::-;3018:5;-1:-1:-1;3075:2:1;3060:18;;3047:32;3088:33;3047:32;3088:33;:::i;:::-;2748:456;;3140:7;;-1:-1:-1;;;3194:2:1;3179:18;;;;3166:32;;2748:456::o;3209:127::-;3270:10;3265:3;3261:20;3258:1;3251:31;3301:4;3298:1;3291:15;3325:4;3322:1;3315:15;3341:632;3406:5;3436:18;3477:2;3469:6;3466:14;3463:40;;;3483:18;;:::i;:::-;3558:2;3552:9;3526:2;3612:15;;-1:-1:-1;;3608:24:1;;;3634:2;3604:33;3600:42;3588:55;;;3658:18;;;3678:22;;;3655:46;3652:72;;;3704:18;;:::i;:::-;3744:10;3740:2;3733:22;3773:6;3764:15;;3803:6;3795;3788:22;3843:3;3834:6;3829:3;3825:16;3822:25;3819:45;;;3860:1;3857;3850:12;3819:45;3910:6;3905:3;3898:4;3890:6;3886:17;3873:44;3965:1;3958:4;3949:6;3941;3937:19;3933:30;3926:41;;;;3341:632;;;;;:::o;3978:451::-;4047:6;4100:2;4088:9;4079:7;4075:23;4071:32;4068:52;;;4116:1;4113;4106:12;4068:52;4156:9;4143:23;4189:18;4181:6;4178:30;4175:50;;;4221:1;4218;4211:12;4175:50;4244:22;;4297:4;4289:13;;4285:27;-1:-1:-1;4275:55:1;;4326:1;4323;4316:12;4275:55;4349:74;4415:7;4410:2;4397:16;4392:2;4388;4384:11;4349:74;:::i;4434:247::-;4493:6;4546:2;4534:9;4525:7;4521:23;4517:32;4514:52;;;4562:1;4559;4552:12;4514:52;4601:9;4588:23;4620:31;4645:5;4620:31;:::i;4686:382::-;4751:6;4759;4812:2;4800:9;4791:7;4787:23;4783:32;4780:52;;;4828:1;4825;4818:12;4780:52;4867:9;4854:23;4886:31;4911:5;4886:31;:::i;:::-;4936:5;-1:-1:-1;4993:2:1;4978:18;;4965:32;5006:30;4965:32;5006:30;:::i;:::-;5055:7;5045:17;;;4686:382;;;;;:::o;5073:795::-;5168:6;5176;5184;5192;5245:3;5233:9;5224:7;5220:23;5216:33;5213:53;;;5262:1;5259;5252:12;5213:53;5301:9;5288:23;5320:31;5345:5;5320:31;:::i;:::-;5370:5;-1:-1:-1;5427:2:1;5412:18;;5399:32;5440:33;5399:32;5440:33;:::i;:::-;5492:7;-1:-1:-1;5546:2:1;5531:18;;5518:32;;-1:-1:-1;5601:2:1;5586:18;;5573:32;5628:18;5617:30;;5614:50;;;5660:1;5657;5650:12;5614:50;5683:22;;5736:4;5728:13;;5724:27;-1:-1:-1;5714:55:1;;5765:1;5762;5755:12;5714:55;5788:74;5854:7;5849:2;5836:16;5831:2;5827;5823:11;5788:74;:::i;:::-;5778:84;;;5073:795;;;;;;;:::o;5873:632::-;6044:2;6096:21;;;6166:13;;6069:18;;;6188:22;;;6015:4;;6044:2;6267:15;;;;6241:2;6226:18;;;6015:4;6310:169;6324:6;6321:1;6318:13;6310:169;;;6385:13;;6373:26;;6454:15;;;;6419:12;;;;6346:1;6339:9;6310:169;;;-1:-1:-1;6496:3:1;;5873:632;-1:-1:-1;;;;;;5873:632:1:o;6510:388::-;6578:6;6586;6639:2;6627:9;6618:7;6614:23;6610:32;6607:52;;;6655:1;6652;6645:12;6607:52;6694:9;6681:23;6713:31;6738:5;6713:31;:::i;:::-;6763:5;-1:-1:-1;6820:2:1;6805:18;;6792:32;6833:33;6792:32;6833:33;:::i;7361:356::-;7563:2;7545:21;;;7582:18;;;7575:30;7641:34;7636:2;7621:18;;7614:62;7708:2;7693:18;;7361:356::o;7722:380::-;7801:1;7797:12;;;;7844;;;7865:61;;7919:4;7911:6;7907:17;7897:27;;7865:61;7972:2;7964:6;7961:14;7941:18;7938:38;7935:161;;8018:10;8013:3;8009:20;8006:1;7999:31;8053:4;8050:1;8043:15;8081:4;8078:1;8071:15;7935:161;;7722:380;;;:::o;9347:413::-;9549:2;9531:21;;;9588:2;9568:18;;;9561:30;9627:34;9622:2;9607:18;;9600:62;-1:-1:-1;;;9693:2:1;9678:18;;9671:47;9750:3;9735:19;;9347:413::o;10590:127::-;10651:10;10646:3;10642:20;10639:1;10632:31;10682:4;10679:1;10672:15;10706:4;10703:1;10696:15;10722:184;10792:6;10845:2;10833:9;10824:7;10820:23;10816:32;10813:52;;;10861:1;10858;10851:12;10813:52;-1:-1:-1;10884:16:1;;10722:184;-1:-1:-1;10722:184:1:o;10911:127::-;10972:10;10967:3;10963:20;10960:1;10953:31;11003:4;11000:1;10993:15;11027:4;11024:1;11017:15;11043:135;11082:3;11103:17;;;11100:43;;11123:18;;:::i;:::-;-1:-1:-1;11170:1:1;11159:13;;11043:135::o;11183:251::-;11253:6;11306:2;11294:9;11285:7;11281:23;11277:32;11274:52;;;11322:1;11319;11312:12;11274:52;11354:9;11348:16;11373:31;11398:5;11373:31;:::i;11439:908::-;11673:4;11721:3;11710:9;11706:19;11752:6;11741:9;11734:25;11778:2;11816:3;11811:2;11800:9;11796:18;11789:31;11840:6;11875;11869:13;11906:6;11898;11891:22;11944:3;11933:9;11929:19;11922:26;;11983:2;11975:6;11971:15;11957:29;;12004:1;12014:195;12028:6;12025:1;12022:13;12014:195;;;12093:13;;-1:-1:-1;;;;;12089:39:1;12077:52;;12184:15;;;;12149:12;;;;12125:1;12043:9;12014:195;;;-1:-1:-1;;;;;;;12265:32:1;;;;12260:2;12245:18;;12238:60;-1:-1:-1;;;12329:2:1;12314:18;12307:34;12226:3;11439:908;-1:-1:-1;;11439:908:1:o;12631:245::-;12698:6;12751:2;12739:9;12730:7;12726:23;12722:32;12719:52;;;12767:1;12764;12757:12;12719:52;12799:9;12793:16;12818:28;12840:5;12818:28;:::i;13007:545::-;13109:2;13104:3;13101:11;13098:448;;;13145:1;13170:5;13166:2;13159:17;13215:4;13211:2;13201:19;13285:2;13273:10;13269:19;13266:1;13262:27;13256:4;13252:38;13321:4;13309:10;13306:20;13303:47;;;-1:-1:-1;13344:4:1;13303:47;13399:2;13394:3;13390:12;13387:1;13383:20;13377:4;13373:31;13363:41;;13454:82;13472:2;13465:5;13462:13;13454:82;;;13517:17;;;13498:1;13487:13;13454:82;;;13458:3;;;13007:545;;;:::o;13728:1352::-;13854:3;13848:10;13881:18;13873:6;13870:30;13867:56;;;13903:18;;:::i;:::-;13932:97;14022:6;13982:38;14014:4;14008:11;13982:38;:::i;:::-;13976:4;13932:97;:::i;:::-;14084:4;;14148:2;14137:14;;14165:1;14160:663;;;;14867:1;14884:6;14881:89;;;-1:-1:-1;14936:19:1;;;14930:26;14881:89;-1:-1:-1;;13685:1:1;13681:11;;;13677:24;13673:29;13663:40;13709:1;13705:11;;;13660:57;14983:81;;14130:944;;14160:663;12954:1;12947:14;;;12991:4;12978:18;;-1:-1:-1;;14196:20:1;;;14314:236;14328:7;14325:1;14322:14;14314:236;;;14417:19;;;14411:26;14396:42;;14509:27;;;;14477:1;14465:14;;;;14344:19;;14314:236;;;14318:3;14578:6;14569:7;14566:19;14563:201;;;14639:19;;;14633:26;-1:-1:-1;;14722:1:1;14718:14;;;14734:3;14714:24;14710:37;14706:42;14691:58;14676:74;;14563:201;-1:-1:-1;;;;;14810:1:1;14794:14;;;14790:22;14777:36;;-1:-1:-1;13728:1352:1:o;16308:399::-;16510:2;16492:21;;;16549:2;16529:18;;;16522:30;16588:34;16583:2;16568:18;;16561:62;-1:-1:-1;;;16654:2:1;16639:18;;16632:33;16697:3;16682:19;;16308:399::o;17478:168::-;17551:9;;;17582;;17599:15;;;17593:22;;17579:37;17569:71;;17620:18;;:::i;18008:127::-;18069:10;18064:3;18060:20;18057:1;18050:31;18100:4;18097:1;18090:15;18124:4;18121:1;18114:15;18140:120;18180:1;18206;18196:35;;18211:18;;:::i;:::-;-1:-1:-1;18245:9:1;;18140:120::o;19372:1256::-;19596:3;19634:6;19628:13;19660:4;19673:64;19730:6;19725:3;19720:2;19712:6;19708:15;19673:64;:::i;:::-;19800:13;;19759:16;;;;19822:68;19800:13;19759:16;19857:15;;;19822:68;:::i;:::-;19979:13;;19912:20;;;19952:1;;20017:36;19979:13;20017:36;:::i;:::-;20072:1;20089:18;;;20116:141;;;;20271:1;20266:337;;;;20082:521;;20116:141;-1:-1:-1;;20151:24:1;;20137:39;;20228:16;;20221:24;20207:39;;20196:51;;;-1:-1:-1;20116:141:1;;20266:337;20297:6;20294:1;20287:17;20345:2;20342:1;20332:16;20370:1;20384:169;20398:8;20395:1;20392:15;20384:169;;;20480:14;;20465:13;;;20458:37;20523:16;;;;20415:10;;20384:169;;;20388:3;;20584:8;20577:5;20573:20;20566:27;;20082:521;-1:-1:-1;20619:3:1;;19372:1256;-1:-1:-1;;;;;;;;;;19372:1256:1:o;21040:128::-;21107:9;;;21128:11;;;21125:37;;;21142:18;;:::i;22401:125::-;22466:9;;;22487:10;;;22484:36;;;22500:18;;:::i;22531:112::-;22563:1;22589;22579:35;;22594:18;;:::i;:::-;-1:-1:-1;22628:9:1;;22531:112::o;22648:136::-;22687:3;22715:5;22705:39;;22724:18;;:::i;:::-;-1:-1:-1;;;22760:18:1;;22648:136::o;22789:414::-;22991:2;22973:21;;;23030:2;23010:18;;;23003:30;23069:34;23064:2;23049:18;;23042:62;-1:-1:-1;;;23135:2:1;23120:18;;23113:48;23193:3;23178:19;;22789:414::o;23525:489::-;-1:-1:-1;;;;;23794:15:1;;;23776:34;;23846:15;;23841:2;23826:18;;23819:43;23893:2;23878:18;;23871:34;;;23941:3;23936:2;23921:18;;23914:31;;;23719:4;;23962:46;;23988:19;;23980:6;23962:46;:::i;:::-;23954:54;23525:489;-1:-1:-1;;;;;;23525:489:1:o;24019:249::-;24088:6;24141:2;24129:9;24120:7;24116:23;24112:32;24109:52;;;24157:1;24154;24147:12;24109:52;24189:9;24183:16;24208:30;24232:5;24208:30;:::i;24273:127::-;24334:10;24329:3;24325:20;24322:1;24315:31;24365:4;24362:1;24355:15;24389:4;24386:1;24379:15
Swarm Source
ipfs://a2d650b5baec8c793f29bc08638b5102d84f87247269270baea0e9bbe7e4e069
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.