ERC-20
Overview
Max Total Supply
2,999,999.999999999999999963 TWIST
Holders
43
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
621.750224105549272784 TWISTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TWISTToken
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-08-11 */ pragma solidity ^0.6.0; /* https://twistdong.gitlab.io/twist/ The Twist? 3% of each transfer burned :O /$$$$$$$$ /$$ /$$ /$$$$$$ /$$$$$$ /$$$$$$$$ |__ $$__/| $$ /$ | $$|_ $$_/ /$$__ $$|__ $$__/ | $$ | $$ /$$$| $$ | $$ | $$ \__/ | $$ | $$ | $$/$$ $$ $$ | $$ | $$$$$$ | $$ | $$ | $$$$_ $$$$ | $$ \____ $$ | $$ | $$ | $$$/ \ $$$ | $$ /$$ \ $$ | $$ | $$ | $$/ \ $$ /$$$$$$| $$$$$$/ | $$ |__/ |__/ \__/|______/ \______/ |__/ /$$ /$$ /$$ /$$ /$$ /$$ /$$ /$$ | $$ | $$$ /$$$ | $$$ | $$|__/ | $$ | $$ | $$$$$$$ /$$ /$$ | $$$$ /$$$$ | $$$$| $$ /$$ /$$$$$$ | $$$$$$$ /$$$$$$ | $$__ $$| $$ | $$ | $$ $$/$$ $$ | $$ $$ $$| $$ /$$__ $$| $$__ $$|_ $$_/ | $$ \ $$| $$ | $$ | $$ $$$| $$ | $$ $$$$| $$| $$ \ $$| $$ \ $$ | $$ | $$ | $$| $$ | $$ | $$\ $ | $$ | $$\ $$$| $$| $$ | $$| $$ | $$ | $$ /$$ | $$$$$$$/| $$$$$$$ | $$ \/ | $$ /$$ | $$ \ $$| $$| $$$$$$$| $$ | $$ | $$$$/ |_______/ \____ $$ |__/ |__/|__/ |__/ \__/|__/ \____ $$|__/ |__/ \___/ /$$ | $$ /$$ \ $$ | $$$$$$/ | $$$$$$/ \______/ \______/ /$$$$$$ /$$ /$$ /$$__ $$| $$ | $$ | $$ \__/| $$$$$$$ /$$ /$$ /$$$$$$ /$$$$$$/$$$$ /$$$$$$ | $$ /$$$$$$ /$$$$$$$ | $$$$$$ | $$__ $$| $$ | $$ |____ $$| $$_ $$_ $$ |____ $$| $$ |____ $$| $$__ $$ \____ $$| $$ \ $$| $$ | $$ /$$$$$$$| $$ \ $$ \ $$ /$$$$$$$| $$ /$$$$$$$| $$ \ $$ /$$ \ $$| $$ | $$| $$ | $$ /$$__ $$| $$ | $$ | $$ /$$__ $$| $$ /$$__ $$| $$ | $$ | $$$$$$/| $$ | $$| $$$$$$$| $$$$$$$| $$ | $$ | $$| $$$$$$$| $$| $$$$$$$| $$ | $$ \______/ |__/ |__/ \____ $$ \_______/|__/ |__/ |__/ \_______/|__/ \_______/|__/ |__/ /$$ | $$ | $$$$$$/ \______/ _,_ ___ ___ __, _, ___ _ _ _ _, ___ __, _, _, _ _, _, _ ___ _, _, __, _ _, ___ _ _ _ _, ___ |_| | | |_) (_ . / / | | | | (_ | | \ / \ |\ | / _ / _ | | | /_\ |_) | / \ / | | | | (_ | / | | | | | , ) . / / | |/\| | , ) | |_/ \ / | \| \ /, \ / | | | , | | |_), | \ / / | |/\| | , ) | / ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~~~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ https://twistdong.gitlab.io/twist/ */ // /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) internal _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 internal _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ uint256 burnPerTransferPer = 3; function transfer(address recipient, uint256 amount) public virtual override returns (bool) { uint256 burn_qty = (burnPerTransferPer.mul(amount)).div(100); uint256 send_qty = ((100 - burnPerTransferPer).mul(amount)).div(100); _transfer(_msgSender(), recipient, send_qty); _transfer(_msgSender(), address(0), burn_qty); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } interface IUniswapV2Pair { function sync() external; } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } /* * * * [ TOKEN ] * * */ contract TWISTToken is ERC20, Ownable { using SafeMath for uint256; // Pause for allowing tokens to only become transferable at the end of sale address public pauser; bool public paused; // UNISWAP ERC20 internal WETH = ERC20(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2); IUniswapV2Factory public uniswapFactory = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); address public uniswapPool; bool public allowsMinting; // MODIFIERS modifier onlyPauser() { require(pauser == _msgSender(), "Token: caller is not the pauser."); _; } modifier whenNotPaused() { require(!paused, "Token: paused"); _; } constructor() public Ownable() ERC20("ShyamalanCoin", "TWIST") { uint256 initialSupply = 3_000_000 * 1e18; _mint(msg.sender, initialSupply); setPauser(msg.sender); paused = true; allowsMinting = true; } function setUniswapPool() external onlyOwner { require(uniswapPool == address(0), "Token: pool already created"); uniswapPool = uniswapFactory.createPair(address(WETH), address(this)); } // PAUSE function setPauser(address newPauser) public onlyOwner { require(newPauser != address(0), "Token: pauser is the zero address."); pauser = newPauser; } function unpause() external onlyPauser { paused = false; } // TOKEN TRANSFER HOOK function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused || msg.sender == pauser, "Token: token transfer while paused and not pauser role."); } function disableMinting() public onlyOwner { allowsMinting = !allowsMinting; } function mint(address account, uint256 amount) public onlyOwner { if(!allowsMinting) { revert(); } require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function burn(uint256 amount) public { _beforeTokenTransfer(msg.sender, address(0), amount); _balances[msg.sender] = _balances[msg.sender].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(msg.sender, address(0), amount); } } // WHAT A TWIST!
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowsMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauser","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPauser","type":"address"}],"name":"setPauser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUniswapPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapFactory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526003600655600980546001600160a01b031990811673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc217909155600a8054909116735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f1790553480156200005e57600080fd5b50604080518082018252600d81526c29b43cb0b6b0b630b721b7b4b760991b6020808301918252835180850190945260058452641515d254d560da1b908401528151919291620000b19160039162000475565b508051620000c790600490602084019062000475565b50506005805460ff19166012179055506000620000ec6001600160e01b036200019916565b600780546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506a027b46536c66c8e30000006200015b33826001600160e01b036200019e16565b6200016f336001600160e01b03620002b616565b5060088054600160a01b60ff60a01b199182168117909255600b8054909116909117905562000517565b335b90565b6001600160a01b038216620001fa576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62000211600083836001600160e01b036200039516565b6200022d816002546200041360201b620011781790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620002609183906200117862000413821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b620002c96001600160e01b036200019916565b6007546001600160a01b039081169116146200032c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116620003735760405162461bcd60e51b815260040180806020018281038252602281526020018062001ad86022913960400191505060405180910390fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b620003ad8383836200040e60201b620012421760201c565b600854600160a01b900460ff161580620003d157506008546001600160a01b031633145b6200040e5760405162461bcd60e51b815260040180806020018281038252603781526020018062001aa16037913960400191505060405180910390fd5b505050565b6000828201838110156200046e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004b857805160ff1916838001178555620004e8565b82800160010185558215620004e8579182015b82811115620004e8578251825591602001919060010190620004cb565b50620004f6929150620004fa565b5090565b6200019b91905b80821115620004f6576000815560010162000501565b61157a80620005276000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de578063a457c2d711610097578063bdd3d82511610071578063bdd3d82514610422578063dd62ed3e1461042a578063e84657d414610458578063f2fde38b1461046057610173565b8063a457c2d7146103c2578063a9059cbb146103ee578063b7e631dc1461041a57610173565b8063715018a6146103765780637e5cd5c11461037e5780638bdb2afa146103865780638da5cb5b146103aa57806395d89b41146103b25780639fd0506d146103ba57610173565b8063395093511161013057806339509351146102cb5780633f4ba83a146102f757806340c10f19146102ff57806342966c681461032b5780635c975abb1461034857806370a082311461035057610173565b806306fdde0314610178578063095ea7b3146101f557806318160ddd1461023557806323b872dd1461024f5780632d88af4a14610285578063313ce567146102ad575b600080fd5b610180610486565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102216004803603604081101561020b57600080fd5b506001600160a01b03813516906020013561051c565b604080519115158252519081900360200190f35b61023d61053a565b60408051918252519081900360200190f35b6102216004803603606081101561026557600080fd5b506001600160a01b03813581169160208101359091169060400135610540565b6102ab6004803603602081101561029b57600080fd5b50356001600160a01b03166105cd565b005b6102b561068c565b6040805160ff9092168252519081900360200190f35b610221600480360360408110156102e157600080fd5b506001600160a01b038135169060200135610695565b6102ab6106e9565b6102ab6004803603604081101561031557600080fd5b506001600160a01b038135169060200135610762565b6102ab6004803603602081101561034157600080fd5b50356108cc565b610221610973565b61023d6004803603602081101561036657600080fd5b50356001600160a01b0316610983565b6102ab61099e565b6102ab610a40565b61038e610ab9565b604080516001600160a01b039092168252519081900360200190f35b61038e610ac8565b610180610ad7565b61038e610b38565b610221600480360360408110156103d857600080fd5b506001600160a01b038135169060200135610b47565b6102216004803603604081101561040457600080fd5b506001600160a01b038135169060200135610bb5565b610221610c31565b61038e610c41565b61023d6004803603604081101561044057600080fd5b506001600160a01b0381358116916020013516610c50565b6102ab610c7b565b6102ab6004803603602081101561047657600080fd5b50356001600160a01b0316610dd6565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105125780601f106104e757610100808354040283529160200191610512565b820191906000526020600020905b8154815290600101906020018083116104f557829003601f168201915b5050505050905090565b6000610530610529610ecf565b8484610ed3565b5060015b92915050565b60025490565b600061054d848484610fbf565b6105c384610559610ecf565b6105be8560405180606001604052806028815260200161146d602891396001600160a01b038a16600090815260016020526040812090610597610ecf565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6110e116565b610ed3565b5060019392505050565b6105d5610ecf565b6007546001600160a01b03908116911614610625576040805162461bcd60e51b81526020600482018190526024820152600080516020611495833981519152604482015290519081900360640190fd5b6001600160a01b03811661066a5760405162461bcd60e51b81526004018080602001828103825260228152602001806114fe6022913960400191505060405180910390fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60055460ff1690565b60006105306106a2610ecf565b846105be85600160006106b3610ecf565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61117816565b6106f1610ecf565b6008546001600160a01b03908116911614610753576040805162461bcd60e51b815260206004820181905260248201527f546f6b656e3a2063616c6c6572206973206e6f7420746865207061757365722e604482015290519081900360640190fd5b6008805460ff60a01b19169055565b61076a610ecf565b6007546001600160a01b039081169116146107ba576040805162461bcd60e51b81526020600482018190526024820152600080516020611495833981519152604482015290519081900360640190fd5b600b54600160a01b900460ff166107d057600080fd5b6001600160a01b03821661082b576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610837600083836111d9565b60025461084a908263ffffffff61117816565b6002556001600160a01b038216600090815260208190526040902054610876908263ffffffff61117816565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6108d8336000836111d9565b610912816040518060600160405280602281526020016113856022913933600090815260208190526040902054919063ffffffff6110e116565b33600090815260208190526040902055600254610935908263ffffffff61124716565b60025560408051828152905160009133917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350565b600854600160a01b900460ff1681565b6001600160a01b031660009081526020819052604090205490565b6109a6610ecf565b6007546001600160a01b039081169116146109f6576040805162461bcd60e51b81526020600482018190526024820152600080516020611495833981519152604482015290519081900360640190fd5b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b610a48610ecf565b6007546001600160a01b03908116911614610a98576040805162461bcd60e51b81526020600482018190526024820152600080516020611495833981519152604482015290519081900360640190fd5b600b805460ff60a01b198116600160a01b9182900460ff1615909102179055565b600a546001600160a01b031681565b6007546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105125780601f106104e757610100808354040283529160200191610512565b6008546001600160a01b031681565b6000610530610b54610ecf565b846105be856040518060600160405280602581526020016115206025913960016000610b7e610ecf565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6110e116565b600080610bde6064610bd28560065461128990919063ffffffff16565b9063ffffffff6112e216565b90506000610bff6064610bd28660065460640361128990919063ffffffff16565b9050610c13610c0c610ecf565b8683610fbf565b610c26610c1e610ecf565b600084610fbf565b506001949350505050565b600b54600160a01b900460ff1681565b600b546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610c83610ecf565b6007546001600160a01b03908116911614610cd3576040805162461bcd60e51b81526020600482018190526024820152600080516020611495833981519152604482015290519081900360640190fd5b600b546001600160a01b031615610d31576040805162461bcd60e51b815260206004820152601b60248201527f546f6b656e3a20706f6f6c20616c726561647920637265617465640000000000604482015290519081900360640190fd5b600a54600954604080516364e329cb60e11b81526001600160a01b0392831660048201523060248201529051919092169163c9c653969160448083019260209291908290030181600087803b158015610d8957600080fd5b505af1158015610d9d573d6000803e3d6000fd5b505050506040513d6020811015610db357600080fd5b5051600b80546001600160a01b0319166001600160a01b03909216919091179055565b610dde610ecf565b6007546001600160a01b03908116911614610e2e576040805162461bcd60e51b81526020600482018190526024820152600080516020611495833981519152604482015290519081900360640190fd5b6001600160a01b038116610e735760405162461bcd60e51b81526004018080602001828103825260268152602001806113a76026913960400191505060405180910390fd5b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316610f185760405162461bcd60e51b81526004018080602001828103825260248152602001806114da6024913960400191505060405180910390fd5b6001600160a01b038216610f5d5760405162461bcd60e51b81526004018080602001828103825260228152602001806113cd6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166110045760405162461bcd60e51b81526004018080602001828103825260258152602001806114b56025913960400191505060405180910390fd5b61100f8383836111d9565b611052816040518060600160405280602681526020016113ef602691396001600160a01b038616600090815260208190526040902054919063ffffffff6110e116565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611087908263ffffffff61117816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156111705760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561113557818101518382015260200161111d565b50505050905090810190601f1680156111625780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156111d2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6111e4838383611242565b600854600160a01b900460ff16158061120757506008546001600160a01b031633145b6112425760405162461bcd60e51b81526004018080602001828103825260378152602001806114366037913960400191505060405180910390fd5b505050565b60006111d283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110e1565b60008261129857506000610534565b828202828482816112a557fe5b04146111d25760405162461bcd60e51b81526004018080602001828103825260218152602001806114156021913960400191505060405180910390fd5b60006111d283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506000818361136e5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561113557818101518382015260200161111d565b50600083858161137a57fe5b049594505050505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77546f6b656e3a20746f6b656e207472616e73666572207768696c652070617573656420616e64206e6f742070617573657220726f6c652e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373546f6b656e3a2070617573657220697320746865207a65726f20616464726573732e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206a506ebc82341f974559ff778ad88eb7d93c07a2160f73151c347badfc3c39ef64736f6c63430006060033546f6b656e3a20746f6b656e207472616e73666572207768696c652070617573656420616e64206e6f742070617573657220726f6c652e546f6b656e3a2070617573657220697320746865207a65726f20616464726573732e
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de578063a457c2d711610097578063bdd3d82511610071578063bdd3d82514610422578063dd62ed3e1461042a578063e84657d414610458578063f2fde38b1461046057610173565b8063a457c2d7146103c2578063a9059cbb146103ee578063b7e631dc1461041a57610173565b8063715018a6146103765780637e5cd5c11461037e5780638bdb2afa146103865780638da5cb5b146103aa57806395d89b41146103b25780639fd0506d146103ba57610173565b8063395093511161013057806339509351146102cb5780633f4ba83a146102f757806340c10f19146102ff57806342966c681461032b5780635c975abb1461034857806370a082311461035057610173565b806306fdde0314610178578063095ea7b3146101f557806318160ddd1461023557806323b872dd1461024f5780632d88af4a14610285578063313ce567146102ad575b600080fd5b610180610486565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102216004803603604081101561020b57600080fd5b506001600160a01b03813516906020013561051c565b604080519115158252519081900360200190f35b61023d61053a565b60408051918252519081900360200190f35b6102216004803603606081101561026557600080fd5b506001600160a01b03813581169160208101359091169060400135610540565b6102ab6004803603602081101561029b57600080fd5b50356001600160a01b03166105cd565b005b6102b561068c565b6040805160ff9092168252519081900360200190f35b610221600480360360408110156102e157600080fd5b506001600160a01b038135169060200135610695565b6102ab6106e9565b6102ab6004803603604081101561031557600080fd5b506001600160a01b038135169060200135610762565b6102ab6004803603602081101561034157600080fd5b50356108cc565b610221610973565b61023d6004803603602081101561036657600080fd5b50356001600160a01b0316610983565b6102ab61099e565b6102ab610a40565b61038e610ab9565b604080516001600160a01b039092168252519081900360200190f35b61038e610ac8565b610180610ad7565b61038e610b38565b610221600480360360408110156103d857600080fd5b506001600160a01b038135169060200135610b47565b6102216004803603604081101561040457600080fd5b506001600160a01b038135169060200135610bb5565b610221610c31565b61038e610c41565b61023d6004803603604081101561044057600080fd5b506001600160a01b0381358116916020013516610c50565b6102ab610c7b565b6102ab6004803603602081101561047657600080fd5b50356001600160a01b0316610dd6565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105125780601f106104e757610100808354040283529160200191610512565b820191906000526020600020905b8154815290600101906020018083116104f557829003601f168201915b5050505050905090565b6000610530610529610ecf565b8484610ed3565b5060015b92915050565b60025490565b600061054d848484610fbf565b6105c384610559610ecf565b6105be8560405180606001604052806028815260200161146d602891396001600160a01b038a16600090815260016020526040812090610597610ecf565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6110e116565b610ed3565b5060019392505050565b6105d5610ecf565b6007546001600160a01b03908116911614610625576040805162461bcd60e51b81526020600482018190526024820152600080516020611495833981519152604482015290519081900360640190fd5b6001600160a01b03811661066a5760405162461bcd60e51b81526004018080602001828103825260228152602001806114fe6022913960400191505060405180910390fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60055460ff1690565b60006105306106a2610ecf565b846105be85600160006106b3610ecf565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61117816565b6106f1610ecf565b6008546001600160a01b03908116911614610753576040805162461bcd60e51b815260206004820181905260248201527f546f6b656e3a2063616c6c6572206973206e6f7420746865207061757365722e604482015290519081900360640190fd5b6008805460ff60a01b19169055565b61076a610ecf565b6007546001600160a01b039081169116146107ba576040805162461bcd60e51b81526020600482018190526024820152600080516020611495833981519152604482015290519081900360640190fd5b600b54600160a01b900460ff166107d057600080fd5b6001600160a01b03821661082b576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610837600083836111d9565b60025461084a908263ffffffff61117816565b6002556001600160a01b038216600090815260208190526040902054610876908263ffffffff61117816565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6108d8336000836111d9565b610912816040518060600160405280602281526020016113856022913933600090815260208190526040902054919063ffffffff6110e116565b33600090815260208190526040902055600254610935908263ffffffff61124716565b60025560408051828152905160009133917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350565b600854600160a01b900460ff1681565b6001600160a01b031660009081526020819052604090205490565b6109a6610ecf565b6007546001600160a01b039081169116146109f6576040805162461bcd60e51b81526020600482018190526024820152600080516020611495833981519152604482015290519081900360640190fd5b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b610a48610ecf565b6007546001600160a01b03908116911614610a98576040805162461bcd60e51b81526020600482018190526024820152600080516020611495833981519152604482015290519081900360640190fd5b600b805460ff60a01b198116600160a01b9182900460ff1615909102179055565b600a546001600160a01b031681565b6007546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105125780601f106104e757610100808354040283529160200191610512565b6008546001600160a01b031681565b6000610530610b54610ecf565b846105be856040518060600160405280602581526020016115206025913960016000610b7e610ecf565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6110e116565b600080610bde6064610bd28560065461128990919063ffffffff16565b9063ffffffff6112e216565b90506000610bff6064610bd28660065460640361128990919063ffffffff16565b9050610c13610c0c610ecf565b8683610fbf565b610c26610c1e610ecf565b600084610fbf565b506001949350505050565b600b54600160a01b900460ff1681565b600b546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610c83610ecf565b6007546001600160a01b03908116911614610cd3576040805162461bcd60e51b81526020600482018190526024820152600080516020611495833981519152604482015290519081900360640190fd5b600b546001600160a01b031615610d31576040805162461bcd60e51b815260206004820152601b60248201527f546f6b656e3a20706f6f6c20616c726561647920637265617465640000000000604482015290519081900360640190fd5b600a54600954604080516364e329cb60e11b81526001600160a01b0392831660048201523060248201529051919092169163c9c653969160448083019260209291908290030181600087803b158015610d8957600080fd5b505af1158015610d9d573d6000803e3d6000fd5b505050506040513d6020811015610db357600080fd5b5051600b80546001600160a01b0319166001600160a01b03909216919091179055565b610dde610ecf565b6007546001600160a01b03908116911614610e2e576040805162461bcd60e51b81526020600482018190526024820152600080516020611495833981519152604482015290519081900360640190fd5b6001600160a01b038116610e735760405162461bcd60e51b81526004018080602001828103825260268152602001806113a76026913960400191505060405180910390fd5b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316610f185760405162461bcd60e51b81526004018080602001828103825260248152602001806114da6024913960400191505060405180910390fd5b6001600160a01b038216610f5d5760405162461bcd60e51b81526004018080602001828103825260228152602001806113cd6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166110045760405162461bcd60e51b81526004018080602001828103825260258152602001806114b56025913960400191505060405180910390fd5b61100f8383836111d9565b611052816040518060600160405280602681526020016113ef602691396001600160a01b038616600090815260208190526040902054919063ffffffff6110e116565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611087908263ffffffff61117816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156111705760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561113557818101518382015260200161111d565b50505050905090810190601f1680156111625780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156111d2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6111e4838383611242565b600854600160a01b900460ff16158061120757506008546001600160a01b031633145b6112425760405162461bcd60e51b81526004018080602001828103825260378152602001806114366037913960400191505060405180910390fd5b505050565b60006111d283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110e1565b60008261129857506000610534565b828202828482816112a557fe5b04146111d25760405162461bcd60e51b81526004018080602001828103825260218152602001806114156021913960400191505060405180910390fd5b60006111d283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506000818361136e5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561113557818101518382015260200161111d565b50600083858161137a57fe5b049594505050505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77546f6b656e3a20746f6b656e207472616e73666572207768696c652070617573656420616e64206e6f742070617573657220726f6c652e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373546f6b656e3a2070617573657220697320746865207a65726f20616464726573732e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206a506ebc82341f974559ff778ad88eb7d93c07a2160f73151c347badfc3c39ef64736f6c63430006060033
Deployed Bytecode Sourcemap
32700:2712:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32700:2712:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;21280:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;21280:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23631:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;23631:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;22355:100;;;:::i;:::-;;;;;;;;;;;;;;;;24274:321;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;24274:321:0;;;;;;;;;;;;;;;;;:::i;33958:173::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;33958:173:0;-1:-1:-1;;;;;33958:173:0;;:::i;:::-;;22207:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25004:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;25004:218:0;;;;;;;;:::i;34139:72::-;;;:::i;34636:441::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;34636:441:0;;;;;;;;:::i;35085:322::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;35085:322:0;;:::i;32895:18::-;;;:::i;22518:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22518:119:0;-1:-1:-1;;;;;22518:119:0;;:::i;31915:148::-;;;:::i;34532:92::-;;;:::i;33020:103::-;;;:::i;:::-;;;;-1:-1:-1;;;;;33020:103:0;;;;;;;;;;;;;;31273:79;;;:::i;21482:87::-;;;:::i;32865:21::-;;;:::i;25725:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;25725:269:0;;;;;;;;:::i;22887:383::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;22887:383:0;;;;;;;;:::i;33165:25::-;;;:::i;33132:26::-;;;:::i;23333:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;23333:151:0;;;;;;;;;;:::i;33725:209::-;;;:::i;32218:244::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32218:244:0;-1:-1:-1;;;;;32218:244:0;;:::i;21280:83::-;21350:5;21343:12;;;;;;;;-1:-1:-1;;21343:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21317:13;;21343:12;;21350:5;;21343:12;;21350:5;21343:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21280:83;:::o;23631:169::-;23714:4;23731:39;23740:12;:10;:12::i;:::-;23754:7;23763:6;23731:8;:39::i;:::-;-1:-1:-1;23788:4:0;23631:169;;;;;:::o;22355:100::-;22435:12;;22355:100;:::o;24274:321::-;24380:4;24397:36;24407:6;24415:9;24426:6;24397:9;:36::i;:::-;24444:121;24453:6;24461:12;:10;:12::i;:::-;24475:89;24513:6;24475:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24475:19:0;;;;;;:11;:19;;;;;;24495:12;:10;:12::i;:::-;-1:-1:-1;;;;;24475:33:0;;;;;;;;;;;;-1:-1:-1;24475:33:0;;;:89;;:37;:89;:::i;:::-;24444:8;:121::i;:::-;-1:-1:-1;24583:4:0;24274:321;;;;;:::o;33958:173::-;31495:12;:10;:12::i;:::-;31485:6;;-1:-1:-1;;;;;31485:6:0;;;:22;;;31477:67;;;;;-1:-1:-1;;;31477:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;31477:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34032:23:0;::::1;34024:70;;;;-1:-1:-1::0;;;34024:70:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34105:6;:18:::0;;-1:-1:-1;;;;;;34105:18:0::1;-1:-1:-1::0;;;;;34105:18:0;;;::::1;::::0;;;::::1;::::0;;33958:173::o;22207:83::-;22273:9;;;;22207:83;:::o;25004:218::-;25092:4;25109:83;25118:12;:10;:12::i;:::-;25132:7;25141:50;25180:10;25141:11;:25;25153:12;:10;:12::i;:::-;-1:-1:-1;;;;;25141:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25141:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;34139:72::-;33271:12;:10;:12::i;:::-;33261:6;;-1:-1:-1;;;;;33261:6:0;;;:22;;;33253:67;;;;;-1:-1:-1;;;33253:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34189:6:::1;:14:::0;;-1:-1:-1;;;;34189:14:0::1;::::0;;34139:72::o;34636:441::-;31495:12;:10;:12::i;:::-;31485:6;;-1:-1:-1;;;;;31485:6:0;;;:22;;;31477:67;;;;;-1:-1:-1;;;31477:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;31477:67:0;;;;;;;;;;;;;;;34715:13:::1;::::0;-1:-1:-1;;;34715:13:0;::::1;;;34711:54;;12:1:-1;9::::0;2:12:::1;34711:54:0;-1:-1:-1::0;;;;;34783:21:0;::::1;34775:65;;;::::0;;-1:-1:-1;;;34775:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;34853:49;34882:1;34886:7;34895:6;34853:20;:49::i;:::-;34930:12;::::0;:24:::1;::::0;34947:6;34930:24:::1;:16;:24;:::i;:::-;34915:12;:39:::0;-1:-1:-1;;;;;34986:18:0;::::1;:9;:18:::0;;;::::1;::::0;;;;;;;:30:::1;::::0;35009:6;34986:30:::1;:22;:30;:::i;:::-;-1:-1:-1::0;;;;;34965:18:0;::::1;:9;:18:::0;;;::::1;::::0;;;;;;;:51;;;;35032:37;;;;;;;34965:18;;:9;;35032:37:::1;::::0;;;;;;;;::::1;34636:441:::0;;:::o;35085:322::-;35133:52;35154:10;35174:1;35178:6;35133:20;:52::i;:::-;35222:71;35248:6;35222:71;;;;;;;;;;;;;;;;;35232:10;35222:9;:21;;;;;;;;;;;;:71;;:25;:71;:::i;:::-;35208:10;35198:9;:21;;;;;;;;;;:95;35319:12;;:24;;35336:6;35319:24;:16;:24;:::i;:::-;35304:12;:39;35359:40;;;;;;;;35388:1;;35368:10;;35359:40;;;;;;;;;35085:322;:::o;32895:18::-;;;-1:-1:-1;;;32895:18:0;;;;;:::o;22518:119::-;-1:-1:-1;;;;;22611:18:0;22584:7;22611:18;;;;;;;;;;;;22518:119::o;31915:148::-;31495:12;:10;:12::i;:::-;31485:6;;-1:-1:-1;;;;;31485:6:0;;;:22;;;31477:67;;;;;-1:-1:-1;;;31477:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;31477:67:0;;;;;;;;;;;;;;;32006:6:::1;::::0;31985:40:::1;::::0;32022:1:::1;::::0;-1:-1:-1;;;;;32006:6:0::1;::::0;31985:40:::1;::::0;32022:1;;31985:40:::1;32036:6;:19:::0;;-1:-1:-1;;;;;;32036:19:0::1;::::0;;31915:148::o;34532:92::-;31495:12;:10;:12::i;:::-;31485:6;;-1:-1:-1;;;;;31485:6:0;;;:22;;;31477:67;;;;;-1:-1:-1;;;31477:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;31477:67:0;;;;;;;;;;;;;;;34603:13:::1;::::0;;-1:-1:-1;;;;34586:30:0;::::1;-1:-1:-1::0;;;34603:13:0;;;::::1;;;34602:14;34586:30:::0;;::::1;;::::0;;34532:92::o;33020:103::-;;;-1:-1:-1;;;;;33020:103:0;;:::o;31273:79::-;31338:6;;-1:-1:-1;;;;;31338:6:0;31273:79;:::o;21482:87::-;21554:7;21547:14;;;;;;;;-1:-1:-1;;21547:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21521:13;;21547:14;;21554:7;;21547:14;;21554:7;21547:14;;;;;;;;;;;;;;;;;;;;;;;;32865:21;;;-1:-1:-1;;;;;32865:21:0;;:::o;25725:269::-;25818:4;25835:129;25844:12;:10;:12::i;:::-;25858:7;25867:96;25906:15;25867:96;;;;;;;;;;;;;;;;;:11;:25;25879:12;:10;:12::i;:::-;-1:-1:-1;;;;;25867:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25867:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;22887:383::-;22973:4;22990:16;23009:41;23046:3;23010:30;23033:6;23010:18;;:22;;:30;;;;:::i;:::-;23009:36;:41;:36;:41;:::i;:::-;22990:60;;23061:16;23080:49;23125:3;23081:38;23112:6;23088:18;;23082:3;:24;23081:30;;:38;;;;:::i;23080:49::-;23061:68;;23140:44;23150:12;:10;:12::i;:::-;23164:9;23175:8;23140:9;:44::i;:::-;23195:45;23205:12;:10;:12::i;:::-;23227:1;23231:8;23195:9;:45::i;:::-;-1:-1:-1;23258:4:0;;22887:383;-1:-1:-1;;;;22887:383:0:o;33165:25::-;;;-1:-1:-1;;;33165:25:0;;;;;:::o;33132:26::-;;;-1:-1:-1;;;;;33132:26:0;;:::o;23333:151::-;-1:-1:-1;;;;;23449:18:0;;;23422:7;23449:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;23333:151::o;33725:209::-;31495:12;:10;:12::i;:::-;31485:6;;-1:-1:-1;;;;;31485:6:0;;;:22;;;31477:67;;;;;-1:-1:-1;;;31477:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;31477:67:0;;;;;;;;;;;;;;;33789:11:::1;::::0;-1:-1:-1;;;;;33789:11:0::1;:25:::0;33781:65:::1;;;::::0;;-1:-1:-1;;;33781:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33871:14;::::0;33905:4:::1;::::0;33871:55:::1;::::0;;-1:-1:-1;;;33871:55:0;;-1:-1:-1;;;;;33905:4:0;;::::1;33871:55;::::0;::::1;::::0;33920:4:::1;33871:55:::0;;;;;;:14;;;::::1;::::0;:25:::1;::::0;:55;;;;;::::1;::::0;;;;;;;;:14:::1;::::0;:55;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;33871:55:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;33871:55:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;33871:55:0;33857:11:::1;:69:::0;;-1:-1:-1;;;;;;33857:69:0::1;-1:-1:-1::0;;;;;33857:69:0;;::::1;::::0;;;::::1;::::0;;33725:209::o;32218:244::-;31495:12;:10;:12::i;:::-;31485:6;;-1:-1:-1;;;;;31485:6:0;;;:22;;;31477:67;;;;;-1:-1:-1;;;31477:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;31477:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32307:22:0;::::1;32299:73;;;;-1:-1:-1::0;;;32299:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32409:6;::::0;32388:38:::1;::::0;-1:-1:-1;;;;;32388:38:0;;::::1;::::0;32409:6:::1;::::0;32388:38:::1;::::0;32409:6:::1;::::0;32388:38:::1;32437:6;:17:::0;;-1:-1:-1;;;;;;32437:17:0::1;-1:-1:-1::0;;;;;32437:17:0;;;::::1;::::0;;;::::1;::::0;;32218:244::o;4639:106::-;4727:10;4639:106;:::o;28790:346::-;-1:-1:-1;;;;;28892:19:0;;28884:68;;;;-1:-1:-1;;;28884:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28971:21:0;;28963:68;;;;-1:-1:-1;;;28963:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29044:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;29096:32;;;;;;;;;;;;;;;;;28790:346;;;:::o;26484:457::-;-1:-1:-1;;;;;26590:20:0;;26582:70;;;;-1:-1:-1;;;26582:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26665:47;26686:6;26694:9;26705:6;26665:20;:47::i;:::-;26745:71;26767:6;26745:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26745:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;26725:17:0;;;:9;:17;;;;;;;;;;;:91;;;;26850:20;;;;;;;:32;;26875:6;26850:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;26827:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;26898:35;;;;;;;26827:20;;26898:35;;;;;;;;;;;;;26484:457;;;:::o;9459:192::-;9545:7;9581:12;9573:6;;;;9565:29;;;;-1:-1:-1;;;9565:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;9565:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9617:5:0;;;9459:192::o;8556:181::-;8614:7;8646:5;;;8670:6;;;;8662:46;;;;;-1:-1:-1;;;8662:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8728:1;8556:181;-1:-1:-1;;;8556:181:0:o;34249:271::-;34358:44;34385:4;34391:2;34395:6;34358:26;:44::i;:::-;34422:6;;-1:-1:-1;;;34422:6:0;;;;34421:7;;:31;;-1:-1:-1;34446:6:0;;-1:-1:-1;;;;;34446:6:0;34432:10;:20;34421:31;34413:99;;;;-1:-1:-1;;;34413:99:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34249:271;;;:::o;9020:136::-;9078:7;9105:43;9109:1;9112;9105:43;;;;;;;;;;;;;;;;;:3;:43::i;9910:471::-;9968:7;10213:6;10209:47;;-1:-1:-1;10243:1:0;10236:8;;10209:47;10280:5;;;10284:1;10280;:5;:1;10304:5;;;;;:10;10296:56;;;;-1:-1:-1;;;10296:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10857:132;10915:7;10942:39;10946:1;10949;10942:39;;;;;;;;;;;;;;;;;11571:7;11606:12;11599:5;11591:28;;;;-1:-1:-1;;;11591:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;11591:28:0;;11630:9;11646:1;11642;:5;;;;;;;11485:278;-1:-1:-1;;;;;11485:278:0:o
Swarm Source
ipfs://6a506ebc82341f974559ff778ad88eb7d93c07a2160f73151c347badfc3c39ef
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.