ERC-721
Overview
Max Total Supply
24 SVG
Holders
15
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SVGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MintThatShit
Compiler Version
v0.5.14+commit.01f1aaa4
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-05 */ pragma solidity ^0.5.14; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: node_modules\@openzeppelin\contracts\ownership\Ownable.sol /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ 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 () internal { _owner = _msgSender(); emit OwnershipTransferred(address(0), _owner); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _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 onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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 onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Required interface of an ERC721 compliant contract. */ contract IERC721 is IERC165 { event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of NFTs in `owner`'s account. */ function balanceOf(address owner) public view returns (uint256 balance); /** * @dev Returns the owner of the NFT specified by `tokenId`. */ function ownerOf(uint256 tokenId) public view returns (address owner); /** * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to * another (`to`). * * * * Requirements: * - `from`, `to` cannot be zero. * - `tokenId` must be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this * NFT by either {approve} or {setApprovalForAll}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public; /** * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to * another (`to`). * * Requirements: * - If the caller is not `from`, it must be approved to move this NFT by * either {approve} or {setApprovalForAll}. */ function transferFrom(address from, address to, uint256 tokenId) public; function approve(address to, uint256 tokenId) public; function getApproved(uint256 tokenId) public view returns (address operator); function setApprovalForAll(address operator, bool _approved) public; function isApprovedForAll(address owner, address operator) public view returns (bool); function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public; } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ contract IERC721Receiver { /** * @notice Handle the receipt of an NFT * @dev The ERC721 smart contract calls this function on the recipient * after a {IERC721-safeTransferFrom}. This function MUST return the function selector, * otherwise the caller will revert the transaction. The selector to be * returned can be obtained as `this.onERC721Received.selector`. This * function MAY throw to revert and reject the transfer. * Note: the ERC721 contract address is always the message sender. * @param operator The address which called `safeTransferFrom` function * @param from The address which previously owned the token * @param tokenId The NFT identifier which is being transferred * @param data Additional data with no specified format * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` */ function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data) public returns (bytes4); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * This test is non-exhaustive, and there may be false-negatives: during the * execution of a contract's constructor, its address will be reported as * not containing 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. */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != 0x0 && codehash != accountHash); } /** * @dev Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @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]. * * _Available since v2.4.0._ */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } } /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath} * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never * directly accessed. */ library Counters { using SafeMath for uint256; 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 { counter._value += 1; } function decrement(Counter storage counter) internal { counter._value = counter._value.sub(1); } } /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from token ID to owner mapping (uint256 => address) private _tokenOwner; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to number of owned token mapping (address => Counters.Counter) private _ownedTokensCount; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; constructor () public { // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); } /** * @dev Gets the balance of the specified address. * @param owner address to query the balance of * @return uint256 representing the amount owned by the passed address */ function balanceOf(address owner) public view returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _ownedTokensCount[owner].current(); } /** * @dev Gets the owner of the specified token ID. * @param tokenId uint256 ID of the token to query the owner of * @return address currently marked as the owner of the given token ID */ function ownerOf(uint256 tokenId) public view returns (address) { address owner = _tokenOwner[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev Approves another address to transfer the given token ID * The zero address indicates there is no approved address. * There can only be one approved address per token at a given time. * Can only be called by the token owner or an approved operator. * @param to address to be approved for the given token ID * @param tokenId uint256 ID of the token to be approved */ function approve(address to, uint256 tokenId) public { address owner = 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" ); _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Gets the approved address for a token ID, or zero if no address set * Reverts if the token ID does not exist. * @param tokenId uint256 ID of the token to query the approval of * @return address currently approved for the given token ID */ function getApproved(uint256 tokenId) public view returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev Sets or unsets the approval of a given operator * An operator is allowed to transfer all tokens of the sender on their behalf. * @param to operator address to set the approval * @param approved representing the status of the approval to be set */ function setApprovalForAll(address to, bool approved) public { require(to != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][to] = approved; emit ApprovalForAll(_msgSender(), to, approved); } /** * @dev Tells whether an operator is approved by a given owner. * @param owner owner address which you want to query the approval of * @param operator operator address which you want to query the approval of * @return bool whether the given operator is approved by the given owner */ function isApprovedForAll(address owner, address operator) public view returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Transfers the ownership of a given token ID to another address. * Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * Requires the msg.sender to be the owner, approved, or operator. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function transferFrom(address from, address to, uint256 tokenId) public { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transferFrom(from, to, tokenId); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received}, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the msg.sender to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function safeTransferFrom(address from, address to, uint256 tokenId) public { safeTransferFrom(from, to, tokenId, ""); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received}, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the _msgSender() to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred * @param _data bytes data to send along with a safe transfer check */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransferFrom(from, to, tokenId, _data); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the msg.sender to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred * @param _data bytes data to send along with a safe transfer check */ function _safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) internal { _transferFrom(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether the specified token exists. * @param tokenId uint256 ID of the token to query the existence of * @return bool whether the token exists */ function _exists(uint256 tokenId) internal view returns (bool) { address owner = _tokenOwner[tokenId]; return owner != address(0); } /** * @dev Returns whether the given spender can transfer a given token ID. * @param spender address of the spender to query * @param tokenId uint256 ID of the token to be transferred * @return bool whether the msg.sender is approved for the given token ID, * is an operator of the owner, or is the owner of the token */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Internal function to safely mint a new token. * Reverts if the given token ID already exists. * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted */ function _safeMint(address to, uint256 tokenId) internal { _safeMint(to, tokenId, ""); } /** * @dev Internal function to safely mint a new token. * Reverts if the given token ID already exists. * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted * @param _data bytes data to send along with a safe transfer check */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Internal function to mint a new token. * Reverts if the given token ID already exists. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted */ function _mint(address to, uint256 tokenId) internal { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _tokenOwner[tokenId] = to; _ownedTokensCount[to].increment(); emit Transfer(address(0), to, tokenId); } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * Deprecated, use {_burn} instead. * @param owner owner of the token to burn * @param tokenId uint256 ID of the token being burned */ function _burn(address owner, uint256 tokenId) internal { require(ownerOf(tokenId) == owner, "ERC721: burn of token that is not own"); _clearApproval(tokenId); _ownedTokensCount[owner].decrement(); _tokenOwner[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * @param tokenId uint256 ID of the token being burned */ function _burn(uint256 tokenId) internal { _burn(ownerOf(tokenId), tokenId); } /** * @dev Internal function to transfer ownership of a given token ID to another address. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function _transferFrom(address from, address to, uint256 tokenId) internal { require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _clearApproval(tokenId); _ownedTokensCount[from].decrement(); _ownedTokensCount[to].increment(); _tokenOwner[tokenId] = to; emit Transfer(from, 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. * * This function is deprecated. * @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) internal returns (bool) { if (!to.isContract()) { return true; } bytes4 retval = IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data); return (retval == _ERC721_RECEIVED); } /** * @dev Private function to clear current approval of a given token ID. * @param tokenId uint256 ID of the token to be transferred */ function _clearApproval(uint256 tokenId) private { if (_tokenApprovals[tokenId] != address(0)) { _tokenApprovals[tokenId] = address(0); } } } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract IERC721Enumerable is IERC721 { function totalSupply() public view returns (uint256); function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256 tokenId); function tokenByIndex(uint256 index) public view returns (uint256); } /** * @title ERC-721 Non-Fungible Token with optional enumeration extension logic * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721Enumerable is Context, ERC165, ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => 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; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Constructor function. */ constructor () public { // register the supported interface to conform to ERC721Enumerable via ERC165 _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @dev Gets the token ID at a given index of the tokens list of the requested owner. * @param owner address owning the tokens list to be accessed * @param index uint256 representing the index to be accessed of the requested tokens list * @return uint256 token ID at the given index of the tokens list owned by the requested address */ function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256) { require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev Gets the total amount of tokens stored by the contract. * @return uint256 representing the total amount of tokens */ function totalSupply() public view returns (uint256) { return _allTokens.length; } /** * @dev Gets the token ID at a given index of all the tokens in this contract * Reverts if the index is greater or equal to the total number of tokens. * @param index uint256 representing the index to be accessed of the tokens list * @return uint256 token ID at the given index of the tokens list */ function tokenByIndex(uint256 index) public view returns (uint256) { require(index < totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Internal function to transfer ownership of a given token ID to another address. * As opposed to transferFrom, this imposes no restrictions on msg.sender. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function _transferFrom(address from, address to, uint256 tokenId) internal { super._transferFrom(from, to, tokenId); _removeTokenFromOwnerEnumeration(from, tokenId); _addTokenToOwnerEnumeration(to, tokenId); } /** * @dev Internal function to mint a new token. * Reverts if the given token ID already exists. * @param to address the beneficiary that will own the minted token * @param tokenId uint256 ID of the token to be minted */ function _mint(address to, uint256 tokenId) internal { super._mint(to, tokenId); _addTokenToOwnerEnumeration(to, tokenId); _addTokenToAllTokensEnumeration(tokenId); } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * Deprecated, use {ERC721-_burn} instead. * @param owner owner of the token to burn * @param tokenId uint256 ID of the token being burned */ function _burn(address owner, uint256 tokenId) internal { super._burn(owner, tokenId); _removeTokenFromOwnerEnumeration(owner, tokenId); // Since tokenId will be deleted, we can clear its slot in _ownedTokensIndex to trigger a gas refund _ownedTokensIndex[tokenId] = 0; _removeTokenFromAllTokensEnumeration(tokenId); } /** * @dev Gets the list of token IDs of the requested owner. * @param owner address owning the tokens * @return uint256[] List of token IDs owned by the requested address */ function _tokensOfOwner(address owner) internal view returns (uint256[] storage) { return _ownedTokens[owner]; } /** * @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 { _ownedTokensIndex[tokenId] = _ownedTokens[to].length; _ownedTokens[to].push(tokenId); } /** * @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 = _ownedTokens[from].length.sub(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 _ownedTokens[from].length--; // Note that _ownedTokensIndex[tokenId] hasn't been cleared: it still points to the old slot (now occupied by // lastTokenId, or just over the end of the array if the token was the last one). } /** * @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.sub(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 _allTokens.length--; _allTokensIndex[tokenId] = 0; } } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract IERC721Metadata is IERC721 { function name() external view returns (string memory); function symbol() external view returns (string memory); function tokenURI(uint256 tokenId) external view returns (string memory); } contract ERC721Metadata is Context, ERC165, ERC721, IERC721Metadata { // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /** * @dev Constructor function */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721_METADATA); } /** * @dev Gets the token name. * @return string representing the token name */ function name() external view returns (string memory) { return _name; } /** * @dev Gets the token symbol. * @return string representing the token symbol */ function symbol() external view returns (string memory) { return _symbol; } /** * @dev Returns an URI for a given token ID. * Throws if the token ID does not exist. May return an empty string. * @param tokenId uint256 ID of the token to query */ /** * @dev Internal function to set the token URI for a given token. * Reverts if the token ID does not exist. * @param tokenId uint256 ID of the token to set its URI * @param uri string URI to assign */ function _setTokenURI(uint256 tokenId, string memory uri) internal { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = uri; } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * Deprecated, use _burn(uint256) instead. * @param owner owner of the token to burn * @param tokenId uint256 ID of the token being burned by the msg.sender */ function _burn(address owner, uint256 tokenId) internal { super._burn(owner, tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } /** * @title Full ERC721 Token * @dev This implementation includes all the required and some optional functionality of the ERC721 standard * Moreover, it includes approve all functionality using operator terminology. * * See https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721Full is ERC721, ERC721Enumerable, ERC721Metadata { constructor (string memory name, string memory symbol) public ERC721Metadata(name, symbol) { // solhint-disable-previous-line no-empty-blocks } } interface SquigglyWTF { function ownerOf(uint256 tokenId) external view returns (address owner); function balanceOf(address owner) external view returns (uint256 balance); } interface Avastars { function balanceOf(address owner) external view returns (uint256 balance); } contract MintThatShit is ERC721Full, Ownable { using SafeMath for uint256; uint256 public totalArtPieces; string public tokenReferenceURI; uint256 public creationFee; bool public founderMinting; bool public promoPeriodExpired; bool public ribbonCut; SquigglyWTF private squiggly = SquigglyWTF(0x36F379400DE6c6BCDF4408B282F8b685c56adc60); Avastars private avastar = Avastars(0xF3E778F839934fC819cFA1040AabaCeCBA01e049); mapping (uint256 => string) internal nftTitleStorage; mapping (uint256 => string) internal nftCreatorStorage; mapping (uint256 => string) internal nftDescriptionStorage; mapping (uint256 => string) internal nftSVGStorage; constructor() ERC721Full("Mint That Shit", "SVG") public { tokenReferenceURI = "https://mintthatshit.azurewebsites.net/api/HttpTrigger?id="; creationFee = 250000000000000000; founderMinting = true; promoPeriodExpired = false; } function getCoreMetadata(uint256 tokenID) public view returns (string memory titleByID, string memory creatorByID, string memory descriptionByID, uint256 lengthByID) { titleByID = nftTitleStorage[tokenID]; creatorByID = nftCreatorStorage[tokenID]; descriptionByID = nftDescriptionStorage[tokenID]; lengthByID = getStringLength(tokenID); } function getSVG(uint256 tokenID) public view returns (string memory nftSVGByID) { nftSVGByID = nftSVGStorage[tokenID]; } function updateURI(string memory newURI) public onlyOwner { tokenReferenceURI = newURI; } function createNFT(string memory title, string memory creator, string memory description, string memory SVG) public payable { require(ribbonCut == true); require(onChainGang(msg.sender) == true || promoPeriodExpired == true); require(founderMinting == false || totalArtPieces < 100); require(msg.value == creationFee); totalArtPieces = totalArtPieces + 1; nftTitleStorage[totalArtPieces] = title; nftCreatorStorage[totalArtPieces] = creator; nftDescriptionStorage[totalArtPieces] = description; nftSVGStorage[totalArtPieces] = SVG; _mint(msg.sender, totalArtPieces); } function mintPromo(string memory title, string memory creator, string memory description, string memory SVG) public onlyOwner { totalArtPieces = totalArtPieces + 1; nftTitleStorage[totalArtPieces] = title; nftCreatorStorage[totalArtPieces] = creator; nftDescriptionStorage[totalArtPieces] = description; nftSVGStorage[totalArtPieces] = SVG; uint256 squigglyID = uint256(keccak256(abi.encodePacked(blockhash( block.number -1)))) % 100; address luckyBastard = squiggly.ownerOf(squigglyID); _mint(luckyBastard, totalArtPieces); } function onChainGang(address minter) public view returns (bool){ if(squiggly.balanceOf(minter) >= 1 || avastar.balanceOf(minter) >= 25){ return true; } } function allowSquiggliers() public onlyOwner { ribbonCut = true; } function getStringLength(uint256 tokenID) private view returns (uint length) { string memory _s; _s = getSVG(tokenID); bytes memory bs = bytes(_s); length = bs.length; } function allowAllMinters() public onlyOwner { promoPeriodExpired = true; } function foundersMinted() public onlyOwner { founderMinting = false; } function withdraw(address payable withdrawAddress) public onlyOwner { withdrawAddress.transfer(address(this).balance); } function updateFee(uint newCreationFee) public onlyOwner { creationFee = newCreationFee; } function extendText(uint256 tokenID, string memory nftSVGExtend) public { require(ownerOf(tokenID) == msg.sender); string memory extendedSVG = strConcat(nftSVGStorage[tokenID], nftSVGExtend); nftSVGStorage[tokenID] = extendedSVG; } function tokenURI(uint256 tokenID) external view returns (string memory) { return string(abi.encodePacked(tokenReferenceURI, integerToString(tokenID))); } function integerToString(uint _i) internal pure returns (string memory) { if (_i == 0) { return "0"; } uint j = _i; uint len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint k = len - 1; while (_i != 0) { bstr[k--] = byte(uint8(48 + _i % 10)); _i /= 10; } return string(bstr); } function strConcat(string memory _a, string memory _b) internal pure returns(string memory result) { result = string(abi.encodePacked(bytes(_a), bytes(_b))); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"payable":false,"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"},{"constant":false,"inputs":[],"name":"allowAllMinters","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"allowSquiggliers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"title","type":"string"},{"internalType":"string","name":"creator","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"SVG","type":"string"}],"name":"createNFT","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"creationFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"string","name":"nftSVGExtend","type":"string"}],"name":"extendText","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"founderMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"foundersMinted","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"getCoreMetadata","outputs":[{"internalType":"string","name":"titleByID","type":"string"},{"internalType":"string","name":"creatorByID","type":"string"},{"internalType":"string","name":"descriptionByID","type":"string"},{"internalType":"uint256","name":"lengthByID","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"getSVG","outputs":[{"internalType":"string","name":"nftSVGByID","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"title","type":"string"},{"internalType":"string","name":"creator","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"SVG","type":"string"}],"name":"mintPromo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"onChainGang","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"promoPeriodExpired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ribbonCut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenReferenceURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalArtPieces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"newCreationFee","type":"uint256"}],"name":"updateFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"updateURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"withdrawAddress","type":"address"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052601080547636f379400de6c6bcdf4408b282f8b685c56adc600000006301000000600160b81b0319909116179055601180546001600160a01b03191673f3e778f839934fc819cfa1040aabacecba01e0491790553480156200006557600080fd5b50604080518082018252600e81526d135a5b9d08151a185d0814da1a5d60921b6020808301919091528251808401909352600383526253564760e81b90830152908181620000c36301ffc9a760e01b6001600160e01b03620001f716565b620000de6380ac58cd60e01b6001600160e01b03620001f716565b620000f963780e9d6360e01b6001600160e01b03620001f716565b81516200010e90600990602085019062000281565b5080516200012490600a90602084019062000281565b5062000140635b5e139f60e01b6001600160e01b03620001f716565b50505050620001546200027c60201b60201c565b600c80546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36040518060600160405280603a8152602001620032d2603a91398051620001d091600e9160209091019062000281565b506703782dace9d90000600f556010805461ff001960ff1990911660011716905562000323565b6001600160e01b0319808216141562000257576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002c457805160ff1916838001178555620002f4565b82800160010185558215620002f4579182015b82811115620002f4578251825591602001919060010190620002d7565b506200030292915062000306565b5090565b6200027e91905b808211156200030257600081556001016200030d565b612f9f80620003336000396000f3fe6080604052600436106102255760003560e01c806385fadf9411610123578063be985ac9116100ab578063efd779bd1161006f578063efd779bd14610f05578063f0658ac914610f1a578063f24bb64514610f2f578063f2fde38b14610f62578063f9366f2f14610f9557610225565b8063be985ac914610db0578063c30f4a5a14610dda578063c87b56dd14610e8b578063dce0b4e414610eb5578063e985e9c514610eca57610225565b80639012c4a8116100f25780639012c4a814610bad57806395d89b4114610bd75780639c0672cb14610bec578063a22cb46514610ca4578063b88d4fde14610cdf57610225565b806385fadf9414610b595780638cc7923814610b6e5780638da5cb5b14610b835780638f32d59b14610b9857610225565b806342842e0e116101b15780636d7222d6116101755780636d7222d6146108b457806370a0823114610ae7578063715018a614610b1a57806378954d1814610b2f5780637ea7608e14610b4457610225565b806342842e0e146107d55780634ccc5fc7146108185780634f6ccce71461082d57806351cff8d9146108575780636352211e1461088a57610225565b806318160ddd116101f857806318160ddd1461037d5780631df022e8146103a457806323b872dd146105e45780632f745c59146106275780633ee984821461066057610225565b806301ffc9a71461022a57806306fdde0314610272578063081812fc146102fc578063095ea7b314610342575b600080fd5b34801561023657600080fd5b5061025e6004803603602081101561024d57600080fd5b50356001600160e01b031916610faa565b604080519115158252519081900360200190f35b34801561027e57600080fd5b50610287610fcd565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c15781810151838201526020016102a9565b50505050905090810190601f1680156102ee5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030857600080fd5b506103266004803603602081101561031f57600080fd5b5035611064565b604080516001600160a01b039092168252519081900360200190f35b34801561034e57600080fd5b5061037b6004803603604081101561036557600080fd5b506001600160a01b0381351690602001356110c6565b005b34801561038957600080fd5b506103926111ee565b60408051918252519081900360200190f35b3480156103b057600080fd5b5061037b600480360360808110156103c757600080fd5b810190602081018135600160201b8111156103e157600080fd5b8201836020820111156103f357600080fd5b803590602001918460018302840111600160201b8311171561041457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561046657600080fd5b82018360208201111561047857600080fd5b803590602001918460018302840111600160201b8311171561049957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156104eb57600080fd5b8201836020820111156104fd57600080fd5b803590602001918460018302840111600160201b8311171561051e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561057057600080fd5b82018360208201111561058257600080fd5b803590602001918460018302840111600160201b831117156105a357600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506111f4945050505050565b3480156105f057600080fd5b5061037b6004803603606081101561060757600080fd5b506001600160a01b0381358116916020810135909116906040013561139f565b34801561063357600080fd5b506103926004803603604081101561064a57600080fd5b506001600160a01b0381351690602001356113fb565b34801561066c57600080fd5b5061068a6004803603602081101561068357600080fd5b503561147a565b60405180806020018060200180602001858152602001848103845288818151815260200191508051906020019080838360005b838110156106d55781810151838201526020016106bd565b50505050905090810190601f1680156107025780820380516001836020036101000a031916815260200191505b50848103835287518152875160209182019189019080838360005b8381101561073557818101518382015260200161071d565b50505050905090810190601f1680156107625780820380516001836020036101000a031916815260200191505b50848103825286518152865160209182019188019080838360005b8381101561079557818101518382015260200161077d565b50505050905090810190601f1680156107c25780820380516001836020036101000a031916815260200191505b5097505050505050505060405180910390f35b3480156107e157600080fd5b5061037b600480360360608110156107f857600080fd5b506001600160a01b03813581169160208101359091169060400135611663565b34801561082457600080fd5b5061025e61167e565b34801561083957600080fd5b506103926004803603602081101561085057600080fd5b5035611687565b34801561086357600080fd5b5061037b6004803603602081101561087a57600080fd5b50356001600160a01b03166116ed565b34801561089657600080fd5b50610326600480360360208110156108ad57600080fd5b503561176d565b61037b600480360360808110156108ca57600080fd5b810190602081018135600160201b8111156108e457600080fd5b8201836020820111156108f657600080fd5b803590602001918460018302840111600160201b8311171561091757600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561096957600080fd5b82018360208201111561097b57600080fd5b803590602001918460018302840111600160201b8311171561099c57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156109ee57600080fd5b820183602082011115610a0057600080fd5b803590602001918460018302840111600160201b83111715610a2157600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610a7357600080fd5b820183602082011115610a8557600080fd5b803590602001918460018302840111600160201b83111715610aa657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506117c7945050505050565b348015610af357600080fd5b5061039260048036036020811015610b0a57600080fd5b50356001600160a01b03166118e1565b348015610b2657600080fd5b5061037b611949565b348015610b3b57600080fd5b506102876119da565b348015610b5057600080fd5b5061037b611a68565b348015610b6557600080fd5b50610392611ac0565b348015610b7a57600080fd5b5061025e611ac6565b348015610b8f57600080fd5b50610326611ad4565b348015610ba457600080fd5b5061025e611ae3565b348015610bb957600080fd5b5061037b60048036036020811015610bd057600080fd5b5035611b09565b348015610be357600080fd5b50610287611b55565b348015610bf857600080fd5b5061037b60048036036040811015610c0f57600080fd5b81359190810190604081016020820135600160201b811115610c3057600080fd5b820183602082011115610c4257600080fd5b803590602001918460018302840111600160201b83111715610c6357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611bb6945050505050565b348015610cb057600080fd5b5061037b60048036036040811015610cc757600080fd5b506001600160a01b0381351690602001351515611c9c565b348015610ceb57600080fd5b5061037b60048036036080811015610d0257600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610d3c57600080fd5b820183602082011115610d4e57600080fd5b803590602001918460018302840111600160201b83111715610d6f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611da1945050505050565b348015610dbc57600080fd5b5061028760048036036020811015610dd357600080fd5b5035611df9565b348015610de657600080fd5b5061037b60048036036020811015610dfd57600080fd5b810190602081018135600160201b811115610e1757600080fd5b820183602082011115610e2957600080fd5b803590602001918460018302840111600160201b83111715610e4a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611e9a945050505050565b348015610e9757600080fd5b5061028760048036036020811015610eae57600080fd5b5035611ef4565b348015610ec157600080fd5b50610392611fc7565b348015610ed657600080fd5b5061025e60048036036040811015610eed57600080fd5b506001600160a01b0381358116916020013516611fcd565b348015610f1157600080fd5b5061025e611ffb565b348015610f2657600080fd5b5061037b61200a565b348015610f3b57600080fd5b5061025e60048036036020811015610f5257600080fd5b50356001600160a01b031661205d565b348015610f6e57600080fd5b5061037b60048036036020811015610f8557600080fd5b50356001600160a01b0316612176565b348015610fa157600080fd5b5061037b6121c9565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156110595780601f1061102e57610100808354040283529160200191611059565b820191906000526020600020905b81548152906001019060200180831161103c57829003601f168201915b505050505090505b90565b600061106f82612223565b6110aa5760405162461bcd60e51b815260040180806020018281038252602c815260200180612e78602c913960400191505060405180910390fd5b506000908152600260205260409020546001600160a01b031690565b60006110d18261176d565b9050806001600160a01b0316836001600160a01b031614156111245760405162461bcd60e51b8152600401808060200182810382526021815260200180612eed6021913960400191505060405180910390fd5b806001600160a01b0316611136612240565b6001600160a01b03161480611157575061115781611152612240565b611fcd565b6111925760405162461bcd60e51b8152600401808060200182810382526038815260200180612ded6038913960400191505060405180910390fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60075490565b6111fc611ae3565b61123b576040805162461bcd60e51b81526020600482018190526024820152600080516020612ea4833981519152604482015290519081900360640190fd5b600d8054600101908190556000908152601260209081526040909120855161126592870190612c61565b50600d546000908152601360209081526040909120845161128892860190612c61565b50600d54600090815260146020908152604090912083516112ab92850190612c61565b50600d54600090815260156020908152604090912082516112ce92840190612c61565b506040805160001943014060208083019190915282518083038201815291830190925280519101206000906064900690506000601060039054906101000a90046001600160a01b03166001600160a01b0316636352211e836040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561135a57600080fd5b505afa15801561136e573d6000803e3d6000fd5b505050506040513d602081101561138457600080fd5b5051600d54909150611397908290612244565b505050505050565b6113b06113aa612240565b82612261565b6113eb5760405162461bcd60e51b8152600401808060200182810382526031815260200180612f0e6031913960400191505060405180910390fd5b6113f6838383612305565b505050565b6000611406836118e1565b82106114435760405162461bcd60e51b815260040180806020018281038252602b815260200180612d1a602b913960400191505060405180910390fd5b6001600160a01b038316600090815260056020526040902080548390811061146757fe5b9060005260206000200154905092915050565b60008181526012602090815260408083208054825160026001831615610100026000190190921691909104601f810185900485028201850190935282815260609485948594919391908301828280156115145780601f106114e957610100808354040283529160200191611514565b820191906000526020600020905b8154815290600101906020018083116114f757829003601f168201915b5050506000888152601360209081526040918290208054835160026001831615610100026000190190921691909104601f810184900484028201840190945283815295995093509091508301828280156115af5780601f10611584576101008083540402835291602001916115af565b820191906000526020600020905b81548152906001019060200180831161159257829003601f168201915b5050506000888152601460209081526040918290208054835160026001831615610100026000190190921691909104601f8101849004840282018401909452838152959850935090915083018282801561164a5780601f1061161f5761010080835404028352916020019161164a565b820191906000526020600020905b81548152906001019060200180831161162d57829003601f168201915b5050505050915061165a85612324565b90509193509193565b6113f683838360405180602001604052806000815250611da1565b60105460ff1681565b60006116916111ee565b82106116ce5760405162461bcd60e51b815260040180806020018281038252602c815260200180612f3f602c913960400191505060405180910390fd5b600782815481106116db57fe5b90600052602060002001549050919050565b6116f5611ae3565b611734576040805162461bcd60e51b81526020600482018190526024820152600080516020612ea4833981519152604482015290519081900360640190fd5b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015611769573d6000803e3d6000fd5b5050565b6000818152600160205260408120546001600160a01b0316806117c15760405162461bcd60e51b8152600401808060200182810382526029815260200180612e4f6029913960400191505060405180910390fd5b92915050565b60105462010000900460ff1615156001146117e157600080fd5b6117ea3361205d565b151560011480611807575060105460ff6101009091041615156001145b61181057600080fd5b60105460ff16158061182457506064600d54105b61182d57600080fd5b600f54341461183b57600080fd5b600d8054600101908190556000908152601260209081526040909120855161186592870190612c61565b50600d546000908152601360209081526040909120845161188892860190612c61565b50600d54600090815260146020908152604090912083516118ab92850190612c61565b50600d54600090815260156020908152604090912082516118ce92840190612c61565b506118db33600d54612244565b50505050565b60006001600160a01b0382166119285760405162461bcd60e51b815260040180806020018281038252602a815260200180612e25602a913960400191505060405180910390fd5b6001600160a01b03821660009081526003602052604090206117c190612339565b611951611ae3565b611990576040805162461bcd60e51b81526020600482018190526024820152600080516020612ea4833981519152604482015290519081900360640190fd5b600c546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600c80546001600160a01b0319169055565b600e805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015611a605780601f10611a3557610100808354040283529160200191611a60565b820191906000526020600020905b815481529060010190602001808311611a4357829003601f168201915b505050505081565b611a70611ae3565b611aaf576040805162461bcd60e51b81526020600482018190526024820152600080516020612ea4833981519152604482015290519081900360640190fd5b6010805461ff001916610100179055565b600d5481565b601054610100900460ff1681565b600c546001600160a01b031690565b600c546000906001600160a01b0316611afa612240565b6001600160a01b031614905090565b611b11611ae3565b611b50576040805162461bcd60e51b81526020600482018190526024820152600080516020612ea4833981519152604482015290519081900360640190fd5b600f55565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156110595780601f1061102e57610100808354040283529160200191611059565b33611bc08361176d565b6001600160a01b031614611bd357600080fd5b6000828152601560209081526040918290208054835160026001831615610100026000190190921691909104601f8101849004840282018401909452838152606093611c7893919291830182828015611c6d5780601f10611c4257610100808354040283529160200191611c6d565b820191906000526020600020905b815481529060010190602001808311611c5057829003601f168201915b50505050508361233d565b600084815260156020908152604090912082519293506118db929091840190612c61565b611ca4612240565b6001600160a01b0316826001600160a01b03161415611d0a576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b8060046000611d17612240565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611d5b612240565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b611db2611dac612240565b83612261565b611ded5760405162461bcd60e51b8152600401808060200182810382526031815260200180612f0e6031913960400191505060405180910390fd5b6118db848484846123f8565b60008181526015602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015611e8e5780601f10611e6357610100808354040283529160200191611e8e565b820191906000526020600020905b815481529060010190602001808311611e7157829003601f168201915b50505050509050919050565b611ea2611ae3565b611ee1576040805162461bcd60e51b81526020600482018190526024820152600080516020612ea4833981519152604482015290519081900360640190fd5b805161176990600e906020840190612c61565b6060600e611f018361244a565b6040516020018083805460018160011615610100020316600290048015611f5f5780601f10611f3d576101008083540402835291820191611f5f565b820191906000526020600020905b815481529060010190602001808311611f4b575b5050825160208401908083835b60208310611f8b5780518252601f199092019160209182019101611f6c565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529050919050565b600f5481565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b60105462010000900460ff1681565b612012611ae3565b612051576040805162461bcd60e51b81526020600482018190526024820152600080516020612ea4833981519152604482015290519081900360640190fd5b6010805460ff19169055565b601054604080516370a0823160e01b81526001600160a01b0384811660048301529151600093600193630100000090910416916370a08231916024808301926020929190829003018186803b1580156120b557600080fd5b505afa1580156120c9573d6000803e3d6000fd5b505050506040513d60208110156120df57600080fd5b50511015806121695750601154604080516370a0823160e01b81526001600160a01b038581166004830152915160199392909216916370a0823191602480820192602092909190829003018186803b15801561213a57600080fd5b505afa15801561214e573d6000803e3d6000fd5b505050506040513d602081101561216457600080fd5b505110155b15610fc857506001610fc8565b61217e611ae3565b6121bd576040805162461bcd60e51b81526020600482018190526024820152600080516020612ea4833981519152604482015290519081900360640190fd5b6121c68161250b565b50565b6121d1611ae3565b612210576040805162461bcd60e51b81526020600482018190526024820152600080516020612ea4833981519152604482015290519081900360640190fd5b6010805462ff0000191662010000179055565b6000908152600160205260409020546001600160a01b0316151590565b3390565b61224e82826125ac565b61225882826126dd565b6117698161271b565b600061226c82612223565b6122a75760405162461bcd60e51b815260040180806020018281038252602c815260200180612dc1602c913960400191505060405180910390fd5b60006122b28361176d565b9050806001600160a01b0316846001600160a01b031614806122ed5750836001600160a01b03166122e284611064565b6001600160a01b0316145b806122fd57506122fd8185611fcd565b949350505050565b61231083838361275f565b61231a83826128a3565b6113f682826126dd565b6000606061233183611df9565b519392505050565b5490565b606082826040516020018083805190602001908083835b602083106123735780518252601f199092019160209182019101612354565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106123bb5780518252601f19909201916020918201910161239c565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052905092915050565b612403848484612305565b61240f84848484612998565b6118db5760405162461bcd60e51b8152600401808060200182810382526032815260200180612d456032913960400191505060405180910390fd5b60608161246f57506040805180820190915260018152600360fc1b6020820152610fc8565b8160005b811561248757600101600a82049150612473565b6060816040519080825280601f01601f1916602001820160405280156124b4576020820181803883390190505b50905060001982015b851561250257600a860660300160f81b828280600190039350815181106124e057fe5b60200101906001600160f81b031916908160001a905350600a860495506124bd565b50949350505050565b6001600160a01b0381166125505760405162461bcd60e51b8152600401808060200182810382526026815260200180612d776026913960400191505060405180910390fd5b600c546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216612607576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b61261081612223565b15612662576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b0387169081179091558352600390915290206126a190612aef565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b826001600160a01b03166127728261176d565b6001600160a01b0316146127b75760405162461bcd60e51b8152600401808060200182810382526029815260200180612ec46029913960400191505060405180910390fd5b6001600160a01b0382166127fc5760405162461bcd60e51b8152600401808060200182810382526024815260200180612d9d6024913960400191505060405180910390fd5b61280581612af8565b6001600160a01b038316600090815260036020526040902061282690612b33565b6001600160a01b038216600090815260036020526040902061284790612aef565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166000908152600560205260408120546128cd90600163ffffffff612b4a16565b600083815260066020526040902054909150808214612968576001600160a01b038416600090815260056020526040812080548490811061290a57fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b03168152602001908152602001600020838154811061294857fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b0384166000908152600560205260409020805490612991906000198301612cdf565b5050505050565b60006129ac846001600160a01b0316612b93565b6129b8575060016122fd565b6000846001600160a01b031663150b7a026129d1612240565b8887876040518563ffffffff1660e01b815260040180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612a56578181015183820152602001612a3e565b50505050905090810190601f168015612a835780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015612aa557600080fd5b505af1158015612ab9573d6000803e3d6000fd5b505050506040513d6020811015612acf57600080fd5b50516001600160e01b031916630a85bd0160e11b14915050949350505050565b80546001019055565b6000818152600260205260409020546001600160a01b0316156121c657600090815260026020526040902080546001600160a01b0319169055565b8054612b4690600163ffffffff612b4a16565b9055565b6000612b8c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612bca565b9392505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081158015906122fd5750141592915050565b60008184841115612c595760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612c1e578181015183820152602001612c06565b50505050905090810190601f168015612c4b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612ca257805160ff1916838001178555612ccf565b82800160010185558215612ccf579182015b82811115612ccf578251825591602001919060010190612cb4565b50612cdb929150612cff565b5090565b8154818355818111156113f6576000838152602090206113f69181019083015b61106191905b80821115612cdb5760008155600101612d0556fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e6473a265627a7a72315820d881034e3c21dae5a4339679f621072b443bd510b440fa519a1946825cee9c8b64736f6c634300050e003268747470733a2f2f6d696e7474686174736869742e617a75726577656273697465732e6e65742f6170692f48747470547269676765723f69643d
Deployed Bytecode
0x6080604052600436106102255760003560e01c806385fadf9411610123578063be985ac9116100ab578063efd779bd1161006f578063efd779bd14610f05578063f0658ac914610f1a578063f24bb64514610f2f578063f2fde38b14610f62578063f9366f2f14610f9557610225565b8063be985ac914610db0578063c30f4a5a14610dda578063c87b56dd14610e8b578063dce0b4e414610eb5578063e985e9c514610eca57610225565b80639012c4a8116100f25780639012c4a814610bad57806395d89b4114610bd75780639c0672cb14610bec578063a22cb46514610ca4578063b88d4fde14610cdf57610225565b806385fadf9414610b595780638cc7923814610b6e5780638da5cb5b14610b835780638f32d59b14610b9857610225565b806342842e0e116101b15780636d7222d6116101755780636d7222d6146108b457806370a0823114610ae7578063715018a614610b1a57806378954d1814610b2f5780637ea7608e14610b4457610225565b806342842e0e146107d55780634ccc5fc7146108185780634f6ccce71461082d57806351cff8d9146108575780636352211e1461088a57610225565b806318160ddd116101f857806318160ddd1461037d5780631df022e8146103a457806323b872dd146105e45780632f745c59146106275780633ee984821461066057610225565b806301ffc9a71461022a57806306fdde0314610272578063081812fc146102fc578063095ea7b314610342575b600080fd5b34801561023657600080fd5b5061025e6004803603602081101561024d57600080fd5b50356001600160e01b031916610faa565b604080519115158252519081900360200190f35b34801561027e57600080fd5b50610287610fcd565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c15781810151838201526020016102a9565b50505050905090810190601f1680156102ee5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030857600080fd5b506103266004803603602081101561031f57600080fd5b5035611064565b604080516001600160a01b039092168252519081900360200190f35b34801561034e57600080fd5b5061037b6004803603604081101561036557600080fd5b506001600160a01b0381351690602001356110c6565b005b34801561038957600080fd5b506103926111ee565b60408051918252519081900360200190f35b3480156103b057600080fd5b5061037b600480360360808110156103c757600080fd5b810190602081018135600160201b8111156103e157600080fd5b8201836020820111156103f357600080fd5b803590602001918460018302840111600160201b8311171561041457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561046657600080fd5b82018360208201111561047857600080fd5b803590602001918460018302840111600160201b8311171561049957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156104eb57600080fd5b8201836020820111156104fd57600080fd5b803590602001918460018302840111600160201b8311171561051e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561057057600080fd5b82018360208201111561058257600080fd5b803590602001918460018302840111600160201b831117156105a357600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506111f4945050505050565b3480156105f057600080fd5b5061037b6004803603606081101561060757600080fd5b506001600160a01b0381358116916020810135909116906040013561139f565b34801561063357600080fd5b506103926004803603604081101561064a57600080fd5b506001600160a01b0381351690602001356113fb565b34801561066c57600080fd5b5061068a6004803603602081101561068357600080fd5b503561147a565b60405180806020018060200180602001858152602001848103845288818151815260200191508051906020019080838360005b838110156106d55781810151838201526020016106bd565b50505050905090810190601f1680156107025780820380516001836020036101000a031916815260200191505b50848103835287518152875160209182019189019080838360005b8381101561073557818101518382015260200161071d565b50505050905090810190601f1680156107625780820380516001836020036101000a031916815260200191505b50848103825286518152865160209182019188019080838360005b8381101561079557818101518382015260200161077d565b50505050905090810190601f1680156107c25780820380516001836020036101000a031916815260200191505b5097505050505050505060405180910390f35b3480156107e157600080fd5b5061037b600480360360608110156107f857600080fd5b506001600160a01b03813581169160208101359091169060400135611663565b34801561082457600080fd5b5061025e61167e565b34801561083957600080fd5b506103926004803603602081101561085057600080fd5b5035611687565b34801561086357600080fd5b5061037b6004803603602081101561087a57600080fd5b50356001600160a01b03166116ed565b34801561089657600080fd5b50610326600480360360208110156108ad57600080fd5b503561176d565b61037b600480360360808110156108ca57600080fd5b810190602081018135600160201b8111156108e457600080fd5b8201836020820111156108f657600080fd5b803590602001918460018302840111600160201b8311171561091757600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561096957600080fd5b82018360208201111561097b57600080fd5b803590602001918460018302840111600160201b8311171561099c57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156109ee57600080fd5b820183602082011115610a0057600080fd5b803590602001918460018302840111600160201b83111715610a2157600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610a7357600080fd5b820183602082011115610a8557600080fd5b803590602001918460018302840111600160201b83111715610aa657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506117c7945050505050565b348015610af357600080fd5b5061039260048036036020811015610b0a57600080fd5b50356001600160a01b03166118e1565b348015610b2657600080fd5b5061037b611949565b348015610b3b57600080fd5b506102876119da565b348015610b5057600080fd5b5061037b611a68565b348015610b6557600080fd5b50610392611ac0565b348015610b7a57600080fd5b5061025e611ac6565b348015610b8f57600080fd5b50610326611ad4565b348015610ba457600080fd5b5061025e611ae3565b348015610bb957600080fd5b5061037b60048036036020811015610bd057600080fd5b5035611b09565b348015610be357600080fd5b50610287611b55565b348015610bf857600080fd5b5061037b60048036036040811015610c0f57600080fd5b81359190810190604081016020820135600160201b811115610c3057600080fd5b820183602082011115610c4257600080fd5b803590602001918460018302840111600160201b83111715610c6357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611bb6945050505050565b348015610cb057600080fd5b5061037b60048036036040811015610cc757600080fd5b506001600160a01b0381351690602001351515611c9c565b348015610ceb57600080fd5b5061037b60048036036080811015610d0257600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610d3c57600080fd5b820183602082011115610d4e57600080fd5b803590602001918460018302840111600160201b83111715610d6f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611da1945050505050565b348015610dbc57600080fd5b5061028760048036036020811015610dd357600080fd5b5035611df9565b348015610de657600080fd5b5061037b60048036036020811015610dfd57600080fd5b810190602081018135600160201b811115610e1757600080fd5b820183602082011115610e2957600080fd5b803590602001918460018302840111600160201b83111715610e4a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611e9a945050505050565b348015610e9757600080fd5b5061028760048036036020811015610eae57600080fd5b5035611ef4565b348015610ec157600080fd5b50610392611fc7565b348015610ed657600080fd5b5061025e60048036036040811015610eed57600080fd5b506001600160a01b0381358116916020013516611fcd565b348015610f1157600080fd5b5061025e611ffb565b348015610f2657600080fd5b5061037b61200a565b348015610f3b57600080fd5b5061025e60048036036020811015610f5257600080fd5b50356001600160a01b031661205d565b348015610f6e57600080fd5b5061037b60048036036020811015610f8557600080fd5b50356001600160a01b0316612176565b348015610fa157600080fd5b5061037b6121c9565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156110595780601f1061102e57610100808354040283529160200191611059565b820191906000526020600020905b81548152906001019060200180831161103c57829003601f168201915b505050505090505b90565b600061106f82612223565b6110aa5760405162461bcd60e51b815260040180806020018281038252602c815260200180612e78602c913960400191505060405180910390fd5b506000908152600260205260409020546001600160a01b031690565b60006110d18261176d565b9050806001600160a01b0316836001600160a01b031614156111245760405162461bcd60e51b8152600401808060200182810382526021815260200180612eed6021913960400191505060405180910390fd5b806001600160a01b0316611136612240565b6001600160a01b03161480611157575061115781611152612240565b611fcd565b6111925760405162461bcd60e51b8152600401808060200182810382526038815260200180612ded6038913960400191505060405180910390fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60075490565b6111fc611ae3565b61123b576040805162461bcd60e51b81526020600482018190526024820152600080516020612ea4833981519152604482015290519081900360640190fd5b600d8054600101908190556000908152601260209081526040909120855161126592870190612c61565b50600d546000908152601360209081526040909120845161128892860190612c61565b50600d54600090815260146020908152604090912083516112ab92850190612c61565b50600d54600090815260156020908152604090912082516112ce92840190612c61565b506040805160001943014060208083019190915282518083038201815291830190925280519101206000906064900690506000601060039054906101000a90046001600160a01b03166001600160a01b0316636352211e836040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561135a57600080fd5b505afa15801561136e573d6000803e3d6000fd5b505050506040513d602081101561138457600080fd5b5051600d54909150611397908290612244565b505050505050565b6113b06113aa612240565b82612261565b6113eb5760405162461bcd60e51b8152600401808060200182810382526031815260200180612f0e6031913960400191505060405180910390fd5b6113f6838383612305565b505050565b6000611406836118e1565b82106114435760405162461bcd60e51b815260040180806020018281038252602b815260200180612d1a602b913960400191505060405180910390fd5b6001600160a01b038316600090815260056020526040902080548390811061146757fe5b9060005260206000200154905092915050565b60008181526012602090815260408083208054825160026001831615610100026000190190921691909104601f810185900485028201850190935282815260609485948594919391908301828280156115145780601f106114e957610100808354040283529160200191611514565b820191906000526020600020905b8154815290600101906020018083116114f757829003601f168201915b5050506000888152601360209081526040918290208054835160026001831615610100026000190190921691909104601f810184900484028201840190945283815295995093509091508301828280156115af5780601f10611584576101008083540402835291602001916115af565b820191906000526020600020905b81548152906001019060200180831161159257829003601f168201915b5050506000888152601460209081526040918290208054835160026001831615610100026000190190921691909104601f8101849004840282018401909452838152959850935090915083018282801561164a5780601f1061161f5761010080835404028352916020019161164a565b820191906000526020600020905b81548152906001019060200180831161162d57829003601f168201915b5050505050915061165a85612324565b90509193509193565b6113f683838360405180602001604052806000815250611da1565b60105460ff1681565b60006116916111ee565b82106116ce5760405162461bcd60e51b815260040180806020018281038252602c815260200180612f3f602c913960400191505060405180910390fd5b600782815481106116db57fe5b90600052602060002001549050919050565b6116f5611ae3565b611734576040805162461bcd60e51b81526020600482018190526024820152600080516020612ea4833981519152604482015290519081900360640190fd5b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015611769573d6000803e3d6000fd5b5050565b6000818152600160205260408120546001600160a01b0316806117c15760405162461bcd60e51b8152600401808060200182810382526029815260200180612e4f6029913960400191505060405180910390fd5b92915050565b60105462010000900460ff1615156001146117e157600080fd5b6117ea3361205d565b151560011480611807575060105460ff6101009091041615156001145b61181057600080fd5b60105460ff16158061182457506064600d54105b61182d57600080fd5b600f54341461183b57600080fd5b600d8054600101908190556000908152601260209081526040909120855161186592870190612c61565b50600d546000908152601360209081526040909120845161188892860190612c61565b50600d54600090815260146020908152604090912083516118ab92850190612c61565b50600d54600090815260156020908152604090912082516118ce92840190612c61565b506118db33600d54612244565b50505050565b60006001600160a01b0382166119285760405162461bcd60e51b815260040180806020018281038252602a815260200180612e25602a913960400191505060405180910390fd5b6001600160a01b03821660009081526003602052604090206117c190612339565b611951611ae3565b611990576040805162461bcd60e51b81526020600482018190526024820152600080516020612ea4833981519152604482015290519081900360640190fd5b600c546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600c80546001600160a01b0319169055565b600e805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015611a605780601f10611a3557610100808354040283529160200191611a60565b820191906000526020600020905b815481529060010190602001808311611a4357829003601f168201915b505050505081565b611a70611ae3565b611aaf576040805162461bcd60e51b81526020600482018190526024820152600080516020612ea4833981519152604482015290519081900360640190fd5b6010805461ff001916610100179055565b600d5481565b601054610100900460ff1681565b600c546001600160a01b031690565b600c546000906001600160a01b0316611afa612240565b6001600160a01b031614905090565b611b11611ae3565b611b50576040805162461bcd60e51b81526020600482018190526024820152600080516020612ea4833981519152604482015290519081900360640190fd5b600f55565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156110595780601f1061102e57610100808354040283529160200191611059565b33611bc08361176d565b6001600160a01b031614611bd357600080fd5b6000828152601560209081526040918290208054835160026001831615610100026000190190921691909104601f8101849004840282018401909452838152606093611c7893919291830182828015611c6d5780601f10611c4257610100808354040283529160200191611c6d565b820191906000526020600020905b815481529060010190602001808311611c5057829003601f168201915b50505050508361233d565b600084815260156020908152604090912082519293506118db929091840190612c61565b611ca4612240565b6001600160a01b0316826001600160a01b03161415611d0a576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b8060046000611d17612240565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611d5b612240565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b611db2611dac612240565b83612261565b611ded5760405162461bcd60e51b8152600401808060200182810382526031815260200180612f0e6031913960400191505060405180910390fd5b6118db848484846123f8565b60008181526015602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015611e8e5780601f10611e6357610100808354040283529160200191611e8e565b820191906000526020600020905b815481529060010190602001808311611e7157829003601f168201915b50505050509050919050565b611ea2611ae3565b611ee1576040805162461bcd60e51b81526020600482018190526024820152600080516020612ea4833981519152604482015290519081900360640190fd5b805161176990600e906020840190612c61565b6060600e611f018361244a565b6040516020018083805460018160011615610100020316600290048015611f5f5780601f10611f3d576101008083540402835291820191611f5f565b820191906000526020600020905b815481529060010190602001808311611f4b575b5050825160208401908083835b60208310611f8b5780518252601f199092019160209182019101611f6c565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529050919050565b600f5481565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b60105462010000900460ff1681565b612012611ae3565b612051576040805162461bcd60e51b81526020600482018190526024820152600080516020612ea4833981519152604482015290519081900360640190fd5b6010805460ff19169055565b601054604080516370a0823160e01b81526001600160a01b0384811660048301529151600093600193630100000090910416916370a08231916024808301926020929190829003018186803b1580156120b557600080fd5b505afa1580156120c9573d6000803e3d6000fd5b505050506040513d60208110156120df57600080fd5b50511015806121695750601154604080516370a0823160e01b81526001600160a01b038581166004830152915160199392909216916370a0823191602480820192602092909190829003018186803b15801561213a57600080fd5b505afa15801561214e573d6000803e3d6000fd5b505050506040513d602081101561216457600080fd5b505110155b15610fc857506001610fc8565b61217e611ae3565b6121bd576040805162461bcd60e51b81526020600482018190526024820152600080516020612ea4833981519152604482015290519081900360640190fd5b6121c68161250b565b50565b6121d1611ae3565b612210576040805162461bcd60e51b81526020600482018190526024820152600080516020612ea4833981519152604482015290519081900360640190fd5b6010805462ff0000191662010000179055565b6000908152600160205260409020546001600160a01b0316151590565b3390565b61224e82826125ac565b61225882826126dd565b6117698161271b565b600061226c82612223565b6122a75760405162461bcd60e51b815260040180806020018281038252602c815260200180612dc1602c913960400191505060405180910390fd5b60006122b28361176d565b9050806001600160a01b0316846001600160a01b031614806122ed5750836001600160a01b03166122e284611064565b6001600160a01b0316145b806122fd57506122fd8185611fcd565b949350505050565b61231083838361275f565b61231a83826128a3565b6113f682826126dd565b6000606061233183611df9565b519392505050565b5490565b606082826040516020018083805190602001908083835b602083106123735780518252601f199092019160209182019101612354565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106123bb5780518252601f19909201916020918201910161239c565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052905092915050565b612403848484612305565b61240f84848484612998565b6118db5760405162461bcd60e51b8152600401808060200182810382526032815260200180612d456032913960400191505060405180910390fd5b60608161246f57506040805180820190915260018152600360fc1b6020820152610fc8565b8160005b811561248757600101600a82049150612473565b6060816040519080825280601f01601f1916602001820160405280156124b4576020820181803883390190505b50905060001982015b851561250257600a860660300160f81b828280600190039350815181106124e057fe5b60200101906001600160f81b031916908160001a905350600a860495506124bd565b50949350505050565b6001600160a01b0381166125505760405162461bcd60e51b8152600401808060200182810382526026815260200180612d776026913960400191505060405180910390fd5b600c546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216612607576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b61261081612223565b15612662576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b0387169081179091558352600390915290206126a190612aef565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b826001600160a01b03166127728261176d565b6001600160a01b0316146127b75760405162461bcd60e51b8152600401808060200182810382526029815260200180612ec46029913960400191505060405180910390fd5b6001600160a01b0382166127fc5760405162461bcd60e51b8152600401808060200182810382526024815260200180612d9d6024913960400191505060405180910390fd5b61280581612af8565b6001600160a01b038316600090815260036020526040902061282690612b33565b6001600160a01b038216600090815260036020526040902061284790612aef565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166000908152600560205260408120546128cd90600163ffffffff612b4a16565b600083815260066020526040902054909150808214612968576001600160a01b038416600090815260056020526040812080548490811061290a57fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b03168152602001908152602001600020838154811061294857fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b0384166000908152600560205260409020805490612991906000198301612cdf565b5050505050565b60006129ac846001600160a01b0316612b93565b6129b8575060016122fd565b6000846001600160a01b031663150b7a026129d1612240565b8887876040518563ffffffff1660e01b815260040180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612a56578181015183820152602001612a3e565b50505050905090810190601f168015612a835780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015612aa557600080fd5b505af1158015612ab9573d6000803e3d6000fd5b505050506040513d6020811015612acf57600080fd5b50516001600160e01b031916630a85bd0160e11b14915050949350505050565b80546001019055565b6000818152600260205260409020546001600160a01b0316156121c657600090815260026020526040902080546001600160a01b0319169055565b8054612b4690600163ffffffff612b4a16565b9055565b6000612b8c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612bca565b9392505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081158015906122fd5750141592915050565b60008184841115612c595760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612c1e578181015183820152602001612c06565b50505050905090810190601f168015612c4b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612ca257805160ff1916838001178555612ccf565b82800160010185558215612ccf579182015b82811115612ccf578251825591602001919060010190612cb4565b50612cdb929150612cff565b5090565b8154818355818111156113f6576000838152602090206113f69181019083015b61106191905b80821115612cdb5760008155600101612d0556fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e6473a265627a7a72315820d881034e3c21dae5a4339679f621072b443bd510b440fa519a1946825cee9c8b64736f6c634300050e0032
Deployed Bytecode Sourcemap
47024:5120:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18249:135;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18249:135:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18249:135:0;-1:-1:-1;;;;;;18249:135:0;;:::i;:::-;;;;;;;;;;;;;;;;;;44717:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44717:85:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;44717:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23110:204;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23110:204:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23110:204:0;;:::i;:::-;;;;-1:-1:-1;;;;;23110:204:0;;;;;;;;;;;;;;22392:425;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22392:425:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22392:425:0;;;;;;;;:::i;:::-;;36561:96;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36561:96:0;;;:::i;:::-;;;;;;;;;;;;;;;;49408:615;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49408:615:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;49408:615:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;49408:615:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;49408:615:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;49408:615:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;49408:615:0;;;;;;;;-1:-1:-1;49408:615:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;49408:615:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;49408:615:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;49408:615:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;49408:615:0;;;;;;;;-1:-1:-1;49408:615:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;49408:615:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;49408:615:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;49408:615:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;49408:615:0;;;;;;;;-1:-1:-1;49408:615:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;49408:615:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;49408:615:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;49408:615:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;49408:615:0;;-1:-1:-1;49408:615:0;;-1:-1:-1;;;;;49408:615:0:i;24793:292::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24793:292:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24793:292:0;;;;;;;;;;;;;;;;;:::i;36170:232::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36170:232:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;36170:232:0;;;;;;;;:::i;48039:379::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48039:379:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48039:379:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;48039:379:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48039:379:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;48039:379:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48039:379:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;48039:379:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25747:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25747:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25747:134:0;;;;;;;;;;;;;;;;;:::i;47222:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47222:26:0;;;:::i;37003:199::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37003:199:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37003:199:0;;:::i;50757:134::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50757:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;50757:134:0;-1:-1:-1;;;;;50757:134:0;;:::i;21733:228::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21733:228:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21733:228:0;;:::i;48691:705::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;48691:705:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;48691:705:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;48691:705:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;48691:705:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;48691:705:0;;;;;;;;-1:-1:-1;48691:705:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;48691:705:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;48691:705:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;48691:705:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;48691:705:0;;;;;;;;-1:-1:-1;48691:705:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;48691:705:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;48691:705:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;48691:705:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;48691:705:0;;;;;;;;-1:-1:-1;48691:705:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;48691:705:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;48691:705:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;48691:705:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;48691:705:0;;-1:-1:-1;48691:705:0;;-1:-1:-1;;;;;48691:705:0:i;21296:211::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21296:211:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21296:211:0;-1:-1:-1;;;;;21296:211:0;;:::i;2857:140::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2857:140:0;;;:::i;47151:31::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47151:31:0;;;:::i;50560:88::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50560:88:0;;;:::i;47115:29::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47115:29:0;;;:::i;47255:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47255:30:0;;;:::i;2046:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2046:79:0;;;:::i;2412:94::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2412:94:0;;;:::i;50899:105::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50899:105:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;50899:105:0;;:::i;44917:89::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44917:89:0;;;:::i;51020:263::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51020:263:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;51020:263:0;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;51020:263:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;51020:263:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;51020:263:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;51020:263:0;;-1:-1:-1;51020:263:0;;-1:-1:-1;;;;;51020:263:0:i;23615:254::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23615:254:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23615:254:0;;;;;;;;;;:::i;26618:272::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26618:272:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;26618:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;26618:272:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;26618:272:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;26618:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;26618:272:0;;-1:-1:-1;26618:272:0;;-1:-1:-1;;;;;26618:272:0:i;48430:134::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48430:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48430:134:0;;:::i;48576:103::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48576:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48576:103:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;48576:103:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;48576:103:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;48576:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;48576:103:0;;-1:-1:-1;48576:103:0;;-1:-1:-1;;;;;48576:103:0:i;51291:168::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51291:168:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;51291:168:0;;:::i;47189:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47189:26:0;;;:::i;24199:147::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24199:147:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24199:147:0;;;;;;;;;;:::i;47292:21::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47292:21:0;;;:::i;50660:84::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50660:84:0;;;:::i;50031:189::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50031:189:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;50031:189:0;-1:-1:-1;;;;;50031:189:0;;:::i;3152:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3152:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3152:109:0;-1:-1:-1;;;;;3152:109:0;;:::i;50228:80::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50228:80:0;;;:::i;18249:135::-;-1:-1:-1;;;;;;18343:33:0;;18319:4;18343:33;;;;;;;;;;;;;18249:135;;;;:::o;44717:85::-;44789:5;44782:12;;;;;;;;-1:-1:-1;;44782:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44756:13;;44782:12;;44789:5;;44782:12;;44789:5;44782:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44717:85;;:::o;23110:204::-;23169:7;23197:16;23205:7;23197;:16::i;:::-;23189:73;;;;-1:-1:-1;;;23189:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23282:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23282:24:0;;23110:204::o;22392:425::-;22456:13;22472:16;22480:7;22472;:16::i;:::-;22456:32;;22513:5;-1:-1:-1;;;;;22507:11:0;:2;-1:-1:-1;;;;;22507:11:0;;;22499:57;;;;-1:-1:-1;;;22499:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22593:5;-1:-1:-1;;;;;22577:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22577:21:0;;:62;;;;22602:37;22619:5;22626:12;:10;:12::i;:::-;22602:16;:37::i;:::-;22569:154;;;;-1:-1:-1;;;22569:154:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22736:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;22736:29:0;-1:-1:-1;;;;;22736:29:0;;;;;;;;;22781:28;;22736:24;;22781:28;;;;;;;22392:425;;;:::o;36561:96::-;36632:10;:17;36561:96;:::o;49408:615::-;2258:9;:7;:9::i;:::-;2250:54;;;;;-1:-1:-1;;;2250:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2250:54:0;;;;;;;;;;;;;;;49562:14;;;49579:1;49562:18;49545:35;;;;-1:-1:-1;49593:31:0;;;:15;:31;;;;;;;;:39;;;;;;;;:::i;:::-;-1:-1:-1;49661:14:0;;49643:33;;;;:17;:33;;;;;;;;:43;;;;;;;;:::i;:::-;-1:-1:-1;49719:14:0;;49697:37;;;;:21;:37;;;;;;;;:51;;;;;;;;:::i;:::-;-1:-1:-1;49773:14:0;;49759:29;;;;:13;:29;;;;;;;;:35;;;;;;;;:::i;:::-;-1:-1:-1;49854:45:0;;;-1:-1:-1;;49882:12:0;:15;49871:27;49854:45;;;;;;;;;;26:21:-1;;;22:32;;6:49;;49854:45:0;;;;;;49844:56;;;;;49815:18;;49904:3;;49836:71;49815:92;;49918:20;49941:8;;;;;;;;;-1:-1:-1;;;;;49941:8:0;-1:-1:-1;;;;;49941:16:0;;49958:10;49941:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49941:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;49941:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49941:28:0;50000:14;;49941:28;;-1:-1:-1;49980:35:0;;49941:28;;49980:5;:35::i;:::-;2315:1;;49408:615;;;;:::o;24793:292::-;24937:41;24956:12;:10;:12::i;:::-;24970:7;24937:18;:41::i;:::-;24929:103;;;;-1:-1:-1;;;24929:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25045:32;25059:4;25065:2;25069:7;25045:13;:32::i;:::-;24793:292;;;:::o;36170:232::-;36250:7;36286:16;36296:5;36286:9;:16::i;:::-;36278:5;:24;36270:80;;;;-1:-1:-1;;;36270:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36368:19:0;;;;;;:12;:19;;;;;:26;;36388:5;;36368:26;;;;;;;;;;;;;;36361:33;;36170:232;;;;:::o;48039:379::-;48185:18;48228:24;;;:15;:24;;;;;;;;48216:36;;;;;;;;;;;-1:-1:-1;;48216:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;48102:23;;;;;;48185:18;;48228:24;48216:36;;;48228:24;48216:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48277:26:0;;;;:17;:26;;;;;;;;;48263:40;;;;;;;;;;;-1:-1:-1;;48263:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;48216:36;;-1:-1:-1;48277:26:0;-1:-1:-1;48263:40:0;;-1:-1:-1;48263:40:0;;48277:26;48263:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48332:30:0;;;;:21;:30;;;;;;;;;48314:48;;;;;;;;;;;-1:-1:-1;;48314:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;48263:40;;-1:-1:-1;48332:30:0;-1:-1:-1;48314:48:0;;-1:-1:-1;48314:48:0;;48332:30;48314:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48386:24;48402:7;48386:15;:24::i;:::-;48373:37;;48039:379;;;;;:::o;25747:134::-;25834:39;25851:4;25857:2;25861:7;25834:39;;;;;;;;;;;;:16;:39::i;47222:26::-;;;;;;:::o;37003:199::-;37061:7;37097:13;:11;:13::i;:::-;37089:5;:21;37081:78;;;;-1:-1:-1;;;37081:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37177:10;37188:5;37177:17;;;;;;;;;;;;;;;;37170:24;;37003:199;;;:::o;50757:134::-;2258:9;:7;:9::i;:::-;2250:54;;;;;-1:-1:-1;;;2250:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2250:54:0;;;;;;;;;;;;;;;50836:47;;-1:-1:-1;;;;;50836:24:0;;;50861:21;50836:47;;;;;;;;;50861:21;50836:24;:47;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;50836:47:0;50757:134;:::o;21733:228::-;21788:7;21824:20;;;:11;:20;;;;;;-1:-1:-1;;;;;21824:20:0;21863:19;21855:73;;;;-1:-1:-1;;;21855:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21948:5;21733:228;-1:-1:-1;;21733:228:0:o;48691:705::-;48844:9;;;;;;;:17;;48857:4;48844:17;48836:26;;;;;;48881:23;48893:10;48881:11;:23::i;:::-;:31;;48908:4;48881:31;;:61;;-1:-1:-1;48916:18:0;;;;;;;;:26;;:18;:26;48881:61;48873:70;;;;;;48962:14;;;;:23;;:47;;;49006:3;48989:14;;:20;48962:47;48954:56;;;;;;49042:11;;49029:9;:24;49021:33;;;;;;49092:14;;;49109:1;49092:18;49075:35;;;;-1:-1:-1;49123:31:0;;;:15;:31;;;;;;;;:39;;;;;;;;:::i;:::-;-1:-1:-1;49191:14:0;;49173:33;;;;:17;:33;;;;;;;;:43;;;;;;;;:::i;:::-;-1:-1:-1;49249:14:0;;49227:37;;;;:21;:37;;;;;;;;:51;;;;;;;;:::i;:::-;-1:-1:-1;49303:14:0;;49289:29;;;;:13;:29;;;;;;;;:35;;;;;;;;:::i;:::-;;49345:33;49351:10;49363:14;;49345:5;:33::i;:::-;48691:705;;;;:::o;21296:211::-;21351:7;-1:-1:-1;;;;;21379:19:0;;21371:74;;;;-1:-1:-1;;;21371:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21465:24:0;;;;;;:17;:24;;;;;:34;;:32;:34::i;2857:140::-;2258:9;:7;:9::i;:::-;2250:54;;;;;-1:-1:-1;;;2250:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2250:54:0;;;;;;;;;;;;;;;2940:6;;2919:40;;2956:1;;-1:-1:-1;;;;;2940:6:0;;2919:40;;2956:1;;2919:40;2970:6;:19;;-1:-1:-1;;;;;;2970:19:0;;;2857:140::o;47151:31::-;;;;;;;;;;;;;;;-1:-1:-1;;47151:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50560:88::-;2258:9;:7;:9::i;:::-;2250:54;;;;;-1:-1:-1;;;2250:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2250:54:0;;;;;;;;;;;;;;;50615:18;:25;;-1:-1:-1;;50615:25:0;;;;;50560:88::o;47115:29::-;;;;:::o;47255:30::-;;;;;;;;;:::o;2046:79::-;2111:6;;-1:-1:-1;;;;;2111:6:0;2046:79;:::o;2412:94::-;2492:6;;2452:4;;-1:-1:-1;;;;;2492:6:0;2476:12;:10;:12::i;:::-;-1:-1:-1;;;;;2476:22:0;;2469:29;;2412:94;:::o;50899:105::-;2258:9;:7;:9::i;:::-;2250:54;;;;;-1:-1:-1;;;2250:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2250:54:0;;;;;;;;;;;;;;;50968:11;:28;50899:105::o;44917:89::-;44991:7;44984:14;;;;;;;;-1:-1:-1;;44984:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44958:13;;44984:14;;44991:7;;44984:14;;44991:7;44984:14;;;;;;;;;;;;;;;;;;;;;;;;51020:263;51131:10;51111:16;51119:7;51111;:16::i;:::-;-1:-1:-1;;;;;51111:30:0;;51103:39;;;;;;51191:22;;;;:13;:22;;;;;;;;;51181:47;;;;;;;;;;;-1:-1:-1;;51181:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;51153:25;;51181:47;;;;51191:22;51181:47;;51191:22;51181:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51215:12;51181:9;:47::i;:::-;51239:22;;;;:13;:22;;;;;;;;:36;;51153:75;;-1:-1:-1;51239:36:0;;:22;;:36;;;;:::i;23615:254::-;23701:12;:10;:12::i;:::-;-1:-1:-1;;;;;23695:18:0;:2;-1:-1:-1;;;;;23695:18:0;;;23687:56;;;;;-1:-1:-1;;;23687:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23795:8;23756:18;:32;23775:12;:10;:12::i;:::-;-1:-1:-1;;;;;23756:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23756:32:0;;;:36;;;;;;;;;;;;:47;;-1:-1:-1;;23756:47:0;;;;;;;;;;;23834:12;:10;:12::i;:::-;23819:42;;;;;;;;;;-1:-1:-1;;;;;23819:42:0;;;;;;;;;;;;;;23615:254;;:::o;26618:272::-;26733:41;26752:12;:10;:12::i;:::-;26766:7;26733:18;:41::i;:::-;26725:103;;;;-1:-1:-1;;;26725:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26839:43;26857:4;26863:2;26867:7;26876:5;26839:17;:43::i;48430:134::-;48534:22;;;;:13;:22;;;;;;;;;48521:35;;;;;;-1:-1:-1;;48521:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48484:24;;48521:35;;;48534:22;48521:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48430:134;;;:::o;48576:103::-;2258:9;:7;:9::i;:::-;2250:54;;;;;-1:-1:-1;;;2250:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2250:54:0;;;;;;;;;;;;;;;48645:26;;;;:17;;:26;;;;;:::i;51291:168::-;51349:13;51406:17;51425:24;51441:7;51425:15;:24::i;:::-;51389:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51389:61:0;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;51389:61:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;51389:61:0;;;51375:76;;51291:168;;;:::o;47189:26::-;;;;:::o;24199:147::-;-1:-1:-1;;;;;24303:25:0;;;24279:4;24303:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24199:147::o;47292:21::-;;;;;;;;;:::o;50660:84::-;2258:9;:7;:9::i;:::-;2250:54;;;;;-1:-1:-1;;;2250:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2250:54:0;;;;;;;;;;;;;;;50714:14;:22;;-1:-1:-1;;50714:22:0;;;50660:84::o;50031:189::-;50108:8;;:26;;;-1:-1:-1;;;50108:26:0;;-1:-1:-1;;;;;50108:26:0;;;;;;;;;50089:4;;50138:1;;50108:8;;;;;;:18;;:26;;;;;;;;;;;;;;:8;:26;;;5:2:-1;;;;30:1;27;20:12;5:2;50108:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;50108:26:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;50108:26:0;:31;;;:66;;-1:-1:-1;50143:7:0;;:25;;;-1:-1:-1;;;50143:25:0;;-1:-1:-1;;;;;50143:25:0;;;;;;;;;50172:2;;50143:7;;;;;:17;;:25;;;;;;;;;;;;;;;:7;:25;;;5:2:-1;;;;30:1;27;20:12;5:2;50143:25:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;50143:25:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;50143:25:0;:31;;50108:66;50105:108;;;-1:-1:-1;50197:4:0;50190:11;;3152:109;2258:9;:7;:9::i;:::-;2250:54;;;;;-1:-1:-1;;;2250:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2250:54:0;;;;;;;;;;;;;;;3225:28;3244:8;3225:18;:28::i;:::-;3152:109;:::o;50228:80::-;2258:9;:7;:9::i;:::-;2250:54;;;;;-1:-1:-1;;;2250:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2250:54:0;;;;;;;;;;;;;;;50284:9;:16;;-1:-1:-1;;50284:16:0;;;;;50228:80::o;28083:155::-;28140:4;28173:20;;;:11;:20;;;;;;-1:-1:-1;;;;;28173:20:0;28211:19;;;28083:155::o;807:98::-;887:10;807:98;:::o;38096:202::-;38160:24;38172:2;38176:7;38160:11;:24::i;:::-;38197:40;38225:2;38229:7;38197:27;:40::i;:::-;38250;38282:7;38250:31;:40::i;28608:333::-;28693:4;28718:16;28726:7;28718;:16::i;:::-;28710:73;;;;-1:-1:-1;;;28710:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28794:13;28810:16;28818:7;28810;:16::i;:::-;28794:32;;28856:5;-1:-1:-1;;;;;28845:16:0;:7;-1:-1:-1;;;;;28845:16:0;;:51;;;;28889:7;-1:-1:-1;;;;;28865:31:0;:20;28877:7;28865:11;:20::i;:::-;-1:-1:-1;;;;;28865:31:0;;28845:51;:87;;;;28900:32;28917:5;28924:7;28900:16;:32::i;:::-;28837:96;28608:333;-1:-1:-1;;;;28608:333:0:o;37586:245::-;37672:38;37692:4;37698:2;37702:7;37672:19;:38::i;:::-;37723:47;37756:4;37762:7;37723:32;:47::i;:::-;37783:40;37811:2;37815:7;37783:27;:40::i;50322:230::-;50386:11;50410:16;50452:15;50459:7;50452:6;:15::i;:::-;50535:9;;50322:230;-1:-1:-1;;;50322:230:0:o;17018:114::-;17110:14;;17018:114::o;51963:173::-;52040:20;52112:2;52123;52089:38;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;52089:38:0;;;;;;;;;;-1:-1:-1;52089:38:0;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;52089:38:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;52089:38:0;;;52073:55;;51963:173;;;;:::o;27609:272::-;27719:32;27733:4;27739:2;27743:7;27719:13;:32::i;:::-;27770:48;27793:4;27799:2;27803:7;27812:5;27770:22;:48::i;:::-;27762:111;;;;-1:-1:-1;;;27762:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51468:487;51525:13;51555:7;51551:50;;-1:-1:-1;51579:10:0;;;;;;;;;;;;-1:-1:-1;;;51579:10:0;;;;;;51551:50;51620:2;51611:6;51660:67;51667:6;;51660:67;;51689:5;;51713:2;51708:7;;;;51660:67;;;51737:17;51767:3;51757:14;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;51757:14:0;87:34:-1;135:17;;-1:-1;51757:14:0;-1:-1:-1;51737:34:0;-1:-1:-1;;;51791:7:0;;51817:101;51824:7;;51817:101;;51880:2;51875;:7;51870:2;:12;51859:25;;51847:4;51852:3;;;;;;;51847:9;;;;;;;;;;;:37;-1:-1:-1;;;;;51847:37:0;;;;;;;;-1:-1:-1;51904:2:0;51898:8;;;;51817:101;;;-1:-1:-1;51942:4:0;51468:487;-1:-1:-1;;;;51468:487:0:o;3367:229::-;-1:-1:-1;;;;;3441:22:0;;3433:73;;;;-1:-1:-1;;;3433:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3543:6;;3522:38;;-1:-1:-1;;;;;3522:38:0;;;;3543:6;;3522:38;;3543:6;;3522:38;3571:6;:17;;-1:-1:-1;;;;;;3571:17:0;-1:-1:-1;;;;;3571:17:0;;;;;;;;;;3367:229::o;30693:335::-;-1:-1:-1;;;;;30765:16:0;;30757:61;;;;;-1:-1:-1;;;30757:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30838:16;30846:7;30838;:16::i;:::-;30837:17;30829:58;;;;;-1:-1:-1;;;30829:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30900:20;;;;:11;:20;;;;;;;;:25;;-1:-1:-1;;;;;;30900:25:0;-1:-1:-1;;;;;30900:25:0;;;;;;;;30936:21;;:17;:21;;;;;:33;;:31;:33::i;:::-;30987;;31012:7;;-1:-1:-1;;;;;30987:33:0;;;31004:1;;30987:33;;31004:1;;30987:33;30693:335;;:::o;39593:186::-;-1:-1:-1;;;;;39707:16:0;;;;;;;:12;:16;;;;;;;;:23;;39678:26;;;:17;:26;;;;;:52;;;39741:16;;;39:1:-1;23:18;;45:23;;39741:30:0;;;;;;;;39593:186::o;39980:164::-;40084:10;:17;;40057:24;;;;:15;:24;;;;;:44;;;39:1:-1;23:18;;45:23;;40112:24:0;;;;;;;39980:164::o;32304:459::-;32418:4;-1:-1:-1;;;;;32398:24:0;:16;32406:7;32398;:16::i;:::-;-1:-1:-1;;;;;32398:24:0;;32390:78;;;;-1:-1:-1;;;32390:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32487:16:0;;32479:65;;;;-1:-1:-1;;;32479:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32557:23;32572:7;32557:14;:23::i;:::-;-1:-1:-1;;;;;32593:23:0;;;;;;:17;:23;;;;;:35;;:33;:35::i;:::-;-1:-1:-1;;;;;32639:21:0;;;;;;:17;:21;;;;;:33;;:31;:33::i;:::-;32685:20;;;;:11;:20;;;;;;:25;;-1:-1:-1;;;;;;32685:25:0;-1:-1:-1;;;;;32685:25:0;;;;;;;;;32728:27;;32685:20;;32728:27;;;;;;;32304:459;;;:::o;40771:1148::-;-1:-1:-1;;;;;41062:18:0;;41037:22;41062:18;;;:12;:18;;;;;:25;:32;;41092:1;41062:32;:29;:32;:::i;:::-;41105:18;41126:26;;;:17;:26;;;;;;41037:57;;-1:-1:-1;41259:28:0;;;41255:328;;-1:-1:-1;;;;;41326:18:0;;41304:19;41326:18;;;:12;:18;;;;;:34;;41345:14;;41326:34;;;;;;;;;;;;;;41304:56;;41410:11;41377:12;:18;41390:4;-1:-1:-1;;;;;41377:18:0;-1:-1:-1;;;;;41377:18:0;;;;;;;;;;;;41396:10;41377:30;;;;;;;;;;;;;;;;;;;:44;;;;41494:30;;;:17;:30;;;;;:43;;;41255:328;-1:-1:-1;;;;;41672:18:0;;;;;;:12;:18;;;;;:27;;;;;-1:-1:-1;;41672:27:0;;;:::i;:::-;;40771:1148;;;;:::o;33365:358::-;33487:4;33514:15;:2;-1:-1:-1;;;;;33514:13:0;;:15::i;:::-;33509:60;;-1:-1:-1;33553:4:0;33546:11;;33509:60;33581:13;33613:2;-1:-1:-1;;;;;33597:36:0;;33634:12;:10;:12::i;:::-;33648:4;33654:7;33663:5;33597:72;;;;;;;;;;;;;-1:-1:-1;;;;;33597:72:0;-1:-1:-1;;;;;33597:72:0;;;;;;-1:-1:-1;;;;;33597:72:0;-1:-1:-1;;;;;33597:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;33597:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33597:72:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;33597:72:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33597:72:0;-1:-1:-1;;;;;;33688:26:0;-1:-1:-1;;;33688:26:0;;-1:-1:-1;;33365:358:0;;;;;;:::o;17140:91::-;17204:19;;17222:1;17204:19;;;17140:91::o;33891:175::-;33991:1;33955:24;;;:15;:24;;;;;;-1:-1:-1;;;;;33955:24:0;:38;33951:108;;34045:1;34010:24;;;:15;:24;;;;;:37;;-1:-1:-1;;;;;;34010:37:0;;;33891:175::o;17239:110::-;17320:14;;:21;;17339:1;17320:21;:18;:21;:::i;:::-;17303:38;;17239:110::o;8792:136::-;8850:7;8877:43;8881:1;8884;8877:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;8870:50;8792:136;-1:-1:-1;;;8792:136:0:o;13480:810::-;13540:4;14199:20;;14042:66;14239:15;;;;;:42;;-1:-1:-1;14258:23:0;;;14231:51;-1:-1:-1;;13480:810:0:o;9265:192::-;9351:7;9387:12;9379:6;;;;9371:29;;;;-1:-1:-1;;;9371:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;9371:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9423:5:0;;;9265:192::o;47024:5120::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47024:5120:0;;;-1:-1:-1;47024:5120:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://d881034e3c21dae5a4339679f621072b443bd510b440fa519a1946825cee9c8b
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.