ERC-721
Overview
Max Total Supply
431 FCB
Holders
22
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FCBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FrameCBattle
Compiler Version
v0.5.1+commit.c8a2cb62
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-09-13 */ pragma solidity ^0.5.0; /** * @title SafeMath * @dev Math operations with safety checks that revert on error */ library SafeMath { /** * @dev Multiplies two numbers, reverts on 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-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two numbers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0); // Solidity only automatically asserts when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Adds two numbers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two numbers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @return the address of the owner. */ function owner() public view returns(address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner()); _; } /** * @return true if `msg.sender` is the owner of the contract. */ function isOwner() public view returns(bool) { return msg.sender == _owner; } /** * @dev Allows the current owner to relinquish control of the contract. * @notice Renouncing to ownership will leave the contract without an owner. * It will not be possible to call the functions with the `onlyOwner` * modifier anymore. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0)); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @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 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. * * > 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. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } } library Strings { function strConcat(string memory _a, string memory _b, string memory _c, string memory _d, string memory _e) internal pure returns (string memory) { bytes memory _ba = bytes(_a); bytes memory _bb = bytes(_b); bytes memory _bc = bytes(_c); bytes memory _bd = bytes(_d); bytes memory _be = bytes(_e); string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length); bytes memory babcde = bytes(abcde); uint k = 0; for (uint i = 0; i < _ba.length; i++) babcde[k++] = _ba[i]; for (uint i = 0; i < _bb.length; i++) babcde[k++] = _bb[i]; for (uint i = 0; i < _bc.length; i++) babcde[k++] = _bc[i]; for (uint i = 0; i < _bd.length; i++) babcde[k++] = _bd[i]; for (uint i = 0; i < _be.length; i++) babcde[k++] = _be[i]; return string(babcde); } function strConcat(string memory _a, string memory _b, string memory _c, string memory _d) internal pure returns (string memory) { return strConcat(_a, _b, _c, _d, ""); } function strConcat(string memory _a, string memory _b, string memory _c) internal pure returns (string memory) { return strConcat(_a, _b, _c, "", ""); } function strConcat(string memory _a, string memory _b) internal pure returns (string memory) { return strConcat(_a, _b, "", "", ""); } function uint2str(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); } } /** * @dev Interface of the ERC165 standard, as defined in the * [EIP](https://eips.ethereum.org/EIPS/eip-165). * * 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 * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * 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 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; } } /** * @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 `setApproveForAll`. */ 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 `setApproveForAll`. */ 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 `safeTransfer`. 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); } /** * @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 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 ERC721 is 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)')) == 0xe985e9c * 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(msg.sender == owner || isApprovedForAll(owner, msg.sender), "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 != msg.sender, "ERC721: approve to caller"); _operatorApprovals[msg.sender][to] = approved; emit ApprovalForAll(msg.sender, 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(msg.sender, 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 `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 `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) public { 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 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(uint256) 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 `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(msg.sender, 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 with optional enumeration extension logic * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721Enumerable is 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 _burn(uint256) 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; } } contract ERC721Metadata is ERC165, ERC721, IERC721Metadata { // Token name string private _name; // Token symbol string private _symbol; /* * 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 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); } } /** * @title Full ERC721 Token * This implementation includes all the required and some optional functionality of the ERC721 standard * Moreover, it includes approve all functionality using operator terminology * @dev 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 } } contract ERC721Ownable is Ownable , ERC721Full{ modifier OnlyOwnerOfTokenOrContract(uint256 tokenId){ require(isOwner() || msg.sender == ownerOf(tokenId)); _; } modifier OnlyOwnerOfToken(uint256 tokenId){ require(msg.sender == ownerOf(tokenId)); _; } } contract FrameCBattle is ERC721Ownable{ struct Card{ //get name and images from metadata uint256 cardNo; uint8 attack; uint8 hitPoint; uint8 rarity; uint8 cost; uint8 attribute; uint8 attackTYpe; uint8[] specials; bool isMaster; } Card[] cards; mapping(uint256=> uint256[]) cardNoToTokenIds; string tokenMetadataBaseURI = "https://blockchain.framecbattle.com/metadata/"; constructor() public ERC721Full("FrameCBattle", "FCB") {} //Feature: on next abi encoder update, we can use returns (Card) function getCard(uint256 tokenId) external view returns (uint256 cardNo,uint8 attack,uint8 hitPoint,uint8 cost,uint8 attribute,uint8 attackTYpe,uint8,uint8[] memory specials,bool isMaster){ Card memory card = cards[tokenId]; return (card.cardNo ,card.attack, card.hitPoint, card.rarity, card.cost, card.attribute, card.attackTYpe,card.specials,card.isMaster); } function getTokenIdsByCardNo(uint256 cardNo) external view returns(uint256[] memory){ uint256[] memory tokenIds = cardNoToTokenIds[cardNo]; return tokenIds; } function mint(uint256 cardNo,uint8 attack,uint8 hitPoint,uint8 rarity,uint8 cost, uint8 attribute, uint8 attackTYpe,uint8[] memory specials,bool isMaster) onlyOwner public{ uint256 tokenId = cards.push(Card(cardNo,attack, hitPoint, rarity, cost, attribute, attackTYpe, specials,isMaster)).sub(1); cardNoToTokenIds[cardNo].push(tokenId); super._mint(msg.sender, tokenId); } function mintAny(uint256 cardNo,uint8 attack,uint8 hitPoint,uint8 rarity,uint8 cost, uint8 attribute, uint8 attackTYpe,uint8[] calldata specials,bool isMaster,uint times) onlyOwner external{ for(uint i = 0;i<times;i++){ mint(cardNo,attack, hitPoint, rarity, cost, attribute, attackTYpe, specials,isMaster); } } function burn(uint256 tokenId) onlyOwner external{ super._burn(msg.sender, tokenId); } function resetTokenMetadataBaseURI(string calldata uri) onlyOwner external{ tokenMetadataBaseURI = uri; } /** * @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 */ function tokenURI(uint256 _tokenId) public view returns (string memory) { return Strings.strConcat( tokenMetadataBaseURI, Strings.uint2str(_tokenId) ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[{"name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"cardNo","type":"uint256"},{"name":"attack","type":"uint8"},{"name":"hitPoint","type":"uint8"},{"name":"rarity","type":"uint8"},{"name":"cost","type":"uint8"},{"name":"attribute","type":"uint8"},{"name":"attackTYpe","type":"uint8"},{"name":"specials","type":"uint8[]"},{"name":"isMaster","type":"bool"},{"name":"times","type":"uint256"}],"name":"mintAny","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenId","type":"uint256"}],"name":"getCard","outputs":[{"name":"cardNo","type":"uint256"},{"name":"attack","type":"uint8"},{"name":"hitPoint","type":"uint8"},{"name":"cost","type":"uint8"},{"name":"attribute","type":"uint8"},{"name":"attackTYpe","type":"uint8"},{"name":"","type":"uint8"},{"name":"specials","type":"uint8[]"},{"name":"isMaster","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"cardNo","type":"uint256"}],"name":"getTokenIdsByCardNo","outputs":[{"name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"cardNo","type":"uint256"},{"name":"attack","type":"uint8"},{"name":"hitPoint","type":"uint8"},{"name":"rarity","type":"uint8"},{"name":"cost","type":"uint8"},{"name":"attribute","type":"uint8"},{"name":"attackTYpe","type":"uint8"},{"name":"specials","type":"uint8[]"},{"name":"isMaster","type":"bool"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"tokenId","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"uri","type":"string"}],"name":"resetTokenMetadataBaseURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":true,"name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"approved","type":"address"},{"indexed":true,"name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"operator","type":"address"},{"indexed":false,"name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Contract Creation Code
6080604052606060405190810160405280602d81526020017f68747470733a2f2f626c6f636b636861696e2e6672616d6563626174746c652e81526020017f636f6d2f6d657461646174612f00000000000000000000000000000000000000815250600e90805190602001906200007892919062000408565b503480156200008657600080fd5b506040805190810160405280600c81526020017f4672616d6543426174746c6500000000000000000000000000000000000000008152506040805190810160405280600381526020017f46434200000000000000000000000000000000000000000000000000000000008152508181336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3620001ee6301ffc9a77c010000000000000000000000000000000000000000000000000000000002620002e1640100000000026401000000009004565b6200022b6380ac58cd7c010000000000000000000000000000000000000000000000000000000002620002e1640100000000026401000000009004565b6200026863780e9d637c010000000000000000000000000000000000000000000000000000000002620002e1640100000000026401000000009004565b81600a90805190602001906200028092919062000408565b5080600b90805190602001906200029992919062000408565b50620002d7635b5e139f7c010000000000000000000000000000000000000000000000000000000002620002e1640100000000026401000000009004565b50505050620004b7565b63ffffffff7c010000000000000000000000000000000000000000000000000000000002817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141515156200039c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200044b57805160ff19168380011785556200047c565b828001600101855582156200047c579182015b828111156200047b5782518255916020019190600101906200045e565b5b5090506200048b91906200048f565b5090565b620004b491905b80821115620004b057600081600090555060010162000496565b5090565b90565b613b5980620004c76000396000f3fe60806040526004361061014e576000357c01000000000000000000000000000000000000000000000000000000009004806301ffc9a71461015357806306fdde03146101c5578063081812fc14610255578063095ea7b3146102d057806318160ddd1461032b57806323b872dd146103565780632f745c59146103d157806342842e0e1461044057806342966c68146104bb5780634f6ccce7146104f657806355fec282146105455780636352211e1461063a57806370a08231146106b5578063715018a61461071a5780638da5cb5b146107315780638f32d59b146107885780639188d312146107b757806395d89b41146108a75780639ce8105214610937578063a22cb465146109c7578063aea1854914610a24578063b88d4fde14610b4e578063c87b56dd14610c60578063d32e482c14610d14578063e985e9c514610d9a578063f2fde38b14610e23575b600080fd5b34801561015f57600080fd5b506101ab6004803603602081101561017657600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610e74565b604051808215151515815260200191505060405180910390f35b3480156101d157600080fd5b506101da610edc565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561021a5780820151818401526020810190506101ff565b50505050905090810190601f1680156102475780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561026157600080fd5b5061028e6004803603602081101561027857600080fd5b8101908080359060200190929190505050610f7e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156102dc57600080fd5b50610329600480360360408110156102f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061105e565b005b34801561033757600080fd5b506103406112c1565b6040518082815260200191505060405180910390f35b34801561036257600080fd5b506103cf6004803603606081101561037957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112ce565b005b3480156103dd57600080fd5b5061042a600480360360408110156103f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611382565b6040518082815260200191505060405180910390f35b34801561044c57600080fd5b506104b96004803603606081101561046357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611488565b005b3480156104c757600080fd5b506104f4600480360360208110156104de57600080fd5b81019080803590602001909291905050506114a9565b005b34801561050257600080fd5b5061052f6004803603602081101561051957600080fd5b81019080803590602001909291905050506114c9565b6040518082815260200191505060405180910390f35b34801561055157600080fd5b50610638600480360361014081101561056957600080fd5b8101908080359060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803590602001906401000000008111156105de57600080fd5b8201836020820111156105f057600080fd5b8035906020019184602083028401116401000000008311171561061257600080fd5b909192939192939080351515906020019092919080359060200190929190505050611590565b005b34801561064657600080fd5b506106736004803603602081101561065d57600080fd5b810190808035906020019092919050505061161e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106c157600080fd5b50610704600480360360208110156106d857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061172b565b6040518082815260200191505060405180910390f35b34801561072657600080fd5b5061072f611845565b005b34801561073d57600080fd5b50610746611917565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561079457600080fd5b5061079d611940565b604051808215151515815260200191505060405180910390f35b3480156107c357600080fd5b506107f0600480360360208110156107da57600080fd5b8101908080359060200190929190505050611997565b604051808a81526020018960ff1660ff1681526020018860ff1660ff1681526020018760ff1660ff1681526020018660ff1660ff1681526020018560ff1660ff1681526020018460ff1660ff1681526020018060200183151515158152602001828103825284818151815260200191508051906020019060200280838360005b8381101561088b578082015181840152602081019050610870565b505050509050019a505050505050505050505060405180910390f35b3480156108b357600080fd5b506108bc611b7c565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108fc5780820151818401526020810190506108e1565b50505050905090810190601f1680156109295780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561094357600080fd5b506109706004803603602081101561095a57600080fd5b8101908080359060200190929190505050611c1e565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156109b3578082015181840152602081019050610998565b505050509050019250505060405180910390f35b3480156109d357600080fd5b50610a22600480360360408110156109ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611c8e565b005b348015610a3057600080fd5b50610b4c6004803603610120811015610a4857600080fd5b8101908080359060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff16906020019092919080359060200190640100000000811115610abd57600080fd5b820183602082011115610acf57600080fd5b80359060200191846020830284011164010000000083111715610af157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803515159060200190929190505050611e33565b005b348015610b5a57600080fd5b50610c5e60048036036080811015610b7157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610bd857600080fd5b820183602082011115610bea57600080fd5b80359060200191846001830284011164010000000083111715610c0c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612042565b005b348015610c6c57600080fd5b50610c9960048036036020811015610c8357600080fd5b81019080803590602001909291905050506120f9565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610cd9578082015181840152602081019050610cbe565b50505050905090810190601f168015610d065780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610d2057600080fd5b50610d9860048036036020811015610d3757600080fd5b8101908080359060200190640100000000811115610d5457600080fd5b820183602082011115610d6657600080fd5b80359060200191846001830284011164010000000083111715610d8857600080fd5b90919293919293905050506121ae565b005b348015610da657600080fd5b50610e0960048036036040811015610dbd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121d7565b604051808215151515815260200191505060405180910390f35b348015610e2f57600080fd5b50610e7260048036036020811015610e4657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061226b565b005b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f745780601f10610f4957610100808354040283529160200191610f74565b820191906000526020600020905b815481529060010190602001808311610f5757829003601f168201915b5050505050905090565b6000610f898261228a565b1515611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001807f4552433732313a20617070726f76656420717565727920666f72206e6f6e657881526020017f697374656e7420746f6b656e000000000000000000000000000000000000000081525060400191505060405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006110698261161e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515611135576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6581526020017f720000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611175575061117481336121d7565b5b151561120f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001807f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7781526020017f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000081525060400191505060405180910390fd5b826003600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600880549050905090565b6112d833826122fc565b1515611372576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001807f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f81526020017f776e6572206e6f7220617070726f76656400000000000000000000000000000081525060400191505060405180910390fd5b61137d838383612435565b505050565b600061138d8361172b565b82101515611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001807f455243373231456e756d657261626c653a206f776e657220696e646578206f7581526020017f74206f6620626f756e647300000000000000000000000000000000000000000081525060400191505060405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110151561147557fe5b9060005260206000200154905092915050565b6114a48383836020604051908101604052806000815250612042565b505050565b6114b1611940565b15156114bc57600080fd5b6114c63382612459565b50565b60006114d36112c1565b8210151561156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001807f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f81526020017f7574206f6620626f756e6473000000000000000000000000000000000000000081525060400191505060405180910390fd5b60088281548110151561157e57fe5b90600052602060002001549050919050565b611598611940565b15156115a357600080fd5b60008090505b81811015611610576116038c8c8c8c8c8c8c8c8c80806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508b611e33565b80806001019150506115a9565b505050505050505050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515611722576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001807f4552433732313a206f776e657220717565727920666f72206e6f6e657869737481526020017f656e7420746f6b656e000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156117f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001807f4552433732313a2062616c616e636520717565727920666f7220746865207a6581526020017f726f20616464726573730000000000000000000000000000000000000000000081525060400191505060405180910390fd5b61183e600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612467565b9050919050565b61184d611940565b151561185857600080fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6000806000806000806000606060006119ae613924565b600c8b8154811015156119bd57fe5b90600052602060002090600402016101206040519081016040529081600082015481526020016001820160009054906101000a900460ff1660ff1660ff1681526020016001820160019054906101000a900460ff1660ff1660ff1681526020016001820160029054906101000a900460ff1660ff1660ff1681526020016001820160039054906101000a900460ff1660ff1660ff1681526020016001820160049054906101000a900460ff1660ff1660ff1681526020016001820160059054906101000a900460ff1660ff1660ff16815260200160028201805480602002602001604051908101604052809291908181526020018280548015611b0557602002820191906000526020600020906000905b82829054906101000a900460ff1660ff1681526020019060010190602082600001049283019260010382029150808411611ace5790505b505050505081526020016003820160009054906101000a900460ff1615151515815250509050806000015181602001518260400151836060015184608001518560a001518660c001518760e00151886101000151819150995099509950995099509950995099509950509193959799909294969850565b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c145780601f10611be957610100808354040283529160200191611c14565b820191906000526020600020905b815481529060010190602001808311611bf757829003601f168201915b5050505050905090565b606080600d6000848152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015611c7e57602002820191906000526020600020905b815481526020019060010190808311611c6a575b5050505050905080915050919050565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611d32576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b611e3b611940565b1515611e4657600080fd5b6000611fed6001600c610120604051908101604052808e81526020018d60ff1681526020018c60ff1681526020018b60ff1681526020018a60ff1681526020018960ff1681526020018860ff168152602001878152602001861515815250908060018154018082558091505090600182039060005260206000209060040201600090919290919091506000820151816000015560208201518160010160006101000a81548160ff021916908360ff16021790555060408201518160010160016101000a81548160ff021916908360ff16021790555060608201518160010160026101000a81548160ff021916908360ff16021790555060808201518160010160036101000a81548160ff021916908360ff16021790555060a08201518160010160046101000a81548160ff021916908360ff16021790555060c08201518160010160056101000a81548160ff021916908360ff16021790555060e0820151816002019080519060200190611fbb929190613985565b506101008201518160030160006101000a81548160ff021916908315150217905550505061247590919063ffffffff16565b9050600d60008b81526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055506120363382612497565b50505050505050505050565b61204d8484846112ce565b612059848484846124b8565b15156120f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001807f4552433732313a207472616e7366657220746f206e6f6e20455243373231526581526020017f63656976657220696d706c656d656e746572000000000000000000000000000081525060400191505060405180910390fd5b50505050565b60606121a7600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121945780601f1061216957610100808354040283529160200191612194565b820191906000526020600020905b81548152906001019060200180831161217757829003601f168201915b50505050506121a2846126db565b612834565b9050919050565b6121b6611940565b15156121c157600080fd5b8181600e91906121d2929190613a2c565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612273611940565b151561227e57600080fd5b6122878161287b565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b60006123078261228a565b15156123a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001807f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657881526020017f697374656e7420746f6b656e000000000000000000000000000000000000000081525060400191505060405180910390fd5b60006123ac8361161e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061241b57508373ffffffffffffffffffffffffffffffffffffffff1661240384610f7e565b73ffffffffffffffffffffffffffffffffffffffff16145b8061242c575061242b81856121d7565b5b91505092915050565b612440838383612975565b61244a8382612c5a565b6124548282612dfe565b505050565b6124638282612ec5565b5050565b600081600001549050919050565b600082821115151561248657600080fd5b600082840390508091505092915050565b6124a18282612eff565b6124ab8282612dfe565b6124b48161311b565b5050565b60006124d98473ffffffffffffffffffffffffffffffffffffffff16613167565b15156124e857600190506126d3565b60008473ffffffffffffffffffffffffffffffffffffffff1663150b7a02338887876040518563ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156125df5780820151818401526020810190506125c4565b50505050905090810190601f16801561260c5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561262e57600080fd5b505af1158015612642573d6000803e3d6000fd5b505050506040513d602081101561265857600080fd5b8101908080519060200190929190505050905063150b7a027c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b60606000821415612723576040805190810160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061282f565b600082905060005b600082141515612751578080600101915050600a8281151561274957fe5b04915061272b565b6060816040519080825280601f01601f1916602001820160405280156127865781602001600182028038833980820191505090505b50905060006001830390505b60008614151561282757600a868115156127a857fe5b066030017f0100000000000000000000000000000000000000000000000000000000000000028282806001900393508151811015156127e357fe5b9060200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8681151561281f57fe5b049550612792565b819450505050505b919050565b6060612873838360206040519081016040528060008152506020604051908101604052806000815250602060405190810160405280600081525061317a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156128b757600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8273ffffffffffffffffffffffffffffffffffffffff166129958261161e565b73ffffffffffffffffffffffffffffffffffffffff16141515612a46576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001807f4552433732313a207472616e73666572206f6620746f6b656e2074686174206981526020017f73206e6f74206f776e000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612b11576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f4552433732313a207472616e7366657220746f20746865207a65726f2061646481526020017f726573730000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b612b1a81613599565b612b61600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613659565b612ba8600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061367c565b816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612cb26001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061247590919063ffffffff16565b90506000600760008481526020019081526020016000205490508181141515612da5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481101515612d2357fe5b9060005260206000200154905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481101515612d7d57fe5b9060005260206000200181905550816007600083815260200190815260200160002081905550505b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480919060019003612df79190613aac565b5050505050565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506007600083815260200190815260200160002081905550600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055505050565b612ecf8282613692565b612ed98282612c5a565b60006007600083815260200190815260200160002081905550612efb81613866565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612fa4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b612fad8161228a565b151515613022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506130bb600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061367c565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505090600182039060005260206000200160009091929091909150555050565b600080823b905060008111915050919050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156131d65781602001600182028038833980820191505090505b5090506060819050600080905060008090505b885181101561329c57888181518110151561320057fe5b9060200101517f010000000000000000000000000000000000000000000000000000000000000090047f010000000000000000000000000000000000000000000000000000000000000002838380600101945081518110151561325f57fe5b9060200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506131e9565b5060008090505b87518110156133565787818151811015156132ba57fe5b9060200101517f010000000000000000000000000000000000000000000000000000000000000090047f010000000000000000000000000000000000000000000000000000000000000002838380600101945081518110151561331957fe5b9060200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506132a3565b5060008090505b865181101561341057868181518110151561337457fe5b9060200101517f010000000000000000000000000000000000000000000000000000000000000090047f01000000000000000000000000000000000000000000000000000000000000000283838060010194508151811015156133d357fe5b9060200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061335d565b5060008090505b85518110156134ca57858181518110151561342e57fe5b9060200101517f010000000000000000000000000000000000000000000000000000000000000090047f010000000000000000000000000000000000000000000000000000000000000002838380600101945081518110151561348d57fe5b9060200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613417565b5060008090505b84518110156135845784818151811015156134e857fe5b9060200101517f010000000000000000000000000000000000000000000000000000000000000090047f010000000000000000000000000000000000000000000000000000000000000002838380600101945081518110151561354757fe5b9060200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506134d1565b50819850505050505050505095945050505050565b600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415156136565760006003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b6136716001826000015461247590919063ffffffff16565b816000018190555050565b6001816000016000828254019250508190555050565b8173ffffffffffffffffffffffffffffffffffffffff166136b28261161e565b73ffffffffffffffffffffffffffffffffffffffff16141515613763576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001807f4552433732313a206275726e206f6620746f6b656e2074686174206973206e6f81526020017f74206f776e00000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b61376c81613599565b6137b3600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613659565b60006002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000613881600160088054905061247590919063ffffffff16565b905060006009600084815260200190815260200160002054905060006008838154811015156138ac57fe5b90600052602060002001549050806008838154811015156138c957fe5b906000526020600020018190555081600960008381526020019081526020016000208190555060088054809190600190036139049190613aac565b506000600960008681526020019081526020016000208190555050505050565b6101206040519081016040528060008152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001606081526020016000151581525090565b82805482825590600052602060002090601f01602090048101928215613a1b5791602002820160005b838211156139ec57835183826101000a81548160ff021916908360ff16021790555092602001926001016020816000010492830192600103026139ae565b8015613a195782816101000a81549060ff02191690556001016020816000010492830192600103026139ec565b505b509050613a289190613ad8565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613a6d57803560ff1916838001178555613a9b565b82800160010185558215613a9b579182015b82811115613a9a578235825591602001919060010190613a7f565b5b509050613aa89190613b08565b5090565b815481835581811115613ad357818360005260206000209182019101613ad29190613b08565b5b505050565b613b0591905b80821115613b0157600081816101000a81549060ff021916905550600101613ade565b5090565b90565b613b2a91905b80821115613b26576000816000905550600101613b0e565b5090565b9056fea165627a7a72305820ed8d212eae9ef5a57c3753433160547fcd6d3b42939b3b5698621c32da3c6a1e0029
Deployed Bytecode
0x60806040526004361061014e576000357c01000000000000000000000000000000000000000000000000000000009004806301ffc9a71461015357806306fdde03146101c5578063081812fc14610255578063095ea7b3146102d057806318160ddd1461032b57806323b872dd146103565780632f745c59146103d157806342842e0e1461044057806342966c68146104bb5780634f6ccce7146104f657806355fec282146105455780636352211e1461063a57806370a08231146106b5578063715018a61461071a5780638da5cb5b146107315780638f32d59b146107885780639188d312146107b757806395d89b41146108a75780639ce8105214610937578063a22cb465146109c7578063aea1854914610a24578063b88d4fde14610b4e578063c87b56dd14610c60578063d32e482c14610d14578063e985e9c514610d9a578063f2fde38b14610e23575b600080fd5b34801561015f57600080fd5b506101ab6004803603602081101561017657600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610e74565b604051808215151515815260200191505060405180910390f35b3480156101d157600080fd5b506101da610edc565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561021a5780820151818401526020810190506101ff565b50505050905090810190601f1680156102475780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561026157600080fd5b5061028e6004803603602081101561027857600080fd5b8101908080359060200190929190505050610f7e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156102dc57600080fd5b50610329600480360360408110156102f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061105e565b005b34801561033757600080fd5b506103406112c1565b6040518082815260200191505060405180910390f35b34801561036257600080fd5b506103cf6004803603606081101561037957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112ce565b005b3480156103dd57600080fd5b5061042a600480360360408110156103f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611382565b6040518082815260200191505060405180910390f35b34801561044c57600080fd5b506104b96004803603606081101561046357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611488565b005b3480156104c757600080fd5b506104f4600480360360208110156104de57600080fd5b81019080803590602001909291905050506114a9565b005b34801561050257600080fd5b5061052f6004803603602081101561051957600080fd5b81019080803590602001909291905050506114c9565b6040518082815260200191505060405180910390f35b34801561055157600080fd5b50610638600480360361014081101561056957600080fd5b8101908080359060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803590602001906401000000008111156105de57600080fd5b8201836020820111156105f057600080fd5b8035906020019184602083028401116401000000008311171561061257600080fd5b909192939192939080351515906020019092919080359060200190929190505050611590565b005b34801561064657600080fd5b506106736004803603602081101561065d57600080fd5b810190808035906020019092919050505061161e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106c157600080fd5b50610704600480360360208110156106d857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061172b565b6040518082815260200191505060405180910390f35b34801561072657600080fd5b5061072f611845565b005b34801561073d57600080fd5b50610746611917565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561079457600080fd5b5061079d611940565b604051808215151515815260200191505060405180910390f35b3480156107c357600080fd5b506107f0600480360360208110156107da57600080fd5b8101908080359060200190929190505050611997565b604051808a81526020018960ff1660ff1681526020018860ff1660ff1681526020018760ff1660ff1681526020018660ff1660ff1681526020018560ff1660ff1681526020018460ff1660ff1681526020018060200183151515158152602001828103825284818151815260200191508051906020019060200280838360005b8381101561088b578082015181840152602081019050610870565b505050509050019a505050505050505050505060405180910390f35b3480156108b357600080fd5b506108bc611b7c565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108fc5780820151818401526020810190506108e1565b50505050905090810190601f1680156109295780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561094357600080fd5b506109706004803603602081101561095a57600080fd5b8101908080359060200190929190505050611c1e565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156109b3578082015181840152602081019050610998565b505050509050019250505060405180910390f35b3480156109d357600080fd5b50610a22600480360360408110156109ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611c8e565b005b348015610a3057600080fd5b50610b4c6004803603610120811015610a4857600080fd5b8101908080359060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff16906020019092919080359060200190640100000000811115610abd57600080fd5b820183602082011115610acf57600080fd5b80359060200191846020830284011164010000000083111715610af157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803515159060200190929190505050611e33565b005b348015610b5a57600080fd5b50610c5e60048036036080811015610b7157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610bd857600080fd5b820183602082011115610bea57600080fd5b80359060200191846001830284011164010000000083111715610c0c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612042565b005b348015610c6c57600080fd5b50610c9960048036036020811015610c8357600080fd5b81019080803590602001909291905050506120f9565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610cd9578082015181840152602081019050610cbe565b50505050905090810190601f168015610d065780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610d2057600080fd5b50610d9860048036036020811015610d3757600080fd5b8101908080359060200190640100000000811115610d5457600080fd5b820183602082011115610d6657600080fd5b80359060200191846001830284011164010000000083111715610d8857600080fd5b90919293919293905050506121ae565b005b348015610da657600080fd5b50610e0960048036036040811015610dbd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121d7565b604051808215151515815260200191505060405180910390f35b348015610e2f57600080fd5b50610e7260048036036020811015610e4657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061226b565b005b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f745780601f10610f4957610100808354040283529160200191610f74565b820191906000526020600020905b815481529060010190602001808311610f5757829003601f168201915b5050505050905090565b6000610f898261228a565b1515611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001807f4552433732313a20617070726f76656420717565727920666f72206e6f6e657881526020017f697374656e7420746f6b656e000000000000000000000000000000000000000081525060400191505060405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006110698261161e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515611135576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6581526020017f720000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611175575061117481336121d7565b5b151561120f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001807f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7781526020017f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000081525060400191505060405180910390fd5b826003600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600880549050905090565b6112d833826122fc565b1515611372576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001807f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f81526020017f776e6572206e6f7220617070726f76656400000000000000000000000000000081525060400191505060405180910390fd5b61137d838383612435565b505050565b600061138d8361172b565b82101515611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001807f455243373231456e756d657261626c653a206f776e657220696e646578206f7581526020017f74206f6620626f756e647300000000000000000000000000000000000000000081525060400191505060405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110151561147557fe5b9060005260206000200154905092915050565b6114a48383836020604051908101604052806000815250612042565b505050565b6114b1611940565b15156114bc57600080fd5b6114c63382612459565b50565b60006114d36112c1565b8210151561156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001807f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f81526020017f7574206f6620626f756e6473000000000000000000000000000000000000000081525060400191505060405180910390fd5b60088281548110151561157e57fe5b90600052602060002001549050919050565b611598611940565b15156115a357600080fd5b60008090505b81811015611610576116038c8c8c8c8c8c8c8c8c80806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508b611e33565b80806001019150506115a9565b505050505050505050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515611722576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001807f4552433732313a206f776e657220717565727920666f72206e6f6e657869737481526020017f656e7420746f6b656e000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156117f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001807f4552433732313a2062616c616e636520717565727920666f7220746865207a6581526020017f726f20616464726573730000000000000000000000000000000000000000000081525060400191505060405180910390fd5b61183e600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612467565b9050919050565b61184d611940565b151561185857600080fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6000806000806000806000606060006119ae613924565b600c8b8154811015156119bd57fe5b90600052602060002090600402016101206040519081016040529081600082015481526020016001820160009054906101000a900460ff1660ff1660ff1681526020016001820160019054906101000a900460ff1660ff1660ff1681526020016001820160029054906101000a900460ff1660ff1660ff1681526020016001820160039054906101000a900460ff1660ff1660ff1681526020016001820160049054906101000a900460ff1660ff1660ff1681526020016001820160059054906101000a900460ff1660ff1660ff16815260200160028201805480602002602001604051908101604052809291908181526020018280548015611b0557602002820191906000526020600020906000905b82829054906101000a900460ff1660ff1681526020019060010190602082600001049283019260010382029150808411611ace5790505b505050505081526020016003820160009054906101000a900460ff1615151515815250509050806000015181602001518260400151836060015184608001518560a001518660c001518760e00151886101000151819150995099509950995099509950995099509950509193959799909294969850565b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c145780601f10611be957610100808354040283529160200191611c14565b820191906000526020600020905b815481529060010190602001808311611bf757829003601f168201915b5050505050905090565b606080600d6000848152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015611c7e57602002820191906000526020600020905b815481526020019060010190808311611c6a575b5050505050905080915050919050565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611d32576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b611e3b611940565b1515611e4657600080fd5b6000611fed6001600c610120604051908101604052808e81526020018d60ff1681526020018c60ff1681526020018b60ff1681526020018a60ff1681526020018960ff1681526020018860ff168152602001878152602001861515815250908060018154018082558091505090600182039060005260206000209060040201600090919290919091506000820151816000015560208201518160010160006101000a81548160ff021916908360ff16021790555060408201518160010160016101000a81548160ff021916908360ff16021790555060608201518160010160026101000a81548160ff021916908360ff16021790555060808201518160010160036101000a81548160ff021916908360ff16021790555060a08201518160010160046101000a81548160ff021916908360ff16021790555060c08201518160010160056101000a81548160ff021916908360ff16021790555060e0820151816002019080519060200190611fbb929190613985565b506101008201518160030160006101000a81548160ff021916908315150217905550505061247590919063ffffffff16565b9050600d60008b81526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055506120363382612497565b50505050505050505050565b61204d8484846112ce565b612059848484846124b8565b15156120f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001807f4552433732313a207472616e7366657220746f206e6f6e20455243373231526581526020017f63656976657220696d706c656d656e746572000000000000000000000000000081525060400191505060405180910390fd5b50505050565b60606121a7600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121945780601f1061216957610100808354040283529160200191612194565b820191906000526020600020905b81548152906001019060200180831161217757829003601f168201915b50505050506121a2846126db565b612834565b9050919050565b6121b6611940565b15156121c157600080fd5b8181600e91906121d2929190613a2c565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612273611940565b151561227e57600080fd5b6122878161287b565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b60006123078261228a565b15156123a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001807f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657881526020017f697374656e7420746f6b656e000000000000000000000000000000000000000081525060400191505060405180910390fd5b60006123ac8361161e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061241b57508373ffffffffffffffffffffffffffffffffffffffff1661240384610f7e565b73ffffffffffffffffffffffffffffffffffffffff16145b8061242c575061242b81856121d7565b5b91505092915050565b612440838383612975565b61244a8382612c5a565b6124548282612dfe565b505050565b6124638282612ec5565b5050565b600081600001549050919050565b600082821115151561248657600080fd5b600082840390508091505092915050565b6124a18282612eff565b6124ab8282612dfe565b6124b48161311b565b5050565b60006124d98473ffffffffffffffffffffffffffffffffffffffff16613167565b15156124e857600190506126d3565b60008473ffffffffffffffffffffffffffffffffffffffff1663150b7a02338887876040518563ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156125df5780820151818401526020810190506125c4565b50505050905090810190601f16801561260c5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561262e57600080fd5b505af1158015612642573d6000803e3d6000fd5b505050506040513d602081101561265857600080fd5b8101908080519060200190929190505050905063150b7a027c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b60606000821415612723576040805190810160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061282f565b600082905060005b600082141515612751578080600101915050600a8281151561274957fe5b04915061272b565b6060816040519080825280601f01601f1916602001820160405280156127865781602001600182028038833980820191505090505b50905060006001830390505b60008614151561282757600a868115156127a857fe5b066030017f0100000000000000000000000000000000000000000000000000000000000000028282806001900393508151811015156127e357fe5b9060200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8681151561281f57fe5b049550612792565b819450505050505b919050565b6060612873838360206040519081016040528060008152506020604051908101604052806000815250602060405190810160405280600081525061317a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156128b757600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8273ffffffffffffffffffffffffffffffffffffffff166129958261161e565b73ffffffffffffffffffffffffffffffffffffffff16141515612a46576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001807f4552433732313a207472616e73666572206f6620746f6b656e2074686174206981526020017f73206e6f74206f776e000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612b11576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f4552433732313a207472616e7366657220746f20746865207a65726f2061646481526020017f726573730000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b612b1a81613599565b612b61600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613659565b612ba8600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061367c565b816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612cb26001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061247590919063ffffffff16565b90506000600760008481526020019081526020016000205490508181141515612da5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481101515612d2357fe5b9060005260206000200154905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481101515612d7d57fe5b9060005260206000200181905550816007600083815260200190815260200160002081905550505b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480919060019003612df79190613aac565b5050505050565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506007600083815260200190815260200160002081905550600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055505050565b612ecf8282613692565b612ed98282612c5a565b60006007600083815260200190815260200160002081905550612efb81613866565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612fa4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b612fad8161228a565b151515613022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506130bb600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061367c565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505090600182039060005260206000200160009091929091909150555050565b600080823b905060008111915050919050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156131d65781602001600182028038833980820191505090505b5090506060819050600080905060008090505b885181101561329c57888181518110151561320057fe5b9060200101517f010000000000000000000000000000000000000000000000000000000000000090047f010000000000000000000000000000000000000000000000000000000000000002838380600101945081518110151561325f57fe5b9060200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506131e9565b5060008090505b87518110156133565787818151811015156132ba57fe5b9060200101517f010000000000000000000000000000000000000000000000000000000000000090047f010000000000000000000000000000000000000000000000000000000000000002838380600101945081518110151561331957fe5b9060200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506132a3565b5060008090505b865181101561341057868181518110151561337457fe5b9060200101517f010000000000000000000000000000000000000000000000000000000000000090047f01000000000000000000000000000000000000000000000000000000000000000283838060010194508151811015156133d357fe5b9060200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061335d565b5060008090505b85518110156134ca57858181518110151561342e57fe5b9060200101517f010000000000000000000000000000000000000000000000000000000000000090047f010000000000000000000000000000000000000000000000000000000000000002838380600101945081518110151561348d57fe5b9060200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613417565b5060008090505b84518110156135845784818151811015156134e857fe5b9060200101517f010000000000000000000000000000000000000000000000000000000000000090047f010000000000000000000000000000000000000000000000000000000000000002838380600101945081518110151561354757fe5b9060200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506134d1565b50819850505050505050505095945050505050565b600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415156136565760006003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b6136716001826000015461247590919063ffffffff16565b816000018190555050565b6001816000016000828254019250508190555050565b8173ffffffffffffffffffffffffffffffffffffffff166136b28261161e565b73ffffffffffffffffffffffffffffffffffffffff16141515613763576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001807f4552433732313a206275726e206f6620746f6b656e2074686174206973206e6f81526020017f74206f776e00000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b61376c81613599565b6137b3600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613659565b60006002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000613881600160088054905061247590919063ffffffff16565b905060006009600084815260200190815260200160002054905060006008838154811015156138ac57fe5b90600052602060002001549050806008838154811015156138c957fe5b906000526020600020018190555081600960008381526020019081526020016000208190555060088054809190600190036139049190613aac565b506000600960008681526020019081526020016000208190555050505050565b6101206040519081016040528060008152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001606081526020016000151581525090565b82805482825590600052602060002090601f01602090048101928215613a1b5791602002820160005b838211156139ec57835183826101000a81548160ff021916908360ff16021790555092602001926001016020816000010492830192600103026139ae565b8015613a195782816101000a81549060ff02191690556001016020816000010492830192600103026139ec565b505b509050613a289190613ad8565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613a6d57803560ff1916838001178555613a9b565b82800160010185558215613a9b579182015b82811115613a9a578235825591602001919060010190613a7f565b5b509050613aa89190613b08565b5090565b815481835581811115613ad357818360005260206000209182019101613ad29190613b08565b5b505050565b613b0591905b80821115613b0157600081816101000a81549060ff021916905550600101613ade565b5090565b90565b613b2a91905b80821115613b26576000816000905550600101613b0e565b5090565b9056fea165627a7a72305820ed8d212eae9ef5a57c3753433160547fcd6d3b42939b3b5698621c32da3c6a1e0029
Deployed Bytecode Sourcemap
38187:2504:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9867:135;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9867:135:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;9867:135:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;36670:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36670:85:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;36670:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18531:204;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18531:204:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18531:204:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17817:421;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17817:421:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17817:421:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29000:96;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29000:96:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20208:290;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20208:290:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20208:290:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28609:232;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28609:232:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28609:232:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21144:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21144:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21144:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40089:94;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40089:94:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40089:94:0;;;;;;;;;;;;;;;;;:::i;:::-;;29442:199;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29442:199:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29442:199:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39747:336;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39747:336:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;39747:336:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;39747:336:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;39747:336:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;39747:336:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17158:228;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17158:228:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17158:228:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16721:211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16721:211:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16721:211:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3010:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3010:130:0;;;:::i;:::-;;2351:72;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2351:72:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2653:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2653:85:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38780:378;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38780:378:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38780:378:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;38780:378:0;;;;;;;;;;;;;;;;;;;;;;;;;36870:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36870:89:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;36870:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39166:176;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39166:176:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39166:176:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;39166:176:0;;;;;;;;;;;;;;;;;19036:248;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19036:248:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19036:248:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39348:391;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39348:391:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;39348:391:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;39348:391:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;39348:391:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;39348:391:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;39348:391:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21997:268;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21997:268:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;21997:268:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;21997:268:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;21997:268:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;21997:268:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;21997:268:0;;;;;;;;;;;;;;;:::i;:::-;;40501:187;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40501:187:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40501:187:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;40501:187:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40191:115;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40191:115:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40191:115:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;40191:115:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;40191:115:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;40191:115:0;;;;;;;;;;;;:::i;:::-;;19614:147;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19614:147:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19614:147:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3307:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3307:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3307:103:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;9867:135;9937:4;9961:20;:33;9982:11;9961:33;;;;;;;;;;;;;;;;;;;;;;;;;;;9954:40;;9867:135;;;:::o;36670:85::-;36709:13;36742:5;36735:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36670:85;:::o;18531:204::-;18590:7;18618:16;18626:7;18618;:16::i;:::-;18610:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18703:15;:24;18719:7;18703:24;;;;;;;;;;;;;;;;;;;;;18696:31;;18531:204;;;:::o;17817:421::-;17881:13;17897:16;17905:7;17897;:16::i;:::-;17881:32;;17938:5;17932:11;;:2;:11;;;;17924:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18016:5;18002:19;;:10;:19;;;:58;;;;18025:35;18042:5;18049:10;18025:16;:35::i;:::-;18002:58;17994:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18184:2;18157:15;:24;18173:7;18157:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;18222:7;18218:2;18202:28;;18211:5;18202:28;;;;;;;;;;;;17817:421;;;:::o;29000:96::-;29044:7;29071:10;:17;;;;29064:24;;29000:96;:::o;20208:290::-;20352:39;20371:10;20383:7;20352:18;:39::i;:::-;20344:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20458:32;20472:4;20478:2;20482:7;20458:13;:32::i;:::-;20208:290;;;:::o;28609:232::-;28689:7;28725:16;28735:5;28725:9;:16::i;:::-;28717:5;:24;28709:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28807:12;:19;28820:5;28807:19;;;;;;;;;;;;;;;28827:5;28807:26;;;;;;;;;;;;;;;;;;28800:33;;28609:232;;;;:::o;21144:134::-;21231:39;21248:4;21254:2;21258:7;21231:39;;;;;;;;;;;;;:16;:39::i;:::-;21144:134;;;:::o;40089:94::-;2544:9;:7;:9::i;:::-;2536:18;;;;;;;;40145:32;40157:10;40169:7;40145:11;:32::i;:::-;40089:94;:::o;29442:199::-;29500:7;29536:13;:11;:13::i;:::-;29528:5;:21;29520:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29616:10;29627:5;29616:17;;;;;;;;;;;;;;;;;;29609:24;;29442:199;;;:::o;39747:336::-;2544:9;:7;:9::i;:::-;2536:18;;;;;;;;39949:6;39958:1;39949:10;;39945:133;39962:5;39960:1;:7;39945:133;;;39983:85;39988:6;39995;40003:8;40013:6;40021:4;40027:9;40038:10;40050:8;;39983:85;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;39983:85:0;;;;;;40059:8;39983:4;:85::i;:::-;39968:3;;;;;;;39945:133;;;;39747:336;;;;;;;;;;;:::o;17158:228::-;17213:7;17233:13;17249:11;:20;17261:7;17249:20;;;;;;;;;;;;;;;;;;;;;17233:36;;17305:1;17288:19;;:5;:19;;;;17280:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17373:5;17366:12;;;17158:228;;;:::o;16721:211::-;16776:7;16821:1;16804:19;;:5;:19;;;;16796:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16890:34;:17;:24;16908:5;16890:24;;;;;;;;;;;;;;;:32;:34::i;:::-;16883:41;;16721:211;;;:::o;3010:130::-;2544:9;:7;:9::i;:::-;2536:18;;;;;;;;3105:1;3068:40;;3089:6;;;;;;;;;;;3068:40;;;;;;;;;;;;3132:1;3115:6;;:19;;;;;;;;;;;;;;;;;;3010:130::o;2351:72::-;2388:7;2411:6;;;;;;;;;;;2404:13;;2351:72;:::o;2653:85::-;2692:4;2726:6;;;;;;;;;;;2712:20;;:10;:20;;;2705:27;;2653:85;:::o;38780:378::-;38837:14;38852:12;38865:14;38880:10;38891:15;38907:16;38924:5;38930:23;38954:13;38977:16;;:::i;:::-;38996:5;39002:7;38996:14;;;;;;;;;;;;;;;;;;;;38977:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39027:4;:11;;;39040:4;:11;;;39053:4;:13;;;39068:4;:11;;;39081:4;:9;;;39092:4;:14;;;39108:4;:15;;;39124:4;:13;;;39138:4;:13;;;39019:133;;;;;;;;;;;;;;;;;;;;;;38780:378;;;;;;;;;;;:::o;36870:89::-;36911:13;36944:7;36937:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36870:89;:::o;39166:176::-;39233:16;39259:25;39288:16;:24;39305:6;39288:24;;;;;;;;;;;39259:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39328:8;39321:15;;;39166:176;;;:::o;19036:248::-;19122:10;19116:16;;:2;:16;;;;19108:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19212:8;19175:18;:30;19194:10;19175:30;;;;;;;;;;;;;;;:34;19206:2;19175:34;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;19263:2;19236:40;;19251:10;19236:40;;;19267:8;19236:40;;;;;;;;;;;;;;;;;;;;;;19036:248;;:::o;39348:391::-;2544:9;:7;:9::i;:::-;2536:18;;;;;;;;39526:15;39544:104;39646:1;39544:5;39555:85;;;;;;;;;39560:6;39555:85;;;;39567:6;39555:85;;;;;;39575:8;39555:85;;;;;;39585:6;39555:85;;;;;;39593:4;39555:85;;;;;;39599:9;39555:85;;;;;;39610:10;39555:85;;;;;;39622:8;39555:85;;;;39631:8;39555:85;;;;;39544:97;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;39544:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:101;;:104;;;;:::i;:::-;39526:122;;39655:16;:24;39672:6;39655:24;;;;;;;;;;;39685:7;39655:38;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;39655:38:0;;;;;;;;;;;;;;;;;;;;;;39701:32;39713:10;39725:7;39701:11;:32::i;:::-;2561:1;39348:391;;;;;;;;;:::o;21997:268::-;22104:31;22117:4;22123:2;22127:7;22104:12;:31::i;:::-;22154:48;22177:4;22183:2;22187:7;22196:5;22154:22;:48::i;:::-;22146:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21997:268;;;;:::o;40501:187::-;40558:13;40588:93;40616:20;40588:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40647:26;40664:8;40647:16;:26::i;:::-;40588:17;:93::i;:::-;40581:100;;40501:187;;;:::o;40191:115::-;2544:9;:7;:9::i;:::-;2536:18;;;;;;;;40297:3;;40274:20;:26;;;;;;;:::i;:::-;;40191:115;;:::o;19614:147::-;19694:4;19718:18;:25;19737:5;19718:25;;;;;;;;;;;;;;;:35;19744:8;19718:35;;;;;;;;;;;;;;;;;;;;;;;;;19711:42;;19614:147;;;;:::o;3307:103::-;2544:9;:7;:9::i;:::-;2536:18;;;;;;;;3376:28;3395:8;3376:18;:28::i;:::-;3307:103;:::o;22467:155::-;22524:4;22541:13;22557:11;:20;22569:7;22557:20;;;;;;;;;;;;;;;;;;;;;22541:36;;22612:1;22595:19;;:5;:19;;;;22588:26;;;22467:155;;;:::o;22992:333::-;23077:4;23102:16;23110:7;23102;:16::i;:::-;23094:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23178:13;23194:16;23202:7;23194;:16::i;:::-;23178:32;;23240:5;23229:16;;:7;:16;;;:51;;;;23273:7;23249:31;;:20;23261:7;23249:11;:20::i;:::-;:31;;;23229:51;:87;;;;23284:32;23301:5;23308:7;23284:16;:32::i;:::-;23229:87;23221:96;;;22992:333;;;;:::o;30025:245::-;30111:38;30131:4;30137:2;30141:7;30111:19;:38::i;:::-;30162:47;30195:4;30201:7;30162:32;:47::i;:::-;30222:40;30250:2;30254:7;30222:27;:40::i;:::-;30025:245;;;:::o;37261:102::-;37328:27;37340:5;37347:7;37328:11;:27::i;:::-;37261:102;;:::o;4757:114::-;4822:7;4849;:14;;;4842:21;;4757:114;;;:::o;1116:136::-;1174:7;1203:1;1198;:6;;1190:15;;;;;;;;1212:9;1228:1;1224;:5;1212:17;;1245:1;1238:8;;;1116:136;;;;:::o;30535:202::-;30599:24;30611:2;30615:7;30599:11;:24::i;:::-;30636:40;30664:2;30668:7;30636:27;:40::i;:::-;30689;30721:7;30689:31;:40::i;:::-;30535:202;;:::o;26239:356::-;26361:4;26388:15;:2;:13;;;:15::i;:::-;26387:16;26383:60;;;26427:4;26420:11;;;;26383:60;26455:13;26487:2;26471:36;;;26508:10;26520:4;26526:7;26535:5;26471:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;26471:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26471:70:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26471:70:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26471:70:0;;;;;;;;;;;;;;;;26455:86;;14923:10;26570:16;;26560:26;;;:6;:26;;;;26552:35;;;26239:356;;;;;;;:::o;7779:434::-;7828:13;7863:1;7858;:6;7854:22;;;7866:10;;;;;;;;;;;;;;;;;;;;;;7854:22;7887:6;7896:1;7887:10;;7908:8;7927:68;7939:1;7934;:6;;7927:68;;;7956:5;;;;;;;7981:2;7976:7;;;;;;;;;;;7927:68;;;8005:17;8035:3;8025:14;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;8025:14:0;;;;8005:34;;8050:6;8065:1;8059:3;:7;8050:16;;8077:99;8089:1;8084;:6;;8077:99;;;8138:2;8134:1;:6;;;;;;;;8129:2;:11;8118:24;;8106:4;8111:3;;;;;;;8106:9;;;;;;;;;;;;;;:36;;;;;;;;;;;8162:2;8157:7;;;;;;;;;;;8077:99;;;8200:4;8186:19;;;;;;7779:434;;;;:::o;7623:148::-;7701:13;7734:29;7744:2;7748;7734:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:9;:29::i;:::-;7727:36;;7623:148;;;;:::o;3550:173::-;3640:1;3620:22;;:8;:22;;;;3612:31;;;;;;;;3684:8;3655:38;;3676:6;;;;;;;;;;;3655:38;;;;;;;;;;;;3709:8;3700:6;;:17;;;;;;;;;;;;;;;;;;3550:173;:::o;25194:459::-;25308:4;25288:24;;:16;25296:7;25288;:16::i;:::-;:24;;;25280:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25391:1;25377:16;;:2;:16;;;;25369:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25447:23;25462:7;25447:14;:23::i;:::-;25483:35;:17;:23;25501:4;25483:23;;;;;;;;;;;;;;;:33;:35::i;:::-;25529:33;:17;:21;25547:2;25529:21;;;;;;;;;;;;;;;:31;:33::i;:::-;25598:2;25575:11;:20;25587:7;25575:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;25637:7;25633:2;25618:27;;25627:4;25618:27;;;;;;;;;;;;25194:459;;;:::o;33208:1148::-;33474:22;33499:32;33529:1;33499:12;:18;33512:4;33499:18;;;;;;;;;;;;;;;:25;;;;:29;;:32;;;;:::i;:::-;33474:57;;33542:18;33563:17;:26;33581:7;33563:26;;;;;;;;;;;;33542:47;;33710:14;33696:10;:28;;33692:328;;;33741:19;33763:12;:18;33776:4;33763:18;;;;;;;;;;;;;;;33782:14;33763:34;;;;;;;;;;;;;;;;;;33741:56;;33847:11;33814:12;:18;33827:4;33814:18;;;;;;;;;;;;;;;33833:10;33814:30;;;;;;;;;;;;;;;;;:44;;;;33964:10;33931:17;:30;33949:11;33931:30;;;;;;;;;;;:43;;;;33692:328;;34109:12;:18;34122:4;34109:18;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:::i;:::-;;33208:1148;;;;:::o;32032:186::-;32146:12;:16;32159:2;32146:16;;;;;;;;;;;;;;;:23;;;;32117:17;:26;32135:7;32117:26;;;;;;;;;;;:52;;;;32180:12;:16;32193:2;32180:16;;;;;;;;;;;;;;;32202:7;32180:30;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;32180:30:0;;;;;;;;;;;;;;;;;;;;;;32032:186;;:::o;31021:372::-;31088:27;31100:5;31107:7;31088:11;:27::i;:::-;31128:48;31161:5;31168:7;31128:32;:48::i;:::-;31326:1;31297:17;:26;31315:7;31297:26;;;;;;;;;;;:30;;;;31340:45;31377:7;31340:36;:45::i;:::-;31021:372;;:::o;23578:335::-;23664:1;23650:16;;:2;:16;;;;23642:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23723:16;23731:7;23723;:16::i;:::-;23722:17;23714:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23808:2;23785:11;:20;23797:7;23785:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;23821:33;:17;:21;23839:2;23821:21;;;;;;;;;;;;;;;:31;:33::i;:::-;23897:7;23893:2;23872:33;;23889:1;23872:33;;;;;;;;;;;;23578:335;;:::o;32419:164::-;32523:10;:17;;;;32496:15;:24;32512:7;32496:24;;;;;;;;;;;:44;;;;32551:10;32567:7;32551:24;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;32551:24:0;;;;;;;;;;;;;;;;;;;;;;32419:164;:::o;5625:422::-;5685:4;5893:12;6004:7;5992:20;5984:28;;6038:1;6031:4;:8;6024:15;;;5625:422;;;:::o;6377:872::-;6509:13;6533:16;6558:2;6533:28;;6570:16;6595:2;6570:28;;6607:16;6632:2;6607:28;;6644:16;6669:2;6644:28;;6681:16;6706:2;6681:28;;6718:19;6803:3;:10;6790:3;:10;6777:3;:10;6764:3;:10;6751:3;:10;:23;:36;:49;:62;6740:74;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;6740:74:0;;;;6718:96;;6823:19;6851:5;6823:34;;6866:6;6875:1;6866:10;;6890:6;6899:1;6890:10;;6885:58;6906:3;:10;6902:1;:14;6885:58;;;6937:3;6941:1;6937:6;;;;;;;;;;;;;;;;;;;;6923;6930:3;;;;;;6923:11;;;;;;;;;;;;;;:20;;;;;;;;;;;6918:3;;;;;;;6885:58;;;;6957:6;6966:1;6957:10;;6952:58;6973:3;:10;6969:1;:14;6952:58;;;7004:3;7008:1;7004:6;;;;;;;;;;;;;;;;;;;;6990;6997:3;;;;;;6990:11;;;;;;;;;;;;;;:20;;;;;;;;;;;6985:3;;;;;;;6952:58;;;;7024:6;7033:1;7024:10;;7019:58;7040:3;:10;7036:1;:14;7019:58;;;7071:3;7075:1;7071:6;;;;;;;;;;;;;;;;;;;;7057;7064:3;;;;;;7057:11;;;;;;;;;;;;;;:20;;;;;;;;;;;7052:3;;;;;;;7019:58;;;;7091:6;7100:1;7091:10;;7086:58;7107:3;:10;7103:1;:14;7086:58;;;7138:3;7142:1;7138:6;;;;;;;;;;;;;;;;;;;;7124;7131:3;;;;;;7124:11;;;;;;;;;;;;;;:20;;;;;;;;;;;7119:3;;;;;;;7086:58;;;;7158:6;7167:1;7158:10;;7153:58;7174:3;:10;7170:1;:14;7153:58;;;7205:3;7209:1;7205:6;;;;;;;;;;;;;;;;;;;;7191;7198:3;;;;;;7191:11;;;;;;;;;;;;;;:20;;;;;;;;;;;7186:3;;;;;;;7153:58;;;;7234:6;7220:21;;;;;;;;;;6377:872;;;;;;;:::o;26763:175::-;26863:1;26827:38;;:15;:24;26843:7;26827:24;;;;;;;;;;;;;;;;;;;;;:38;;;;26823:108;;;26917:1;26882:15;:24;26898:7;26882:24;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;26823:108;26763:175;:::o;4978:110::-;5059:21;5078:1;5059:7;:14;;;:18;;:21;;;;:::i;:::-;5042:7;:14;;:38;;;;4978:110;:::o;4879:91::-;4961:1;4943:7;:14;;;:19;;;;;;;;;;;4879:91;:::o;24197:333::-;24292:5;24272:25;;:16;24280:7;24272;:16::i;:::-;:25;;;24264:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24352:23;24367:7;24352:14;:23::i;:::-;24388:36;:17;:24;24406:5;24388:24;;;;;;;;;;;;;;;:34;:36::i;:::-;24466:1;24435:11;:20;24447:7;24435:20;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;24514:7;24510:1;24486:36;;24495:5;24486:36;;;;;;;;;;;;24197:333;;:::o;34651:1082::-;34904:22;34929:24;34951:1;34929:10;:17;;;;:21;;:24;;;;:::i;:::-;34904:49;;34964:18;34985:15;:24;35001:7;34985:24;;;;;;;;;;;;34964:45;;35336:19;35358:10;35369:14;35358:26;;;;;;;;;;;;;;;;;;35336:48;;35422:11;35397:10;35408;35397:22;;;;;;;;;;;;;;;;;:36;;;;35533:10;35502:15;:28;35518:11;35502:28;;;;;;;;;;;:41;;;;35667:10;:19;;;;;;;;;;;;:::i;:::-;;35724:1;35697:15;:24;35713:7;35697:24;;;;;;;;;;;:28;;;;34651:1082;;;;:::o;38187:2504::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
bzzr://ed8d212eae9ef5a57c3753433160547fcd6d3b42939b3b5698621c32da3c6a1e
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.