Rebrand announcement. aXpire was rebranded and is now known as Moola.
Overview
Max Total Supply
344,674,001.40087 AXPR
Holders
537 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$4,582.66
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
8,000 AXPRValue
$0.11 ( ~3.32718984823209E-05 Eth) [0.0023%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AXPRToken
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-10-09 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @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 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 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 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) private _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; // } function totalSupply() public view override virtual returns (uint256) { } /** * @dev See {IERC20-balanceOf}. */ // function balanceOf(address account) public view override returns (uint256) { // return _balances[account]; // } function balanceOf(address account) public view override virtual returns (uint256) { } /** * @dev See {IERC20-balanceOf}. */ function intBalanceOf(address account) internal view 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`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); 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"); require(recipient != address(0), "ERC20: transfer to 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); _balances[account] = _balances[account].add(amount); _totalSupply = _totalSupply.add(amount); emit Transfer(address(0), account, amount); } function intMint(address account, uint256 amount) internal virtual{ _balances[account] = _balances[account].add(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 internal _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() || _owner == address(0), "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; } } /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { event Burn(address indexed burner, uint256 amount); /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); emit Burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); emit Burn(account, amount); } } /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } } contract AXPRToken is Ownable, ERC20Burnable, ERC20Pausable { using SafeMath for uint256; IERC20 private wrapped; mapping (address => bool) private claimed; constructor(address _token) ERC20("aXpire", "AXPR") public { wrapped = IERC20(_token); _totalSupply = wrapped.totalSupply(); //move hacker's tokens back to KuCoin _convertBalance(0xeB31973E0FeBF3e3D7058234a5eBbAe1aB4B8c23, 0xe10332741c59CED2BA96db514a9eD865dDF99b6a); //move Idex tokens _convertBalance(0x2a0c0DBEcC7E4D658f48E01e3fA353F44050c208, 0xf796b5C6710250aAbFC4EC7d76De6528E91e1eea); //move EtherDelta tokens _convertBalance(0x8d12A197cB00D4747a1fe03395095ce2A5CC6819, 0x076F4D482DC0aEd407D22031682e375540E4E5e8); } function init() onlyOwner public { claimed[0x78750ec32b4e46FD9512336abD3cb2E4127C29f3] = true; _totalSupply = _totalSupply.sub(wrapped.balanceOf(0x78750ec32b4e46FD9512336abD3cb2E4127C29f3)); super._mint(0xa92F3598097d76E0a8bdda109C8B46d34ECEba91, 100000000000000000000); super._mint(0x3B677F7093FdF292D61007FaC8d6bC03B90bF5A0, 1000000000000000000000000); super._mint(0x7A0Ecb481fAfBce7B300FEA951E84730472fBeCE, 260000000000000000000000); super._mint(0x3B677F7093FdF292D61007FaC8d6bC03B90bF5A0, 22000000000000000000000); super._mint(0x3B677F7093FdF292D61007FaC8d6bC03B90bF5A0, 1000000000000000000000000); super._mint(0x4E1DFF4AeC44F95e0bC4874E03C96e9Eaea9B697, 623708000000000000000); super._mint(0x478B12C6E450DCfeC2b14572729486AE62B0B4bc, 1000000000000000000000000); super._mint(0x478B12C6E450DCfeC2b14572729486AE62B0B4bc, 500000000000000000000000); super._mint(0x74aDEc2F66207E2FF1361084E6E1dF2d360c3105, 10000000240000000000000); super._mint(0x08Baf1BC80C5d1504800A0dF6fA20c13C2D4a094, 100000000000000000000); super._mint(0x1Efa1a5B05bC8B9EF2F3727ba60f628A50Be91cE, 250000000000000000000000); super._mint(0xDEBC822417a40FE9c3117f988C32f2a35C8c92E2, 250000000000000000000000); super._mint(0x23f4b046034bf976172Dbb2f570960bC4bd01Aa9, 250000000000000000000000); super._mint(0xf171ab4A2cD8053A9485a932a5805Ca6bcdACA43, 250000000000000000000000); super._mint(0xD75A2660bb6776dF2233d1aD6D3F572d6971De28, 100000000000000000000); super._mint(0xD75A2660bb6776dF2233d1aD6D3F572d6971De28, 250000000000000000000000); super._mint(0x6FAa69822fF5ceb05c779dD2f197Bb0358D50841, 250001000000000000000000); super._mint(0x0f14a483Aad47E4d63ab7f51F60b7d1182c3f154, 10000000000000000000); super._mint(0x0f14a483Aad47E4d63ab7f51F60b7d1182c3f154, 100000000000000000000); super._mint(0x7d41E9E500a209AF8eE588c4eA5b150b877ad541, 100000000000000000000); super._mint(0x7C32B80cf3Bb342cb64e963820C5FEFb7A8eeC11, 250000000000000000000000); super._mint(0x30AEa47C6B7A9C2c3F3f9c59e49FBAf3A731Be02, 250000000000000000000000); super._mint(0x30AEa47C6B7A9C2c3F3f9c59e49FBAf3A731Be02, 250744089900000000000000); super._mint(0x19afd59C86406C27F9c2B59521a0989D3B21d9D9, 250000000000000000000000); super._mint(0x19afd59C86406C27F9c2B59521a0989D3B21d9D9, 250000000000000000000000); super._mint(0x30AEa47C6B7A9C2c3F3f9c59e49FBAf3A731Be02, 250000000000000000000000); } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view override returns (uint256) { if(claimed[account]) return intBalanceOf(account); else return wrapped.balanceOf(account); } function pause() onlyOwner public { super._pause(); } function unpause() onlyOwner public { super._unpause(); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal override(ERC20Pausable, ERC20) { super._beforeTokenTransfer(from, to, amount); if(intBalanceOf(from) == uint256(0) && !claimed[from]) { uint256 balance = wrapped.balanceOf(from); if(balance > 0) { intMint(from, balance); } claimed[from] = true; } if(intBalanceOf(to) == uint256(0) && !claimed[to]) { uint256 balance = wrapped.balanceOf(to); if(balance > 0) { intMint(to, balance); } claimed[to] = true; } } function _convertBalance(address from, address to) private { uint256 wrappedBalance = wrapped.balanceOf(from); claimed[from] = true; intMint(to, wrappedBalance); claimed[to] = true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"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":"burner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":[{"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[{"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":[],"name":"init","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200209e3803806200209e833981810160405260208110156200003757600080fd5b5051604080518082018252600681526561587069726560d01b6020828101919091528251808401909352600483526320ac282960e11b90830152906000620000876001600160e01b036200025e16565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000e6906004906020850190620003fc565b508051620000fc906005906020840190620003fc565b505060068054601260ff1990911617610100600160b01b031916620100006001600160a01b0385811682029290921792839055604080516318160ddd60e01b815290519190930490911692506318160ddd91600480820192602092909190829003018186803b1580156200016f57600080fd5b505afa15801562000184573d6000803e3d6000fd5b505050506040513d60208110156200019b57600080fd5b5051600355620001dd73eb31973e0febf3e3d7058234a5ebbae1ab4b8c2373e10332741c59ced2ba96db514a9ed865ddf99b6a6001600160e01b036200026316565b6200021a732a0c0dbecc7e4d658f48e01e3fa353f44050c20873f796b5c6710250aabfc4ec7d76de6528e91e1eea6001600160e01b036200026316565b62000257738d12a197cb00d4747a1fe03395095ce2a5cc681973076f4d482dc0aed407d22031682e375540e4e5e86001600160e01b036200026316565b506200049e565b335b90565b600654604080516370a0823160e01b81526001600160a01b0385811660048301529151600093620100009004909216916370a0823191602480820192602092909190829003018186803b158015620002ba57600080fd5b505afa158015620002cf573d6000803e3d6000fd5b505050506040513d6020811015620002e657600080fd5b50516001600160a01b0384166000908152600760205260409020805460ff1916600117905590506200032282826001600160e01b036200034816565b506001600160a01b03166000908152600760205260409020805460ff1916600117905550565b6001600160a01b0382166000908152600160209081526040909120546200037a918390620013666200039a821b17901c565b6001600160a01b0390921660009081526001602052604090209190915550565b600082820183811015620003f5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200043f57805160ff19168380011785556200046f565b828001600101855582156200046f579182015b828111156200046f57825182559160200191906001019062000452565b506200047d92915062000481565b5090565b6200026091905b808211156200047d576000815560010162000488565b611bf080620004ae6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d714610345578063a9059cbb14610371578063dd62ed3e1461039d578063e1c7392a146103cb578063f2fde38b146103d35761012c565b8063715018a6146102dd57806379cc6790146102e55780638456cb59146103115780638da5cb5b1461031957806395d89b411461033d5761012c565b806339509351116100f4578063395093511461025c5780633f4ba83a1461028857806342966c68146102925780635c975abb146102af57806370a08231146102b75761012c565b806306fdde0314610131578063095ea7b3146101ae57806318160ddd146101ee57806323b872dd14610208578063313ce5671461023e575b600080fd5b6101396103f9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101da600480360360408110156101c457600080fd5b506001600160a01b03813516906020013561048f565b604080519115158252519081900360200190f35b6101f66104ac565b60408051918252519081900360200190f35b6101da6004803603606081101561021e57600080fd5b506001600160a01b038135811691602081013590911690604001356104b2565b61024661053f565b6040805160ff9092168252519081900360200190f35b6101da6004803603604081101561027257600080fd5b506001600160a01b038135169060200135610548565b61029061059c565b005b610290600480360360208110156102a857600080fd5b5035610612565b6101da61066e565b6101f6600480360360208110156102cd57600080fd5b50356001600160a01b031661067c565b610290610735565b610290600480360360408110156102fb57600080fd5b506001600160a01b0381351690602001356107eb565b61029061088a565b6103216108fe565b604080516001600160a01b039092168252519081900360200190f35b61013961090d565b6101da6004803603604081101561035b57600080fd5b506001600160a01b03813516906020013561096e565b6101da6004803603604081101561038757600080fd5b506001600160a01b0381351690602001356109dc565b6101f6600480360360408110156103b357600080fd5b506001600160a01b03813581169160200135166109f0565b610290610a1b565b610290600480360360208110156103e957600080fd5b50356001600160a01b0316610f6a565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104855780601f1061045a57610100808354040283529160200191610485565b820191906000526020600020905b81548152906001019060200180831161046857829003601f168201915b5050505050905090565b60006104a361049c611076565b848461107a565b50600192915050565b60035490565b60006104bf848484611166565b610535846104cb611076565b61053085604051806060016040528060288152602001611a96602891396001600160a01b038a16600090815260026020526040812090610509611076565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6112cf16565b61107a565b5060019392505050565b60065460ff1690565b60006104a3610555611076565b846105308560026000610566611076565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61136616565b6105a4611076565b6000546001600160a01b03908116911614806105c957506000546001600160a01b0316155b610608576040805162461bcd60e51b81526020600482018190526024820152600080516020611abe833981519152604482015290519081900360640190fd5b6106106113c7565b565b61062361061d611076565b8261146b565b61062b611076565b6001600160a01b03167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5826040518082815260200191505060405180910390a250565b600654610100900460ff1690565b6001600160a01b03811660009081526007602052604081205460ff16156106ad576106a682611573565b9050610730565b600654604080516370a0823160e01b81526001600160a01b038581166004830152915162010000909304909116916370a0823191602480820192602092909190829003018186803b15801561070157600080fd5b505afa158015610715573d6000803e3d6000fd5b505050506040513d602081101561072b57600080fd5b505190505b919050565b61073d611076565b6000546001600160a01b039081169116148061076257506000546001600160a01b0316155b6107a1576040805162461bcd60e51b81526020600482018190526024820152600080516020611abe833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600061082882604051806060016040528060248152602001611ade6024913961081b86610816611076565b6109f0565b919063ffffffff6112cf16565b905061083c83610836611076565b8361107a565b610846838361146b565b6040805183815290516001600160a01b038516917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2505050565b610892611076565b6000546001600160a01b03908116911614806108b757506000546001600160a01b0316155b6108f6576040805162461bcd60e51b81526020600482018190526024820152600080516020611abe833981519152604482015290519081900360640190fd5b61061061158e565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104855780601f1061045a57610100808354040283529160200191610485565b60006104a361097b611076565b8461053085604051806060016040528060258152602001611b6c60259139600260006109a5611076565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6112cf16565b60006104a36109e9611076565b8484611166565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610a23611076565b6000546001600160a01b0390811691161480610a4857506000546001600160a01b0316155b610a87576040805162461bcd60e51b81526020600482018190526024820152600080516020611abe833981519152604482015290519081900360640190fd5b7378750ec32b4e46fd9512336abd3cb2e4127c29f36000819052600760209081527f1156ff635e270e15bc6bb9c6bb9e2a945b7ef214ef83345bee027cb40fdcf381805460ff19166001179055600654604080516370a0823160e01b8152600481019490945251610b5f93620100009092046001600160a01b0316926370a082319260248082019391829003018186803b158015610b2457600080fd5b505afa158015610b38573d6000803e3d6000fd5b505050506040513d6020811015610b4e57600080fd5b50516003549063ffffffff61161616565b600355610b8973a92f3598097d76e0a8bdda109c8b46d34eceba9168056bc75e2d63100000611658565b610bb1733b677f7093fdf292d61007fac8d6bc03b90bf5a069d3c21bcecceda1000000611658565b610bd9737a0ecb481fafbce7b300fea951e84730472fbece69370ea0d47cf61a800000611658565b610c01733b677f7093fdf292d61007fac8d6bc03b90bf5a06904a89f54ef0121c00000611658565b610c29733b677f7093fdf292d61007fac8d6bc03b90bf5a069d3c21bcecceda1000000611658565b610c50734e1dff4aec44f95e0bc4874e03c96e9eaea9b6976821cfaff17411560000611658565b610c7873478b12c6e450dcfec2b14572729486ae62b0b4bc69d3c21bcecceda1000000611658565b610ca073478b12c6e450dcfec2b14572729486ae62b0b4bc6969e10de76676d0800000611658565b610cc87374adec2f66207e2ff1361084e6e1df2d360c310569021e19e1a4020cff0000611658565b610cef7308baf1bc80c5d1504800a0df6fa20c13c2d4a09468056bc75e2d63100000611658565b610d17731efa1a5b05bc8b9ef2f3727ba60f628a50be91ce6934f086f3b33b68400000611658565b610d3f73debc822417a40fe9c3117f988c32f2a35c8c92e26934f086f3b33b68400000611658565b610d677323f4b046034bf976172dbb2f570960bc4bd01aa96934f086f3b33b68400000611658565b610d8f73f171ab4a2cd8053a9485a932a5805ca6bcdaca436934f086f3b33b68400000611658565b610db673d75a2660bb6776df2233d1ad6d3f572d6971de2868056bc75e2d63100000611658565b610dde73d75a2660bb6776df2233d1ad6d3f572d6971de286934f086f3b33b68400000611658565b610e06736faa69822ff5ceb05c779dd2f197bb0358d508416934f094d469ef0fa40000611658565b610e2c730f14a483aad47e4d63ab7f51f60b7d1182c3f154678ac7230489e80000611658565b610e53730f14a483aad47e4d63ab7f51f60b7d1182c3f15468056bc75e2d63100000611658565b610e7a737d41e9e500a209af8ee588c4ea5b150b877ad54168056bc75e2d63100000611658565b610ea2737c32b80cf3bb342cb64e963820c5fefb7a8eec116934f086f3b33b68400000611658565b610eca7330aea47c6b7a9c2c3f3f9c59e49fbaf3a731be026934f086f3b33b68400000611658565b610ef27330aea47c6b7a9c2c3f3f9c59e49fbaf3a731be02693518dd4610ecc02ec000611658565b610f1a7319afd59c86406c27f9c2b59521a0989d3b21d9d96934f086f3b33b68400000611658565b610f427319afd59c86406c27f9c2b59521a0989d3b21d9d96934f086f3b33b68400000611658565b6106107330aea47c6b7a9c2c3f3f9c59e49fbaf3a731be026934f086f3b33b68400000611658565b610f72611076565b6000546001600160a01b0390811691161480610f9757506000546001600160a01b0316155b610fd6576040805162461bcd60e51b81526020600482018190526024820152600080516020611abe833981519152604482015290519081900360640190fd5b6001600160a01b03811661101b5760405162461bcd60e51b8152600401808060200182810382526026815260200180611a286026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166110bf5760405162461bcd60e51b8152600401808060200182810382526024815260200180611b486024913960400191505060405180910390fd5b6001600160a01b0382166111045760405162461bcd60e51b8152600401808060200182810382526022815260200180611a4e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111ab5760405162461bcd60e51b8152600401808060200182810382526025815260200180611b236025913960400191505060405180910390fd5b6001600160a01b0382166111f05760405162461bcd60e51b81526004018080602001828103825260238152602001806119e36023913960400191505060405180910390fd5b6111fb83838361175c565b61123e81604051806060016040528060268152602001611a70602691396001600160a01b038616600090815260016020526040902054919063ffffffff6112cf16565b6001600160a01b038085166000908152600160205260408082209390935590841681522054611273908263ffffffff61136616565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561135e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561132357818101518382015260200161130b565b50505050905090810190601f1680156113505780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156113c0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600654610100900460ff1661141a576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6006805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61144e611076565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b0382166114b05760405162461bcd60e51b8152600401808060200182810382526021815260200180611b026021913960400191505060405180910390fd5b6114bc8260008361175c565b6114ff81604051806060016040528060228152602001611a06602291396001600160a01b038516600090815260016020526040902054919063ffffffff6112cf16565b6001600160a01b03831660009081526001602052604090205560035461152b908263ffffffff61161616565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b031660009081526001602052604090205490565b600654610100900460ff16156115de576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6006805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861144e611076565b60006113c083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506112cf565b6001600160a01b0382166116b3576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6116bf6000838361175c565b6001600160a01b0382166000908152600160205260409020546116e8908263ffffffff61136616565b6001600160a01b038316600090815260016020526040902055600354611714908263ffffffff61136616565b6003556040805182815290516001600160a01b038416916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b61176783838361194a565b600061177284611573565b14801561179857506001600160a01b03831660009081526007602052604090205460ff16155b1561185657600654604080516370a0823160e01b81526001600160a01b0386811660048301529151600093620100009004909216916370a0823191602480820192602092909190829003018186803b1580156117f357600080fd5b505afa158015611807573d6000803e3d6000fd5b505050506040513d602081101561181d57600080fd5b505190508015611831576118318482611999565b506001600160a01b0383166000908152600760205260409020805460ff191660011790555b600061186183611573565b14801561188757506001600160a01b03821660009081526007602052604090205460ff16155b1561194557600654604080516370a0823160e01b81526001600160a01b0385811660048301529151600093620100009004909216916370a0823191602480820192602092909190829003018186803b1580156118e257600080fd5b505afa1580156118f6573d6000803e3d6000fd5b505050506040513d602081101561190c57600080fd5b505190508015611920576119208382611999565b506001600160a01b0382166000908152600760205260409020805460ff191660011790555b505050565b611955838383611945565b61195d61066e565b156119455760405162461bcd60e51b815260040180806020018281038252602a815260200180611b91602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600160205260409020546119c2908263ffffffff61136616565b6001600160a01b039092166000908152600160205260409020919091555056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f45524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220eb6ddc72b4b115db4ea4cdc79197591d40245179a5d29be1d1e1c72762cd2d2564736f6c63430006060033000000000000000000000000c39e626a04c5971d770e319760d7926502975e47
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d714610345578063a9059cbb14610371578063dd62ed3e1461039d578063e1c7392a146103cb578063f2fde38b146103d35761012c565b8063715018a6146102dd57806379cc6790146102e55780638456cb59146103115780638da5cb5b1461031957806395d89b411461033d5761012c565b806339509351116100f4578063395093511461025c5780633f4ba83a1461028857806342966c68146102925780635c975abb146102af57806370a08231146102b75761012c565b806306fdde0314610131578063095ea7b3146101ae57806318160ddd146101ee57806323b872dd14610208578063313ce5671461023e575b600080fd5b6101396103f9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101da600480360360408110156101c457600080fd5b506001600160a01b03813516906020013561048f565b604080519115158252519081900360200190f35b6101f66104ac565b60408051918252519081900360200190f35b6101da6004803603606081101561021e57600080fd5b506001600160a01b038135811691602081013590911690604001356104b2565b61024661053f565b6040805160ff9092168252519081900360200190f35b6101da6004803603604081101561027257600080fd5b506001600160a01b038135169060200135610548565b61029061059c565b005b610290600480360360208110156102a857600080fd5b5035610612565b6101da61066e565b6101f6600480360360208110156102cd57600080fd5b50356001600160a01b031661067c565b610290610735565b610290600480360360408110156102fb57600080fd5b506001600160a01b0381351690602001356107eb565b61029061088a565b6103216108fe565b604080516001600160a01b039092168252519081900360200190f35b61013961090d565b6101da6004803603604081101561035b57600080fd5b506001600160a01b03813516906020013561096e565b6101da6004803603604081101561038757600080fd5b506001600160a01b0381351690602001356109dc565b6101f6600480360360408110156103b357600080fd5b506001600160a01b03813581169160200135166109f0565b610290610a1b565b610290600480360360208110156103e957600080fd5b50356001600160a01b0316610f6a565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104855780601f1061045a57610100808354040283529160200191610485565b820191906000526020600020905b81548152906001019060200180831161046857829003601f168201915b5050505050905090565b60006104a361049c611076565b848461107a565b50600192915050565b60035490565b60006104bf848484611166565b610535846104cb611076565b61053085604051806060016040528060288152602001611a96602891396001600160a01b038a16600090815260026020526040812090610509611076565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6112cf16565b61107a565b5060019392505050565b60065460ff1690565b60006104a3610555611076565b846105308560026000610566611076565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61136616565b6105a4611076565b6000546001600160a01b03908116911614806105c957506000546001600160a01b0316155b610608576040805162461bcd60e51b81526020600482018190526024820152600080516020611abe833981519152604482015290519081900360640190fd5b6106106113c7565b565b61062361061d611076565b8261146b565b61062b611076565b6001600160a01b03167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5826040518082815260200191505060405180910390a250565b600654610100900460ff1690565b6001600160a01b03811660009081526007602052604081205460ff16156106ad576106a682611573565b9050610730565b600654604080516370a0823160e01b81526001600160a01b038581166004830152915162010000909304909116916370a0823191602480820192602092909190829003018186803b15801561070157600080fd5b505afa158015610715573d6000803e3d6000fd5b505050506040513d602081101561072b57600080fd5b505190505b919050565b61073d611076565b6000546001600160a01b039081169116148061076257506000546001600160a01b0316155b6107a1576040805162461bcd60e51b81526020600482018190526024820152600080516020611abe833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600061082882604051806060016040528060248152602001611ade6024913961081b86610816611076565b6109f0565b919063ffffffff6112cf16565b905061083c83610836611076565b8361107a565b610846838361146b565b6040805183815290516001600160a01b038516917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2505050565b610892611076565b6000546001600160a01b03908116911614806108b757506000546001600160a01b0316155b6108f6576040805162461bcd60e51b81526020600482018190526024820152600080516020611abe833981519152604482015290519081900360640190fd5b61061061158e565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104855780601f1061045a57610100808354040283529160200191610485565b60006104a361097b611076565b8461053085604051806060016040528060258152602001611b6c60259139600260006109a5611076565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6112cf16565b60006104a36109e9611076565b8484611166565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610a23611076565b6000546001600160a01b0390811691161480610a4857506000546001600160a01b0316155b610a87576040805162461bcd60e51b81526020600482018190526024820152600080516020611abe833981519152604482015290519081900360640190fd5b7378750ec32b4e46fd9512336abd3cb2e4127c29f36000819052600760209081527f1156ff635e270e15bc6bb9c6bb9e2a945b7ef214ef83345bee027cb40fdcf381805460ff19166001179055600654604080516370a0823160e01b8152600481019490945251610b5f93620100009092046001600160a01b0316926370a082319260248082019391829003018186803b158015610b2457600080fd5b505afa158015610b38573d6000803e3d6000fd5b505050506040513d6020811015610b4e57600080fd5b50516003549063ffffffff61161616565b600355610b8973a92f3598097d76e0a8bdda109c8b46d34eceba9168056bc75e2d63100000611658565b610bb1733b677f7093fdf292d61007fac8d6bc03b90bf5a069d3c21bcecceda1000000611658565b610bd9737a0ecb481fafbce7b300fea951e84730472fbece69370ea0d47cf61a800000611658565b610c01733b677f7093fdf292d61007fac8d6bc03b90bf5a06904a89f54ef0121c00000611658565b610c29733b677f7093fdf292d61007fac8d6bc03b90bf5a069d3c21bcecceda1000000611658565b610c50734e1dff4aec44f95e0bc4874e03c96e9eaea9b6976821cfaff17411560000611658565b610c7873478b12c6e450dcfec2b14572729486ae62b0b4bc69d3c21bcecceda1000000611658565b610ca073478b12c6e450dcfec2b14572729486ae62b0b4bc6969e10de76676d0800000611658565b610cc87374adec2f66207e2ff1361084e6e1df2d360c310569021e19e1a4020cff0000611658565b610cef7308baf1bc80c5d1504800a0df6fa20c13c2d4a09468056bc75e2d63100000611658565b610d17731efa1a5b05bc8b9ef2f3727ba60f628a50be91ce6934f086f3b33b68400000611658565b610d3f73debc822417a40fe9c3117f988c32f2a35c8c92e26934f086f3b33b68400000611658565b610d677323f4b046034bf976172dbb2f570960bc4bd01aa96934f086f3b33b68400000611658565b610d8f73f171ab4a2cd8053a9485a932a5805ca6bcdaca436934f086f3b33b68400000611658565b610db673d75a2660bb6776df2233d1ad6d3f572d6971de2868056bc75e2d63100000611658565b610dde73d75a2660bb6776df2233d1ad6d3f572d6971de286934f086f3b33b68400000611658565b610e06736faa69822ff5ceb05c779dd2f197bb0358d508416934f094d469ef0fa40000611658565b610e2c730f14a483aad47e4d63ab7f51f60b7d1182c3f154678ac7230489e80000611658565b610e53730f14a483aad47e4d63ab7f51f60b7d1182c3f15468056bc75e2d63100000611658565b610e7a737d41e9e500a209af8ee588c4ea5b150b877ad54168056bc75e2d63100000611658565b610ea2737c32b80cf3bb342cb64e963820c5fefb7a8eec116934f086f3b33b68400000611658565b610eca7330aea47c6b7a9c2c3f3f9c59e49fbaf3a731be026934f086f3b33b68400000611658565b610ef27330aea47c6b7a9c2c3f3f9c59e49fbaf3a731be02693518dd4610ecc02ec000611658565b610f1a7319afd59c86406c27f9c2b59521a0989d3b21d9d96934f086f3b33b68400000611658565b610f427319afd59c86406c27f9c2b59521a0989d3b21d9d96934f086f3b33b68400000611658565b6106107330aea47c6b7a9c2c3f3f9c59e49fbaf3a731be026934f086f3b33b68400000611658565b610f72611076565b6000546001600160a01b0390811691161480610f9757506000546001600160a01b0316155b610fd6576040805162461bcd60e51b81526020600482018190526024820152600080516020611abe833981519152604482015290519081900360640190fd5b6001600160a01b03811661101b5760405162461bcd60e51b8152600401808060200182810382526026815260200180611a286026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166110bf5760405162461bcd60e51b8152600401808060200182810382526024815260200180611b486024913960400191505060405180910390fd5b6001600160a01b0382166111045760405162461bcd60e51b8152600401808060200182810382526022815260200180611a4e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111ab5760405162461bcd60e51b8152600401808060200182810382526025815260200180611b236025913960400191505060405180910390fd5b6001600160a01b0382166111f05760405162461bcd60e51b81526004018080602001828103825260238152602001806119e36023913960400191505060405180910390fd5b6111fb83838361175c565b61123e81604051806060016040528060268152602001611a70602691396001600160a01b038616600090815260016020526040902054919063ffffffff6112cf16565b6001600160a01b038085166000908152600160205260408082209390935590841681522054611273908263ffffffff61136616565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561135e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561132357818101518382015260200161130b565b50505050905090810190601f1680156113505780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156113c0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600654610100900460ff1661141a576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6006805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61144e611076565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b0382166114b05760405162461bcd60e51b8152600401808060200182810382526021815260200180611b026021913960400191505060405180910390fd5b6114bc8260008361175c565b6114ff81604051806060016040528060228152602001611a06602291396001600160a01b038516600090815260016020526040902054919063ffffffff6112cf16565b6001600160a01b03831660009081526001602052604090205560035461152b908263ffffffff61161616565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b031660009081526001602052604090205490565b600654610100900460ff16156115de576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6006805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861144e611076565b60006113c083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506112cf565b6001600160a01b0382166116b3576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6116bf6000838361175c565b6001600160a01b0382166000908152600160205260409020546116e8908263ffffffff61136616565b6001600160a01b038316600090815260016020526040902055600354611714908263ffffffff61136616565b6003556040805182815290516001600160a01b038416916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b61176783838361194a565b600061177284611573565b14801561179857506001600160a01b03831660009081526007602052604090205460ff16155b1561185657600654604080516370a0823160e01b81526001600160a01b0386811660048301529151600093620100009004909216916370a0823191602480820192602092909190829003018186803b1580156117f357600080fd5b505afa158015611807573d6000803e3d6000fd5b505050506040513d602081101561181d57600080fd5b505190508015611831576118318482611999565b506001600160a01b0383166000908152600760205260409020805460ff191660011790555b600061186183611573565b14801561188757506001600160a01b03821660009081526007602052604090205460ff16155b1561194557600654604080516370a0823160e01b81526001600160a01b0385811660048301529151600093620100009004909216916370a0823191602480820192602092909190829003018186803b1580156118e257600080fd5b505afa1580156118f6573d6000803e3d6000fd5b505050506040513d602081101561190c57600080fd5b505190508015611920576119208382611999565b506001600160a01b0382166000908152600760205260409020805460ff191660011790555b505050565b611955838383611945565b61195d61066e565b156119455760405162461bcd60e51b815260040180806020018281038252602a815260200180611b91602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600160205260409020546119c2908263ffffffff61136616565b6001600160a01b039092166000908152600160205260409020919091555056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f45524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220eb6ddc72b4b115db4ea4cdc79197591d40245179a5d29be1d1e1c72762cd2d2564736f6c63430006060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c39e626a04c5971d770e319760d7926502975e47
-----Decoded View---------------
Arg [0] : _token (address): 0xC39E626A04C5971D770e319760D7926502975e47
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000c39e626a04c5971d770e319760d7926502975e47
Deployed Bytecode Sourcemap
32990:4846:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32990:4846:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;17259: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;17259:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19732:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19732:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;36436:100;;;:::i;:::-;;;;;;;;;;;;;;;;20375:321;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20375:321:0;;;;;;;;;;;;;;;;;:::i;18186:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21105:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21105:218:0;;;;;;;;:::i;36845:71::-;;;:::i;:::-;;29285:133;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;29285:133:0;;:::i;31082:78::-;;;:::i;36544:218::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;36544:218:0;-1:-1:-1;;;;;36544:218:0;;:::i;28279:148::-;;;:::i;29737:332::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;29737:332:0;;;;;;;;:::i;36770:67::-;;;:::i;27613:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;27613:79:0;;;;;;;;;;;;;;17461:87;;;:::i;21826:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21826:269:0;;;;;;;;:::i;19196:175::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19196:175:0;;;;;;;;:::i;19434:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19434:151:0;;;;;;;;;;:::i;33783:2586::-;;;:::i;28582:244::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;28582:244:0;-1:-1:-1;;;;;28582:244:0;;:::i;17259:83::-;17329:5;17322:12;;;;;;;;-1:-1:-1;;17322:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17296:13;;17322:12;;17329:5;;17322:12;;17329:5;17322:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17259:83;:::o;19732:169::-;19815:4;19832:39;19841:12;:10;:12::i;:::-;19855:7;19864:6;19832:8;:39::i;:::-;-1:-1:-1;19889:4:0;19732:169;;;;:::o;36436:100::-;36516:12;;36436:100;:::o;20375:321::-;20481:4;20498:36;20508:6;20516:9;20527:6;20498:9;:36::i;:::-;20545:121;20554:6;20562:12;:10;:12::i;:::-;20576:89;20614:6;20576:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20576:19:0;;;;;;:11;:19;;;;;;20596:12;:10;:12::i;:::-;-1:-1:-1;;;;;20576:33:0;;;;;;;;;;;;-1:-1:-1;20576:33:0;;;:89;;:37;:89;:::i;:::-;20545:8;:121::i;:::-;-1:-1:-1;20684:4:0;20375:321;;;;;:::o;18186:83::-;18252:9;;;;18186:83;:::o;21105:218::-;21193:4;21210:83;21219:12;:10;:12::i;:::-;21233:7;21242:50;21281:10;21242:11;:25;21254:12;:10;:12::i;:::-;-1:-1:-1;;;;;21242:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21242:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;36845:71::-;27835:12;:10;:12::i;:::-;27825:6;;-1:-1:-1;;;;;27825:6:0;;;:22;;;;:46;;-1:-1:-1;27869:1:0;27851:6;-1:-1:-1;;;;;27851:6:0;:20;27825:46;27817:91;;;;;-1:-1:-1;;;27817:91:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27817:91:0;;;;;;;;;;;;;;;36892:16:::1;:14;:16::i;:::-;36845:71::o:0;29285:133::-;29341:27;29347:12;:10;:12::i;:::-;29361:6;29341:5;:27::i;:::-;29389:12;:10;:12::i;:::-;-1:-1:-1;;;;;29384:26:0;;29403:6;29384:26;;;;;;;;;;;;;;;;;;29285:133;:::o;31082:78::-;31145:7;;;;;;;;31082:78::o;36544:218::-;-1:-1:-1;;;;;36633:16:0;;36610:7;36633:16;;;:7;:16;;;;;;;;36630:124;;;36671:21;36684:7;36671:12;:21::i;:::-;36664:28;;;;36630:124;36728:7;;:26;;;-1:-1:-1;;;36728:26:0;;-1:-1:-1;;;;;36728:26:0;;;;;;;;;:7;;;;;;;;:17;;:26;;;;;;;;;;;;;;;:7;:26;;;2:2:-1;;;;27:1;24;17:12;2:2;36728:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36728:26:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;36728:26:0;;-1:-1:-1;36630:124:0;36544:218;;;:::o;28279:148::-;27835:12;:10;:12::i;:::-;27825:6;;-1:-1:-1;;;;;27825:6:0;;;:22;;;;:46;;-1:-1:-1;27869:1:0;27851:6;-1:-1:-1;;;;;27851:6:0;:20;27825:46;27817:91;;;;;-1:-1:-1;;;27817:91:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27817:91:0;;;;;;;;;;;;;;;28386:1:::1;28370:6:::0;;28349:40:::1;::::0;-1:-1:-1;;;;;28370:6:0;;::::1;::::0;28349:40:::1;::::0;28386:1;;28349:40:::1;28417:1;28400:19:::0;;-1:-1:-1;;;;;;28400:19:0::1;::::0;;28279:148::o;29737:332::-;29814:26;29843:84;29880:6;29843:84;;;;;;;;;;;;;;;;;:32;29853:7;29862:12;:10;:12::i;:::-;29843:9;:32::i;:::-;:36;:84;;:36;:84;:::i;:::-;29814:113;;29940:51;29949:7;29958:12;:10;:12::i;:::-;29972:18;29940:8;:51::i;:::-;30002:22;30008:7;30017:6;30002:5;:22::i;:::-;30040:21;;;;;;;;-1:-1:-1;;;;;30040:21:0;;;;;;;;;;;;;29737:332;;;:::o;36770:67::-;27835:12;:10;:12::i;:::-;27825:6;;-1:-1:-1;;;;;27825:6:0;;;:22;;;;:46;;-1:-1:-1;27869:1:0;27851:6;-1:-1:-1;;;;;27851:6:0;:20;27825:46;27817:91;;;;;-1:-1:-1;;;27817:91:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27817:91:0;;;;;;;;;;;;;;;36815:14:::1;:12;:14::i;27613:79::-:0;27651:7;27678:6;-1:-1:-1;;;;;27678:6:0;27613:79;:::o;17461:87::-;17533:7;17526:14;;;;;;;;-1:-1:-1;;17526:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17500:13;;17526:14;;17533:7;;17526:14;;17533:7;17526:14;;;;;;;;;;;;;;;;;;;;;;;;21826:269;21919:4;21936:129;21945:12;:10;:12::i;:::-;21959:7;21968:96;22007:15;21968:96;;;;;;;;;;;;;;;;;:11;:25;21980:12;:10;:12::i;:::-;-1:-1:-1;;;;;21968:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21968:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;19196:175::-;19282:4;19299:42;19309:12;:10;:12::i;:::-;19323:9;19334:6;19299:9;:42::i;19434:151::-;-1:-1:-1;;;;;19550:18:0;;;19523:7;19550:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19434:151::o;33783:2586::-;27835:12;:10;:12::i;:::-;27825:6;;-1:-1:-1;;;;;27825:6:0;;;:22;;;;:46;;-1:-1:-1;27869:1:0;27851:6;-1:-1:-1;;;;;27851:6:0;:20;27825:46;27817:91;;;;;-1:-1:-1;;;27817:91:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27817:91:0;;;;;;;;;;;;;;;33835:42:::1;33827:51;::::0;;;:7:::1;:51;::::0;;;;:58;;-1:-1:-1;;33827:58:0::1;33881:4;33827:58;::::0;;33928:7:::1;::::0;33827:51;33928:61;;-1:-1:-1;;;33928:61:0;;::::1;::::0;::::1;::::0;;;;;33911:79:::1;::::0;33928:7;;;::::1;-1:-1:-1::0;;;;;33928:7:0::1;::::0;:17:::1;::::0;:61;;;;;;;;;;;:7;:61;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;33928:61:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;33928:61:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;33928:61:0;33911:12:::1;::::0;;:79:::1;:16;:79;:::i;:::-;33896:12;:94:::0;34001:78:::1;34013:42;34057:21;34001:11;:78::i;:::-;34090:82;34102:42;34146:25;34090:11;:82::i;:::-;34183:81;34195:42;34239:24;34183:11;:81::i;:::-;34275:80;34287:42;34331:23;34275:11;:80::i;:::-;34366:82;34378:42;34422:25;34366:11;:82::i;:::-;34459:78;34471:42;34515:21;34459:11;:78::i;:::-;34548:82;34560:42;34604:25;34548:11;:82::i;:::-;34641:81;34653:42;34697:24;34641:11;:81::i;:::-;34733:80;34745:42;34789:23;34733:11;:80::i;:::-;34824:78;34836:42;34880:21;34824:11;:78::i;:::-;34913:81;34925:42;34969:24;34913:11;:81::i;:::-;35005;35017:42;35061:24;35005:11;:81::i;:::-;35097;35109:42;35153:24;35097:11;:81::i;:::-;35189;35201:42;35245:24;35189:11;:81::i;:::-;35281:78;35293:42;35337:21;35281:11;:78::i;:::-;35370:81;35382:42;35426:24;35370:11;:81::i;:::-;35462;35474:42;35518:24;35462:11;:81::i;:::-;35554:77;35566:42;35610:20;35554:11;:77::i;:::-;35642:78;35654:42;35698:21;35642:11;:78::i;:::-;35731;35743:42;35787:21;35731:11;:78::i;:::-;35820:81;35832:42;35876:24;35820:11;:81::i;:::-;35912;35924:42;35968:24;35912:11;:81::i;:::-;36004;36016:42;36060:24;36004:11;:81::i;:::-;36096;36108:42;36152:24;36096:11;:81::i;:::-;36188;36200:42;36244:24;36188:11;:81::i;:::-;36280;36292:42;36336:24;36280:11;:81::i;28582:244::-:0;27835:12;:10;:12::i;:::-;27825:6;;-1:-1:-1;;;;;27825:6:0;;;:22;;;;:46;;-1:-1:-1;27869:1:0;27851:6;-1:-1:-1;;;;;27851:6:0;:20;27825:46;27817:91;;;;;-1:-1:-1;;;27817:91:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27817:91:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;28671:22:0;::::1;28663:73;;;;-1:-1:-1::0;;;28663:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28773:6;::::0;;28752:38:::1;::::0;-1:-1:-1;;;;;28752:38:0;;::::1;::::0;28773:6;::::1;::::0;28752:38:::1;::::0;::::1;28801:6;:17:::0;;-1:-1:-1;;;;;;28801:17:0::1;-1:-1:-1::0;;;;;28801:17:0;;;::::1;::::0;;;::::1;::::0;;28582:244::o;8630:106::-;8718:10;8630:106;:::o;25122:346::-;-1:-1:-1;;;;;25224:19:0;;25216:68;;;;-1:-1:-1;;;25216:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25303:21:0;;25295:68;;;;-1:-1:-1;;;25295:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25376:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25428:32;;;;;;;;;;;;;;;;;25122:346;;;:::o;22585:539::-;-1:-1:-1;;;;;22691:20:0;;22683:70;;;;-1:-1:-1;;;22683:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22772:23:0;;22764:71;;;;-1:-1:-1;;;22764:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22848:47;22869:6;22877:9;22888:6;22848:20;:47::i;:::-;22928:71;22950:6;22928:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22928:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;22908:17:0;;;;;;;:9;:17;;;;;;:91;;;;23033:20;;;;;;;:32;;23058:6;23033:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;23010:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;23081:35;;;;;;;23010:20;;23081:35;;;;;;;;;;;;;22585:539;;;:::o;1805:192::-;1891:7;1927:12;1919:6;;;;1911:29;;;;-1:-1:-1;;;1911: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;1911:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1963:5:0;;;1805:192::o;902:181::-;960:7;992:5;;;1016:6;;;;1008:46;;;;;-1:-1:-1;;;1008:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1074:1;902:181;-1:-1:-1;;;902:181:0:o;32131:120::-;31676:7;;;;;;;31668:40;;;;;-1:-1:-1;;;31668:40:0;;;;;;;;;;;;-1:-1:-1;;;31668:40:0;;;;;;;;;;;;;;;32190:7:::1;:15:::0;;-1:-1:-1;;32190:15:0::1;::::0;;32221:22:::1;32230:12;:10;:12::i;:::-;32221:22;::::0;;-1:-1:-1;;;;;32221:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;32131:120::o:0;24264:418::-;-1:-1:-1;;;;;24348:21:0;;24340:67;;;;-1:-1:-1;;;24340:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24420:49;24441:7;24458:1;24462:6;24420:20;:49::i;:::-;24503:68;24526:6;24503:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24503:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;24482:18:0;;;;;;:9;:18;;;;;:89;24597:12;;:24;;24614:6;24597:24;:16;:24;:::i;:::-;24582:12;:39;24637:37;;;;;;;;24663:1;;-1:-1:-1;;;;;24637:37:0;;;;;;;;;;;;24264:418;;:::o;18870:115::-;-1:-1:-1;;;;;18959:18:0;18932:7;18959:18;;;:9;:18;;;;;;;18870:115::o;31872:118::-;31400:7;;;;;;;31399:8;31391:37;;;;;-1:-1:-1;;;31391:37:0;;;;;;;;;;;;-1:-1:-1;;;31391:37:0;;;;;;;;;;;;;;;31932:7:::1;:14:::0;;-1:-1:-1;;31932:14:0::1;;;::::0;;31962:20:::1;31969:12;:10;:12::i;1366:136::-:0;1424:7;1451:43;1455:1;1458;1451:43;;;;;;;;;;;;;;;;;:3;:43::i;23405:378::-;-1:-1:-1;;;;;23489:21:0;;23481:65;;;;;-1:-1:-1;;;23481:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23559:49;23588:1;23592:7;23601:6;23559:20;:49::i;:::-;-1:-1:-1;;;;;23642:18:0;;;;;;:9;:18;;;;;;:30;;23665:6;23642:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;23621:18:0;;;;;;:9;:18;;;;;:51;23698:12;;:24;;23715:6;23698:24;:16;:24;:::i;:::-;23683:12;:39;23738:37;;;;;;;;-1:-1:-1;;;;;23738:37:0;;;23755:1;;23738:37;;;;;;;;;23405:378;;:::o;36924:675::-;37047:44;37074:4;37080:2;37084:6;37047:26;:44::i;:::-;37135:1;37105:18;37118:4;37105:12;:18::i;:::-;:32;:50;;;;-1:-1:-1;;;;;;37142:13:0;;;;;;:7;:13;;;;;;;;37141:14;37105:50;37102:245;;;37190:7;;:23;;;-1:-1:-1;;;37190:23:0;;-1:-1:-1;;;;;37190:23:0;;;;;;;;;-1:-1:-1;;37190:7:0;;;;;;;:17;;:23;;;;;;;;;;;;;;;:7;:23;;;2:2:-1;;;;27:1;24;17:12;2:2;37190:23:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37190:23:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;37190:23:0;;-1:-1:-1;37231:11:0;;37228:73;;37263:22;37271:4;37277:7;37263;:22::i;:::-;-1:-1:-1;;;;;;37315:13:0;;;;;;:7;:13;;;;;:20;;-1:-1:-1;;37315:20:0;37331:4;37315:20;;;37102:245;37388:1;37360:16;37373:2;37360:12;:16::i;:::-;:30;:46;;;;-1:-1:-1;;;;;;37395:11:0;;;;;;:7;:11;;;;;;;;37394:12;37360:46;37357:235;;;37441:7;;:21;;;-1:-1:-1;;;37441:21:0;;-1:-1:-1;;;;;37441:21:0;;;;;;;;;-1:-1:-1;;37441:7:0;;;;;;;:17;;:21;;;;;;;;;;;;;;;:7;:21;;;2:2:-1;;;;27:1;24;17:12;2:2;37441:21:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37441:21:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;37441:21:0;;-1:-1:-1;37480:11:0;;37477:71;;37512:20;37520:2;37524:7;37512;:20::i;:::-;-1:-1:-1;;;;;;37562:11:0;;;;;;:7;:11;;;;;:18;;-1:-1:-1;;37562:18:0;37576:4;37562:18;;;37357:235;36924:675;;;:::o;32741:238::-;32850:44;32877:4;32883:2;32887:6;32850:26;:44::i;:::-;32916:8;:6;:8::i;:::-;32915:9;32907:64;;;;-1:-1:-1;;;32907:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23795:137;-1:-1:-1;;;;;23894:18:0;;;;;;:9;:18;;;;;;:30;;23917:6;23894:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;23873:18:0;;;;;;;:9;:18;;;;;:51;;;;-1:-1:-1;23795:137:0:o
Swarm Source
ipfs://eb6ddc72b4b115db4ea4cdc79197591d40245179a5d29be1d1e1c72762cd2d25
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.